yaooqinn commented on a change in pull request #34792:
URL: https://github.com/apache/spark/pull/34792#discussion_r761744454
##########
File path: core/src/main/scala/org/apache/spark/rdd/NewHadoopRDD.scala
##########
@@ -123,6 +123,10 @@ class NewHadoopRDD[K, V](
override def getPartitions: Array[Partition] = {
val inputFormat = inputFormatClass.getConstructor().newInstance()
+ // setMinPartitions below will call FileInputFormat.listStatus(), which
can be quite slow when
+ // traversing a large number of directories and files. Parallelize it.
+ _conf.setIfUnset(FileInputFormat.LIST_STATUS_NUM_THREADS,
+ Runtime.getRuntime.availableProcessors().toString)
Review comment:
yes,
https://github.com/apache/spark/blob/2d085c13b7f715dbff23dd1f81af45ff903d1a79/core/src/main/scala/org/apache/spark/rdd/WholeTextFileRDD.scala#L45-L46
https://github.com/apache/spark/blob/2d085c13b7f715dbff23dd1f81af45ff903d1a79/core/src/main/scala/org/apache/spark/rdd/BinaryFileRDD.scala#L42-L43
--
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]