ferenc-csaky commented on code in PR #23294: URL: https://github.com/apache/flink/pull/23294#discussion_r1308728698
########## docs/content/docs/dev/table/catalogs.md: ########## @@ -849,40 +850,34 @@ final TableEnvironment tableEnv = TableEnvironment.create(settings); In SQL Gateway, it is recommended to configure the settings in a yaml file so that all sessions can automatically use the pre-created Catalog. Usually, you need to configure the kind of Catalog Store and other required parameters for the Catalog Store. + ```yaml table.catalog-store.kind: file -table.catalog-store.file.path: /path/to/catalog/store/ +table.catalog-store.file.path: file:///path/to/catalog/store/ ``` ### Catalog Store Type -Flink has two built-in Catalog Stores, namely GenericInMemoryCatalogStore and FileCatalogStore. -Users can also customize their own Catalog Store. + +Flink has two built-in Catalog Stores, namely `GenericInMemoryCatalogStore` and `FileCatalogStore`. +Although the catalog store model is extendable, so users can also implement their own custom Catalog Store. Review Comment: I guess it's not the best sentence structure. :) I'll rephrase it. -- 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]
