如何处理多键值但减少第一个键?

时间:2019-02-17 14:28:52

标签: pyspark

如果我有像

这样的键值对
('a',1),v1
('a',2),v2
('a',3),v3
('b',1),v4
('b',2),v5
('b',3),v6

我如何获得

('a',1),v1
('a',2),v2+v1
('a',3),v3+v2+v1
('b',1),v4
('b',2),v5+v4
('b',3),v6+v4+v5

使用

flatmap().reducebykey()

0 个答案:

没有答案