我想知道有什么办法只能从旧的偏移量中寻找 1 条消息吗?因为我只想重新处理 1 条消息。
问问题
113 次
1 回答
2
您应该ConsumerSeekAware
在其中实施和:
/**
* When using group management, called when partition assignments change.
* @param assignments the new assignments and their current offsets.
* @param callback the callback to perform an initial seek after assignment.
*/
void onPartitionsAssigned(Map<TopicPartition, Long> assignments, ConsumerSeekCallback callback);
使用它作为该映射中的值执行所需-1
的操作。partition
offset
assignments
于 2017-04-03T23:37:48.263 回答