Spark 常见参数学习

Spark on Yarn

spark.yarn.maxAttempts研究 等价于yarn.resourcemanager.am.max-attempts,表示AM最多运行次数。设置为1,表示该AM失败后,Yarn不自动重启。

spark.yarn.max.executor.failures 一个Spark Application的executor累积失败次数达到该值,则该Spark Application失败。

 

Spark SQL

spark.sql.autoBroadcastJoinThreshold,默认10MB。若Join时一个表小于该阈值,则使用Broadcast Join

spark.sql.join.preferSortMergeJoin 选择Join的执行方式时,是否默认使用sort merge join

 

Spark Streaming

spark.streaming.receiver.maxRate 每个receiver每秒接收最大数据条数。限流参数。默认不设置。0或者负数表示不限流。

 

 

你可能感兴趣的:(Spark)