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 b0e4ed9f76 [doc] update Apache Doris document with DLF 3.0 (#6954)
b0e4ed9f76 is described below
commit b0e4ed9f760c6f8d79681452e065eddc34614c03
Author: Jiajia Li <[email protected]>
AuthorDate: Tue Jan 6 09:01:04 2026 +0800
[doc] update Apache Doris document with DLF 3.0 (#6954)
---
docs/content/ecosystem/doris.md | 13 ++++++++++++-
1 file changed, 12 insertions(+), 1 deletion(-)
diff --git a/docs/content/ecosystem/doris.md b/docs/content/ecosystem/doris.md
index 088dbdf34c..2db77bd7d8 100644
--- a/docs/content/ecosystem/doris.md
+++ b/docs/content/ecosystem/doris.md
@@ -66,7 +66,7 @@ CREATE CATALOG `paimon_hms` PROPERTIES (
"hadoop.username" = "hadoop"
);
--- Integrate with Aliyun DLF
+-- Integrate with Aliyun DLF 1.0
CREATE CATALOG paimon_dlf PROPERTIES (
'type' = 'paimon',
'paimon.catalog.type' = 'dlf',
@@ -77,6 +77,17 @@ CREATE CATALOG paimon_dlf PROPERTIES (
'dlf.access_key' = 'ak',
'dlf.secret_key' = 'sk'
);
+
+-- Integrate with Aliyun DLF 3.0 Paimon Rest
+-- Apache Doris supported since version 3.1.0
+CREATE CATALOG dlf_paimon_rest PROPERTIES (
+ 'type' = 'paimon',
+ 'uri' = 'http://cn-beijing-vpc.dlf.aliyuncs.com',
+ 'warehouse' = 'catalog_name',
+ 'paimon.rest.token.provider' = 'dlf',
+ 'paimon.rest.dlf.access-key-id' = 'ak',
+ 'paimon.rest.dlf.access-key-secret' = 'sk'
+);
```
See [Apache Doris
Website](https://doris.apache.org/docs/dev/lakehouse/catalogs/paimon-catalog#examples)
for more examples.