Skip to content

Commit b0e4ed9

Browse files
[doc] update Apache Doris document with DLF 3.0 (#6954)
1 parent f378134 commit b0e4ed9

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

docs/content/ecosystem/doris.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff 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
7070
CREATE 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

8293
See [Apache Doris Website](https://doris.apache.org/docs/dev/lakehouse/catalogs/paimon-catalog#examples) for more examples.

0 commit comments

Comments
 (0)