-
-
Notifications
You must be signed in to change notification settings - Fork 8.6k
[grid] Add event bus heartbeat to prevent steal connection #16444
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
+172
−7
Merged
Changes from 4 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
7a60828
[grid] Add event bus heartbeat to prevent steal connection
VietND96 4d808cf
Merge remote-tracking branch 'origin/trunk' into event-bus-heartbeat
VietND96 cc71cd0
Fix review comment
VietND96 b12c8f8
Fix review to prevent heartbeat interval overflow
VietND96 831b8a4
Fix review comment
VietND96 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
103 changes: 103 additions & 0 deletions
103
java/src/org/openqa/selenium/events/zeromq/ZmqUtils.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
// Licensed to the Software Freedom Conservancy (SFC) under one | ||
// or more contributor license agreements. See the NOTICE file | ||
// distributed with this work for additional information | ||
// regarding copyright ownership. The SFC licenses this file | ||
// to you under the Apache License, Version 2.0 (the | ||
// "License"); you may not use this file except in compliance | ||
// with the License. You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, | ||
// software distributed under the License is distributed on an | ||
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
// KIND, either express or implied. See the License for the | ||
// specific language governing permissions and limitations | ||
// under the License. | ||
|
||
package org.openqa.selenium.events.zeromq; | ||
|
||
import java.time.Duration; | ||
import java.util.logging.Level; | ||
import java.util.logging.Logger; | ||
import org.zeromq.ZMQ; | ||
|
||
class ZmqUtils { | ||
|
||
private static final Logger LOG = Logger.getLogger(ZmqUtils.class.getName()); | ||
|
||
// Minimum heartbeat interval: 1 second | ||
private static final long MIN_HEARTBEAT_MS = 1_000L; | ||
// Maximum heartbeat interval: ~24 days (to prevent overflow when multiplied by 6) | ||
private static final long MAX_HEARTBEAT_MS = Integer.MAX_VALUE / 6; | ||
|
||
private ZmqUtils() {} | ||
|
||
/** | ||
* Configures ZeroMQ heartbeat settings on a socket to prevent stale connections. | ||
* | ||
* <p>The heartbeat interval is clamped between 1 second and ~24 days to prevent integer overflow | ||
* and ensure reasonable values. If the provided duration is outside this range, it will be | ||
* adjusted and a warning will be logged. | ||
* | ||
* @param socket The ZMQ socket to configure | ||
* @param heartbeatPeriod The heartbeat interval duration | ||
* @param socketType The socket type name for logging (e.g., "SUB", "PUB", "XPUB", "XSUB") | ||
*/ | ||
static void configureHeartbeat(ZMQ.Socket socket, Duration heartbeatPeriod, String socketType) { | ||
if (heartbeatPeriod != null && !heartbeatPeriod.isZero() && !heartbeatPeriod.isNegative()) { | ||
long heartbeatMs = heartbeatPeriod.toMillis(); | ||
long clampedHeartbeatMs = clampHeartbeatInterval(heartbeatMs, socketType); | ||
|
||
// Safe to cast to int now | ||
int heartbeatIvl = (int) clampedHeartbeatMs; | ||
int heartbeatTimeout = heartbeatIvl * 3; | ||
int heartbeatTtl = heartbeatIvl * 6; | ||
|
||
socket.setHeartbeatIvl(heartbeatIvl); | ||
socket.setHeartbeatTimeout(heartbeatTimeout); | ||
socket.setHeartbeatTtl(heartbeatTtl); | ||
|
||
LOG.info( | ||
String.format( | ||
"ZMQ %s socket heartbeat configured: interval=%ds, timeout=%ds, ttl=%ds", | ||
socketType, heartbeatIvl / 1000, heartbeatTimeout / 1000, heartbeatTtl / 1000)); | ||
} | ||
} | ||
|
||
/** | ||
* Clamps the heartbeat interval to safe bounds and logs warnings if adjustments are made. | ||
* | ||
* @param heartbeatMs The heartbeat interval in milliseconds | ||
* @param socketType The socket type for logging | ||
* @return The clamped heartbeat interval | ||
*/ | ||
private static long clampHeartbeatInterval(long heartbeatMs, String socketType) { | ||
if (heartbeatMs < MIN_HEARTBEAT_MS) { | ||
logHeartbeatClampWarning(socketType, heartbeatMs, MIN_HEARTBEAT_MS, "below minimum"); | ||
return MIN_HEARTBEAT_MS; | ||
} | ||
if (heartbeatMs > MAX_HEARTBEAT_MS) { | ||
logHeartbeatClampWarning(socketType, heartbeatMs, MAX_HEARTBEAT_MS, "exceeds maximum"); | ||
return MAX_HEARTBEAT_MS; | ||
} | ||
return heartbeatMs; | ||
} | ||
|
||
/** | ||
* Logs a warning when the heartbeat interval is clamped. | ||
* | ||
* @param socketType The socket type | ||
* @param originalMs The original interval value in milliseconds | ||
* @param clampedMs The clamped interval value in milliseconds | ||
* @param reason The reason for clamping | ||
*/ | ||
private static void logHeartbeatClampWarning( | ||
String socketType, long originalMs, long clampedMs, String reason) { | ||
LOG.log( | ||
Level.WARNING, | ||
String.format( | ||
"ZMQ %s socket heartbeat interval %ds %s %ds, clamping to %ds", | ||
socketType, originalMs / 1000, reason, clampedMs / 1000, clampedMs / 1000)); | ||
VietND96 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.