diff --git a/conf/zeppelin-env.cmd.template b/conf/zeppelin-env.cmd.template index d85e59f2709..de896743fc6 100644 --- a/conf/zeppelin-env.cmd.template +++ b/conf/zeppelin-env.cmd.template @@ -62,7 +62,7 @@ REM REM set ZEPPELIN_SPARK_USEHIVECONTEXT REM Use HiveContext instead of SQLContext if set true. true by default. REM set ZEPPELIN_SPARK_CONCURRENTSQL REM Execute multiple SQL concurrently if set true. false by default. REM set ZEPPELIN_SPARK_IMPORTIMPLICIT REM Import implicits, UDF collection, and sql if set true. true by default. -REM set ZEPPELIN_SPARK_MAXRESULT REM Max number of SparkSQL result to display. 1000 by default. +REM set ZEPPELIN_SPARK_MAXRESULT REM Max number of Spark SQL result to display. 1000 by default. REM ZeppelinHub connection configuration REM diff --git a/conf/zeppelin-env.sh.template b/conf/zeppelin-env.sh.template index 52e36f7b5f6..14fdd54eeb6 100644 --- a/conf/zeppelin-env.sh.template +++ b/conf/zeppelin-env.sh.template @@ -62,7 +62,7 @@ # export ZEPPELIN_SPARK_USEHIVECONTEXT # Use HiveContext instead of SQLContext if set true. true by default. # export ZEPPELIN_SPARK_CONCURRENTSQL # Execute multiple SQL concurrently if set true. false by default. # export ZEPPELIN_SPARK_IMPORTIMPLICIT # Import implicits, UDF collection, and sql if set true. true by default. -# export ZEPPELIN_SPARK_MAXRESULT # Max number of SparkSQL result to display. 1000 by default. +# export ZEPPELIN_SPARK_MAXRESULT # Max number of Spark SQL result to display. 1000 by default. # export ZEPPELIN_WEBSOCKET_MAX_TEXT_MESSAGE_SIZE # Size in characters of the maximum text message to be received by websocket. Defaults to 1024000 diff --git a/docs/index.md b/docs/index.md index 141e7f6aeef..ec650ae00a2 100644 --- a/docs/index.md +++ b/docs/index.md @@ -62,7 +62,7 @@ For the further information about Apache Spark in Apache Zeppelin, please see [S
## Data visualization -Some basic charts are already included in Apache Zeppelin. Visualizations are not limited to SparkSQL query, any output from any language backend can be recognized and visualized. +Some basic charts are already included in Apache Zeppelin. Visualizations are not limited to Spark SQL query, any output from any language backend can be recognized and visualized.
diff --git a/docs/interpreter/livy.md b/docs/interpreter/livy.md index 2f47364aae8..9af64995cdf 100644 --- a/docs/interpreter/livy.md +++ b/docs/interpreter/livy.md @@ -50,7 +50,7 @@ Example: `spark.master` to `livy.spark.master` zeppelin.livy.spark.maxResult 1000 - Max number of SparkSQL result to display. + Max number of Spark SQL result to display. livy.spark.driver.cores diff --git a/docs/interpreter/spark.md b/docs/interpreter/spark.md index 81f48443a93..b5fbf2c14e7 100644 --- a/docs/interpreter/spark.md +++ b/docs/interpreter/spark.md @@ -105,7 +105,7 @@ You can also set other Spark properties which are not listed in the table. For a zeppelin.spark.maxResult 1000 - Max number of SparkSQL result to display. + Max number of Spark SQL result to display. zeppelin.spark.printREPLOutput diff --git a/docs/manual/dynamicform.md b/docs/manual/dynamicform.md index b554fec1127..6102bafac65 100644 --- a/docs/manual/dynamicform.md +++ b/docs/manual/dynamicform.md @@ -28,7 +28,7 @@ Custom language backend can select which type of form creation it wants to use. ## Using form Templates -This mode creates form using simple template language. It's simple and easy to use. For example Markdown, Shell, SparkSql language backend uses it. +This mode creates form using simple template language. It's simple and easy to use. For example Markdown, Shell, Spark SQL language backend uses it. ### Text input form diff --git a/docs/manual/interpreters.md b/docs/manual/interpreters.md index a21d34e81a7..6e4839dc590 100644 --- a/docs/manual/interpreters.md +++ b/docs/manual/interpreters.md @@ -27,7 +27,7 @@ limitations under the License. In this section, we will explain about the role of interpreters, interpreters group and interpreter settings in Zeppelin. The concept of Zeppelin interpreter allows any language/data-processing-backend to be plugged into Zeppelin. -Currently, Zeppelin supports many interpreters such as Scala ( with Apache Spark ), Python ( with Apache Spark ), SparkSQL, JDBC, Markdown, Shell and so on. +Currently, Zeppelin supports many interpreters such as Scala ( with Apache Spark ), Python ( with Apache Spark ), Spark SQL, JDBC, Markdown, Shell and so on. ## What is Zeppelin interpreter? Zeppelin Interpreter is a plug-in which enables Zeppelin users to use a specific language/data-processing-backend. For example, to use Scala code in Zeppelin, you need `%spark` interpreter. @@ -51,7 +51,7 @@ Each notebook can be bound to multiple Interpreter Settings using setting icon o ## What is interpreter group? Every Interpreter is belonged to an **Interpreter Group**. Interpreter Group is a unit of start/stop interpreter. -By default, every interpreter is belonged to a single group, but the group might contain more interpreters. For example, Spark interpreter group is including Spark support, pySpark, SparkSQL and the dependency loader. +By default, every interpreter is belonged to a single group, but the group might contain more interpreters. For example, Spark interpreter group is including Spark support, pySpark, Spark SQL and the dependency loader. Technically, Zeppelin interpreters from the same group are running in the same JVM. For more information about this, please checkout [here](../development/writingzeppelininterpreter.html). diff --git a/docs/rest-api/rest-interpreter.md b/docs/rest-api/rest-interpreter.md index 4d7c49d8558..22f168555d4 100644 --- a/docs/rest-api/rest-interpreter.md +++ b/docs/rest-api/rest-interpreter.md @@ -92,7 +92,7 @@ The role of registered interpreters, settings and interpreters group are describ "properties": { "zeppelin.spark.maxResult": { "defaultValue": "1000", - "description": "Max number of SparkSQL result to display." + "description": "Max number of Spark SQL result to display." } }, "path": "/zeppelin/interpreter/spark" @@ -460,4 +460,4 @@ The role of registered interpreters, settings and interpreters group are describ 500 - \ No newline at end of file + diff --git a/docs/screenshots.md b/docs/screenshots.md index 7a389b74c71..2cad21baf13 100644 --- a/docs/screenshots.md +++ b/docs/screenshots.md @@ -21,7 +21,7 @@ limitations under the License.
-
SparkSQL with inline visualization
+
Spark SQL with inline visualization
diff --git a/livy/src/main/resources/interpreter-setting.json b/livy/src/main/resources/interpreter-setting.json index 2c1a0beceba..28fb28054f8 100644 --- a/livy/src/main/resources/interpreter-setting.json +++ b/livy/src/main/resources/interpreter-setting.json @@ -93,7 +93,7 @@ "envName": "ZEPPELIN_LIVY_MAXRESULT", "propertyName": "zeppelin.livy.spark.sql.maxResult", "defaultValue": "1000", - "description": "Max number of SparkSQL result to display." + "description": "Max number of Spark SQL result to display." }, "zeppelin.livy.concurrentSQL": { "propertyName": "zeppelin.livy.concurrentSQL", @@ -116,4 +116,4 @@ "properties": { } } -] \ No newline at end of file +] diff --git a/spark/src/main/resources/interpreter-setting.json b/spark/src/main/resources/interpreter-setting.json index 2343a0f9745..d87a6c7ff75 100644 --- a/spark/src/main/resources/interpreter-setting.json +++ b/spark/src/main/resources/interpreter-setting.json @@ -46,7 +46,7 @@ "envName": "ZEPPELIN_SPARK_MAXRESULT", "propertyName": "zeppelin.spark.maxResult", "defaultValue": "1000", - "description": "Max number of SparkSQL result to display." + "description": "Max number of Spark SQL result to display." }, "master": { "envName": "MASTER", @@ -77,7 +77,7 @@ "envName": "ZEPPELIN_SPARK_MAXRESULT", "propertyName": "zeppelin.spark.maxResult", "defaultValue": "1000", - "description": "Max number of SparkSQL result to display." + "description": "Max number of Spark SQL result to display." }, "zeppelin.spark.importImplicit": { "envName": "ZEPPELIN_SPARK_IMPORTIMPLICIT", diff --git a/spark/src/main/sparkr-resources/interpreter-setting.json b/spark/src/main/sparkr-resources/interpreter-setting.json index 4902baf9f76..f884fe48702 100644 --- a/spark/src/main/sparkr-resources/interpreter-setting.json +++ b/spark/src/main/sparkr-resources/interpreter-setting.json @@ -46,7 +46,7 @@ "envName": "ZEPPELIN_SPARK_MAXRESULT", "propertyName": "zeppelin.spark.maxResult", "defaultValue": "1000", - "description": "Max number of SparkSQL result to display." + "description": "Max number of Spark SQL result to display." }, "master": { "envName": "MASTER", @@ -77,7 +77,7 @@ "envName": "ZEPPELIN_SPARK_MAXRESULT", "propertyName": "zeppelin.spark.maxResult", "defaultValue": "1000", - "description": "Max number of SparkSQL result to display." + "description": "Max number of Spark SQL result to display." }, "zeppelin.spark.importImplicit": { "envName": "ZEPPELIN_SPARK_IMPORTIMPLICIT",