multi-catalog_doc (#15139)

This commit is contained in:
catpineapple
2022-12-16 21:49:50 +08:00
committed by GitHub
parent 66422fc351
commit 63d2e85372
2 changed files with 4 additions and 4 deletions

View File

@ -85,7 +85,7 @@ The following example is used to create a Catalog named hive to connect the spec
CREATE CATALOG hive PROPERTIES (
"type"="hms",
'hive.metastore.uris' = 'thrift://172.21.0.1:7004',
'hadoop.username' = 'hive'
'hadoop.username' = 'hive',
'dfs.nameservices'='your-nameservice',
'dfs.ha.namenodes.your-nameservice'='nn1,nn2',
'dfs.namenode.rpc-address.your-nameservice.nn1'='172.21.0.2:4007',
@ -591,7 +591,7 @@ The privilege management of Doris provides an extension to the Cataloig level. F
Metadata changes of external data sources, such as creating, dropping tables, adding or dropping columns, etc., will not be synchronized to Doris.
Currently, users need to manually refresh metadata via the [REFRESH CATALOG](../../sql-manual/sql-reference/Utility-Statements/REFRESH-CATALOG.md) command.
Currently, users need to manually refresh metadata via the [REFRESH CATALOG](../../sql-manual/sql-reference/Utility-Statements/REFRESH.md) command.
Automatic synchronization of metadata will be supported soon.

View File

@ -85,7 +85,7 @@ under the License.
CREATE CATALOG hive PROPERTIES (
"type"="hms",
'hive.metastore.uris' = 'thrift://172.21.0.1:7004',
'hadoop.username' = 'hive'
'hadoop.username' = 'hive',
'dfs.nameservices'='your-nameservice',
'dfs.ha.namenodes.service1'='nn1,nn2',
'dfs.namenode.rpc-address.your-nameservice.nn1'='172.21.0.2:4007',
@ -588,7 +588,7 @@ Doris 的权限管理功能提供了对 Cataloig 层级的扩展,具体可参
外部数据源的元数据变动,如创建、删除表,加减列等操作,不会同步给 Doris。
目前需要用户通过 [REFRESH CATALOG](../../sql-manual/sql-reference/Utility-Statements/REFRESH-CATALOG.md) 命令手动刷新元数据。
目前需要用户通过 [REFRESH CATALOG](../../sql-manual/sql-reference/Utility-Statements/REFRESH.md) 命令手动刷新元数据。
后续会支持元数据的自动同步。