Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

How to process list of RDDs (List[RDD]) (foreach Alternative)

avatar

How to process list of RDDs, foreach is sequential is there an alternative?

val param = RDD[(id, testNo, catId, value)] 

val key = param.map(f => (f.catId, f.testNo)).distinct.collect.toList.par

key.foreach( key => { 
// kmeans processing 
// get standard deviation 
// computation 
// etc... etc.. 
})
1 ACCEPTED SOLUTION

avatar

I use Futures and Await. Please see stackoverflow answer.

View solution in original post

1 REPLY 1

avatar

I use Futures and Await. Please see stackoverflow answer.