loukey-lj commented on a change in pull request #2434:
URL: https://github.com/apache/hudi/pull/2434#discussion_r559543672
##########
File path:
hudi-flink/src/main/java/org/apache/hudi/operator/InstantGenerateOperator.java
##########
@@ -102,65 +106,76 @@ public void open() throws Exception {
// Hadoop FileSystem
fs = FSUtils.getFs(cfg.targetBasePath, serializableHadoopConf.get());
- TaskContextSupplier taskContextSupplier = new
FlinkTaskContextSupplier(null);
+ if (isMain) {
+ TaskContextSupplier taskContextSupplier = new
FlinkTaskContextSupplier(null);
- // writeClient
- writeClient = new HoodieFlinkWriteClient(new
HoodieFlinkEngineContext(taskContextSupplier),
StreamerUtil.getHoodieClientConfig(cfg), true);
+ // writeClient
+ writeClient = new HoodieFlinkWriteClient(new
HoodieFlinkEngineContext(taskContextSupplier),
StreamerUtil.getHoodieClientConfig(cfg), true);
- // init table, create it if not exists.
- initTable();
+ // init table, create it if not exists.
+ initTable();
+
+ // create instant marker directory
+ createInstantMarkerDir();
+ }
}
@Override
public void prepareSnapshotPreBarrier(long checkpointId) throws Exception {
super.prepareSnapshotPreBarrier(checkpointId);
- // check whether the last instant is completed, if not, wait 10s and then
throws an exception
- if (!StringUtils.isNullOrEmpty(latestInstant)) {
- doCheck();
- // last instant completed, set it empty
- latestInstant = "";
- }
+ int indexOfThisSubtask = getRuntimeContext().getIndexOfThisSubtask();
+ String instantMarkerFileName = String.format("%d_%d_%d",
indexOfThisSubtask, checkpointId, batchSize.get());
+ Path path = new Path(new Path(HoodieTableMetaClient.AUXILIARYFOLDER_NAME,
INSTANT_MARKER_FOLDER_NAME), instantMarkerFileName);
+ // mk generate file by each subtask
+ fs.create(path, true);
+ LOG.info("Subtask [{}] at checkpoint [{}] created generate file [{}]",
indexOfThisSubtask, checkpointId, instantMarkerFileName);
+ if (isMain) {
+ boolean receivedDataInCurrentCP = checkReceivedData(checkpointId);
+ // check whether the last instant is completed, if not, wait 10s and
then throws an exception
+ if (!StringUtils.isNullOrEmpty(latestInstant)) {
+ doCheck();
+ // last instant completed, set it empty
+ latestInstant = "";
+ }
- // no data no new instant
- if (!bufferedRecords.isEmpty()) {
- latestInstant = startNewInstant(checkpointId);
+ // no data no new instant
+ if (receivedDataInCurrentCP) {
+ latestInstant = startNewInstant(checkpointId);
+ }
}
}
@Override
public void initializeState(StateInitializationContext context) throws
Exception {
- // instantState
- ListStateDescriptor<String> latestInstantStateDescriptor = new
ListStateDescriptor<String>("latestInstant", String.class);
- latestInstantState =
context.getOperatorStateStore().getListState(latestInstantStateDescriptor);
-
- // recordState
- ListStateDescriptor<StreamRecord> recordsStateDescriptor = new
ListStateDescriptor<StreamRecord>("recordsState", StreamRecord.class);
- recordsState =
context.getOperatorStateStore().getListState(recordsStateDescriptor);
-
- if (context.isRestored()) {
- Iterator<String> latestInstantIterator =
latestInstantState.get().iterator();
- latestInstantIterator.forEachRemaining(x -> latestInstant = x);
- LOG.info("InstantGenerateOperator initializeState get latestInstant
[{}]", latestInstant);
-
- Iterator<StreamRecord> recordIterator = recordsState.get().iterator();
- bufferedRecords.clear();
- recordIterator.forEachRemaining(x -> bufferedRecords.add(x));
+ isMain = getRuntimeContext().getIndexOfThisSubtask() == 0;
+ if (isMain) {
+ // instantState
+ ListStateDescriptor<String> latestInstantStateDescriptor = new
ListStateDescriptor<>("latestInstant", String.class);
+ latestInstantState =
context.getOperatorStateStore().getListState(latestInstantStateDescriptor);
+
+ if (context.isRestored()) {
+ Iterator<String> latestInstantIterator =
latestInstantState.get().iterator();
+ latestInstantIterator.forEachRemaining(x -> latestInstant = x);
+ LOG.info("Restoring the latest instant [{}] from the state",
latestInstant);
+ }
}
}
@Override
public void snapshotState(StateSnapshotContext functionSnapshotContext)
throws Exception {
- if (latestInstantList.isEmpty()) {
- latestInstantList.add(latestInstant);
+ long checkpointId = functionSnapshotContext.getCheckpointId();
+ if (isMain) {
+ LOG.info("Update latest instant [{}] records size [{}] checkpointId
[{}]", latestInstant, batchSize, checkpointId);
+ if (latestInstantList.isEmpty()) {
+ latestInstantList.add(latestInstant);
+ } else {
+ latestInstantList.set(0, latestInstant);
+ }
+ latestInstantState.update(latestInstantList);
} else {
- latestInstantList.set(0, latestInstant);
+ LOG.info("Records size [{}] checkpointId [{}]", batchSize, checkpointId);
Review comment:
done
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]