Hi,
I have the input RDD as a list of integers like [2,1,2,8,2,4.....100 integers],
[3,1,2,5,..........100 integers],
------------------------------------------
10000 items are present in the input RDD.
My aim is to create RDD of RDDs or List of RDDs for each column of the 10000 items. That means from a single RDD, I have to map so that I can get 100 RDDs each with 10000 items in it. Can Please help me write the mapping function or the code for the same in Java
Thank you