I am using a fair scheduler along with yarn
spark.scheduler.pool
is a local property to set to spark context while executing jobs, for a configured pool.
like..
val sc: SparkContext = ???
sc.setLocalProperty("spark.scheduler.pool", "myPool")
I was just wondering is there any possibility to set this local property from spark-submit
command like -Dspark.scheduler.pool=xxx