Hello patelmiteshn,

This could do the trick :

rdd1 = rdd.sortBy(lambda x: x[1], ascending=False)
rdd2 = rdd1.zipWithIndex().filter(tuple => tuple._2 < 10000)
rdd2.saveAsTextFile() 




--
View this message in context: 
http://apache-spark-user-list.1001560.n3.nabble.com/extracting-the-top-100-values-from-an-rdd-and-save-it-as-text-file-tp24937p24948.html
Sent from the Apache Spark User List mailing list archive at Nabble.com.

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

Reply via email to