Explorar o código

HUE-6245 [cluster] Turn integrating scheduling and Impala action off

Romain Rigaux %!s(int64=8) %!d(string=hai) anos
pai
achega
6a5d2fd

+ 1 - 1
apps/oozie/src/oozie/conf.py

@@ -100,7 +100,7 @@ ENABLE_IMPALA_ACTION = Config(
   key="enable_impala_action",
   help=_t("Flag to enable the Impala action."),
   type=bool,
-  default=is_hue4()
+  default=False
 )
 
 

+ 6 - 6
desktop/conf.dist/hue.ini

@@ -1109,14 +1109,14 @@
   # Use Cron format for defining the frequency of a Coordinator instead of the old frequency number/unit.
   ## enable_cron_scheduling=true
 
-  ## Flag to enable the saved Editor queries to be dragged and dropped into a workflow.
-  # enable_document_action=false
+  # Flag to enable the saved Editor queries to be dragged and dropped into a workflow.
+  ## enable_document_action=false
 
-  ## Flag to enable Oozie backend filtering instead of doing it at the page level in Javascript. Requires Oozie 4.3+.
-  # enable_oozie_backend_filtering=true
+  # Flag to enable Oozie backend filtering instead of doing it at the page level in Javascript. Requires Oozie 4.3+.
+  ## enable_oozie_backend_filtering=true
 
-  ## Flag to enable the Impala action.
-  # enable_impala_action=false
+  # Flag to enable the Impala action.
+  ## enable_impala_action=false
 
 
 ###########################################################################

+ 7 - 7
desktop/conf/pseudo-distributed.ini.tmpl

@@ -675,7 +675,7 @@
   # enable_external_statements=true
 
   ## Flag to enable the bulk submission of queries as a background task through Oozie.
-  # enable_batch_execute=true
+  # enable_batch_execute=false
 
   ## Flag to enable the SQL query builder of the table assist.
   # enable_query_builder=true
@@ -1111,14 +1111,14 @@
   # Use Cron format for defining the frequency of a Coordinator instead of the old frequency number/unit.
   ## enable_cron_scheduling=true
 
-  ## Flag to enable the saved Editor queries to be dragged and dropped into a workflow.
-  # enable_document_action=false
+  # Flag to enable the saved Editor queries to be dragged and dropped into a workflow.
+  ## enable_document_action=false
 
-  ## Flag to enable Oozie backend filtering instead of doing it at the page level in Javascript. Requires Oozie 4.3+.
-  # enable_oozie_backend_filtering=true
+  # Flag to enable Oozie backend filtering instead of doing it at the page level in Javascript. Requires Oozie 4.3+.
+  ## enable_oozie_backend_filtering=true
 
-  ## Flag to enable the Impala action.
-  # enable_impala_action=false
+  # Flag to enable the Impala action.
+  ## enable_impala_action=false
 
 
 ###########################################################################

+ 1 - 1
desktop/libs/notebook/src/notebook/conf.py

@@ -128,7 +128,7 @@ ENABLE_QUERY_SCHEDULING = Config(
   key="enable_query_scheduling",
   help=_t("Flag to enable the creation of a coordinator for the current SQL query."),
   type=bool,
-  dynamic_default=is_hue4
+  dynamic_default=False
 )
 
 ENABLE_EXTERNAL_STATEMENT = Config(