public interface ITransactionalSpout<T> extends IComponent
Modifier and Type | Interface and Description |
---|---|
static interface |
ITransactionalSpout.Coordinator<X> |
static interface |
ITransactionalSpout.Emitter<X> |
Modifier and Type | Method and Description |
---|---|
ITransactionalSpout.Coordinator<T> |
getCoordinator(Map conf,
TopologyContext context)
The coordinator for a TransactionalSpout runs in a single thread and indicates when batches of tuples should be emitted and when transactions should commit.
|
ITransactionalSpout.Emitter<T> |
getEmitter(Map conf,
TopologyContext context)
The emitter for a TransactionalSpout runs as many tasks across the cluster.
|
declareOutputFields, getComponentConfiguration
ITransactionalSpout.Coordinator<T> getCoordinator(Map conf, TopologyContext context)
The coordinator for a TransactionalSpout runs in a single thread and indicates when batches of tuples should be emitted and when transactions should commit. The Coordinator that you provide in a TransactionalSpout provides metadata for each transaction so that the transactions can be replayed.
ITransactionalSpout.Emitter<T> getEmitter(Map conf, TopologyContext context)
The emitter for a TransactionalSpout runs as many tasks across the cluster. Emitters are responsible for emitting batches of tuples for a transaction and must ensure that the same batch of tuples is always emitted for the same transaction id.
Copyright © 2019 The Apache Software Foundation. All Rights Reserved.