1. 程式人生 > >[Spark]What's the difference between spark.sql.shuffle.partitions and spark.default.parallelism?

[Spark]What's the difference between spark.sql.shuffle.partitions and spark.default.parallelism?

reduce exp nor sig ber assign set -s reg

From the answer here,

spark.sql.shuffle.partitions configures the number of partitions that are used when shuffling data for joins or aggregations.

spark.default.parallelism is the default number of partitions in RDDs returned by transformations like join, reduceByKey, and parallelize when not set explicitly by the user. Note that spark.default.parallelism seems to only be working for raw RDD and is ignored when working with dataframes.

If the task you are performing is not a join or aggregation and you are working with dataframes then setting these will not have any effect. You could, however, set the number of partitions yourself by calling df.repartition(numOfPartitions) (don‘t forget to assign it to a new val) in your code.

[Spark]What's the difference between spark.sql.shuffle.partitions and spark.default.parallelism?