parthchandra commented on a change in pull request #24865: [SPARK-27100][SQL]
dag-scheduler-event-loop" java.lang.StackOverflowError
URL: https://github.com/apache/spark/pull/24865#discussion_r294562285
##########
File path:
sql/core/src/main/scala/org/apache/spark/sql/execution/DataSourceScanExec.scala
##########
@@ -381,7 +381,7 @@ case class FileSourceScanExec(
fsRelation: HadoopFsRelation): RDD[InternalRow] = {
logInfo(s"Planning with ${bucketSpec.numBuckets} buckets")
val filesGroupedToBuckets =
- selectedPartitions.flatMap { p =>
+ selectedPartitions.toArray.flatMap { p =>
Review comment:
Could `filePartitions` be a large list and run into the same serialization
issue if we don't convert it into an array? Doesn't look likely, but I'd like
to be sure.
Also, @DBTsai suggested ` @transient private lazy val selectedPartitions:
Array[PartitionDirectory] = {`. Do we want to do that?
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]