@Internal public class ContinuousFileMonitoringFunction<OUT> extends RichSourceFunction<TimestampedFileInputSplit> implements CheckpointedFunction
FileInputFormat and,
depending on the FileProcessingMode and the FilePathFilter, it is responsible
for:
splits corresponding to those files.
The splits to be read are forwarded to the downstream ContinuousFileReaderOperator
which can have parallelism greater than one.
IMPORTANT NOTE: Splits are forwarded downstream for reading in ascending modification time order, based on the modification time of the files they belong to.
SourceFunction.SourceContext<T>| 限定符和类型 | 字段和说明 |
|---|---|
static long |
MIN_MONITORING_INTERVAL
The minimum interval allowed between consecutive path scans.
|
| 构造器和说明 |
|---|
ContinuousFileMonitoringFunction(org.apache.flink.api.common.io.FileInputFormat<OUT> format,
FileProcessingMode watchType,
int readerParallelism,
long interval) |
ContinuousFileMonitoringFunction(org.apache.flink.api.common.io.FileInputFormat<OUT> format,
FileProcessingMode watchType,
int readerParallelism,
long interval,
long globalModificationTime) |
| 限定符和类型 | 方法和说明 |
|---|---|
void |
cancel()
Cancels the source.
|
void |
close() |
long |
getGlobalModificationTime() |
void |
initializeState(org.apache.flink.runtime.state.FunctionInitializationContext context)
This method is called when the parallel function instance is created during distributed
execution.
|
void |
open(org.apache.flink.configuration.Configuration parameters) |
void |
run(SourceFunction.SourceContext<TimestampedFileInputSplit> context)
Starts the source.
|
void |
snapshotState(org.apache.flink.runtime.state.FunctionSnapshotContext context)
This method is called when a snapshot for a checkpoint is requested.
|
public static final long MIN_MONITORING_INTERVAL
NOTE: Only applicable to the PROCESS_CONTINUOUSLY mode.
public ContinuousFileMonitoringFunction(org.apache.flink.api.common.io.FileInputFormat<OUT> format, FileProcessingMode watchType, int readerParallelism, long interval)
public ContinuousFileMonitoringFunction(org.apache.flink.api.common.io.FileInputFormat<OUT> format, FileProcessingMode watchType, int readerParallelism, long interval, long globalModificationTime)
@VisibleForTesting public long getGlobalModificationTime()
public void initializeState(org.apache.flink.runtime.state.FunctionInitializationContext context)
throws Exception
CheckpointedFunctioninitializeState 在接口中 CheckpointedFunctioncontext - the context for initializing the operatorException - Thrown, if state could not be created ot restored.public void open(org.apache.flink.configuration.Configuration parameters)
throws Exception
open 在接口中 org.apache.flink.api.common.functions.RichFunctionopen 在类中 org.apache.flink.api.common.functions.AbstractRichFunctionExceptionpublic void run(SourceFunction.SourceContext<TimestampedFileInputSplit> context) throws Exception
SourceFunctionSourceFunction.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 在接口中 SourceFunction<TimestampedFileInputSplit>context - The context to emit elements to and for accessing locks.Exceptionpublic void close()
throws Exception
close 在接口中 org.apache.flink.api.common.functions.RichFunctionclose 在类中 org.apache.flink.api.common.functions.AbstractRichFunctionExceptionpublic void cancel()
SourceFunctionSourceFunction.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 在接口中 SourceFunction<TimestampedFileInputSplit>public void snapshotState(org.apache.flink.runtime.state.FunctionSnapshotContext context)
throws Exception
CheckpointedFunctionFunctionInitializationContext when the Function was initialized, or offered now by FunctionSnapshotContext itself.snapshotState 在接口中 CheckpointedFunctioncontext - the context for drawing a snapshot of the operatorException - Thrown, if state could not be created ot restored.Copyright © 2014–2021 The Apache Software Foundation. All rights reserved.