You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Apache Spark (JIRA)" <ji...@apache.org> on 2016/06/05 21:54:59 UTC

[jira] [Assigned] (SPARK-15773) Avoid creating local variable `sc` in examples if possible

     [ https://issues.apache.org/jira/browse/SPARK-15773?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Apache Spark reassigned SPARK-15773:
------------------------------------

    Assignee:     (was: Apache Spark)

> Avoid creating local variable `sc` in examples if possible
> ----------------------------------------------------------
>
>                 Key: SPARK-15773
>                 URL: https://issues.apache.org/jira/browse/SPARK-15773
>             Project: Spark
>          Issue Type: Task
>          Components: Examples
>            Reporter: Dongjoon Hyun
>            Priority: Minor
>
> Instead of using local variable `sc` like the following example, this issue uses `spark.sparkContext`. This makes examples more concise, and also fixes some misleading, i.e., creating SparkContext from SparkSession.
> {code}
> -    println("Creating SparkContext")
> -    val sc = spark.sparkContext
> -
>      println("Writing local file to DFS")
>      val dfsFilename = dfsDirPath + "/dfs_read_write_test"
> -    val fileRDD = sc.parallelize(fileContents)
> +    val fileRDD = spark.sparkContext.parallelize(fileContents)
> {code}
> This will change 12 files (+30 lines, -52 lines).



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@spark.apache.org
For additional commands, e-mail: issues-help@spark.apache.org