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 a926debafc [docs] update link about Apache Doris (#4898)
a926debafc is described below
commit a926debafc6195e1f918f1882acba783b988885e
Author: Mingyu Chen (Rayner) <[email protected]>
AuthorDate: Mon Jan 13 21:57:14 2025 +0800
[docs] update link about Apache Doris (#4898)
---
docs/content/engines/doris.md | 16 ++++++++++++++--
1 file changed, 14 insertions(+), 2 deletions(-)
diff --git a/docs/content/engines/doris.md b/docs/content/engines/doris.md
index 6d22bc376a..2746e0224a 100644
--- a/docs/content/engines/doris.md
+++ b/docs/content/engines/doris.md
@@ -28,7 +28,7 @@ under the License.
This documentation is a guide for using Paimon in Doris.
-> More details can be found in [Apache Doris
Website](https://doris.apache.org/docs/lakehouse/datalake-analytics/paimon/)
+> More details can be found in [Apache Doris
Website](https://doris.apache.org/docs/dev/lakehouse/catalogs/paimon-catalog)
## Version
@@ -65,9 +65,21 @@ CREATE CATALOG `paimon_hms` PROPERTIES (
"hive.metastore.uris" = "thrift://172.21.0.44:7004",
"hadoop.username" = "hadoop"
);
+
+-- Integrate with Aliyun DLF
+CREATE CATALOG paimon_dlf PROPERTIES (
+ 'type' = 'paimon',
+ 'paimon.catalog.type' = 'dlf',
+ 'warehouse' = 'oss://paimon-bucket/paimonoss/',
+ 'dlf.proxy.mode' = 'DLF_ONLY',
+ 'dlf.uid' = 'xxxxx',
+ 'dlf.region' = 'cn-beijing',
+ 'dlf.access_key' = 'ak',
+ 'dlf.secret_key' = 'sk'
+);
```
-See [Apache Doris
Website](https://doris.apache.org/docs/lakehouse/datalake-analytics/paimon/)
for more examples.
+See [Apache Doris
Website](https://doris.apache.org/docs/dev/lakehouse/catalogs/paimon-catalog)
for more examples.
## Access Paimon Catalog