Hi,
       I am looking for ways to share the sparkContext, meaning i need to
be able to perform multiple operations on the same spark context.

Below is code of a simple app i am testing

 def main(args: Array[String]) {
    println("Welcome to example application!")

    val sc = new SparkContext("spark://10.128.228.142:7077", "Simple App")

    println("Spark context created!")

    println("Creating RDD!")

Now once this context is created i want to access  this to submit multiple
jobs/operations

Any help is much appreciated

Thanks

Reply via email to