Hans-Raintree commented on issue #13827:
URL: https://github.com/apache/hudi/issues/13827#issuecomment-3248146410
It also doesn't work when metadata is enabled.
When I increase the bucket count to 2, it's missing the the third record:
```
SNAPSHOT_COUNT=3
INCREMENTAL_COUNT=2
+-------------------+----------------------+------------------+----------------------+--------------------------------------+---+-------+-----+----+
|_hoodie_commit_time|_hoodie_commit_seqno
|_hoodie_record_key|_hoodie_partition_path|_hoodie_file_name
|ts |uuid |rider|city|
+-------------------+----------------------+------------------+----------------------+--------------------------------------+---+-------+-----+----+
|20250903080111086 |20250903080111086_0_10|id-0001 |sf
|00000000-0000-0000-0000-000000000000-0|1 |id-0001|r11 |sf |
|20250903080111086 |20250903080111086_0_11|id-0002 |nyc
|00000001-0000-0000-0000-000000000000-0|2 |id-0002|r21 |nyc |
|20250903080111086 |20250903080111086_0_12|id-0003 |la
|00000000-0000-0000-0000-000000000000-0|3 |id-0003|r31 |la |
+-------------------+----------------------+------------------+----------------------+--------------------------------------+---+-------+-----+----+
+-------------------+----------------------+------------------+----------------------+--------------------------------------+---+-------+-----+----+
|_hoodie_commit_time|_hoodie_commit_seqno
|_hoodie_record_key|_hoodie_partition_path|_hoodie_file_name
|ts |uuid |rider|city|
+-------------------+----------------------+------------------+----------------------+--------------------------------------+---+-------+-----+----+
|20250903080111086 |20250903080111086_0_10|id-0001 |sf
|00000000-0000-0000-0000-000000000000-0|1 |id-0001|r11 |sf |
|20250903080111086 |20250903080111086_0_11|id-0002 |nyc
|00000001-0000-0000-0000-000000000000-0|2 |id-0002|r21 |nyc |
+-------------------+----------------------+------------------+----------------------+--------------------------------------+---+-------+-----+----+
nyc\.00000001-0000-0000-0000-000000000000-0_20250903080346023.log.1_0-1-0
la\.00000000-0000-0000-0000-000000000000-0_20250903080346023.log.1_0-1-0
sf\.00000000-0000-0000-0000-000000000000-0_20250903080346023.log.1_0-1-0
nyc gets '00000001' fileid, so that also makes it seem like the issue is
related to the identical fileids in different partitions.
```
When I remove NON_BLOCKING_CONCURRENCY_CONTROL everything works fine.
--
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]