public abstract class AbstractRedisBolt extends BaseTickTupleAwareRichBolt
Due to environment abstraction, AbstractRedisBolt provides JedisCommands which contains only single key operations.
Custom Bolts may want to follow this pattern:
JedisCommands jedisCommands = null; try { jedisCommand = getInstance(); // do some works } finally { if (jedisCommand != null) { returnInstance(jedisCommand); } }
Modifier and Type | Field and Description |
---|---|
protected OutputCollector |
collector |
Constructor and Description |
---|
AbstractRedisBolt(JedisClusterConfig config)
Constructor for Redis Cluster environment (JedisCluster).
|
AbstractRedisBolt(JedisPoolConfig config)
Constructor for single Redis environment (JedisPool).
|
Modifier and Type | Method and Description |
---|---|
void |
cleanup()
Called when an IBolt is going to be shutdown.
|
protected redis.clients.jedis.JedisCommands |
getInstance()
Borrow JedisCommands instance from container.
JedisCommands is an interface which contains single key operations.
|
void |
prepare(Map<String,Object> map,
TopologyContext topologyContext,
OutputCollector collector)
Called when a task for this component is initialized within a worker on the cluster.
|
protected void |
returnInstance(redis.clients.jedis.JedisCommands instance)
Return borrowed instance to container.
|
execute, onTickTuple, process
getComponentConfiguration
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
declareOutputFields, getComponentConfiguration
protected OutputCollector collector
public AbstractRedisBolt(JedisPoolConfig config)
config
- configuration for initializing JedisPoolpublic AbstractRedisBolt(JedisClusterConfig config)
config
- configuration for initializing JedisClusterpublic void prepare(Map<String,Object> map, TopologyContext topologyContext, OutputCollector collector)
This includes the:
map
- The Storm configuration for this bolt. This is the configuration provided to the topology merged in with cluster
configuration on this machine.topologyContext
- This object can be used to get information about this task's place within the topology, including the task id and
component id of this task, input and output information, etc.collector
- The collector is used to emit tuples from this bolt. Tuples can be emitted at any time, including the prepare and
cleanup methods. The collector is thread-safe and should be saved as an instance variable of this bolt object.protected redis.clients.jedis.JedisCommands getInstance()
JedisCommandsInstanceContainer.getInstance()
protected void returnInstance(redis.clients.jedis.JedisCommands instance)
instance
- borrowed objectpublic void cleanup()
IBolt
Config.SUPERVISOR_WORKER_SHUTDOWN_SLEEP_SECS
setting controls how long orderly shutdown is allowed to take.
There is no guarantee that cleanup will be called if shutdown is not orderly, or if the shutdown exceeds the time limit.
The one context where cleanup is guaranteed to be called is when a topology is killed when running Storm in local mode.
cleanup
in interface IBolt
cleanup
in class BaseRichBolt
Copyright © 2023 The Apache Software Foundation. All rights reserved.