This is an automated email from the ASF dual-hosted git repository.
lzljs3620320 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/paimon.git
The following commit(s) were added to refs/heads/master by this push:
new 63eb16f431 [doc] Update warehouse to REST Catalog doc
63eb16f431 is described below
commit 63eb16f4313f90c080c0809b04d963b0f929b77e
Author: JingsongLi <[email protected]>
AuthorDate: Wed Feb 26 16:17:06 2025 +0800
[doc] Update warehouse to REST Catalog doc
---
docs/content/concepts/rest-catalog.md | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/docs/content/concepts/rest-catalog.md
b/docs/content/concepts/rest-catalog.md
index 7092b44941..7b10757f5b 100644
--- a/docs/content/concepts/rest-catalog.md
+++ b/docs/content/concepts/rest-catalog.md
@@ -54,6 +54,7 @@ WITH (
'type' = 'paimon',
'uri' = '<catalog server url>',
'metastore' = 'rest',
+ 'warehouse' = 'my_instance_name',
'token.provider' = 'bear'
'token' = '<token>'
);
@@ -65,6 +66,7 @@ WITH (
'type' = 'paimon',
'uri' = '<catalog server url>',
'metastore' = 'rest',
+ 'warehouse' = 'my_instance_name',
'token.provider' = 'dlf',
'dlf.accessKeyId'='<accessKeyId>',
'dlf.accessKeySecret'='<accessKeySecret>',
@@ -78,6 +80,7 @@ WITH (
'type' = 'paimon',
'uri' = '<catalog server url>',
'metastore' = 'rest',
+ 'warehouse' = 'my_instance_name',
'token.provider' = 'dlf',
'dlf.accessKeyId'='<accessKeyId>',
'dlf.accessKeySecret'='<accessKeySecret>',
@@ -92,7 +95,9 @@ WITH (
'type' = 'paimon',
'uri' = '<catalog server url>',
'metastore' = 'rest',
- 'token.provider' = 'dlf'
+ 'warehouse' = 'my_instance_name',
+ 'token.provider' = 'dlf',
+ 'dlf.token-path' = 'my_token_path_in_disk'
);
```