This is an automated email from the ASF dual-hosted git repository.
zhouky pushed a commit to branch branch-0.3
in repository https://gitbox.apache.org/repos/asf/incubator-celeborn.git
The following commit(s) were added to refs/heads/branch-0.3 by this push:
new 5297c70dd [MINOR] Fix typo in CelebornConf
5297c70dd is described below
commit 5297c70dd25bd7b54bcdb8d9185f6ef5ddcde8b7
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]>
(cherry picked from commit 4a4a37ed171efb85f1bce0b46396ba0f4360377b)
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 a19e9dbbf..09afbd49d 100644
--- a/common/src/main/scala/org/apache/celeborn/common/CelebornConf.scala
+++ b/common/src/main/scala/org/apache/celeborn/common/CelebornConf.scala
@@ -3363,9 +3363,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 2ffbc5e2b..abca643dd 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 |