jerqi commented on code in PR #9705: URL: https://github.com/apache/gravitino/pull/9705#discussion_r2688673777
########## docs/iceberg-rest-service.md: ########## @@ -561,6 +561,37 @@ INSERT INTO dml.test VALUES (1), (2); SELECT * FROM dml.test; ``` +## Apache Flink Integration + +You can use Apache Flink to connect to the Gravitino Iceberg REST catalog service. Below is an example of how to create a catalog and access tables using Flink SQL: + +``` +CREATE CATALOG my_catalog WITH ( + 'type' = 'iceberg', + 'catalog-type' = 'rest', + 'uri' = 'http://localhost:9001/iceberg/', + 'header.X-Iceberg-Access-Delegation' = 'vended-credentials', Review Comment: I tried this configuration options. It works. -- 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]
