diff --git a/README.md b/README.md index 59e688021f..1f1cd078ae 100644 --- a/README.md +++ b/README.md @@ -22,10 +22,11 @@ It provides the ability to push shuffle data into centralized storage service, changing the shuffle style from "local file pull-like style" to "remote block push-like style". It brings in several advantages like supporting disaggregated storage deployment, super large shuffle jobs, and high elasticity. -Currently it supports [Apache Spark][1] and [Apache Hadoop MapReduce][2]. +Currently it supports [Apache Spark][1] and [Apache Hadoop MapReduce][2] and [Apache Tez][3]. [1]: https://spark.apache.org [2]: https://hadoop.apache.org +[3]: https://tez.apache.org [![Build](https://github.com/apache/incubator-uniffle/actions/workflows/build.yml/badge.svg?branch=master&event=push)](https://github.com/apache/incubator-uniffle/actions/workflows/build.yml) [![Codecov](https://codecov.io/gh/apache/incubator-uniffle/branch/master/graph/badge.svg)](https://codecov.io/gh/apache/incubator-uniffle) @@ -261,7 +262,7 @@ In development mode, you can append client jar (rss-client-tez-XXXXX-shaded.jar) | Property Name |Default| Description | |----------------------------|---|------------------------------| | tez.am.launch.cmd-opts |-XX:+PrintGCDetails -verbose:gc -XX:+PrintGCTimeStamps -XX:+UseNUMA -XX:+UseParallelGC org.apache.tez.dag.app.RssDAGAppMaster| enable remote shuffle service | -| tez.rss.coordinator.quorum |:19999,:19999|coordinator address| +| tez.rss.coordinator.quorum |coordinatorIp1:19999,coordinatorIp2:19999|coordinator address| Note that the RssDAGAppMaster will automatically disable slow start (i.e., `tez.shuffle-vertex-manager.min-src-fraction=1`, `tez.shuffle-vertex-manager.max-src-fraction=1`). diff --git a/docs/client_guide.md b/docs/client_guide.md index 07c4e60fd3..e34e651bad 100644 --- a/docs/client_guide.md +++ b/docs/client_guide.md @@ -110,7 +110,7 @@ In development mode, you can append client jar (rss-client-tez-XXXXX-shaded.jar) | Property Name |Default| Description | |----------------------------|---|------------------------------| | tez.am.launch.cmd-opts |-XX:+PrintGCDetails -verbose:gc -XX:+PrintGCTimeStamps -XX:+UseNUMA -XX:+UseParallelGC org.apache.tez.dag.app.RssDAGAppMaster| enable remote shuffle service | -| tez.rss.coordinator.quorum |:19999,:19999|coordinator address| +| tez.rss.coordinator.quorum |coordinatorIp1:19999,coordinatorIp2:19999|coordinator address| Note that the RssDAGAppMaster will automatically disable slow start (i.e., `tez.shuffle-vertex-manager.min-src-fraction=1`, `tez.shuffle-vertex-manager.max-src-fraction=1`).