This is an automated email from the ASF dual-hosted git repository.
feiwang pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/celeborn.git
The following commit(s) were added to refs/heads/main by this push:
new 2a847ba90 [MINOR] Change some config version
2a847ba90 is described below
commit 2a847ba90e40d2d95f495f1953176a6293212acc
Author: Wang, Fei <[email protected]>
AuthorDate: Wed May 21 16:39:02 2025 -0700
[MINOR] Change some config version
### What changes were proposed in this pull request?
Fix the false config version in
https://celeborn.apache.org/docs/0.5.4/configuration/
In https://github.com/apache/celeborn/pull/3082, it fixed:
- celeborn.master.endpoints.resolver
- celeborn.client.chunk.prefetch.enabled
- celeborn.client.inputStream.creation.window
In this PR, it fixes the remaining
- celeborn.ssl.<module>.sslHandshakeTimeoutMs
### Why are the changes needed?
Fix the false config version in
https://celeborn.apache.org/docs/0.5.4/configuration/
### Does this PR introduce _any_ user-facing change?
No.
### How was this patch tested?
GA
Closes #3269 from turboFei/config_version.
Authored-by: Wang, Fei <[email protected]>
Signed-off-by: Wang, Fei <[email protected]>
---
common/src/main/scala/org/apache/celeborn/common/CelebornConf.scala | 2 +-
docs/configuration/network.md | 2 +-
2 files changed, 2 insertions(+), 2 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 c994c2802..c57fbd6e1 100644
--- a/common/src/main/scala/org/apache/celeborn/common/CelebornConf.scala
+++ b/common/src/main/scala/org/apache/celeborn/common/CelebornConf.scala
@@ -6271,7 +6271,7 @@ object CelebornConf extends Logging {
val SSL_HANDSHAKE_TIMEOUT_MS: ConfigEntry[Long] =
buildConf("celeborn.ssl.<module>.sslHandshakeTimeoutMs")
.categories("network", "ssl")
- .version("0.6.0")
+ .version("0.5.4")
.doc("The timeout for the SSL handshake (in milliseconds). The default
value is set to " +
s"the current Netty default. This is applicable for
`${TransportModuleConstants.RPC_APP_MODULE}` " +
s"and `${TransportModuleConstants.RPC_SERVICE_MODULE}` modules")
diff --git a/docs/configuration/network.md b/docs/configuration/network.md
index 721b12461..ec809f57d 100644
--- a/docs/configuration/network.md
+++ b/docs/configuration/network.md
@@ -66,7 +66,7 @@ license: |
| celeborn.ssl.<module>.keyStore | <undefined> | false | Path to
the key store file.<br/> The path can be absolute or relative to the directory
in which the process is started. | 0.5.0 | |
| celeborn.ssl.<module>.keyStorePassword | <undefined> | false |
Password to the key store. | 0.5.0 | |
| celeborn.ssl.<module>.protocol | TLSv1.2 | false | TLS protocol to
use.<br/> The protocol must be supported by JVM.<br/> The reference list of
protocols can be found in the "Additional JSSE Standard Names" section of the
Java security guide. For Java 11, for example, the list can be found
[here](https://docs.oracle.com/en/java/javase/11/docs/specs/security/standard-names.html#additional-jsse-standard-names)
| 0.5.0 | |
-| celeborn.ssl.<module>.sslHandshakeTimeoutMs | 10s | false | The
timeout for the SSL handshake (in milliseconds). The default value is set to
the current Netty default. This is applicable for `rpc_app` and `rpc_service`
modules | 0.6.0 | |
+| celeborn.ssl.<module>.sslHandshakeTimeoutMs | 10s | false | The
timeout for the SSL handshake (in milliseconds). The default value is set to
the current Netty default. This is applicable for `rpc_app` and `rpc_service`
modules | 0.5.4 | |
| celeborn.ssl.<module>.trustStore | <undefined> | false | Path to
the trust store file.<br/> The path can be absolute or relative to the
directory in which the process is started. | 0.5.0 | |
| celeborn.ssl.<module>.trustStorePassword | <undefined> | false |
Password for the trust store. | 0.5.0 | |
| celeborn.ssl.<module>.trustStoreReloadIntervalMs | 10s | false | The
interval at which the trust store should be reloaded (in milliseconds), when
enabled. This setting is mostly only useful for server components, not
applications. | 0.5.0 | |