[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 <fwang12@ebay.com>
Signed-off-by: Wang, Fei <fwang12@ebay.com>
This commit is contained in:
Wang, Fei 2025-05-21 16:39:02 -07:00
parent 082f0dd8c5
commit 2a847ba90e
2 changed files with 2 additions and 2 deletions

View File

@ -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")

View File

@ -66,7 +66,7 @@ license: |
| celeborn.ssl.&lt;module&gt;.keyStore | &lt;undefined&gt; | 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.&lt;module&gt;.keyStorePassword | &lt;undefined&gt; | false | Password to the key store. | 0.5.0 | |
| celeborn.ssl.&lt;module&gt;.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.&lt;module&gt;.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.&lt;module&gt;.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.&lt;module&gt;.trustStore | &lt;undefined&gt; | 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.&lt;module&gt;.trustStorePassword | &lt;undefined&gt; | false | Password for the trust store. | 0.5.0 | |
| celeborn.ssl.&lt;module&gt;.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 | |