File tree 1 file changed +8
-1
lines changed 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ serialized with AVRO.
16
16
17
17
### Prerequisites
18
18
19
- ### Create a Table Bucket
19
+ #### Create a Table Bucket
20
20
The sample application expects the S3 Table Bucket to exist and to have the ARN in the local environment:
21
21
``` bash
22
22
aws s3tables create-table-bucket --name flink-example
@@ -34,6 +34,13 @@ aws s3tables list-table-buckets
34
34
35
35
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.
36
36
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
+ ```
37
44
38
45
#### IAM Permissions
39
46
You can’t perform that action at this time.
0 commit comments