public class EventHubBolt extends BaseTickTupleAwareRichBolt
A bolt that writes event message to EventHub.
Modifier and Type | Field and Description |
---|---|
protected EventHubBoltConfig |
boltConfig |
protected OutputCollector |
collector |
protected com.microsoft.eventhubs.client.EventHubSender |
sender |
Constructor and Description |
---|
EventHubBolt(EventHubBoltConfig config) |
EventHubBolt(String connectionString,
String entityPath) |
EventHubBolt(String userName,
String password,
String namespace,
String entityPath,
boolean partitionMode) |
Modifier and Type | Method and Description |
---|---|
void |
declareOutputFields(OutputFieldsDeclarer declarer)
Declare the output schema for all the streams of this topology.
|
void |
prepare(Map config,
TopologyContext context,
OutputCollector collector)
Called when a task for this component is initialized within a worker on the cluster.
|
protected void |
process(Tuple tuple)
Process a single non-tick tuple of input.
|
execute, onTickTuple
cleanup
getComponentConfiguration
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
getComponentConfiguration
protected OutputCollector collector
protected com.microsoft.eventhubs.client.EventHubSender sender
protected EventHubBoltConfig boltConfig
public EventHubBolt(String userName, String password, String namespace, String entityPath, boolean partitionMode)
public EventHubBolt(EventHubBoltConfig config)
public void prepare(Map config, TopologyContext context, OutputCollector collector)
IBolt
Called when a task for this component is initialized within a worker on the cluster. It provides the bolt with the environment in which the bolt executes.
This includes the:
config
- The Storm configuration for this bolt. This is the configuration provided to the topology merged in with cluster configuration on this machine.context
- 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 void process(Tuple tuple)
BaseTickTupleAwareRichBolt
Process a single non-tick tuple of input. Implementation needs to handle ack manually. More details on IBolt.execute(Tuple)
.
process
in class BaseTickTupleAwareRichBolt
tuple
- The input tuple to be processed.public void declareOutputFields(OutputFieldsDeclarer declarer)
IComponent
Declare the output schema for all the streams of this topology.
declarer
- this is used to declare output stream ids, output fields, and whether or not each output stream is a direct streamCopyright © 2019 The Apache Software Foundation. All Rights Reserved.