重置消费组消费进度到指定位置
功能介绍
Kafka实例不支持在线重置消费进度。在执行重置消费进度之前,必须停止被重置消费组客户端。停止待重置消费组客户端,然后等待一段时间(即ConsumerConfig.SESSION_TIMEOUT_MS_CONFIG配置的时间,默认为1000毫秒)后,服务端才认为此消费组客户端已下线。
URI
POST /v2/{project_id}/instances/{instance_id}/management/groups/{group}/reset-message-offset
参数 |
是否必选 |
参数类型 |
描述 |
---|---|---|---|
project_id |
是 |
String |
项目ID,获取方式请参见获取项目ID。 |
instance_id |
是 |
String |
实例ID。 |
group |
是 |
String |
消费组名称。 |
请求参数
参数 |
是否必选 |
参数类型 |
描述 |
---|---|---|---|
topic |
是 |
String |
topic名称。 |
partition |
否 |
Integer |
分区编号,默认值为-1,若传入值为-1,则重置所有分区。 |
message_offset |
否 |
Integer |
重置消费进度到指定偏移量。
message_offset、timestamp二者必选其一。 |
timestamp |
否 |
Integer |
重置消费进度到指定时间,格式为unix时间戳,单位为毫秒。
message_offset、timestamp二者必选其一。 |
响应参数
无
请求示例
-
重置的消费进度到指定偏移量。
POST https://{endpoint}/v2/{project_id}/instances/{instance_id}/management/groups/{group}/reset-message-offset { "topic" : "test", "partition" : 0, "message_offset" : 10 }
-
重置的消费进度到指定时间。
POST https://{endpoint}/v2/{project_id}/instances/{instance_id}/management/groups/{group}/reset-message-offset { "topic" : "test", "partition" : 0, "timestamp" : 1571812144000 }
响应示例
无
状态码
状态码 |
描述 |
---|---|
204 |
重置消费组消息进度到指定位置操作成功。 |
错误码
请参见错误码。