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

Update ex-ug-import-from-sst.md #1074

Merged
merged 1 commit into from
Oct 22, 2021
Merged
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
10 changes: 5 additions & 5 deletions docs-2.0/nebula-exchange/use-exchange/ex-ug-import-from-sst.md
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ SST文件是一个内部包含了任意长度的有序键值对集合的文件
}

# 指定CSV文件的路径。
# 文件存储在HDFS上,用双引号括起路径,以hdfs://开头,例如"hdfs://ip:port/xx/xx"。
# 文件存储在HDFS上,用双引号括起路径,以hdfs://开头,例如"hdfs://ip:port/xx/xx.csv"。
path: "hdfs://*.*.*.*:9000/dataset/vertex_player.csv"

# 如果CSV文件没有表头,使用[_c0, _c1, _c2, ..., _cn]表示其表头,并将列指示为属性值的源。
Expand Down Expand Up @@ -291,7 +291,7 @@ SST文件是一个内部包含了任意长度的有序键值对集合的文件
}

# 指定CSV文件的路径。
# 文件存储在HDFS上,用双引号括起路径,以hdfs://开头,例如"hdfs://ip:port/xx/xx"。
# 文件存储在HDFS上,用双引号括起路径,以hdfs://开头,例如"hdfs://ip:port/xx/xx.csv"。
path: "hdfs://*.*.*.*:9000/dataset/vertex_team.csv"

# 如果CSV文件没有表头,使用[_c0, _c1, _c2, ..., _cn]表示其表头,并将列指示为属性值的源。
Expand Down Expand Up @@ -341,7 +341,7 @@ SST文件是一个内部包含了任意长度的有序键值对集合的文件
}

# 指定CSV文件的路径。
# 文件存储在HDFS上,用双引号括起路径,以hdfs://开头,例如"hdfs://ip:port/xx/xx"。
# 文件存储在HDFS上,用双引号括起路径,以hdfs://开头,例如"hdfs://ip:port/xx/xx.csv"。
path: "hdfs://*.*.*.*:9000/dataset/edge_follow.csv"

# 如果CSV文件没有表头,使用[_c0, _c1, _c2, ..., _cn]表示其表头,并将列指示为属性值的源。
Expand Down Expand Up @@ -393,7 +393,7 @@ SST文件是一个内部包含了任意长度的有序键值对集合的文件
}

# 指定CSV文件的路径。
# 文件存储在HDFS上,用双引号括起路径,以hdfs://开头,例如"hdfs://ip:port/xx/xx"。
# 文件存储在HDFS上,用双引号括起路径,以hdfs://开头,例如"hdfs://ip:port/xx/xx.csv"。
path: "hdfs://*.*.*.*:9000/dataset/edge_serve.csv"

# 如果CSV文件没有表头,使用[_c0, _c1, _c2, ..., _cn]表示其表头,并将列指示为属性值的源。
Expand Down Expand Up @@ -500,7 +500,7 @@ ${SPARK_HOME}/bin/spark-submit --master "local" --class com.vesoft.nebula.excha

!!! note

- 如果需要重新下载,请在Nebula Graph安装路径内的`data/storage/nebula`目录内,将对应Space ID目录内的`download`文件夹删除,然后重新下载SST文件。如果是图空间是多副本,保存副本的所有机器都需要删除`download`文件夹。
- 如果需要重新下载,请在Nebula Graph安装路径内的`data/storage/nebula`目录内,将对应Space ID目录内的`download`文件夹删除,然后重新下载SST文件。如果图空间是多副本,保存副本的所有机器都需要删除`download`文件夹。

- 如果导入时出现问题需要重新导入,重新执行`INGEST;`即可。

Expand Down