bharos opened a new pull request, #7444:
URL: https://github.com/apache/gravitino/pull/7444
### What changes were proposed in this pull request?
Testing:
```
Created a test catalog:
curl -X POST -H "Accept: application/vnd.gravitino.v1+json" -H
"Content-Type: application/json" -d '{
"name":"s3_iceberg_catalog",
"type":"RELATIONAL",
"provider":"lakehouse-iceberg",
"comment":"S3 Iceberg catalog for testing config",
"properties":{
"catalog-backend":"memory",
"uri":"memory://catalog",
"warehouse":"s3a://test-bucket/warehouse/",
"io-impl":"org.apache.iceberg.aws.s3.S3FileIO",
"s3.endpoint":"http://localhost:9000",
"s3.access-key-id":"test-access-key",
"s3.secret-access-key":"test-secret-key",
"s3.region":"us-east-1"
}
}' http://localhost:8090/api/metalakes/test_metalake/catalogs
Fetched the configs of this catalog:
curl -X GET "http://localhost:9001/iceberg/v1/config?warehou
se=s3_iceberg_catalog"
{"defaults":{"io-impl":"org.apache.iceberg.aws.s3.S3FileIO","prefix":"s3_iceberg_catalog"},"overrides":{}}%
```
--
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]