Bolts must implement the Bolt
interface, which has the following methods.
class Bolt(BaseBolt):
def initialize(self, config, context)
def process(self, tup)
The
initialize()
method is called when the bolt is first initialized and provides the bolt with the executing environment. It is equivalent toprepare()
method of theIBolt
interface in Java. Note that you should not override__init__()
constructor ofBolt
class for initialization of custom variables, since it is used internally by HeronInstance; instead,initialize()
should be used to initialize any custom variables or connections to databases.The
process()
method is called to process a single inputtup
ofHeronTuple
type. This method is equivalent toexecute()
method ofIBolt
interface in Java. You can useself.emit()
method to emit the result, as described below.
In addition, BaseBolt
class provides you with the following methods.
class BaseBolt:
def emit(self, tup, stream="default", anchors=None, direct_task=None, need_task_ids=False)
def ack(self, tup)
def fail(self, tup)
@staticmethod
def is_tick(tup)
def log(self, message, level=None)
@classmethod
def spec(cls, name=None, inputs=None, par=1, config=None)
The
emit()
method is used to emit a giventup
, which can be alist
ortuple
of any python objects. Unlike the Java implementation,OutputCollector
doesn’t exist in the Python implementation.The
ack()
method is used to indicate that processing of a tuple has succeeded.The
fail()
method is used to indicate that processing of a tuple has failed.The
is_tick()
method returns whether a giventup
ofHeronTuple
type is a tick tuple.The
log()
method is used to log an arbitrary message, and its outputs are redirected to the log file of the component. It accepts an optional argument which specifies the logging level. By default, its logging level isinfo
.Warning: due to internal issue, you should NOT output anything to
sys.stdout
orsys.stderr
; instead, you should use this method to log anything you want.In order to declare the output fields of this bolt, you need to place a class attribute
outputs
as a list ofstr
orStream
. Note that unlike Java,declareOutputFields
does not exist in the Python implementation. Moreover, you can optionally specify the output fields from thespec()
method from theoptional_outputs
. For further information, refer to this page.You will use the
spec()
method to define a topology and specify the location of this bolt within the topology, as well as to give component-specific configurations. For the usage of this method, refer to this page.
For further information about the API, refer to the Streamparse API documentation,
although there are some methods in the Streamparse API that are not supported or are
invalid in Heron. Additionally, there are a number of example implementations
under heron/examples/src/python
directory.
The following is an example implementation of a bolt in Python.
from collections import Counter
from pyheron import Bolt
class CountBolt(Bolt):
outputs = ["word", "count"]
def initialize(self, config, context):
self.counter = Counter()
def process(self, tup):
word = tup.values[0]
self.counter[word] += 1
self.emit([word, self.counter[word]])