hello sir,

 i want to sort the following table as per the *count*

value count
52639 22
75243 4
13 55
56 5
185463 45
324364 32


So first i convert the my dataframe to to rdd to sort the table.

val k = table.rdd

convert the rdd array into key value pair.

val s =k.take(6)

val rdd = s.map(x=> x(1),(x(0)).
rdd.sortByKey



this is my all operations i did to sort the table.

Please can you suggest me the better way to sort the table

Reply via email to