-1
我有一個RDD像這樣(所有的數字都是智力)鍵的組合:如何生成值對Apache的火花(斯卡拉)
(2,List(2,2,7))
(7,List(9,7,9))
(9,List(2,7,9))
如何產生的RDD使得對於每個列表中,我們擁有密鑰的所有可能性:
(2,List(2,2,7))
(7,List(2,2,7))
(9,List(2,2,7))
(2,List(9,7,9))
(7,List(9,7,9))
(9,List(9,7,9))
(2,List(2,7,9))
(7,List(2,7,9))
(9,List(2,7,9))
跟進,我需要計算每一行的計數時,關鍵值等於在列表中的值,例如,
(2,List(2,2,7)) results in (2, 2) since there are two 2s in the list
(7,List(2,2,7)) results in (7, 1) since there is one 7 in the list