You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zeppelin.apache.org by zj...@apache.org on 2021/04/07 03:08:38 UTC

[zeppelin] branch branch-0.9 updated: [ZEPPELIN-5234]. Increase default value of ZEPPELIN_INTERPRETER_CONNECTION_POOL_SIZE

This is an automated email from the ASF dual-hosted git repository.

zjffdu pushed a commit to branch branch-0.9
in repository https://gitbox.apache.org/repos/asf/zeppelin.git


The following commit(s) were added to refs/heads/branch-0.9 by this push:
     new 091f188  [ZEPPELIN-5234]. Increase default value of ZEPPELIN_INTERPRETER_CONNECTION_POOL_SIZE
091f188 is described below

commit 091f1881c2d43da8b7b817b0a3bb642bd2a47494
Author: Jeff Zhang <zj...@apache.org>
AuthorDate: Fri Apr 2 15:04:25 2021 +0800

    [ZEPPELIN-5234]. Increase default value of ZEPPELIN_INTERPRETER_CONNECTION_POOL_SIZE
    
    ### What is this PR for?
    
    Trivial PR to increase the default value of `ZEPPELIN_INTERPRETER_CONNECTION_POOL_SIZE`
    
    ### What type of PR is it?
    [ Improvement ]
    
    ### Todos
    * [ ] - Task
    
    ### What is the Jira issue?
    * https://issues.apache.org/jira/browse/ZEPPELIN-5234
    
    ### How should this be tested?
    * CI pass
    
    ### Screenshots (if appropriate)
    
    ### Questions:
    * Does the licenses files need update? No
    * Is there breaking changes for older versions? No
    * Does this needs documentation? No
    
    Author: Jeff Zhang <zj...@apache.org>
    
    Closes #4087 from zjffdu/ZEPPELIN-5234 and squashes the following commits:
    
    f288b73b1 [Jeff Zhang] [ZEPPELIN-5234]. Increase default value of ZEPPELIN_INTERPRETER_CONNECTION_POOL_SIZE
    
    (cherry picked from commit 31b7935fcc410c1a1e22d42ab63b6926cc5d0ad1)
    Signed-off-by: Jeff Zhang <zj...@apache.org>
---
 .../src/main/java/org/apache/zeppelin/conf/ZeppelinConfiguration.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/zeppelin-interpreter/src/main/java/org/apache/zeppelin/conf/ZeppelinConfiguration.java b/zeppelin-interpreter/src/main/java/org/apache/zeppelin/conf/ZeppelinConfiguration.java
index 32467ce..b722ae0 100644
--- a/zeppelin-interpreter/src/main/java/org/apache/zeppelin/conf/ZeppelinConfiguration.java
+++ b/zeppelin-interpreter/src/main/java/org/apache/zeppelin/conf/ZeppelinConfiguration.java
@@ -932,7 +932,7 @@ public class ZeppelinConfiguration {
     ZEPPELIN_INTERPRETER_DEP_MVNREPO("zeppelin.interpreter.dep.mvnRepo",
         "https://repo1.maven.org/maven2/"),
     ZEPPELIN_INTERPRETER_CONNECT_TIMEOUT("zeppelin.interpreter.connect.timeout", 60000),
-    ZEPPELIN_INTERPRETER_CONNECTION_POOL_SIZE("zeppelin.interpreter.connection.poolsize", 10),
+    ZEPPELIN_INTERPRETER_CONNECTION_POOL_SIZE("zeppelin.interpreter.connection.poolsize", 100),
     ZEPPELIN_INTERPRETER_GROUP_DEFAULT("zeppelin.interpreter.group.default", "spark"),
     ZEPPELIN_INTERPRETER_OUTPUT_LIMIT("zeppelin.interpreter.output.limit", 1024 * 100),
     ZEPPELIN_INTERPRETER_INCLUDES("zeppelin.interpreter.include", ""),