cobookman commented on pull request #2963:
URL: https://github.com/apache/iceberg/pull/2963#issuecomment-898222690
/faceplam yep that was it, wasn't using the lastest on github. Got it to
work, and will update the docs.
```sql
CREATE TABLE my_catalog.my-db.my_table (
id bigint,
data string,
category string)
USING iceberg
OPTIONS (
'write.object-storage.enabled'=true,
'write.folder-storage.path'='s3://my-bucket/some-random-folder/')
PARTITIONED BY (category);
```
Writes to:
```
s3://my-bucket/some-random-folder/21e81572/my-db.db/my_table/category=some+category/00000-0-5413ff19-edbc-41f9-ad2a-8ac1551ef3e1-00001.parquet`
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]