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 2020/07/01 17:45:00 UTC

[jira] [Assigned] (SPARK-30010) Remove deprecated SparkConf.setAll(Traversable)

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

Apache Spark reassigned SPARK-30010:
------------------------------------

    Assignee: Apache Spark

> Remove deprecated SparkConf.setAll(Traversable)
> -----------------------------------------------
>
>                 Key: SPARK-30010
>                 URL: https://issues.apache.org/jira/browse/SPARK-30010
>             Project: Spark
>          Issue Type: Sub-task
>          Components: Spark Core
>    Affects Versions: 3.0.0
>            Reporter: Sean R. Owen
>            Assignee: Apache Spark
>            Priority: Minor
>
> SparkConf has the following overloads, which were also driven by Scala version compatibility:
> {code}
>   /** Set multiple parameters together */
>   def setAll(settings: Iterable[(String, String)]): SparkConf = {
>     settings.foreach { case (k, v) => set(k, v) }
>     this
>   }
>   /**
>    * Set multiple parameters together
>    */
>   @deprecated("Use setAll(Iterable) instead", "3.0.0")
>   def setAll(settings: Traversable[(String, String)]): SparkConf = {
>     settings.foreach { case (k, v) => set(k, v) }
>     this
>   }
> {code}
> However this becomes ambiguous in Scala 2.13. We'll just have to remove the second one.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

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