File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
core/src/main/scala/org/apache/spark/rdd Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -92,9 +92,9 @@ class NewHadoopRDD[K, V](
9292 // one job modifies a configuration while another reads it (SPARK-2546, SPARK-10611). This
9393 // problem occurs somewhat rarely because most jobs treat the configuration as though it's
9494 // immutable. One solution, implemented here, is to clone the Configuration object.
95- // Unfortunately, this clone can be very expensive. To avoid unexpected performance regressions
96- // for workloads and Hadoop versions that do not suffer from these thread-safety issues, this
97- // cloning is disabled by default.
95+ // Unfortunately, this clone can be very expensive. To avoid unexpected performance
96+ // regressions for workloads and Hadoop versions that do not suffer from these thread-safety
97+ // issues, this cloning is disabled by default.
9898 NewHadoopRDD .CONFIGURATION_INSTANTIATION_LOCK .synchronized {
9999 logDebug(" Cloning Hadoop Configuration" )
100100 new Configuration (conf)
You can’t perform that action at this time.
0 commit comments