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 2020/06/05 02:20:11 UTC

[zeppelin] branch master updated: [ZEPPELIN-4840]. Set zeppelin.spark.concurrentSQL to be true by default

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

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


The following commit(s) were added to refs/heads/master by this push:
     new a50df08  [ZEPPELIN-4840]. Set zeppelin.spark.concurrentSQL to be true by default
a50df08 is described below

commit a50df08a5f232d73dffcb78b443abb970da85f39
Author: Jeff Zhang <zj...@apache.org>
AuthorDate: Tue Jun 2 22:36:55 2020 +0800

    [ZEPPELIN-4840]. Set zeppelin.spark.concurrentSQL to be true by default
    
    ### What is this PR for?
    
    Trivial PR which just make `zeppelin.spark.concurrentSQL` to be `true` by default, this is what user expect usually.
    
    ### What type of PR is it?
    [Improvement]
    
    ### Todos
    * [ ] - Task
    
    ### What is the Jira issue?
    * https://issues.apache.org/jira/browse/ZEPPELIN-4840
    
    ### 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 #3783 from zjffdu/ZEPPELIN-4840 and squashes the following commits:
    
    7ece99b83 [Jeff Zhang] [ZEPPELIN-4840]. Set zeppelin.spark.concurrentSQL to be true by default
---
 spark/interpreter/src/main/resources/interpreter-setting.json | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/spark/interpreter/src/main/resources/interpreter-setting.json b/spark/interpreter/src/main/resources/interpreter-setting.json
index d722b52..1556d33 100644
--- a/spark/interpreter/src/main/resources/interpreter-setting.json
+++ b/spark/interpreter/src/main/resources/interpreter-setting.json
@@ -156,7 +156,7 @@
       "zeppelin.spark.concurrentSQL": {
         "envName": null,
         "propertyName": "zeppelin.spark.concurrentSQL",
-        "defaultValue": false,
+        "defaultValue": true,
         "description": "Execute multiple SQL concurrently if set true.",
         "type": "checkbox"
       },