You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Dongjoon Hyun (JIRA)" <ji...@apache.org> on 2018/11/01 06:32:00 UTC

[jira] [Comment Edited] (SPARK-25906) spark-shell cannot handle `-i` option correctly

    [ https://issues.apache.org/jira/browse/SPARK-25906?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16671161#comment-16671161 ] 

Dongjoon Hyun edited comment on SPARK-25906 at 11/1/18 6:31 AM:
----------------------------------------------------------------

Hi, [~dbtsai] . Could you take a look at this?

This seems to be related to the recent shell changes. Only `-i` option has a problem. In the shell, it works. I guess this will be a known issue of 2.4.0
{code:java}
scala> spark.version
res1: String = 2.4.0

scala> case class Record(key: Int, value: String)
defined class Record

scala> spark.sparkContext.parallelize((1 to 2).map(i => Record(i, s"val_$i"))).toDF.show
+---+-----+
|key|value|
+---+-----+
| 1|val_1|
| 2|val_2|
+---+-----+{code}


was (Author: dongjoon):
Hi, [~dbtsai] . Could you take a look at this?

This seems to be related to the recent shell changes.

> spark-shell cannot handle `-i` option correctly
> -----------------------------------------------
>
>                 Key: SPARK-25906
>                 URL: https://issues.apache.org/jira/browse/SPARK-25906
>             Project: Spark
>          Issue Type: Bug
>          Components: SQL
>    Affects Versions: 2.4.0
>            Reporter: Dongjoon Hyun
>            Priority: Major
>
> This is a regression on Spark 2.4.0.
> *Spark 2.3.2*
> {code:java}
> $ cat test.scala
> spark.version
> case class Record(key: Int, value: String)
> spark.sparkContext.parallelize((1 to 2).map(i => Record(i, s"val_$i"))).toDF.show
> $ bin/spark-shell -i test.scala
> 18/10/31 23:22:43 WARN NativeCodeLoader: Unable to load native-hadoop library for your platform... using builtin-java classes where applicable
> Setting default log level to "WARN".
> To adjust logging level use sc.setLogLevel(newLevel). For SparkR, use setLogLevel(newLevel).
> Spark context Web UI available at http://localhost:4040
> Spark context available as 'sc' (master = local[*], app id = local-1541053368478).
> Spark session available as 'spark'.
> Loading test.scala...
> res0: String = 2.3.2
> defined class Record
> 18/10/31 23:22:56 WARN ObjectStore: Failed to get database global_temp, returning NoSuchObjectException
> +---+-----+
> |key|value|
> +---+-----+
> |  1|val_1|
> |  2|val_2|
> +---+-----+
> {code}
> *Spark 2.4.0 RC5*
> {code:java}
> $ bin/spark-shell -i test.scala
> 2018-10-31 23:23:14 WARN  NativeCodeLoader:62 - Unable to load native-hadoop library for your platform... using builtin-java classes where applicable
> Setting default log level to "WARN".
> To adjust logging level use sc.setLogLevel(newLevel). For SparkR, use setLogLevel(newLevel).
> Spark context Web UI available at http://localhost:4040
> Spark context available as 'sc' (master = local[*], app id = local-1541053400312).
> Spark session available as 'spark'.
> test.scala:17: error: value toDF is not a member of org.apache.spark.rdd.RDD[Record]
> Error occurred in an application involving default arguments.
>        spark.sparkContext.parallelize((1 to 2).map(i => Record(i, s"val_$i"))).toDF.show
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

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