1

How to get the current ingestion commit Id .I know HoodieDataSourceHelpers.latestCommit method can use to find the latest commit. But what happen if there is concurrent write in different thread. i need to find each thread commitID

byte_array
  • 2,767
  • 1
  • 16
  • 10
Nizamudeen
  • 121
  • 1
  • 7

1 Answers1

1

Hudi does not allow concurrent writing at the moment. In any case HoodieDataSourceHelpers.latestCommit will return the latest commit always.

byte_array
  • 2,767
  • 1
  • 16
  • 10