我正在使用spark streaming来连续读取kafka中的数据并执行一些统计信息。我每秒都在播放。
所以我有一秒批次(dstreams)。此dstream中的每个RDD都包含一个JSON。
这就是我的dstream:
kafkaStream = KafkaUtils.createDirectStream(stream, ['livedata'], {"metadata.broker.list": 'localhost:9092'})
raw = kafkaStream.map(lambda kafkaS: kafkaS[1])
clean = raw.map(lambda xs:json.loads(xs))
clean dstream中的一个RDD看起来像这样:
{u'epochseconds': 1458841451, u'protocol': 6, u'source_ip': u'192.168.1.124', \
u'destination_ip': u'149.154.167.120', u'datetime': u'2016-03-24 17:44:11', \
u'length': 1589, u'partitionkey': u'partitionkey', u'packetcount': 10,\
u'source_port': 43375, u'destination_port': 443}
我在每个DStream中都喜欢30-150个这样的RDD。
现在,我要做的是,获得'长度的总和'或者说' packetcounts'在每个DStream中。也就是说,
rdd1.length + rdd2.length + ... + LastRDDInTheOneSecondBatch.length
我尝试了什么:
add=clean.map(lambda xs: (xs['length'],1)).reduceByKey(lambda a, b: a+b)
我得到了什么:
频率而不是总和。
(17, 6)
(6, 24)
我应该怎么做总和而不是按键的频率?
答案 0 :(得分:1)
那是因为你使用'length'的值作为键,试试这个:
add=clean.map(lambda xs: ('Lenght',xs['length'])).reduceByKey(lambda a, b: a+b)
您必须为所有对(键,值)设置相同的键。值可以是字段长度或其他字段来聚合......