summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorlifengchao <[email protected]>2024-07-02 14:40:13 +0800
committerlifengchao <[email protected]>2024-07-02 14:40:13 +0800
commit06c905e9385f96f978d07cdbb23bd8ec390993e8 (patch)
tree38f57e87d8442678727256641e48ee13c5f88077 /docs
parent7982696e8f826374c183fdf3e265fce857a051c4 (diff)
[feature][connector-clickhouse] GAL-604 ck sink支持map类型列写入
Diffstat (limited to 'docs')
-rw-r--r--docs/connector/source/file.md10
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/connector/source/file.md b/docs/connector/source/file.md
index edb4aab..6858fd6 100644
--- a/docs/connector/source/file.md
+++ b/docs/connector/source/file.md
@@ -54,4 +54,14 @@ application:
downstream: [ ]
```
+put file to hdfs:
+```sh
+# maka dir
+hadoop fs -mkdir hdfs://ns1/test
+# put local file to hdfs
+hadoop fs -put logs.json hdfs://ns1/test
+
+# list hdfs dir
+hadoop fs -ls logs.json hdfs://ns1/test
+```