vbabenkoru opened a new issue, #8972: URL: https://github.com/apache/paimon/issues/8972
### Search before asking - [x] I searched in the [issues](https://github.com/apache/paimon/issues) and found nothing similar. ### Paimon version 2.0.0-rc4 ### Compute Engine Flink 2.2.0 ### Minimal reproduce step ``` CREATE TABLE t ( project_id BIGINT, email STRING, ... PRIMARY KEY (project_id, email) NOT ENFORCED ) PARTITIONED BY (project_id) WITH ( 'bucket' = '16', 'changelog-producer' = 'lookup', 'metadata.iceberg.storage' = 'rest-catalog', 'metadata.iceberg.format-version' = '3', -- or enable deletion-vectors (docs: DV requires format-version 3) 'metadata.iceberg.rest.uri' = 'https://glue.<region>.amazonaws.com/iceberg', 'metadata.iceberg.rest.warehouse' = '<account-id>', 'metadata.iceberg.rest.io-impl' = 'org.apache.iceberg.aws.s3.S3FileIO', 'metadata.iceberg.rest.rest.sigv4-enabled' = 'true', 'metadata.iceberg.rest.rest.signing-name' = 'glue', 'metadata.iceberg.rest.rest.region' = '<region>', 'metadata.iceberg.rest.client.credentials-provider' = 'software.amazon.awssdk.auth.credentials.WebIdentityTokenFileCredentialsProvider' ); -- insert / Flink sink until a Paimon snapshot commits ``` Inspect generated metadata (example): format-version is 3, but top-level next-row-id is absent. Snapshots may carry first-row-id / added-rows, but table-level next-row-id is missing — Iceberg 1.11 requires it for v3. ### What doesn't meet your expectations? The Flink job fails on a commit with error `Cannot parse missing long: next-row-id` ### Anything else? _No response_ ### Are you willing to submit a PR? - [ ] I'm willing to submit a PR! -- 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]
