This is an automated email from the ASF dual-hosted git repository.
ulyssesyou pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kyuubi.git
The following commit(s) were added to refs/heads/master by this push:
new f0615a9aa [KYUUBI #4683] Update
`spark.sql.finalWriteStage.resourceIsolation.enabled` version
f0615a9aa is described below
commit f0615a9aab0a5b755c16ee0b966a5ea59b98bd10
Author: ulysses-you <[email protected]>
AuthorDate: Mon Apr 10 16:47:28 2023 +0800
[KYUUBI #4683] Update `spark.sql.finalWriteStage.resourceIsolation.enabled`
version
### _Why are the changes needed?_
fix the wrong version
### _How was this patch tested?_
- [ ] Add some test cases that check the changes thoroughly including
negative and positive cases if possible
- [ ] Add screenshots for manual tests if appropriate
- [ ] [Run
test](https://kyuubi.readthedocs.io/en/master/develop_tools/testing.html#running-tests)
locally before make a pull request
Closes #4683 from ulysses-you/followup.
Closes #4683
8e5d46fda [ulysses-you] update version
Authored-by: ulysses-you <[email protected]>
Signed-off-by: ulyssesyou <[email protected]>
---
docs/extensions/engines/spark/rules.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/extensions/engines/spark/rules.md
b/docs/extensions/engines/spark/rules.md
index 46e8dd3d1..8fa636c31 100644
--- a/docs/extensions/engines/spark/rules.md
+++ b/docs/extensions/engines/spark/rules.md
@@ -86,7 +86,7 @@ Kyuubi provides some configs to make these feature easy to
use.
| spark.sql.finalWriteStage.eagerlyKillExecutors.enabled | false
| When true, eagerly kill redundant executors
before running final write stage.
| 1.8.0 |
| spark.sql.finalWriteStage.skipKillingExecutorsForTableCache | true
| When true, skip killing executors if the plan
has table caches.
| 1.8.0 |
| spark.sql.finalWriteStage.retainExecutorsFactor | 1.2
| If the target executors * factor < active
executors, and target executors * factor > min executors, then inject kill
executors or inject custom resource profile.
| 1.8.0 |
-| spark.sql.finalWriteStage.resourceIsolation.enabled | false
| When true, make final write stage resource
isolation using custom RDD resource profile.
| 1.2.0 |
+| spark.sql.finalWriteStage.resourceIsolation.enabled | false
| When true, make final write stage resource
isolation using custom RDD resource profile.
| 1.8.0 |
| spark.sql.finalWriteStageExecutorCores |
fallback spark.executor.cores | Specify the executor core request for
final write stage. It would be passed to the RDD resource profile.
| 1.8.0 |
| spark.sql.finalWriteStageExecutorMemory |
fallback spark.executor.memory | Specify the executor on heap memory
request for final write stage. It would be passed to the RDD resource profile.
| 1.8.0 |
| spark.sql.finalWriteStageExecutorMemoryOverhead |
fallback spark.executor.memoryOverhead | Specify the executor memory overhead
request for final write stage. It would be passed to the RDD resource profile.
| 1.8.0 |