Hi, When I submit a spark application like this:
./bin/spark-submit --class org.apache.spark.examples.SparkKMeans --deploy-mode client --master spark://karthik:7077 $SPARK_HOME/examples/*/scala-*/spark-examples-*.jar /k-means 4 0.001 Which part of the spark framework code deals with the name of the application?. Basically, I want to access the name of the application in the spark scheduler code. Can someone please tell me where I should look for the code that deals with the name of the currently executing application (say, SparkKMeans)? Thank you.
