blob: 510438dd61268e67b34fa27b4ea3b85a78b76c94 [file] [log] [blame]
# Copyright 2016 Twitter. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""module for filter bolt: FilterBolt"""
from heronpy.api.state.stateful_component import StatefulComponent
from heronpy.api.bolt.bolt import Bolt
from heronpy.api.component.component_spec import GlobalStreamId
from heronpy.api.stream import Grouping
from heronpy.dsl.streamlet import Streamlet
from heronpy.dsl.dslboltbase import DslBoltBase
# pylint: disable=unused-argument
class FilterBolt(Bolt, StatefulComponent, DslBoltBase):
"""FilterBolt"""
FUNCTION = 'function'
def init_state(self, stateful_state):
# Filter does not have any state
pass
def pre_save(self, checkpoint_id):
# Filter does not have any state
pass
def initialize(self, config, context):
self.logger.debug("FilterBolt's Component-specific config: \n%s" % str(config))
self.processed = 0
self.emitted = 0
if FilterBolt.FUNCTION in config:
self.filter_function = config[FilterBolt.FUNCTION]
if not callable(self.filter_function):
raise RuntimeError("Filter function has to be callable")
else:
raise RuntimeError("FilterBolt needs to be passed filter function")
def process(self, tup):
if self.filter_function(tup.values[0]):
self.emit([tup.values], stream='output')
self.emitted += 1
self.processed += 1
self.ack(tup)
# pylint: disable=protected-access
class FilterStreamlet(Streamlet):
"""FilterStreamlet"""
def __init__(self, filter_function, parents, stage_name=None, parallelism=None):
super(FilterStreamlet, self).__init__(parents=parents,
stage_name=stage_name, parallelism=parallelism)
self._filter_function = filter_function
def _calculate_inputs(self):
return {GlobalStreamId(self._parents[0]._stage_name, self._parents[0]._output) :
Grouping.SHUFFLE}
def _calculate_stage_name(self, existing_stage_names):
funcname = "filter-" + self._filter_function.__name__
if funcname not in existing_stage_names:
return funcname
else:
index = 1
newfuncname = funcname + str(index)
while newfuncname in existing_stage_names:
index = index + 1
newfuncname = funcname + str(index)
return newfuncname
def _build_this(self, builder):
if not callable(self._filter_function):
raise RuntimeError("filter function must be callable")
builder.add_bolt(self._stage_name, FilterBolt, par=self._parallelism,
inputs=self._calculate_inputs(),
config={FilterBolt.FUNCTION : self._filter_function})