Skip to content

Commit

Permalink
[HUDI-5085]When a flink job has multiple sink tables, the index loadi…
Browse files Browse the repository at this point in the history
…ng status is abnormal (apache#7051)
  • Loading branch information
yangxiao0320 authored and Alexey Kudinkin committed Dec 14, 2022
1 parent d5745cc commit f0e1eb1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ private void waitForBootstrapReady(int taskID) {
int readyTaskNum = 1;
while (taskNum != readyTaskNum) {
try {
readyTaskNum = aggregateManager.updateGlobalAggregate(BootstrapAggFunction.NAME, taskID, new BootstrapAggFunction());
readyTaskNum = aggregateManager.updateGlobalAggregate(BootstrapAggFunction.NAME + conf.getString(FlinkOptions.TABLE_NAME), taskID, new BootstrapAggFunction());
LOG.info("Waiting for other bootstrap tasks to complete, taskId = {}.", taskID);

TimeUnit.SECONDS.sleep(5);
Expand Down

0 comments on commit f0e1eb1

Please sign in to comment.