-
Notifications
You must be signed in to change notification settings - Fork 28.9k
[SPARK-24639][DOC] Add three config in the doc #21624
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -456,6 +456,40 @@ 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.python.task.killTimeout</code></td> | ||
| <td>2s</td> | ||
| <td> | ||
| Timeout to wait before killing the python worker when a task cannot be interrupted | ||
| </td> | ||
| </tr> | ||
| <tr> | ||
| <td><code>spark.sql.repl.eagerEval.enabled</code></td> | ||
| <td>false</td> | ||
| <td> | ||
| Enable eager evaluation or not. If true and the REPL you are using supports eager evaluation, | ||
| Dataset will be ran automatically. The HTML table which generated by <code>_repl_html_</code> | ||
| called by notebooks like Jupyter will feedback the queries user have defined. For plain Python | ||
| REPL, the output will be shown like <code>dataframe.show()</code> | ||
| (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.maxNumRows</code></td> | ||
| <td>20</td> | ||
| <td> | ||
| Default number of rows in eager evaluation output HTML table generated by <code>_repr_html_</code> or plain text, | ||
| this only take effect when <code>spark.sql.repl.eagerEval.enabled</code> is set to true. | ||
| </td> | ||
| </tr> | ||
| <tr> | ||
| <td><code>spark.sql.repl.eagerEval.truncate</code></td> | ||
| <td>20</td> | ||
| <td> | ||
| Default number of truncate in eager evaluation output HTML table generated by <code>_repr_html_</code> or | ||
| plain text, this only take effect when <code>spark.sql.repl.eagerEval.enabled</code> set to true. | ||
| </td> | ||
| </tr> | ||
| <tr> | ||
| <td><code>spark.files</code></td> | ||
| <td></td> | ||
|
|
@@ -541,6 +575,13 @@ Apart from these, the following properties are also available, and may be useful | |
| Python binary executable to use for PySpark in both driver and executors. | ||
| </td> | ||
| </tr> | ||
| <tr> | ||
| <td><code>spark.worker.driverTerminateTimeout</code></td> | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Likewise spark.worker.* configs are in spark-standalone.md, it appears |
||
| <td>10s</td> | ||
| <td> | ||
| Timeout to wait for when trying to terminate a driver. | ||
| </td> | ||
| </tr> | ||
| </table> | ||
|
|
||
| ### Shuffle Behavior | ||
|
|
@@ -771,6 +812,13 @@ Apart from these, the following properties are also available, and may be useful | |
| Buffer size to use when writing to output streams, in KiB unless otherwise specified. | ||
| </td> | ||
| </tr> | ||
| <tr> | ||
| <td><code>spark.ui.consoleProgress.update.interval</code></td> | ||
| <td>200</td> | ||
| <td> | ||
| Update period of progress bar, in milliseconds | ||
| </td> | ||
| </tr> | ||
| <tr> | ||
| <td><code>spark.ui.enabled</code></td> | ||
| <td>true</td> | ||
|
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
spark.sql.* configs should be in sql-programming-guide.md