cloud-fan commented on code in PR #45930:
URL: https://github.com/apache/spark/pull/45930#discussion_r1565218933
##########
sql/catalyst/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala:
##########
@@ -2854,6 +2854,23 @@ object SQLConf {
.intConf
.createWithDefault(SHUFFLE_SPILL_NUM_ELEMENTS_FORCE_SPILL_THRESHOLD.defaultValue.get)
+ val SHUFFLE_DEPENDENCY_SKIP_MIGRATION_ENABLED =
+ buildConf("spark.sql.shuffleDependency.skipMigration.enabled")
+ .doc("When enabled, shuffle dependencies for a Spark Connect SQL
execution are marked at " +
+ "the end of the execution, and they will not be migrated during
decommissions.")
+ .version("4.0.0")
+ .booleanConf
+ .createWithDefault(Utils.isTesting)
+
+ val SHUFFLE_DEPENDENCY_FILE_CLEANUP_ENABLED =
+ buildConf("spark.sql.shuffleDependency.fileCleanup.enabled")
+ .doc("When enabled, shuffle dependency files will be cleaned up at the
end of SQL " +
Review Comment:
```suggestion
.doc("When enabled, shuffle files will be cleaned up at the end of SQL
" +
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]