From 81e30e336c7dac05851ede8be2210b0449420746 Mon Sep 17 00:00:00 2001 From: randomJoe211 <69501902+randomJoe211@users.noreply.github.com> Date: Tue, 1 Mar 2022 10:55:59 +0800 Subject: [PATCH] Fix exchange config files (#1124) --- .../use-exchange/ex-ug-import-from-clickhouse.md | 6 +++--- .../nebula-exchange/use-exchange/ex-ug-import-from-csv.md | 6 +++--- .../nebula-exchange/use-exchange/ex-ug-import-from-hbase.md | 6 +++--- .../nebula-exchange/use-exchange/ex-ug-import-from-hive.md | 6 +++--- .../nebula-exchange/use-exchange/ex-ug-import-from-json.md | 6 +++--- .../nebula-exchange/use-exchange/ex-ug-import-from-kafka.md | 6 +++--- .../use-exchange/ex-ug-import-from-maxcompute.md | 6 +++--- .../nebula-exchange/use-exchange/ex-ug-import-from-mysql.md | 6 +++--- .../nebula-exchange/use-exchange/ex-ug-import-from-neo4j.md | 6 +++--- .../nebula-exchange/use-exchange/ex-ug-import-from-orc.md | 6 +++--- .../use-exchange/ex-ug-import-from-parquet.md | 6 +++--- .../use-exchange/ex-ug-import-from-pulsar.md | 6 +++--- .../nebula-exchange/use-exchange/ex-ug-import-from-sst.md | 2 +- 13 files changed, 37 insertions(+), 37 deletions(-) diff --git a/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-clickhouse.md b/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-clickhouse.md index 3cf2d0e0d0f..4d9dc609bd6 100644 --- a/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-clickhouse.md +++ b/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-clickhouse.md @@ -97,7 +97,7 @@ After Exchange is compiled, copy the conf file `target/classes/application.conf` cores: 1 maxResultSize: 1G } - cores { + cores: { max: 16 } } @@ -116,11 +116,11 @@ After Exchange is compiled, copy the conf file `target/classes/application.conf` pswd: nebula # Fill in the name of the graph space you want to write data to in the Nebula Graph. space: basketballplayer - connection { + connection: { timeout: 3000 retry: 3 } - execution { + execution: { retry: 3 } error: { diff --git a/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-csv.md b/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-csv.md index 3f76a31dbe7..63e7c795ebd 100644 --- a/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-csv.md +++ b/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-csv.md @@ -115,7 +115,7 @@ After Exchange is compiled, copy the conf file `target/classes/application.conf` memory:1G } - cores { + cores: { max: 16 } } @@ -136,11 +136,11 @@ After Exchange is compiled, copy the conf file `target/classes/application.conf` # Fill in the name of the graph space you want to write data to in the Nebula Graph. space: basketballplayer - connection { + connection: { timeout: 3000 retry: 3 } - execution { + execution: { retry: 3 } error: { diff --git a/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-hbase.md b/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-hbase.md index 2eecd7b36f8..c04df5f53c4 100644 --- a/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-hbase.md +++ b/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-hbase.md @@ -134,7 +134,7 @@ After Exchange is compiled, copy the conf file `target/classes/application.conf` cores: 1 maxResultSize: 1G } - cores { + cores: { max: 16 } } @@ -154,11 +154,11 @@ After Exchange is compiled, copy the conf file `target/classes/application.conf` pswd: nebula # Fill in the name of the graph space you want to write data to in the Nebula Graph. space: basketballplayer - connection { + connection: { timeout: 3000 retry: 3 } - execution { + execution: { retry: 3 } error: { diff --git a/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-hive.md b/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-hive.md index 3c8d994aefa..ac3e72c83ef 100644 --- a/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-hive.md +++ b/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-hive.md @@ -167,7 +167,7 @@ After Exchange is compiled, copy the conf file `target/classes/application.conf` cores: 1 maxResultSize: 1G } - cores { + cores: { max: 16 } } @@ -195,11 +195,11 @@ After Exchange is compiled, copy the conf file `target/classes/application.conf` pswd: nebula # Fill in the name of the graph space you want to write data to in the Nebula Graph. space: basketballplayer - connection { + connection: { timeout: 3000 retry: 3 } - execution { + execution: { retry: 3 } error: { diff --git a/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-json.md b/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-json.md index b4f9a52a31f..2a079b14d6a 100644 --- a/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-json.md +++ b/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-json.md @@ -143,7 +143,7 @@ After Exchange is compiled, copy the conf file `target/classes/application.conf` memory:1G } - cores { + cores: { max: 16 } } @@ -164,11 +164,11 @@ After Exchange is compiled, copy the conf file `target/classes/application.conf` # Fill in the name of the graph space you want to write data to in the Nebula Graph. space: basketballplayer - connection { + connection: { timeout: 3000 retry: 3 } - execution { + execution: { retry: 3 } error: { diff --git a/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-kafka.md b/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-kafka.md index 558aceadc97..cf8c44bd35d 100644 --- a/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-kafka.md +++ b/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-kafka.md @@ -93,7 +93,7 @@ After Exchange is compiled, copy the conf file `target/classes/application.conf` cores: 1 maxResultSize: 1G } - cores { + cores: { max: 16 } } @@ -113,11 +113,11 @@ After Exchange is compiled, copy the conf file `target/classes/application.conf` pswd: nebula # Fill in the name of the graph space you want to write data to in the Nebula Graph. space: basketballplayer - connection { + connection: { timeout: 3000 retry: 3 } - execution { + execution: { retry: 3 } error: { diff --git a/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-maxcompute.md b/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-maxcompute.md index 87b451d965b..8de6b4a80a3 100644 --- a/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-maxcompute.md +++ b/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-maxcompute.md @@ -97,7 +97,7 @@ After Exchange is compiled, copy the conf file `target/classes/application.conf` cores: 1 maxResultSize: 1G } - cores { + cores: { max: 16 } } @@ -116,11 +116,11 @@ After Exchange is compiled, copy the conf file `target/classes/application.conf` pswd: nebula # Fill in the name of the graph space you want to write data to in the Nebula Graph. space: basketballplayer - connection { + connection: { timeout: 3000 retry: 3 } - execution { + execution: { retry: 3 } error: { diff --git a/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-mysql.md b/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-mysql.md index 10abbe54b79..0c0f167e72f 100644 --- a/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-mysql.md +++ b/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-mysql.md @@ -137,7 +137,7 @@ After Exchange is compiled, copy the conf file `target/classes/application.conf` cores: 1 maxResultSize: 1G } - cores { + cores: { max: 16 } } @@ -156,11 +156,11 @@ After Exchange is compiled, copy the conf file `target/classes/application.conf` pswd: nebula # Fill in the name of the graph space you want to write data to in the Nebula Graph. space: basketballplayer - connection { + connection: { timeout: 3000 retry: 3 } - execution { + execution: { retry: 3 } error: { diff --git a/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-neo4j.md b/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-neo4j.md index 1749d9ccd00..59c9b12d58b 100644 --- a/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-neo4j.md +++ b/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-neo4j.md @@ -126,7 +126,7 @@ After Exchange is compiled, copy the conf file `target/classes/application.conf` memory:1G } - cores:{ + cores: { max: 16 } } @@ -142,12 +142,12 @@ After Exchange is compiled, copy the conf file `target/classes/application.conf` pswd: nebula space: basketballplayer - connection { + connection: { timeout: 3000 retry: 3 } - execution { + execution: { retry: 3 } diff --git a/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-orc.md b/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-orc.md index 14647665f42..3f35b4849b2 100644 --- a/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-orc.md +++ b/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-orc.md @@ -111,7 +111,7 @@ After Exchange is compiled, copy the conf file `target/classes/application.conf` memory:1G } - cores { + cores: { max: 16 } } @@ -132,11 +132,11 @@ After Exchange is compiled, copy the conf file `target/classes/application.conf` # Fill in the name of the graph space you want to write data to in the Nebula Graph. space: basketballplayer - connection { + connection: { timeout: 3000 retry: 3 } - execution { + execution: { retry: 3 } error: { diff --git a/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-parquet.md b/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-parquet.md index ac5f0dd928c..b0972a91f00 100644 --- a/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-parquet.md +++ b/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-parquet.md @@ -111,7 +111,7 @@ After Exchange is compiled, copy the conf file `target/classes/application.conf` memory:1G } - cores { + cores: { max: 16 } } @@ -132,11 +132,11 @@ After Exchange is compiled, copy the conf file `target/classes/application.conf` # Fill in the name of the graph space you want to write data to in the Nebula Graph. space: basketballplayer - connection { + connection: { timeout: 3000 retry: 3 } - execution { + execution: { retry: 3 } error: { diff --git a/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-pulsar.md b/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-pulsar.md index 987e0042317..5332f6192df 100644 --- a/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-pulsar.md +++ b/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-pulsar.md @@ -89,7 +89,7 @@ After Exchange is compiled, copy the conf file `target/classes/application.conf` cores: 1 maxResultSize: 1G } - cores { + cores: { max: 16 } } @@ -111,11 +111,11 @@ After Exchange is compiled, copy the conf file `target/classes/application.conf` # Fill in the name of the graph space you want to write data to in the Nebula Graph. space: basketballplayer - connection { + connection: { timeout: 3000 retry: 3 } - execution { + execution: { retry: 3 } error: { diff --git a/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-sst.md b/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-sst.md index b605c2f0a51..88ee2155d06 100644 --- a/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-sst.md +++ b/docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-sst.md @@ -210,7 +210,7 @@ After Exchange is compiled, copy the conf file `target/classes/application.conf` } # The connection parameters of clients - connection { + connection: { # The timeout duration of socket connection and execution. Unit: milliseconds. timeout: 30000 }