justinmclean commented on code in PR #5752: URL: https://github.com/apache/gravitino/pull/5752#discussion_r1869001763
########## docs/cli.md: ########## @@ -296,6 +296,30 @@ gcli catalog create -name postgres --provider postgres --properties jdbc-url=jd gcli catalog create --name kafka --provider kafka --properties bootstrap.servers=127.0.0.1:9092,127.0.0.2:9092 ``` +##### Create a Doris catalog + +```bash +gcli catalog create --name doris --provider doris --properties jdbc-url=jdbc:mysql://localhost:9030,jdbc-driver=com.mysql.jdbc.Driver,jdbc-user=admin,jdbc-password=password +``` + +##### Create a Paimon catalog + +```bash +gcli catalog create --name paimon --provider paimon --properties catalog-backend=jdbc,uri=jdbc:mysql://127.0.0.1:3306/metastore_db,authentication.type=simple +``` + +#### Create a Hudi catalog + +```bash +gcli catalog create --name oceanbase --provider oceanbase --properties catalog-backend=hms,uri=thrift://127.0.0.1:9083 Review Comment: I copied this from our own documentation - so I guess that's wrong as well? -- 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]
