I m 在Athena创建Iceberg表格,如:
CREATE TABLE IF NOT EXISTS table1 (`col1` string, `col2` string)
LOCATION s3://my-bucket/path/table1/
TBLPROPERTIES ( table_type = ICEBERG , format = parquet )
并试图在表格中添加价值观,如:
INSERT INTO table1 VALUES ( hello , iceberg )
我遇到这样的错误:
GENERIC_INTERNAL_ERROR:
io.trino.hdfs.s3.TrinoS3FileSystem$UnrecoverableS3OperationException:
com.amazonaws.services.s3.model.AmazonS3Exception:
The specified key does not exist. (Service: Amazon S3; Status Code: 404; Error Code: NoSuchKey; Request ...
我做了什么错误?