multiple spark jobs run concurrently -
i have spark run in localhost, , want read data 3 topics kafka using job spark, executed job script shell using command line parameter
/usr/local/spark/bin/spark-submit --class "org.apache.sparkwordcount.sparkcassandra" --master spark://ubuntu:7077 '/home/darif/testproject/wordcounts/target/wordcounts-1.0-snapshot.jar' test1 & /usr/local/spark/bin/spark-submit --class "org.apache.sparkwordcount.sparkcassandra" --master spark://ubuntu:7077 '/home/darif/testproject/wordcounts/target/wordcounts-1.0-snapshot.jar' test2 & /usr/local/spark/bin/spark-submit --class "org.apache.sparkwordcount.sparkcassandra" --master spark://ubuntu:7077 '/home/darif/testproject/wordcounts/target/wordcounts-1.0-snapshot.jar' test3 & but 1 of works, , 2 athers in state "wainting"
can tell problem here please? thansk
Comments
Post a Comment