Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

exchange docs: fixed ip address format #148

Merged
merged 1 commit into from
Jan 8, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/nebula-exchange/use-exchange/ex-ug-import-from-csv.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@
nebula: {
address:{
# 以下为 Nebula Graph 的 Graph 服务和 Meta 服务所在机器的 IP 地址及端口
# 如果有多个地址,格式为 "ip1:port,ip2:port,ip3:port"
# 如果有多个地址,格式为 "ip1:port","ip2:port","ip3:port"
# 不同地址之间以英文逗号 (,) 隔开
graph:["127.0.0.1:3699"]
meta:["127.0.0.1:45500"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ Neo4j 的数据集信息如下:
nebula: {
address:{
# 以下为 Nebula Graph 的 Graph 服务和 Meta 服务所在机器的 IP 地址及端口。
# 如果有多个地址,格式为 "ip1:port,ip2:port,ip3:port"。
# 如果有多个地址,格式为 "ip1:port","ip2:port","ip3:port"。
# 不同地址之间以英文逗号 (,) 隔开。
graph:["127.0.0.1:3699"]
meta:["127.0.0.1:45500"]
Expand Down
4 changes: 2 additions & 2 deletions docs/nebula-exchange/use-exchange/ex-ug-import-hive.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ only showing top 20 rows
nebula: {
address:{
# 以下为 Nebula Graph 的 Graph 服务和 Meta 服务所在机器的 IP 地址及端口
# 如果有多个地址,格式为 "ip1:port,ip2:port,ip3:port"
# 如果有多个地址,格式为 "ip1:port","ip2:port","ip3:port"
# 不同地址之间以英文逗号 (,) 隔开
graph:["127.0.0.1:3699"]
meta:["127.0.0.1:45500"]
Expand Down Expand Up @@ -323,7 +323,7 @@ only showing top 20 rows
完成配置后,运行以下命令检查配置文件格式是否正确。关于参数的说明,参考 [导入命令参数](../parameter-reference/ex-ug-para-import-command.md)。

```bash
$SPARK_HOME/bin/spark-submit --master "local" --class com.vesoft.nebula.tools.importer.Exchange /path/to/exchange-1.1.0.jar -c /path/to/conf/hive_application.conf -D
$SPARK_HOME/bin/spark-submit --master "local" --class com.vesoft.nebula.tools.importer.Exchange /path/to/exchange-1.1.0.jar -c /path/to/conf/hive_application.conf -h -D
```

### 步骤 5. 向 Nebula Graph 导入数据
Expand Down
2 changes: 1 addition & 1 deletion docs/nebula-exchange/use-exchange/ex-ug-import-json.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@
nebula: {
address:{
# 以下为 Nebula Graph 的 Graph 服务和 Meta 服务所在机器的 IP 地址及端口
# 如果有多个地址,格式为 "ip1:port,ip2:port,ip3:port"
# 如果有多个地址,格式为 "ip1:port","ip2:port","ip3:port"
# 不同地址之间以英文逗号 (,) 隔开
graph:["127.0.0.1:3699"]
meta:["127.0.0.1:45500"]
Expand Down