Using OSS Delta, hopefully this is the right forum for this question:
Hey all, I could use some help as I feel like Iām doing something wrong here.
Iām streaming from Kafka -> Delta on EMR/S3FS, and am seeing ever-increasingly slow batches.When looking at the stages, it looks like reading the last delta-snapshot file in is taking upwards of 15 seconds for only a 30mb file, which pushes my batch times into the 20+ second range.
It also is constantly writing the results of that stage to Shuffle. All this work seems to only be picked up by 1 executor as well, which I find interesting. Is this a known limitation of delta, or is there some config I can tune to reduce the impact or parallelize reading the log file? Or is there something obvious I'm missing about this?
Let me know if thereās more info I can provide. Iām relatively new to delta so Iām hoping Iām just missing something obvious.Spark config as follows:
```
SparkConf().setAppName(NAME)\
.set('spark.scheduler.mode','FAIR') \
.set("spark.executor.cores", exec_cores) \
.set("spark.dynamicAllocation.enabled", "true") \
.set('spark.sql.files.maxPartitionBytes', '1073741824') \
.set('spark.dynamicAllocation.minExecutors','3')\
.set('spark.driver.maxResultSize', 0) \
.set('spark.executor.heartbeatInterval', '25000')\
.set('spark.databricks.delta.vacuum.parallelDelete.enabled','true')\
.set('spark.databricks.delta.retentionDurationCheck.enabled','false')\
.set('spark.databricks.delta.checkpoint.partSize','1000000')\
.set('spark.databricks.delta.snapshotPartitions','150')
```