处理待处理消息与故障
探索管理待处理消息、从消费者故障中恢复以及重新处理消息的策略
处理待处理消息与故障 是 CoddyKit 上的免费 Redis Caching & Messaging (Pub/Sub, Streams) 课时。 这是第 3 节课,共 4 节。 你可以在下方免费阅读本课时的完整内容 — 然后在浏览器中使用内置代码编辑器和全天候 AI 导师进行实践。 这是 Redis Caching & Messaging (Pub/Sub, Streams) 学习路径的一部分,你的进度在网页和 CoddyKit 应用中同步。 Redis Caching & Messaging (Pub/Sub, Streams) 课程共包含 4 节课。
本课时的部分内容尚未翻译,以英文显示。
Understanding Pending Messages
In Redis Streams, a Consumer Group allows multiple consumers to process messages from a stream.
When a consumer reads a message using XREADGROUP, the message isn't immediately removed. Instead, it's marked as pending for that consumer.
If a consumer crashes or fails to acknowledge a message (using XACK), that message remains pending. This ensures no data loss, but it also means the message isn't fully processed.
Inspecting Pending Messages
Redis provides the XPENDING command to see which messages are pending for a specific consumer group, or even for a specific consumer within that group.
- It helps identify messages that haven't been acknowledged.
- You can see which consumer is responsible for a message.
- It reveals how long a message has been pending.
This is crucial for monitoring the health and progress of your stream processing.
Example: `XPENDING` in Action
Let's simulate a scenario where a consumer reads a message but fails to acknowledge it. Then, we'll use XPENDING to see it.
First, set up a stream and group, add a message, and read it without XACK:
XGROUP CREATE mystream mygroup 0 MKSTREAM
XADD mystream * sensor-id 1 value 10
XREADGROUP GROUP mygroup myconsumer COUNT 1 STREAMS mystream >
XPENDING mystream mygroupDeciphering `XPENDING` Output
The XPENDING output provides vital information about each pending message:
- Message ID: The unique ID of the pending message.
- Consumer Name: The consumer currently assigned this message.
- Idle Time: How long the message has been pending (in milliseconds).
- Delivery Counter: How many times this message has been delivered. A high count might indicate a problematic message.
This data helps you decide if a message needs manual intervention or re-processing.
Manually Claiming Messages (`XCLAIM`)
If a consumer fails permanently, its pending messages will never be acknowledged. To prevent these messages from being stuck, another healthy consumer can claim them.
The XCLAIM command allows you to transfer ownership of one or more pending messages from a "stuck" consumer to a new consumer.
You specify the stream, group, new owner, minimum idle time, and the message IDs to claim.
Demonstrating `XCLAIM`
Continuing from our previous example, suppose myconsumer failed. We can claim its pending message for a newconsumer:
(Replace 1678881234567-0 with an actual Message ID from your XPENDING output.)
XCLAIM mystream mygroup newconsumer 3600000 1678881234567-0
XACK mystream mygroup 1678881234567-0
XPENDING mystream mygroupAutomated Recovery with `XAUTOCLAIM`
Manually identifying and claiming messages can be tedious, especially with many consumers or messages. Redis 6.2+ introduced XAUTOCLAIM for a more automated approach.
XAUTOCLAIM automatically identifies messages that have been pending for longer than a specified idle time and transfers them to a new consumer.
It's ideal for quickly reassigning messages from failed consumers without needing to list individual message IDs.
Using `XAUTOCLAIM`
Let's add another message, read it with myconsumer, let it go pending. Then we'll use XAUTOCLAIM to move it:
XADD mystream * sensor-id 2 value 20
XREADGROUP GROUP mygroup myconsumer COUNT 1 STREAMS mystream >
XPENDING mystream mygroup
XAUTOCLAIM mystream mygroup newconsumer 0 COUNT 1
XPENDING mystream mygroupGuaranteed Delivery & Idempotency
Redis Streams, with consumer groups, guarantees at-least-once delivery. This means a message is guaranteed to be delivered, but it might be delivered more than once (e.g., if a consumer fails before acknowledging).
For reliable processing, your application logic should be idempotent. An idempotent operation produces the same result regardless of how many times it's executed with the same input.
- Check if a record already exists before inserting.
- Use unique transaction IDs to prevent duplicate processing.
Quick Check: Message Recovery
A consumer in your Redis Stream group processed a message but crashed before acknowledging it. What are the consequences and how can you resolve this?
Recap: Robust Stream Processing
We've learned how to handle messages that become pending due to consumer failures in Redis Streams:
XPENDINGhelps identify unacknowledged messages.XCLAIMallows manual transfer of message ownership.XAUTOCLAIMprovides an automated way to reassign messages.- Understanding at-least-once delivery and designing idempotent consumers is key for reliable processing.
These tools ensure your stream processing remains resilient even when consumers fail.
用 AI 导师学习 Redis Caching & Messaging (Pub/Sub, Streams) — 免费
在浏览器中编写并运行真实代码,获得全天候 AI 导师的即时帮助,并在网页或应用中继续学习。
- 课程
- 12
- 课程
- 48
常见问题解答
「处理待处理消息与故障」课时是免费的吗?
是的 — 「处理待处理消息与故障」的完整文本可在网页上免费阅读。要进行交互式练习(内置代码编辑器和全天候 AI 导师)并解锁 Redis Caching & Messaging (Pub/Sub, Streams) 课程的其余内容,请升级到 CoddyKit PRO。 Redis Caching & Messaging (Pub/Sub, Streams) 课程共包含 4 节课。
「处理待处理消息与故障」这节课中我会学到什么?
探索管理待处理消息、从消费者故障中恢复以及重新处理消息的策略 你通过在浏览器中直接运行的动手代码来练习 Redis Caching & Messaging (Pub/Sub, Streams),全天候 AI 导师会在你学习这节课的过程中回答你的问题。
学习 Redis Caching & Messaging (Pub/Sub, Streams) 需要有经验吗?
无需任何先前经验。CoddyKit 上的 Redis Caching & Messaging (Pub/Sub, Streams) 课程适合初学者到高级学习者,你可以从这里开始或从头开始,按照自己的节奏学习。 这是第 3 节课,共 4 节。
「处理待处理消息与故障」课时需要多长时间?
大多数 CoddyKit 课程大约需要 5–10 分钟。每节课都很精短且互动,所以你能稳步进步,并在网页和应用中从离开的地方继续。
我能在这节 Redis Caching & Messaging (Pub/Sub, Streams) 课中编写并运行代码吗?
能。每节 Redis Caching & Messaging (Pub/Sub, Streams) 课都包含内置代码编辑器,你可以在浏览器中直接编写并运行真实代码,并获得即时 AI 反馈 — 无需本地设置。