public interface ISpout
extends java.io.Serializable
If a tuple fails to be fully process within the configured timeout for the
topology (see Config
), Storm will send a fail message to the spout
for the message.
When a Spout emits a tuple, it can tag the tuple with a message id. The message id can be any type. When Storm acks or fails a message, it will pass back to the spout the same message id to identify which tuple it's referring to. If the spout leaves out the message id, or sets it to null, then Storm will not track the message and the spout will not receive any ack or fail callbacks for the message.
Storm executes ack, fail, and nextTuple all on the same thread. This means that an implementor of an ISpout does not need to worry about concurrency issues between those methods. However, it also means that an implementor must ensure that nextTuple is non-blocking: otherwise the method could await acks and fails that are pending to be processed.
Modifier and Type | Method and Description |
---|---|
void |
ack(java.lang.Object msgId)
Storm has determined that the tuple emitted by this spout with the msgId identifier
has been fully processed.
|
void |
activate()
Called when a spout has been activated out of a deactivated mode.
|
void |
close()
Called when an ISpout is going to be shutdown.
|
void |
deactivate()
Called when a spout has been deactivated.
|
void |
fail(java.lang.Object msgId)
The tuple emitted by this spout with the msgId identifier has failed to be
fully processed.
|
void |
nextTuple()
When this method is called, Storm is requesting that the Spout emit tuples to the
output collector.
|
void |
open(java.util.Map<java.lang.String,java.lang.Object> conf,
TopologyContext context,
SpoutOutputCollector collector)
Called when a task for this component is initialized within a worker on the cluster.
|
void open(java.util.Map<java.lang.String,java.lang.Object> conf, TopologyContext context, SpoutOutputCollector collector)
This includes the:
conf
- The Storm configuration for this spout. 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 spout. Tuples can be emitted at any time, including the open and close methods. The collector is thread-safe and should be saved as an instance variable of this spout object.void close()
The one context where close is guaranteed to be called is a topology is killed when running Storm in simulator.
void activate()
void deactivate()
void nextTuple()
void ack(java.lang.Object msgId)
void fail(java.lang.Object msgId)