Skip to content

Commit

Permalink
[MINOR] Fix the Spark job status description for metadata-only bootst…
Browse files Browse the repository at this point in the history
…rap operation (apache#6666)
  • Loading branch information
yihua authored and fengjian committed Apr 5, 2023
1 parent 1a44420 commit d368f33
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -345,7 +345,7 @@ private HoodieData<BootstrapWriteStatus> runMetadataBootstrap(List<Pair<String,
})
.collect(Collectors.toList());

context.setJobStatus(this.getClass().getSimpleName(), "Bootstrap metadata table: " + config.getTableName());
context.setJobStatus(this.getClass().getSimpleName(), "Run metadata-only bootstrap operation: " + config.getTableName());
return context.parallelize(bootstrapPaths, config.getBootstrapParallelism())
.map(partitionFsPair -> getMetadataHandler(config, table, partitionFsPair.getRight().getRight()).runMetadataBootstrap(partitionFsPair.getLeft(),
partitionFsPair.getRight().getLeft(), keyGenerator));
Expand Down

0 comments on commit d368f33

Please sign in to comment.