2 Answers
- Newest
- Most votes
- Most comments
1
Reference Document
https://iceberg.apache.org/docs/latest/hive/
CREATE EXTERNAL TABLE my_database.my_table
STORED BY 'org.apache.iceberg.mr.hive.HiveIcebergStorageHandler'
TBLPROPERTIES (
'iceberg.mr.catalog'='hive',
'commit.retry.num-retries'='<custom_number_of_retries>'
)
AS SELECT ...
===
ALTER TABLE my_database.my_table
SET TBLPROPERTIES (
'commit.retry.num-retries'='<custom_number_of_retries>'
)
please review and update according to reference document

What does
'iceberg.mr.catalog'='hive',is doing in the Athena context?The reason why I'm asking is