This is an automated email from the ASF dual-hosted git repository.
zhouky pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-celeborn.git
The following commit(s) were added to refs/heads/main by this push:
new 4a4a37ed1 [MINOR] Fix typo in CelebornConf
4a4a37ed1 is described below
commit 4a4a37ed171efb85f1bce0b46396ba0f4360377b
Author: e <[email protected]>
AuthorDate: Tue Aug 15 10:32:08 2023 +0800
[MINOR] Fix typo in CelebornConf
### What changes were proposed in this pull request?
Fix typo in CelebornConf
### Why are the changes needed?
Fix typo in CelebornConf
### Does this PR introduce _any_ user-facing change?
NO
### How was this patch tested?
Passing GA
Closes #1813 from jiaoqingbo/typo-conf.
Authored-by: e <[email protected]>
Signed-off-by: zky.zhoukeyong <[email protected]>
---
common/src/main/scala/org/apache/celeborn/common/CelebornConf.scala | 4 ++--
docs/configuration/client.md | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git
a/common/src/main/scala/org/apache/celeborn/common/CelebornConf.scala
b/common/src/main/scala/org/apache/celeborn/common/CelebornConf.scala
index c493366b2..eaeb0661d 100644
--- a/common/src/main/scala/org/apache/celeborn/common/CelebornConf.scala
+++ b/common/src/main/scala/org/apache/celeborn/common/CelebornConf.scala
@@ -3364,9 +3364,9 @@ object CelebornConf extends Logging {
.createWithDefaultString("15s")
val CLIENT_RESERVE_SLOTS_RACKAWARE_ENABLED: ConfigEntry[Boolean] =
- buildConf("celeborn.client.reserveSlots.rackware.enabled")
+ buildConf("celeborn.client.reserveSlots.rackaware.enabled")
.categories("client")
- .version("0.3.0")
+ .version("0.3.1")
.doc("Whether need to place different replicates on different racks when
allocating slots.")
.booleanConf
.createWithDefault(false)
diff --git a/docs/configuration/client.md b/docs/configuration/client.md
index 1820bc9c3..d7a1f0914 100644
--- a/docs/configuration/client.md
+++ b/docs/configuration/client.md
@@ -65,7 +65,7 @@ license: |
| celeborn.client.registerShuffle.retryWait | 3s | Wait time before next retry
if register shuffle failed. | 0.3.0 |
| celeborn.client.requestCommitFiles.maxRetries | 4 | Max retry times for
requestCommitFiles RPC. | 0.3.0 |
| celeborn.client.reserveSlots.maxRetries | 3 | Max retry times for client to
reserve slots. | 0.3.0 |
-| celeborn.client.reserveSlots.rackware.enabled | false | Whether need to
place different replicates on different racks when allocating slots. | 0.3.0 |
+| celeborn.client.reserveSlots.rackaware.enabled | false | Whether need to
place different replicates on different racks when allocating slots. | 0.3.1 |
| celeborn.client.reserveSlots.retryWait | 3s | Wait time before next retry if
reserve slots failed. | 0.3.0 |
| celeborn.client.rpc.cache.concurrencyLevel | 32 | The number of write locks
to update rpc cache. | 0.3.0 |
| celeborn.client.rpc.cache.expireTime | 15s | The time before a cache item is
removed. | 0.3.0 |