DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
| Code Block | ||||
|---|---|---|---|---|
| ||||
{ "name": "ErrorMessage", "type": "string", "versions": "3+", "nullableVersions": "3+", "ignorable": true, "default": "null",
"about": "The error message, or null if there was no error." } |
A new generic error code is added to the per-group ErrorCode slot:
...
Optional<StreamsGroupTopologyDescription> topologyDescription()— empty unless the field was requested and the plugin returned a description.
AVAILABLE,StreamsGroupTopologyDescriptionStatus topologyDescriptionStatus()— a new enum{
; the remaining values mirror the wire-levelNOT_REQUESTED, NOT_STORED, ERROR, AVAILABLE }. Each enum value's ordinal matches the wire-levelTopologyDescriptionStatusint8 (0, 1, 2, 3).AVAILABLEis reported whenTopologyDescriptionis non-nullTopologyDescriptionStatusint8.
The Admin client exposes a POJO hierarchy in org.apache.kafka.clients.admin that mirrors org.apache.kafka.streams.TopologyDescription but lives in the clients module. The admin client converts the wire-format struct into this hierarchy.
...