File tree Expand file tree Collapse file tree 1 file changed +12
-1
lines changed
Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ CREATE CATALOG `paimon_hms` PROPERTIES (
6666 " hadoop.username" = " hadoop"
6767);
6868
69- -- Integrate with Aliyun DLF
69+ -- Integrate with Aliyun DLF 1.0
7070CREATE CATALOG paimon_dlf PROPERTIES (
7171 ' type' = ' paimon' ,
7272 ' paimon.catalog.type' = ' dlf' ,
@@ -77,6 +77,17 @@ CREATE CATALOG paimon_dlf PROPERTIES (
7777 ' dlf.access_key' = ' ak' ,
7878 ' dlf.secret_key' = ' sk'
7979);
80+
81+ -- Integrate with Aliyun DLF 3.0 Paimon Rest
82+ -- Apache Doris supported since version 3.1.0
83+ CREATE CATALOG dlf_paimon_rest PROPERTIES (
84+ ' type' = ' paimon' ,
85+ ' uri' = ' http://cn-beijing-vpc.dlf.aliyuncs.com' ,
86+ ' warehouse' = ' catalog_name' ,
87+ ' paimon.rest.token.provider' = ' dlf' ,
88+ ' paimon.rest.dlf.access-key-id' = ' ak' ,
89+ ' paimon.rest.dlf.access-key-secret' = ' sk'
90+ );
8091```
8192
8293See [ Apache Doris Website] ( https://doris.apache.org/docs/dev/lakehouse/catalogs/paimon-catalog#examples ) for more examples.
You can’t perform that action at this time.
0 commit comments