I am trying to have 2 steps run concurrent in EMR. However I always get the first step running and the second pending.
Part of my Yarn configuration is as follows:<
There are 2 modes of running application in AWS EMR Yarn:
If you use client mode then only one step will be in running state at a given time. However there is an option where in you can run more then 1 step concurrently.
try submitting your step in blow mode: spark-submit --master yarn --deploy-mode cluster --executor-memory 1G --num-executors 2 --driver-memory 1g --executor-cores 2 --conf spark.yarn.submit.waitAppCompletion=false --class WordCount.word.App /home/hadoop/word.jar
Hope this may of help for you.