Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: scylladb/java-driver
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 3.11.5.13
Choose a base ref
...
head repository: scylladb/java-driver
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3.11.5.14
Choose a head ref
  • 3 commits
  • 23 files changed
  • 2 contributors

Commits on Mar 9, 2026

  1. Configuration menu
    Copy the full SHA
    fa0150c View commit details
    Browse the repository at this point in the history

Commits on Apr 15, 2026

  1. fix: improve driver-side timeout logging with timeout value and pool …

    …state (#867)
    
    When OperationTimedOutException fires in SpeculativeExecution.onTimeout(),
    log the configured driver-side timeout, per-connection in-flight count,
    pool pending borrow queue length, and total pool in-flight count.
    
    This helps distinguish between two failure modes:
    - Pool contention (requests queued inside the driver before reaching server):
      visible as pool pending borrows > 0
    - Server-side slowness (requests reached server but driver gave up first):
      visible as pool pending borrows = 0 with high connection in-flight
    
    To expose the timeout value, ResponseHandler.readTimeoutMillis is widened
    from private to package-private. All access remains within
    com.datastax.driver.core.
    
    Motivated by CUSTOMER-301 (Whoop): client-side OperationTimedOutException
    bursts with no corresponding server-side timeouts, requiring diagnostics
    to determine whether the bottleneck is in the driver pool or on the server.
    nikagra authored Apr 15, 2026
    Configuration menu
    Copy the full SHA
    cfb7018 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    87874de View commit details
    Browse the repository at this point in the history
Loading