1.概述
Kafka 原生API交互的Code代表,使用client 与 kafka 交互时,会返回错误代码,官方给出了,代码表示的具体含义
官网地址 https://kafka.apache.org/protocol
下表是Error code 以及相对应的关系
<Error | Code | Retriable | Description |
---|---|---|---|
UNKNOWN_SERVER_ERROR | -1 | False | The server experienced an unexpected error when processing the request. |
NONE | 0 | False | |
OFFSET_OUT_OF_RANGE | 1 | False | The requested offset is not within the range of offsets maintained by the server. |
CORRUPT_MESSAGE | 2 |