spark中 Dynamic Allocation 以及 num-executors 的问题

之前使用spark2.3.1的sparkstreaming时,发现 spark-submite 设置
num-executors10
时,没有起作用,spark作业的executors一度多大几百个,后来把dynamicAllocation.enabled false
,spark任务的executors才能限制在10。


过一段时间,使用spark 1.6的saprk-sql时发现有这么一个warn

WARN spark.SparkContext: Dynamic Allocation and num executors both set, thus dynamic allocation disabled.

难道说spark 1.6中优先级是动态分配(Dynamic Allocation)优先级低于num executors设置;而spark2.3.1中动态分配(Dynamic Allocation)优先级高于num executors设置吗?

你可能感兴趣的:(spark)