This is the already asked question but I could not understand the answers properly.
I have two RDDs with same number of columns and same number of records
RDD1(col1,col2,col3)
and
RDD2(colA,colB,colC)
I need to join them as following :
RDD_FINAL(col1,col2,col3,colA,colB,colC)
There is no key to perform a join between records but they are in order which means the first record of RDD1 is corresponded to first record of RDD2.