zhongqishang commented on issue #10431:
URL: https://github.com/apache/iceberg/issues/10431#issuecomment-2146411518

   > @zhongqishang: How is your sink/table created? What are the exact records 
you are sending to the sink? Your issue seems very similar to: #10076
   
   @pvary Thanks for your reply.
   
   The follow is create table sql :
   
   ```
   CREATE TABLE `iceberg_table` ( 
     `id` String, 
     ... 
     PRIMARY KEY (`id`) NOT ENFORCED  
   ) WITH ( 
       'connector'='iceberg',
       'catalog-name'='iceberg_catalog',
       'catalog-database'='database',
       'catalog-table'='table',
       'catalog-type'='hive',
       'uri'='xx',
       'hive-conf-dir'='xx',
       'write.format.default'='parquet',
       'format-version'='2',
       'write.upsert.enabled'='true',
       'write.metadata.metrics.default'='full',
       'write.target-file-size-bytes'='268435456',
       'write.parquet.compression-codec'='zstd',
       ...
   );
   ```
   This is not similar to #10061 , The background of this problem is 
accompanied by concurrent checkpoint and savepoint, the next savepoint is 
aborted.
   


-- 
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: issues-unsubscr...@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org
For additional commands, e-mail: issues-h...@iceberg.apache.org

Reply via email to