DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
| Table of Contents |
|---|
Status
Current state: Under Discussion Accepted
Discussion thread: here
JIRA: here
...
However, there is no way to set configs specifically for the admin client without affecting producers or consumers.
Drawbacks of the current approach:
Without the remote.log.metadata.admin. config prefix, admin client configs must be set using the common remote.log.metadata.common.client. prefix. This poses several limitations:
Lack of isolation: Admin-specific configs cannot be separated from general client configs, potentially leading to conflicts or suboptimal settings for admin operations.
Limited flexibility: Admin clients may require different configs (e.g., timeouts, retries, security settings) compared to producers/consumers, but the current approach forces shared settings.
Operational constraints: In environments where admin operations need stricter security or different network configs, the inability to isolate these settings creates operational challenges.
Public Interfaces
- Add a new prefix in `TopicBasedRemoteLogMetadataManagerConfig`
| Code Block | ||||
|---|---|---|---|---|
| ||||
public static final String REMOTE_LOG_METADATA_ADMIN_PREFIX = "remote.log.metadata.admin."; |
Config Precedence:
The remote.log.metadata.admin. prefix will take precedence over remote.log.metadata.common.client. The config resolution order will be:
remote.log.metadata.admin.(highest priority)remote.log.metadata.common.client.(fallback)Default values (lowest priority)
Proposed Changes
The admin prefix will be added to the TopicBasedRemoteLogMetadataManagerConfig, allowing users to set config exclusively for the admin client.
...