Skip to content

Commit

Permalink
[FIX] - workaround for aws emr spark 3.4
Browse files Browse the repository at this point in the history
workaround for Amazon EMR version: emr-6.15.0 and Spark 3.4.1 custom implementation
  • Loading branch information
ceppelli authored May 10, 2024
1 parent bc6b2cd commit cc2cd52
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ trait ShimCometScanExec {
readSchema: StructType,
options: ParquetOptions): FileScanRDD =
classOf[FileScanRDD].getDeclaredConstructors
// workaround for aws spark 3.4 implementation
.filter(c => List(3,5,6).contains(c.getParameterCount()) )
.map { c =>
c.getParameterCount match {
case 3 => c.newInstance(sparkSession, readFunction, filePartitions)
Expand Down

0 comments on commit cc2cd52

Please sign in to comment.