[improve][meta] Upgrade Oxia client to 0.9.4#26193
Merged
Merged
Conversation
Oxia Java client 0.9.4 is a performance-focused line of releases over 0.8.0 (rate-adaptive read/write batching with a bounded per-shard in-flight window, shared resources across client instances, and fewer allocations and less lock contention on the hot paths), with no breaking public API changes. - Bump `oxia` from 0.8.0 to 0.9.4 in the version catalog; `oxia-testcontainers` stays at 0.7.4 (its latest published version). - Update the bundled oxia jar versions in the server binary LICENSE file. - Drop the now-deprecated `batchLinger(...)` calls: the setting is a no-op in 0.9.x (batching is adaptive) and is marked for removal. `maxRequestsPerBatch` still honors the configured batching-max-operations, so behavior is unchanged. Assisted-by: Claude Code (Opus 4.8)
nodece
approved these changes
Jul 15, 2026
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Motivation
The Oxia Java client 0.9.x line is a performance-focused set of releases on top of 0.8.0, with no breaking public API changes (each 0.9.x release note states that code built against the prior version keeps compiling):
SharedResources: many client instances in one JVM can share a background thread pool, gRPC connection pool, shard-assignment stream and batcher threads.Modifications
oxiafrom0.8.0to0.9.4in the Gradle version catalog.oxia-testcontainersstays at0.7.4(its latest published version; the two version refs were already decoupled in the 0.8.0 bump).distribution/server/src/assemble/LICENSE.bin.txt. The client's bundled runtime dependencies (slog,caffeine,failsafe) are unchanged between 0.8.0 and 0.9.4, so only the twooxia-client/oxia-client-apijar names change.batchLinger(...)calls inOxiaMetadataStoreandOxiaMetadataStoreProvider.batchLingeris a no-op in 0.9.x (batching is adaptive) and is deprecated for removal.maxRequestsPerBatchstill honors the configuredbatchingMaxOperations, so there is no runtime behavior change.Verifying this change
This change is a dependency upgrade covered by the existing Oxia metadata-store tests (
pulsar-metadataMetadataStore*/Oxia*suites and the Oxia integration tests). Compilation, checkstyle, and dependency resolution were verified locally.Does this pull request potentially affect one of the following parts:
Upgrades
io.github.oxia-db:oxia-clientfrom 0.8.0 to 0.9.4. No public API, wire-protocol, schema, config-default, or metrics changes.