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 #852

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 for short) is an Apache Spark&trade application for ba

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

## Nebula Operator

Expand Down
7 changes: 3 additions & 4 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,10 +8,9 @@ The correspondence between the Nebula Exchange release (the JAR version) and the

|Exchange client|Nebula Graph|
|:---|:---|
|2.5-SNAPSHOT|v2-nightly|
|{{exchange.release}}|2.6.0|
|2.5.1|2.5.0, 2.5.1|

|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|
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ After Exchange is compiled, copy the conf file `target/classes/application.conf`
Run the following command to generate the SST file from the CSV source file. For a description of the parameters, see [Options for import](../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 @@ -452,7 +452,7 @@ ${SPARK_HOME}/bin/spark-submit --master "local" --class com.vesoft.nebula.exchan
For example:

```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
```

After the task is complete, you can view the generated SST file in the `/sst` directory (specified by the `nebula.path.remote` parameter) on HDFS.
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