We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3da440b commit 0c2ce85Copy full SHA for 0c2ce85
core/src/main/scala/org/apache/spark/internal/config/package.scala
@@ -1182,10 +1182,11 @@ package object config {
1182
1183
private[spark] val IO_FILE_UNSPLITTABLE_WARNING_THRESHOLD =
1184
ConfigBuilder("spark.io.file.unsplittable.warning.threshold")
1185
- .doc("When spark loading one single large unsplittable file, if file size exceed this " +
1186
- "threshold, then log warning.")
1187
- .longConf
1188
- .createWithDefault(1024 * 1024 * 1024)
+ .internal()
+ .doc("When spark loading one single large unsplittable file, if file size exceed this " +
+ "threshold, then log warning.")
+ .longConf
1189
+ .createWithDefault(1024 * 1024 * 1024)
1190
1191
private[spark] val EVENT_LOG_COMPRESSION_CODEC =
1192
ConfigBuilder("spark.eventLog.compression.codec")
0 commit comments