Github user xuanyuanking commented on a diff in the pull request: https://github.com/apache/spark/pull/21370#discussion_r191080316 --- Diff: docs/configuration.md --- @@ -456,6 +456,29 @@ Apart from these, the following properties are also available, and may be useful from JVM to Python worker for every task. </td> </tr> +<tr> + <td><code>spark.sql.repl.eagerEval.enabled</code></td> + <td>false</td> + <td> + Enable eager evaluation or not. If true and repl you're using supports eager evaluation, + dataframe will be ran automatically and html table will feedback the queries user have defined + (see <a href="https://issues.apache.org/jira/browse/SPARK-24215">SPARK-24215</a> for more details). + </td> +</tr> +<tr> + <td><code>spark.sql.repl.eagerEval.showRows</code></td> + <td>20</td> + <td> + Default number of rows in HTML table. + </td> +</tr> +<tr> + <td><code>spark.sql.repl.eagerEval.truncate</code></td> --- End diff -- Yep, I just want to keep the same behavior of `dataframe.show`. ``` That's useful for console output, but not so much for notebooks. ``` Notebooks aren't afraid for too many chaacters within a cell, so I just delete this?
--- --------------------------------------------------------------------- To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For additional commands, e-mail: reviews-h...@spark.apache.org