[MINOR] Fix missing blanks in docs

### What changes were proposed in this pull request?

When looking into the source code, I found some blank delimiter is missing in the ConfigEntry doc.
In this PR, I go through all the ConfigEntry docs to fix the missing blank in the description.

### Why are the changes needed?
Fix typo.

### Does this PR introduce _any_ user-facing change?
No.

### How was this patch tested?

GA.

Closes #2917 from turboFei/nit_docs.

Authored-by: Wang, Fei <fwang12@ebay.com>
Signed-off-by: Cheng Pan <chengpan@apache.org>
This commit is contained in:
Wang, Fei 2024-11-14 10:42:36 +08:00 committed by Cheng Pan
parent def5254ec2
commit 7fbf0e2fa5
No known key found for this signature in database
GPG Key ID: 8001952629BCC75D
6 changed files with 31 additions and 30 deletions

View File

@ -4577,7 +4577,8 @@ object CelebornConf extends Logging {
val CLIENT_FETCH_EXCLUDED_WORKER_EXPIRE_TIMEOUT: ConfigEntry[Long] =
buildConf("celeborn.client.fetch.excludedWorker.expireTimeout")
.categories("client")
.doc("ShuffleClient is a static object, it will be used in the whole lifecycle of Executor," +
.doc(
"ShuffleClient is a static object, it will be used in the whole lifecycle of Executor, " +
"We give a expire time for excluded workers to avoid a transient worker issues.")
.version("0.3.0")
.fallbackConf(CLIENT_EXCLUDED_WORKER_EXPIRE_TIMEOUT)
@ -5558,8 +5559,8 @@ object CelebornConf extends Logging {
val CLIENT_INPUTSTREAM_CREATION_WINDOW: ConfigEntry[Int] =
buildConf("celeborn.client.inputStream.creation.window")
.categories("client")
.doc(s"Window size that CelebornShuffleReader pre-creates CelebornInputStreams, for coalesced scenario" +
s"where multiple Partitions are read")
.doc("Window size that CelebornShuffleReader pre-creates CelebornInputStreams, for coalesced scenario " +
"where multiple Partitions are read")
.version("0.6.0")
.intConf
.createWithDefault(16)