feat(inkless): add inkless.client.az.listener.map config#683
Merged
Conversation
gqmelo
force-pushed
the
gqmelo/producer-rack-add-listener-map-config
branch
2 times, most recently
from
July 3, 2026 11:52
d8caf7f to
551f9d1
Compare
gqmelo
marked this pull request as ready for review
July 3, 2026 12:30
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a new Inkless configuration option to support mapping client-facing listener aliases to availability-zone (rack) IDs, enabling AZ-aware client routing for diskless topic metadata.
Changes:
- Introduces
client.az.listener.maptoInklessConfigwith parsing/validation logic and a public accessor. - Adds unit tests covering parsing, normalization, defaults, and validation errors.
- Documents the new configuration option in the generated Inkless configs documentation.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| storage/inkless/src/main/java/io/aiven/inkless/config/InklessConfig.java | Defines the new config, parses LISTENER=az entries, validates, and exposes clientAzListenerMap() |
| storage/inkless/src/test/java/io/aiven/inkless/config/InklessConfigTest.java | Adds tests for correct parsing, normalization, defaults, and invalid input handling |
| docs/inkless/configs.rst | Documents the new config entry under inkless. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This adds a new Inkless config `inkless.client.az.listener.map` that will be used to map listeners to specific AZs so that clients can connect to a broker that is in the same AZ. [KC-256]
gqmelo
force-pushed
the
gqmelo/producer-rack-add-listener-map-config
branch
from
July 3, 2026 12:53
551f9d1 to
65dc26b
Compare
giuseppelillo
approved these changes
Jul 7, 2026
jeqo
pushed a commit
that referenced
this pull request
Jul 8, 2026
This adds a new Inkless config `inkless.client.az.listener.map` that will be used to map listeners to specific AZs so that clients can connect to a broker that is in the same AZ. [KC-256]
jeqo
pushed a commit
that referenced
this pull request
Jul 8, 2026
This adds a new Inkless config `inkless.client.az.listener.map` that will be used to map listeners to specific AZs so that clients can connect to a broker that is in the same AZ. [KC-256]
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.
This adds a new Inkless config
inkless.client.az.listener.mapthat will be used to map listeners to specific AZs so that clients can connect to a broker that is in the same AZ.