Hi.
Is there way to specify number of executors I want while doing any OLAP using JanusGraph 2.1 ?
I've tried following, but in all cases, my OLAP job takes up all the executos available.
spark.num.executors=5 [Doesn't work]
spark.executor.instances=5 [Desnt work]
spark.extraJavaOptions=-Dnum-executors=5 [ Doesn't work].
Ideally we have a Spark Computing env setup with 12 executors, each with 7 cores, and 15gb each.
We want to use 5 executors, with each executor core 6, and each executor 15gb. How do I specify this?
I've been able to add and make following work:
spark.executor.memory=15g
spark.executor.cores=6
How do I control number of executors or that is available only in yarn mode?
Thanks