This is an automated email from the ASF dual-hosted git repository. dataroaring pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/doris-website.git
The following commit(s) were added to refs/heads/master by this push: new 34729535fdb [doc](stream load) fix stream load doc error (#1256) 34729535fdb is described below commit 34729535fdb1ba9b73ad27e5e5d7fa22b775b339 Author: hui lai <1353307...@qq.com> AuthorDate: Sat Nov 2 21:42:41 2024 +0800 [doc](stream load) fix stream load doc error (#1256) # Versions - [x] dev - [x] 3.0 - [x] 2.1 - [x] 2.0 # Languages - [x] Chinese - [x] English --- docs/data-operate/import/import-way/stream-load-manual.md | 13 +++++++------ .../data-operate/import/import-way/stream-load-manual.md | 13 +++++++------ .../version-2.0/data-operate/import/stream-load-manual.md | 13 +++++++------ .../data-operate/import/import-way/stream-load-manual.md | 13 +++++++------ .../data-operate/import/import-way/stream-load-manual.md | 7 ++++--- .../version-2.0/data-operate/import/stream-load-manual.md | 15 ++++++++------- .../data-operate/import/import-way/stream-load-manual.md | 13 +++++++------ .../data-operate/import/import-way/stream-load-manual.md | 7 ++++--- 8 files changed, 51 insertions(+), 43 deletions(-) diff --git a/docs/data-operate/import/import-way/stream-load-manual.md b/docs/data-operate/import/import-way/stream-load-manual.md index c6937239594..2323274d5bb 100644 --- a/docs/data-operate/import/import-way/stream-load-manual.md +++ b/docs/data-operate/import/import-way/stream-load-manual.md @@ -752,6 +752,7 @@ curl --location-trusted -u <doris_user>:<doris_password> \ -H "Expect:100-continue" \ -H "column_separator:," \ -H "enclose:'" \ + -H "escape:\" \ -H "columns:username,age,address" \ -T streamload_example.csv \ -XPUT http://<fe_ip>:<fe_http_port>/api/testdb/test_streamload/_stream_load @@ -821,7 +822,7 @@ curl --location-trusted -u <doris_user>:<doris_password> \ -H "Expect:100-continue" \ -H "format:json" \ -H "strip_outer_array:true" \ - -T streamload_example.csv \ + -T streamload_example.json \ -XPUT http://<fe_ip>:<fe_http_port>/api/testdb/test_streamload/_stream_load ``` @@ -853,7 +854,7 @@ curl --location-trusted -u <doris_user>:<doris_password> \ -H "strip_outer_array:true" \ -H "jsonpaths:[\"$.userid\", \"$.username\", \"$.userage\"]" \ -H "columns:user_id,name,age" \ - -T streamload_example.csv \ + -T streamload_example.json \ -XPUT http://<fe_ip>:<fe_http_port>/api/testdb/test_streamload/_stream_load ``` @@ -888,7 +889,7 @@ curl --location-trusted -u <doris_user>:<doris_password> \ -H "json_root: $.comment" \ -H "jsonpaths:[\"$.userid\", \"$.username\", \"$.userage\"]" \ -H "columns:user_id,name,age" \ - -T streamload_example.csv \ + -T streamload_example.json \ -XPUT http://<fe_ip>:<fe_http_port>/api/testdb/test_streamload/_stream_load ``` @@ -969,7 +970,7 @@ curl --location-trusted -u <doris_user>:<doris_password> \ -H "Expect:100-continue" \ -H "format: json" \ -H "strip_outer_array:true" \ - -T streamload_example.csv \ + -T streamload_example.json \ -XPUT http://<fe_ip>:<fe_http_port>/api/testdb/test_streamload/_stream_load ``` @@ -998,7 +999,7 @@ Load data into the following table containing the Bitmap type: CREATE TABLE testdb.test_streamload( typ_id BIGINT NULL COMMENT "ID", hou VARCHAR(10) NULL COMMENT "one", - arr BITMAP BITMAP_UNION NULL COMMENT "two" + arr BITMAP BITMAP_UNION NOT NULL COMMENT "two" ) AGGREGATE KEY(typ_id,hou) DISTRIBUTED BY HASH(typ_id,hou) BUCKETS 10; @@ -1037,7 +1038,7 @@ Load data into the following table: CREATE TABLE testdb.test_streamload( typ_id BIGINT NULL COMMENT "ID", typ_name VARCHAR(10) NULL COMMENT "NAME", - pv hll hll_union NULL COMMENT "hll" + pv hll hll_union NOT NULL COMMENT "hll" ) AGGREGATE KEY(typ_id,typ_name) DISTRIBUTED BY HASH(typ_id) BUCKETS 10; diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/data-operate/import/import-way/stream-load-manual.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/data-operate/import/import-way/stream-load-manual.md index 4ad99f6ebf4..dba9c729e13 100644 --- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/data-operate/import/import-way/stream-load-manual.md +++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/data-operate/import/import-way/stream-load-manual.md @@ -758,6 +758,7 @@ curl --location-trusted -u <doris_user>:<doris_password> \ -H "Expect:100-continue" \ -H "column_separator:," \ -H "enclose:'" \ + -H "escape:\" \ -H "columns:username,age,address" \ -T streamload_example.csv \ -XPUT http://<fe_ip>:<fe_http_port>/api/testdb/test_streamload/_stream_load @@ -827,7 +828,7 @@ curl --location-trusted -u <doris_user>:<doris_password> \ -H "Expect:100-continue" \ -H "format:json" \ -H "strip_outer_array:true" \ - -T streamload_example.csv \ + -T streamload_example.json \ -XPUT http://<fe_ip>:<fe_http_port>/api/testdb/test_streamload/_stream_load ``` @@ -859,7 +860,7 @@ curl --location-trusted -u <doris_user>:<doris_password> \ -H "strip_outer_array:true" \ -H "jsonpaths:[\"$.userid\", \"$.username\", \"$.userage\"]" \ -H "columns:user_id,name,age" \ - -T streamload_example.csv \ + -T streamload_example.json \ -XPUT http://<fe_ip>:<fe_http_port>/api/testdb/test_streamload/_stream_load ``` @@ -894,7 +895,7 @@ curl --location-trusted -u <doris_user>:<doris_password> \ -H "json_root: $.comment" \ -H "jsonpaths:[\"$.userid\", \"$.username\", \"$.userage\"]" \ -H "columns:user_id,name,age" \ - -T streamload_example.csv \ + -T streamload_example.json \ -XPUT http://<fe_ip>:<fe_http_port>/api/testdb/test_streamload/_stream_load ``` @@ -975,7 +976,7 @@ curl --location-trusted -u <doris_user>:<doris_password> \ -H "Expect:100-continue" \ -H "format: json" \ -H "strip_outer_array:true" \ - -T streamload_example.csv \ + -T streamload_example.json \ -XPUT http://<fe_ip>:<fe_http_port>/api/testdb/test_streamload/_stream_load ``` @@ -1004,7 +1005,7 @@ curl --location-trusted -u <doris_user>:<doris_password> \ CREATE TABLE testdb.test_streamload( typ_id BIGINT NULL COMMENT "ID", hou VARCHAR(10) NULL COMMENT "one", - arr BITMAP BITMAP_UNION NULL COMMENT "two" + arr BITMAP BITMAP_UNION NOT NULL COMMENT "two" ) AGGREGATE KEY(typ_id,hou) DISTRIBUTED BY HASH(typ_id,hou) BUCKETS 10; @@ -1043,7 +1044,7 @@ curl --location-trusted -u <doris_user>:<doris_password> \ CREATE TABLE testdb.test_streamload( typ_id BIGINT NULL COMMENT "ID", typ_name VARCHAR(10) NULL COMMENT "NAME", - pv hll hll_union NULL COMMENT "hll" + pv hll hll_union NOT NULL COMMENT "hll" ) AGGREGATE KEY(typ_id,typ_name) DISTRIBUTED BY HASH(typ_id) BUCKETS 10; diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.0/data-operate/import/stream-load-manual.md b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.0/data-operate/import/stream-load-manual.md index 6cb431ba611..08baea8df74 100644 --- a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.0/data-operate/import/stream-load-manual.md +++ b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.0/data-operate/import/stream-load-manual.md @@ -756,6 +756,7 @@ curl --location-trusted -u <doris_user>:<doris_password> \ -H "Expect:100-continue" \ -H "column_separator:," \ -H "enclose:'" \ + -H "escape:\" \ -H "columns:username,age,address" \ -T streamload_example.csv \ -XPUT http://<fe_ip>:<fe_http_port>/api/testdb/test_streamload/_stream_load @@ -825,7 +826,7 @@ curl --location-trusted -u <doris_user>:<doris_password> \ -H "Expect:100-continue" \ -H "format:json" \ -H "strip_outer_array:true" \ - -T streamload_example.csv \ + -T streamload_example.json \ -XPUT http://<fe_ip>:<fe_http_port>/api/testdb/test_streamload/_stream_load ``` @@ -857,7 +858,7 @@ curl --location-trusted -u <doris_user>:<doris_password> \ -H "strip_outer_array:true" \ -H "jsonpaths:[\"$.userid\", \"$.username\", \"$.userage\"]" \ -H "columns:user_id,name,age" \ - -T streamload_example.csv \ + -T streamload_example.json \ -XPUT http://<fe_ip>:<fe_http_port>/api/testdb/test_streamload/_stream_load ``` @@ -892,7 +893,7 @@ curl --location-trusted -u <doris_user>:<doris_password> \ -H "json_root: $.comment" \ -H "jsonpaths:[\"$.userid\", \"$.username\", \"$.userage\"]" \ -H "columns:user_id,name,age" \ - -T streamload_example.csv \ + -T streamload_example.json \ -XPUT http://<fe_ip>:<fe_http_port>/api/testdb/test_streamload/_stream_load ``` @@ -973,7 +974,7 @@ curl --location-trusted -u <doris_user>:<doris_password> \ -H "Expect:100-continue" \ -H "format: json" \ -H "strip_outer_array:true" \ - -T streamload_example.csv \ + -T streamload_example.json \ -XPUT http://<fe_ip>:<fe_http_port>/api/testdb/test_streamload/_stream_load ``` @@ -1002,7 +1003,7 @@ curl --location-trusted -u <doris_user>:<doris_password> \ CREATE TABLE testdb.test_streamload( typ_id BIGINT NULL COMMENT "ID", hou VARCHAR(10) NULL COMMENT "one", - arr BITMAP BITMAP_UNION NULL COMMENT "two" + arr BITMAP BITMAP_UNION NOT NULL COMMENT "two" ) AGGREGATE KEY(typ_id,hou) DISTRIBUTED BY HASH(typ_id,hou) BUCKETS 10; @@ -1041,7 +1042,7 @@ curl --location-trusted -u <doris_user>:<doris_password> \ CREATE TABLE testdb.test_streamload( typ_id BIGINT NULL COMMENT "ID", typ_name VARCHAR(10) NULL COMMENT "NAME", - pv hll hll_union NULL COMMENT "hll" + pv hll hll_union NOT NULL COMMENT "hll" ) AGGREGATE KEY(typ_id,typ_name) DISTRIBUTED BY HASH(typ_id) BUCKETS 10; diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/data-operate/import/import-way/stream-load-manual.md b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/data-operate/import/import-way/stream-load-manual.md index ad9517e4f20..8c76e26662b 100644 --- a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/data-operate/import/import-way/stream-load-manual.md +++ b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/data-operate/import/import-way/stream-load-manual.md @@ -757,6 +757,7 @@ curl --location-trusted -u <doris_user>:<doris_password> \ -H "Expect:100-continue" \ -H "column_separator:," \ -H "enclose:'" \ + -H "escape:\" \ -H "columns:username,age,address" \ -T streamload_example.csv \ -XPUT http://<fe_ip>:<fe_http_port>/api/testdb/test_streamload/_stream_load @@ -826,7 +827,7 @@ curl --location-trusted -u <doris_user>:<doris_password> \ -H "Expect:100-continue" \ -H "format:json" \ -H "strip_outer_array:true" \ - -T streamload_example.csv \ + -T streamload_example.json \ -XPUT http://<fe_ip>:<fe_http_port>/api/testdb/test_streamload/_stream_load ``` @@ -858,7 +859,7 @@ curl --location-trusted -u <doris_user>:<doris_password> \ -H "strip_outer_array:true" \ -H "jsonpaths:[\"$.userid\", \"$.username\", \"$.userage\"]" \ -H "columns:user_id,name,age" \ - -T streamload_example.csv \ + -T streamload_example.json \ -XPUT http://<fe_ip>:<fe_http_port>/api/testdb/test_streamload/_stream_load ``` @@ -893,7 +894,7 @@ curl --location-trusted -u <doris_user>:<doris_password> \ -H "json_root: $.comment" \ -H "jsonpaths:[\"$.userid\", \"$.username\", \"$.userage\"]" \ -H "columns:user_id,name,age" \ - -T streamload_example.csv \ + -T streamload_example.json \ -XPUT http://<fe_ip>:<fe_http_port>/api/testdb/test_streamload/_stream_load ``` @@ -974,7 +975,7 @@ curl --location-trusted -u <doris_user>:<doris_password> \ -H "Expect:100-continue" \ -H "format: json" \ -H "strip_outer_array:true" \ - -T streamload_example.csv \ + -T streamload_example.json \ -XPUT http://<fe_ip>:<fe_http_port>/api/testdb/test_streamload/_stream_load ``` @@ -1003,7 +1004,7 @@ curl --location-trusted -u <doris_user>:<doris_password> \ CREATE TABLE testdb.test_streamload( typ_id BIGINT NULL COMMENT "ID", hou VARCHAR(10) NULL COMMENT "one", - arr BITMAP BITMAP_UNION NULL COMMENT "two" + arr BITMAP BITMAP_UNION NOT NULL COMMENT "two" ) AGGREGATE KEY(typ_id,hou) DISTRIBUTED BY HASH(typ_id,hou) BUCKETS 10; @@ -1042,7 +1043,7 @@ curl --location-trusted -u <doris_user>:<doris_password> \ CREATE TABLE testdb.test_streamload( typ_id BIGINT NULL COMMENT "ID", typ_name VARCHAR(10) NULL COMMENT "NAME", - pv hll hll_union NULL COMMENT "hll" + pv hll hll_union NOT NULL COMMENT "hll" ) AGGREGATE KEY(typ_id,typ_name) DISTRIBUTED BY HASH(typ_id) BUCKETS 10; diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/data-operate/import/import-way/stream-load-manual.md b/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/data-operate/import/import-way/stream-load-manual.md index 1ec43ddefdf..93799bc337a 100644 --- a/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/data-operate/import/import-way/stream-load-manual.md +++ b/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/data-operate/import/import-way/stream-load-manual.md @@ -740,6 +740,7 @@ curl --location-trusted -u <doris_user>:<doris_password> \ -H "Expect:100-continue" \ -H "column_separator:," \ -H "enclose:'" \ + -H "escape:\" \ -H "columns:username,age,address" \ -T streamload_example.csv \ -XPUT http://<fe_ip>:<fe_http_port>/api/testdb/test_streamload/_stream_load @@ -758,7 +759,7 @@ curl --location-trusted -u <doris_user>:<doris_password> \ -H "Expect:100-continue" \ -H "column_separator:," \ -H "enclose:'" \ - -H 'escape:\' \ + -H "escape:\" \ -H "columns:username,age,address" \ -T streamload_example.csv \ -XPUT http://<fe_ip>:<fe_http_port>/api/testdb/test_streamload/_stream_load @@ -899,7 +900,7 @@ curl --location-trusted -u <doris_user>:<doris_password> \ -H "json_root: $.comment" \ -H "jsonpaths:[\"$.userid\", \"$.username\", \"$.userage\"]" \ -H "columns:user_id,name,age" \ - -T streamload_example.csv \ + -T streamload_example.json \ -XPUT http://<fe_ip>:<fe_http_port>/api/testdb/test_streamload/_stream_load ``` @@ -980,7 +981,7 @@ curl --location-trusted -u <doris_user>:<doris_password> \ -H "Expect:100-continue" \ -H "format: json" \ -H "strip_outer_array:true" \ - -T streamload_example.csv \ + -T streamload_example.json \ -XPUT http://<fe_ip>:<fe_http_port>/api/testdb/test_streamload/_stream_load ``` diff --git a/versioned_docs/version-2.0/data-operate/import/stream-load-manual.md b/versioned_docs/version-2.0/data-operate/import/stream-load-manual.md index 6cb6dd30daf..66eb7e92548 100644 --- a/versioned_docs/version-2.0/data-operate/import/stream-load-manual.md +++ b/versioned_docs/version-2.0/data-operate/import/stream-load-manual.md @@ -38,7 +38,7 @@ In comparison to single-threaded load using `curl`, Doris Streamloader is a clie - **Resilience and continuity:** in case of partial load failures, it can resume data loading from the point of failure. - **Automatic retry mechanism:** in case of loading failures, it can automatically retry a default number of times. If the loading remains unsuccessful, it will print the command for manual retry. -See [Doris Streamloader](../../ecosystem/doris-streamloader) for detailed instructions and best practices. +See [Doris Streamloader](../../../ecosystem/doris-streamloader) for detailed instructions and best practices. ::: ## User guide @@ -750,6 +750,7 @@ curl --location-trusted -u <doris_user>:<doris_password> \ -H "Expect:100-continue" \ -H "column_separator:," \ -H "enclose:'" \ + -H "escape:\" \ -H "columns:username,age,address" \ -T streamload_example.csv \ -XPUT http://<fe_ip>:<fe_http_port>/api/testdb/test_streamload/_stream_load @@ -819,7 +820,7 @@ curl --location-trusted -u <doris_user>:<doris_password> \ -H "Expect:100-continue" \ -H "format:json" \ -H "strip_outer_array:true" \ - -T streamload_example.csv \ + -T streamload_example.json \ -XPUT http://<fe_ip>:<fe_http_port>/api/testdb/test_streamload/_stream_load ``` @@ -851,7 +852,7 @@ curl --location-trusted -u <doris_user>:<doris_password> \ -H "strip_outer_array:true" \ -H "jsonpaths:[\"$.userid\", \"$.username\", \"$.userage\"]" \ -H "columns:user_id,name,age" \ - -T streamload_example.csv \ + -T streamload_example.json \ -XPUT http://<fe_ip>:<fe_http_port>/api/testdb/test_streamload/_stream_load ``` @@ -886,7 +887,7 @@ curl --location-trusted -u <doris_user>:<doris_password> \ -H "json_root: $.comment" \ -H "jsonpaths:[\"$.userid\", \"$.username\", \"$.userage\"]" \ -H "columns:user_id,name,age" \ - -T streamload_example.csv \ + -T streamload_example.json \ -XPUT http://<fe_ip>:<fe_http_port>/api/testdb/test_streamload/_stream_load ``` @@ -967,7 +968,7 @@ curl --location-trusted -u <doris_user>:<doris_password> \ -H "Expect:100-continue" \ -H "format: json" \ -H "strip_outer_array:true" \ - -T streamload_example.csv \ + -T streamload_example.json \ -XPUT http://<fe_ip>:<fe_http_port>/api/testdb/test_streamload/_stream_load ``` @@ -996,7 +997,7 @@ Load data into the following table containing the Bitmap type: CREATE TABLE testdb.test_streamload( typ_id BIGINT NULL COMMENT "ID", hou VARCHAR(10) NULL COMMENT "one", - arr BITMAP BITMAP_UNION NULL COMMENT "two" + arr BITMAP BITMAP_UNION NOT NULL COMMENT "two" ) AGGREGATE KEY(typ_id,hou) DISTRIBUTED BY HASH(typ_id,hou) BUCKETS 10; @@ -1035,7 +1036,7 @@ Load data into the following table: CREATE TABLE testdb.test_streamload( typ_id BIGINT NULL COMMENT "ID", typ_name VARCHAR(10) NULL COMMENT "NAME", - pv hll hll_union NULL COMMENT "hll" + pv hll hll_union NOT NULL COMMENT "hll" ) AGGREGATE KEY(typ_id,typ_name) DISTRIBUTED BY HASH(typ_id) BUCKETS 10; diff --git a/versioned_docs/version-2.1/data-operate/import/import-way/stream-load-manual.md b/versioned_docs/version-2.1/data-operate/import/import-way/stream-load-manual.md index a5fc94fcb3b..4f03a458891 100644 --- a/versioned_docs/version-2.1/data-operate/import/import-way/stream-load-manual.md +++ b/versioned_docs/version-2.1/data-operate/import/import-way/stream-load-manual.md @@ -751,6 +751,7 @@ curl --location-trusted -u <doris_user>:<doris_password> \ -H "Expect:100-continue" \ -H "column_separator:," \ -H "enclose:'" \ + -H "escape:\" \ -H "columns:username,age,address" \ -T streamload_example.csv \ -XPUT http://<fe_ip>:<fe_http_port>/api/testdb/test_streamload/_stream_load @@ -820,7 +821,7 @@ curl --location-trusted -u <doris_user>:<doris_password> \ -H "Expect:100-continue" \ -H "format:json" \ -H "strip_outer_array:true" \ - -T streamload_example.csv \ + -T streamload_example.json \ -XPUT http://<fe_ip>:<fe_http_port>/api/testdb/test_streamload/_stream_load ``` @@ -852,7 +853,7 @@ curl --location-trusted -u <doris_user>:<doris_password> \ -H "strip_outer_array:true" \ -H "jsonpaths:[\"$.userid\", \"$.username\", \"$.userage\"]" \ -H "columns:user_id,name,age" \ - -T streamload_example.csv \ + -T streamload_example.json \ -XPUT http://<fe_ip>:<fe_http_port>/api/testdb/test_streamload/_stream_load ``` @@ -887,7 +888,7 @@ curl --location-trusted -u <doris_user>:<doris_password> \ -H "json_root: $.comment" \ -H "jsonpaths:[\"$.userid\", \"$.username\", \"$.userage\"]" \ -H "columns:user_id,name,age" \ - -T streamload_example.csv \ + -T streamload_example.json \ -XPUT http://<fe_ip>:<fe_http_port>/api/testdb/test_streamload/_stream_load ``` @@ -968,7 +969,7 @@ curl --location-trusted -u <doris_user>:<doris_password> \ -H "Expect:100-continue" \ -H "format: json" \ -H "strip_outer_array:true" \ - -T streamload_example.csv \ + -T streamload_example.json \ -XPUT http://<fe_ip>:<fe_http_port>/api/testdb/test_streamload/_stream_load ``` @@ -997,7 +998,7 @@ Load data into the following table containing the Bitmap type: CREATE TABLE testdb.test_streamload( typ_id BIGINT NULL COMMENT "ID", hou VARCHAR(10) NULL COMMENT "one", - arr BITMAP BITMAP_UNION NULL COMMENT "two" + arr BITMAP BITMAP_UNION NOT NULL COMMENT "two" ) AGGREGATE KEY(typ_id,hou) DISTRIBUTED BY HASH(typ_id,hou) BUCKETS 10; @@ -1036,7 +1037,7 @@ Load data into the following table: CREATE TABLE testdb.test_streamload( typ_id BIGINT NULL COMMENT "ID", typ_name VARCHAR(10) NULL COMMENT "NAME", - pv hll hll_union NULL COMMENT "hll" + pv hll hll_union NOT NULL COMMENT "hll" ) AGGREGATE KEY(typ_id,typ_name) DISTRIBUTED BY HASH(typ_id) BUCKETS 10; diff --git a/versioned_docs/version-3.0/data-operate/import/import-way/stream-load-manual.md b/versioned_docs/version-3.0/data-operate/import/import-way/stream-load-manual.md index f4c575ce00f..54733d78092 100644 --- a/versioned_docs/version-3.0/data-operate/import/import-way/stream-load-manual.md +++ b/versioned_docs/version-3.0/data-operate/import/import-way/stream-load-manual.md @@ -734,6 +734,7 @@ curl --location-trusted -u <doris_user>:<doris_password> \ -H "Expect:100-continue" \ -H "column_separator:," \ -H "enclose:'" \ + -H "escape:\" \ -H "columns:username,age,address" \ -T streamload_example.csv \ -XPUT http://<fe_ip>:<fe_http_port>/api/testdb/test_streamload/_stream_load @@ -752,7 +753,7 @@ curl --location-trusted -u <doris_user>:<doris_password> \ -H "Expect:100-continue" \ -H "column_separator:," \ -H "enclose:'" \ - -H 'escape:\' \ + -H "escape:\" \ -H "columns:username,age,address" \ -T streamload_example.csv \ -XPUT http://<fe_ip>:<fe_http_port>/api/testdb/test_streamload/_stream_load @@ -893,7 +894,7 @@ curl --location-trusted -u <doris_user>:<doris_password> \ -H "json_root: $.comment" \ -H "jsonpaths:[\"$.userid\", \"$.username\", \"$.userage\"]" \ -H "columns:user_id,name,age" \ - -T streamload_example.csv \ + -T streamload_example.json \ -XPUT http://<fe_ip>:<fe_http_port>/api/testdb/test_streamload/_stream_load ``` @@ -974,7 +975,7 @@ curl --location-trusted -u <doris_user>:<doris_password> \ -H "Expect:100-continue" \ -H "format: json" \ -H "strip_outer_array:true" \ - -T streamload_example.csv \ + -T streamload_example.json \ -XPUT http://<fe_ip>:<fe_http_port>/api/testdb/test_streamload/_stream_load ``` --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org