jackye1995 commented on a change in pull request #2963:
URL: https://github.com/apache/iceberg/pull/2963#discussion_r688693253
##########
File path: site/docs/aws.md
##########
@@ -358,6 +361,16 @@ OPTIONS (
PARTITIONED BY (category);
```
+We can then insert a single row into this new table
+```SQL
+INSERT INTO my_catalog.my_ns.my_table VALUES (1, "Pizza", "orders");
+```
+
+Which will cause the following object to be written to S3:
+```
+s3://my-table-data-bucket/2d3905f8/my_ns.db/my_table/category=orders/00000-0-5affc076-96a4-48f2-9cd2-d5efbc9f0c94-00001.parquet
+```
+
Review comment:
And "the shorter the shared S3 prefix is, the better performance we will
get. So it is recommended to use a root bucket as your object storage path to
achieve best performance."
Then we can talk about the path resolution strategy
`write.object-storage.path` -> `write.folder-storage.path` -> table's default
root location + `/data`
--
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]