Skip to content
Snippets Groups Projects
Commit 18c77cb5 authored by Patrick Wendell's avatar Patrick Wendell Committed by Aaron Davidson
Browse files

HOTFIX: Add no-arg SparkContext constructor in Java


Self explanatory.

Author: Patrick Wendell <pwendell@gmail.com>

Closes #878 from pwendell/java-constructor and squashes the following commits:

2cc1605 [Patrick Wendell] HOTFIX: Add no-arg SparkContext constructor in Java

(cherry picked from commit b6d22af0)
Signed-off-by: default avatarAaron Davidson <aaron@databricks.com>
parent a3976a27
No related branches found
No related tags found
No related merge requests found
......@@ -41,6 +41,12 @@ import org.apache.spark.rdd.RDD
* [[org.apache.spark.api.java.JavaRDD]]s and works with Java collections instead of Scala ones.
*/
class JavaSparkContext(val sc: SparkContext) extends JavaSparkContextVarargsWorkaround {
/**
* Create a JavaSparkContext that loads settings from system properties (for instance, when
* launching with ./bin/spark-submit).
*/
def this() = this(new SparkContext())
/**
* @param conf a [[org.apache.spark.SparkConf]] object specifying Spark parameters
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment