You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@spark.apache.org by david <da...@free.fr> on 2014/09/24 10:29:34 UTC

sortByKey trouble

Hi,

  Does anybody know how to use sortbykey in scala on a RDD like  :

  val rddToSave = file.map(l => l.split("\\|")).map(r => (r(34)+"-"+r(3),
r(4), r(10), r(12)))

  besauce, i received ann error "sortByKey is not a member of
ord.apache.spark.rdd.RDD[(String,String,String,String)].  

What i try do do is sort on the first element.


Thank's

  





--
View this message in context: http://apache-spark-user-list.1001560.n3.nabble.com/sortByKey-trouble-tp14989.html
Sent from the Apache Spark User List mailing list archive at Nabble.com.

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


Re: sortByKey trouble

Posted by Zhan Zhang <zz...@hortonworks.com>.
Try this
Import org.apache.spark.SparkContext._

Thanks.

Zhan Zhang

On Sep 24, 2014, at 6:13 AM, david <da...@free.fr> wrote:

> thank's
> 
> i've already try this solution but it does not compile (in Eclipse)
> 
>  I'm surprise to see that in Spark-shell, sortByKey works fine on 2
> solutions :
> 
>   (String,String,String,String)
>   (String,(String,String,String))
> 
> 
> 
> 
> 
> --
> View this message in context: http://apache-spark-user-list.1001560.n3.nabble.com/sortByKey-trouble-tp14989p15002.html
> Sent from the Apache Spark User List mailing list archive at Nabble.com.
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@spark.apache.org
> For additional commands, e-mail: user-help@spark.apache.org
> 


-- 
CONFIDENTIALITY NOTICE
NOTICE: This message is intended for the use of the individual or entity to 
which it is addressed and may contain information that is confidential, 
privileged and exempt from disclosure under applicable law. If the reader 
of this message is not the intended recipient, you are hereby notified that 
any printing, copying, dissemination, distribution, disclosure or 
forwarding of this communication is strictly prohibited. If you have 
received this communication in error, please contact the sender immediately 
and delete it from your system. Thank You.

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


Re: sortByKey trouble

Posted by david <da...@free.fr>.
thank's

 i've already try this solution but it does not compile (in Eclipse)

  I'm surprise to see that in Spark-shell, sortByKey works fine on 2
solutions :

   (String,String,String,String)
   (String,(String,String,String))





--
View this message in context: http://apache-spark-user-list.1001560.n3.nabble.com/sortByKey-trouble-tp14989p15002.html
Sent from the Apache Spark User List mailing list archive at Nabble.com.

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


Re: sortByKey trouble

Posted by Liquan Pei <li...@gmail.com>.
Hi David,

Can you try val rddToSave = file.map(l => l.split("\\|")).map(r =>
(r(34)+"-"+r(3), (r(4), r(10), r(12)))) ?

That should work.

Liquan



On Wed, Sep 24, 2014 at 1:29 AM, david <da...@free.fr> wrote:

> Hi,
>
>   Does anybody know how to use sortbykey in scala on a RDD like  :
>
>   val rddToSave = file.map(l => l.split("\\|")).map(r => (r(34)+"-"+r(3),
> r(4), r(10), r(12)))
>
>   besauce, i received ann error "sortByKey is not a member of
> ord.apache.spark.rdd.RDD[(String,String,String,String)].
>
> What i try do do is sort on the first element.
>
>
> Thank's
>
>
>
>
>
>
>
> --
> View this message in context:
> http://apache-spark-user-list.1001560.n3.nabble.com/sortByKey-trouble-tp14989.html
> Sent from the Apache Spark User List mailing list archive at Nabble.com.
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@spark.apache.org
> For additional commands, e-mail: user-help@spark.apache.org
>
>


-- 
Liquan Pei
Department of Physics
University of Massachusetts Amherst

RE: sortByKey trouble

Posted by "Shao, Saisai" <sa...@intel.com>.
Hi,

SortByKey is only for RDD[(K, V)], each tuple can only has two members, Spark will sort with first member, if you want to use sortByKey, you have to change your RDD[(String, String, String, String)] into RDD[(String, (String, String, String))].

Thanks
Jerry

-----Original Message-----
From: david [mailto:david4it@free.fr] 
Sent: Wednesday, September 24, 2014 4:30 PM
To: user@spark.incubator.apache.org
Subject: sortByKey trouble

Hi,

  Does anybody know how to use sortbykey in scala on a RDD like  :

  val rddToSave = file.map(l => l.split("\\|")).map(r => (r(34)+"-"+r(3), r(4), r(10), r(12)))

  besauce, i received ann error "sortByKey is not a member of ord.apache.spark.rdd.RDD[(String,String,String,String)].  

What i try do do is sort on the first element.


Thank's

  





--
View this message in context: http://apache-spark-user-list.1001560.n3.nabble.com/sortByKey-trouble-tp14989.html
Sent from the Apache Spark User List mailing list archive at Nabble.com.

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


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