Invalid S3 request when creating Iceberg tables in Athena

0

I'm having trouble creating iceberg tables in Athena. I keep getting "Invalid S3 request" as an error message.

CREATE TABLE iceberg_test (
    event_date timestamp, 
    log string
)
PARTITIONED BY ( 
    hour(event_date)
)
LOCATION
    's3://bucket/iceberg/test'
TBLPROPERTIES (
    'table_type'='ICEBERG'
);
jho
asked 2 years ago154 views
No Answers

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions