Skip to content

Commit f155441

Browse files
Updating ReadMe with Namespace Requirement
1 parent 4f8e88b commit f155441

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

java/Iceberg/S3TableSink/README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ serialized with AVRO.
1616

1717
### Prerequisites
1818

19-
### Create a Table Bucket
19+
#### Create a Table Bucket
2020
The sample application expects the S3 Table Bucket to exist and to have the ARN in the local environment:
2121
```bash
2222
aws s3tables create-table-bucket --name flink-example
@@ -34,6 +34,13 @@ aws s3tables list-table-buckets
3434

3535
This will show you the list of table buckets. Select the one you wish to write to and paste it into the config file in this project.
3636

37+
#### Create a Namespace in the Table Bucket (Database)
38+
The sample application expects the Namespace in the Table Bucket to exist
39+
```bash
40+
aws s3tables create-namespace \
41+
--table-bucket-arn arn:aws:s3tables:us-east-1:111122223333:bucket/flink-example \
42+
--namespace default
43+
```
3744

3845
#### IAM Permissions
3946

0 commit comments

Comments
 (0)