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 exchange 2.6.0 #1119

Merged
merged 1 commit into from
Nov 1, 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-2.0/20.appendix/6.eco-tool-version.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Nebula Exchange(简称Exchange)是一款Apache Spark™应用,用于

|Nebula Graph版本|Exchange版本(commit id)|
|:---|:---|
| {{ nebula.release }} | {{exchange.release}}(2c61ca5) |
| {{ nebula.release }} | {{exchange.release}}(cb83202) |

## Nebula Operator

Expand Down
7 changes: 4 additions & 3 deletions docs-2.0/nebula-exchange/about-exchange/ex-ug-limitations.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@ Nebula Exchange版本(即JAR包版本)和Nebula Graph的版本对应关系

|Exchange client版本|Nebula Graph版本|
|:---|:---|
|2.5-SNAPSHOT|v2-nightly|
|{{exchange.release}}|{{nebula.release}}、2.5.0|
|2.5.0|2.5.0|
|2.5-SNAPSHOT|nightly|
|{{exchange.release}}|{{nebula.release}}|
|2.5.1|2.5.0、2.5.1|
|2.5.0|2.5.0、2.5.1|
|2.1.0|2.0.0、2.0.1|
|2.0.1|2.0.0、2.0.1|
|2.0.0|2.0.0、2.0.1|
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ SST文件是一个内部包含了任意长度的有序键值对集合的文件
运行如下命令将CSV源文件生成为SST文件。关于参数的说明,请参见[命令参数](../parameter-reference/ex-ug-para-import-command.md)。

```bash
${SPARK_HOME}/bin/spark-submit --master "local" --class com.vesoft.nebula.exchange.Exchange <nebula-exchange-{{exchange.release}}.jar_path> -c <sst_application.conf_path>
${SPARK_HOME}/bin/spark-submit --master "local" --conf spark.sql.shuffle.partition=<shuffle_concurrency> --class com.vesoft.nebula.exchange.Exchange <nebula-exchange-{{exchange.release}}.jar_path> -c <sst_application.conf_path>
```

!!! note
Expand All @@ -451,7 +451,7 @@ ${SPARK_HOME}/bin/spark-submit --master "local" --class com.vesoft.nebula.exchan
示例:

```bash
${SPARK_HOME}/bin/spark-submit --master "local" --class com.vesoft.nebula.exchange.Exchange /root/nebula-exchange/nebula-exchange/target/nebula-exchange-{{exchange.release}}.jar -c /root/nebula-exchange/nebula-exchange/target/classes/sst_application.conf
${SPARK_HOME}/bin/spark-submit --master "local" --conf spark.sql.shuffle.partition=200 --class com.vesoft.nebula.exchange.Exchange /root/nebula-exchange/nebula-exchange/target/nebula-exchange-{{exchange.release}}.jar -c /root/nebula-exchange/nebula-exchange/target/classes/sst_application.conf
```

任务执行完成后,可以在HDFS上的`/sst`目录(`nebula.path.remote`参数指定)内查看到生成的SST文件。
Expand Down
4 changes: 2 additions & 2 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ extra:
base100: 1.0.0
release: 2.0.0
exchange:
release: 2.5.1
branch: v2.5
release: 2.6.0
branch: v2.6.0
importer:
release: 2.6.0
branch: v2.6.0
Expand Down