public class PubSubSource<OUT> extends RichSourceFunction<OUT> implements ResultTypeQueryable<OUT>, ParallelSourceFunction<OUT>, CheckpointListener, ListCheckpointed<AcknowledgeIdsForCheckpoint<String>>
Modifier and Type | Class and Description |
---|---|
static class |
PubSubSource.DeserializationSchemaBuilder
Part of
PubSubSource.PubSubSourceBuilder to set required fields. |
static interface |
PubSubSource.ProjectNameBuilder<OUT>
Part of
PubSubSource.PubSubSourceBuilder to set required fields. |
static class |
PubSubSource.PubSubSourceBuilder<OUT>
Builder to create PubSubSource.
|
static interface |
PubSubSource.SubscriptionNameBuilder<OUT>
Part of
PubSubSource.PubSubSourceBuilder to set required fields. |
SourceFunction.SourceContext<T>
Modifier and Type | Field and Description |
---|---|
protected AcknowledgeOnCheckpoint<String> |
acknowledgeOnCheckpoint |
protected org.apache.flink.streaming.connectors.gcp.pubsub.PubSubSource.AcknowledgeOnCheckpointFactory |
acknowledgeOnCheckpointFactory |
protected com.google.auth.Credentials |
credentials |
protected PubSubDeserializationSchema<OUT> |
deserializationSchema |
protected boolean |
isRunning |
protected int |
messagePerSecondRateLimit |
protected PubSubSubscriberFactory |
pubSubSubscriberFactory |
protected FlinkConnectorRateLimiter |
rateLimiter |
protected PubSubSubscriber |
subscriber |
Modifier and Type | Method and Description |
---|---|
void |
cancel()
Cancels the source.
|
TypeInformation<OUT> |
getProducedType()
Gets the data type (as a
TypeInformation ) produced by this function or input format. |
static PubSubSource.DeserializationSchemaBuilder |
newBuilder() |
void |
notifyCheckpointComplete(long checkpointId)
This method is called as a notification once a distributed checkpoint has been completed.
|
void |
open(Configuration configuration)
Initialization method for the function.
|
void |
restoreState(List<AcknowledgeIdsForCheckpoint<String>> state)
Restores the state of the function or operator to that of a previous checkpoint.
|
void |
run(SourceFunction.SourceContext<OUT> sourceContext)
Starts the source.
|
List<AcknowledgeIdsForCheckpoint<String>> |
snapshotState(long checkpointId,
long timestamp)
Gets the current state of the function.
|
close, getIterationRuntimeContext, getRuntimeContext, setRuntimeContext
protected final PubSubDeserializationSchema<OUT> deserializationSchema
protected final PubSubSubscriberFactory pubSubSubscriberFactory
protected final com.google.auth.Credentials credentials
protected final org.apache.flink.streaming.connectors.gcp.pubsub.PubSubSource.AcknowledgeOnCheckpointFactory acknowledgeOnCheckpointFactory
protected final FlinkConnectorRateLimiter rateLimiter
protected final int messagePerSecondRateLimit
protected transient AcknowledgeOnCheckpoint<String> acknowledgeOnCheckpoint
protected transient PubSubSubscriber subscriber
protected transient volatile boolean isRunning
public void open(Configuration configuration) throws Exception
RichFunction
The configuration object passed to the function can be used for configuration and initialization. The configuration contains all parameters that were configured on the function in the program composition.
public class MyFilter extends RichFilterFunction<String> {
private String searchString;
public void open(Configuration parameters) {
this.searchString = parameters.getString("foo");
}
public boolean filter(String value) {
return value.equals(searchString);
}
}
By default, this method does nothing.
open
in interface RichFunction
open
in class AbstractRichFunction
configuration
- The configuration containing the parameters attached to the contract.Exception
- Implementations may forward exceptions, which are caught by the runtime. When the
runtime catches an exception, it aborts the task and lets the fail-over logic
decide whether to retry the task execution.Configuration
public void run(SourceFunction.SourceContext<OUT> sourceContext) throws Exception
SourceFunction
SourceFunction.SourceContext
emit
elements.
Sources that implement CheckpointedFunction
must lock on the checkpoint lock (using a synchronized block) before updating internal
state and emitting elements, to make both an atomic operation:
public class ExampleCountSource implements SourceFunction<Long>, CheckpointedFunction {
private long count = 0L;
private volatile boolean isRunning = true;
private transient ListState<Long> checkpointedCount;
public void run(SourceContext<T> ctx) {
while (isRunning && count < 1000) {
// this synchronized block ensures that state checkpointing,
// internal state updates and emission of elements are an atomic operation
synchronized (ctx.getCheckpointLock()) {
ctx.collect(count);
count++;
}
}
}
public void cancel() {
isRunning = false;
}
public void initializeState(FunctionInitializationContext context) {
this.checkpointedCount = context
.getOperatorStateStore()
.getListState(new ListStateDescriptor<>("count", Long.class));
if (context.isRestored()) {
for (Long count : this.checkpointedCount.get()) {
this.count = count;
}
}
}
public void snapshotState(FunctionSnapshotContext context) {
this.checkpointedCount.clear();
this.checkpointedCount.add(count);
}
}
run
in interface SourceFunction<OUT>
sourceContext
- The context to emit elements to and for accessing locks.Exception
public void cancel()
SourceFunction
SourceFunction.run(SourceContext)
method. The implementation needs to ensure that the
source will break out of that loop after this method is called.
A typical pattern is to have an "volatile boolean isRunning"
flag that is set to
false
in this method. That flag is checked in the loop condition.
When a source is canceled, the executing thread will also be interrupted
(via Thread.interrupt()
). The interruption happens strictly after this
method has been called, so any interruption handler can rely on the fact that
this method has completed. It is good practice to make any flags altered by
this method "volatile", in order to guarantee the visibility of the effects of
this method to any interruption handler.
cancel
in interface SourceFunction<OUT>
public TypeInformation<OUT> getProducedType()
ResultTypeQueryable
TypeInformation
) produced by this function or input format.getProducedType
in interface ResultTypeQueryable<OUT>
public static PubSubSource.DeserializationSchemaBuilder newBuilder()
public void notifyCheckpointComplete(long checkpointId) throws Exception
CheckpointListener
notifyCheckpointComplete
in interface CheckpointListener
checkpointId
- The ID of the checkpoint that has been completed.Exception
public List<AcknowledgeIdsForCheckpoint<String>> snapshotState(long checkpointId, long timestamp) throws Exception
ListCheckpointed
The returned list should contain one entry for redistributable unit of state. See
the class docs
for an illustration how list-style state
redistribution works.
As special case, the returned list may be null or empty (if the operator has no state) or it may contain a single element (if the operator state is indivisible).
snapshotState
in interface ListCheckpointed<AcknowledgeIdsForCheckpoint<String>>
checkpointId
- The ID of the checkpoint - a unique and monotonously increasing value.timestamp
- The wall clock timestamp when the checkpoint was triggered by the master.Exception
- Thrown if the creation of the state object failed. This causes the
checkpoint to fail. The system may decide to fail the operation (and trigger
recovery), or to discard this checkpoint attempt and to continue running
and to try again with the next checkpoint attempt.public void restoreState(List<AcknowledgeIdsForCheckpoint<String>> state) throws Exception
ListCheckpointed
The given state list will contain all the sub states that this parallel
instance of the function needs to handle. Refer to the class docs
for an illustration how list-style state redistribution works.
Important: When implementing this interface together with RichFunction
,
then the restoreState()
method is called before RichFunction.open(Configuration)
.
restoreState
in interface ListCheckpointed<AcknowledgeIdsForCheckpoint<String>>
state
- The state to be restored as a list of atomic sub-states.Exception
- Throwing an exception in this method causes the recovery to fail.
The exact consequence depends on the configured failure handling strategy,
but typically the system will re-attempt the recovery, or try recovering
from a different checkpoint.Copyright © 2014–2020 The Apache Software Foundation. All rights reserved.