我正在使用Python Storm库streamparse(利用下面的pystorm)。我在样板wordcount项目中调用Spouts fail()方法时遇到问题。根据我pystorm quickstart docs以及我读过的很多内容,在Bolt中调用失败(元组)应该会导致原始Spout失败。然而,即使我做了很少的修改,当它离开Spout时我总是得到一个Spout ack()。这是正确的行为,还是我需要更改设置/实例变量?
我在 streamparse 3.4.0 和风暴1.0.2 。
我的日志显示Bolt记录前的Spout ack()。
7609 [Thread-14-word_spout-executor[2 2]] INFO o.a.s.s.ShellSpout - ShellLog pid:35761, name:word_spout 2017-02-20 15:30:33,070 - pystorm.component.word_spout - acking w
hen I shouldnt tup_id: 3219
...
7611 [Thread-21] INFO o.a.s.t.ShellBolt - ShellLog pid:35760, name:count_bolt 2017-02-20 15:30:33,072 - pystorm.component.count_bolt - BOLT: receiving tup_id/count: 3219
word.py
from itertools import cycle
from streamparse import Spout
from streamparse import ReliableSpout
class WordSpout(ReliableSpout):
outputs = ['word']
def initialize(self, stormconf, context):
self.words = cycle(['dog', 'cat', 'zebra', 'elephant'])
self.count = 0
def next_tuple(self):
self.count += 1
word = next(self.words)
self.emit([str(self.count)], tup_id=self.count)
def ack(self, tup_id):
self.logger.info("acking when I shouldnt tup_id: {0}".format(tup_id))
def fail(self, tup_id):
self.logger.info("failing when I should tup_id: {0}".format(tup_id))
wordcount.py
import os
from collections import Counter
from streamparse import Bolt
class WordCountBolt(Bolt):
auto_ack = False
auto_fail = False
outputs = ['word', 'count']
def initialize(self, conf, ctx):
self.counter = Counter()
self.pid = os.getpid()
self.total = 0
def _increment(self, word, inc_by):
self.counter[word] += inc_by
self.total += inc_by
def process(self, tup):
word = tup.values[0]
self._increment(word, 10 if word == "dog" else 1)
# if self.total % 1000 == 0:
# self.logger.info("counted [{:,}] words [pid={}]".format(self.total,
# self.pid))
self.logger.info("BOLT: receiving tup_id/count: {0}".format(word))
# self.emit([word, self.counter[word]])
self.fail(tup)
重申一下,据我所知,我希望Bolt未能在Spout中引发失败,我也不会期待这么早的ack。我思考错了吗?