@@ -45,21 +45,21 @@ public class LivySparkInterpreter extends Interpreter {
4545 LivySparkInterpreter .class .getName (),
4646 new InterpreterPropertyBuilder ()
4747 .add ("zeppelin.livy.url" , DEFAULT_URL , "The URL for Livy Server." )
48- .add ("spark.master" , LOCAL , "Spark master uri. ex) spark://masterhost:7077" )
49- .add ("spark.driver.cores" , "" , "Driver cores. ex) 1, 2" )
50- .add ("spark.driver.memory" , "" , "Driver memory. ex) 512m, 32g" )
51- .add ("spark.executor.instances" , "" , "Executor instances. ex) 1, 4" )
52- .add ("spark.executor.cores" , "" , "Num cores per executor. ex) 1, 4" )
53- .add ("spark.executor.memory" , "" ,
48+ .add ("livy. spark.master" , LOCAL , "Spark master uri. ex) spark://masterhost:7077" )
49+ .add ("livy. spark.driver.cores" , "" , "Driver cores. ex) 1, 2" )
50+ .add ("livy. spark.driver.memory" , "" , "Driver memory. ex) 512m, 32g" )
51+ .add ("livy. spark.executor.instances" , "" , "Executor instances. ex) 1, 4" )
52+ .add ("livy. spark.executor.cores" , "" , "Num cores per executor. ex) 1, 4" )
53+ .add ("livy. spark.executor.memory" , "" ,
5454 "Executor memory per worker instance. ex) 512m, 32g" )
55- .add ("spark.dynamicAllocation.enabled" , "" , "Use dynamic resource allocation" )
56- .add ("spark.dynamicAllocation.cachedExecutorIdleTimeout" , "" ,
55+ .add ("livy. spark.dynamicAllocation.enabled" , "" , "Use dynamic resource allocation" )
56+ .add ("livy. spark.dynamicAllocation.cachedExecutorIdleTimeout" , "" ,
5757 "Remove an executor which has cached data blocks" )
58- .add ("spark.dynamicAllocation.minExecutors" , "" ,
58+ .add ("livy. spark.dynamicAllocation.minExecutors" , "" ,
5959 "Lower bound for the number of executors if dynamic allocation is enabled. " )
60- .add ("spark.dynamicAllocation.initialExecutors" , "" ,
60+ .add ("livy. spark.dynamicAllocation.initialExecutors" , "" ,
6161 "Initial number of executors to run if dynamic allocation is enabled. " )
62- .add ("spark.dynamicAllocation.maxExecutors" , "" ,
62+ .add ("livy. spark.dynamicAllocation.maxExecutors" , "" ,
6363 "Upper bound for the number of executors if dynamic allocation is enabled. " )
6464 .build ()
6565 );
0 commit comments