gejinzh commented on issue #12820:
URL: https://github.com/apache/hudi/issues/12820#issuecomment-2650032653
> Is there any log indicating why the recommit fails?
taskmanager
```
2025-02-10 21:36:48,192 Source: ygs_ods_jt_order_rel -> hoodie_append_write:
default_database.ygs_ods_jt_order_rel (1/1)#1 INFO
org.apache.hudi.sink.common.AbstractStreamWriteFunction [] - Send
uncommitted write metadata event to coordinator, task[0].
```
but jobmanager reuse current pending instant
```
2025-02-10 21:36:48,228 pool-22-thread-1 WARN
org.apache.hudi.sink.StreamWriteOperatorCoordinator [] - Reuse current
pending Instant 20250210210742850 with insert operationType, ignoring empty
bootstrap event.
```
Recommit should has log like 'recommit instant **' , but it doesn't;
```
if
(this.metaClient.reloadActiveTimeline().filterInflightsAndRequested().containsInstant(this.instant)
&& instant.equals(WriteMetadataEvent.BOOTSTRAP_INSTANT)
&& this.tableState.operationType == WriteOperationType.INSERT)
{
```
may be the instant is 'BOOTSTRAP_INSTANT'?
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]