コンシューマーグループロジックの実装
グループの作成、`XREADGROUP` によるメッセージの読み取り、`XACK` による処理の確認を学びます。
「コンシューマーグループロジックの実装」はCoddyKit上の無料Redis Caching & Messaging (Pub/Sub, Streams)レッスンです。 これはレッスン2/4です。 下記で完全なレッスンを無料で読むことができます。その後、ブラウザ内の組み込みコードエディタと24時間対応のAIチューターでハンズオン演習できます。 これはRedis Caching & Messaging (Pub/Sub, Streams)学習パスの一部であり、ウェブとCoddyKitアプリ全体で進捗が同期されます。 Redis Caching & Messaging (Pub/Sub, Streams)コースには全4レッスンが含まれています。
このレッスンの一部はまだ翻訳されておらず、英語で表示されています。
Welcome to Consumer Groups!
In the previous lesson, we learned what Redis Streams are. Now, let's dive into Consumer Groups! They are a powerful feature that lets multiple clients process messages from a stream cooperatively.
Imagine a team of workers processing tasks from a single to-do list. Each worker gets unique tasks, and if one fails, others can pick up pending tasks. That's what Consumer Groups enable!
Set Up Your Group
Before consumers can join, you need to create a Consumer Group for your stream. This is done using the XGROUP CREATE command.
It tells Redis: "Hey, for this stream, make a new group." You also specify an ID, which is typically 0 or $ to start reading from the beginning or end of the stream.
Create Your First Group!
Let's create a group named mygroup for a stream called mystream. The $ means "start reading from the latest entry." The MKSTREAM option is crucial: it creates the stream if it doesn't already exist!
Try it out:
XGROUP CREATE mystream mygroup $ MKSTREAMReading with `XREADGROUP`
Once a group is created, consumers can start reading messages using the XREADGROUP command. This command is designed specifically for consumer groups.
It ensures that each message is delivered to only one consumer within the group. If a consumer fails to acknowledge a message, it remains pending and can be claimed later.
Decoding `XREADGROUP`
The XREADGROUP command has several important parameters:
GROUP <groupname> <consumername>: Specifies which group and consumer are reading.COUNT <N>: Optional. Limits the number of messages to read.BLOCK <milliseconds>: Optional. Blocks the client if no messages are available.STREAMS <streamname> <ID>: The stream to read from and the ID. Use>to get new messages that haven't been delivered to any other consumer in the group yet.
Let's Read Some Messages!
First, let's add a few messages to our mystream:
XADD mystream * event start task:1
XADD mystream * event process task:1Consumer Reads New Messages
Now, let's have a consumer named consumer-1 from mygroup read from mystream. The > ID means "new, unread messages."
XREADGROUP GROUP mygroup consumer-1 STREAMS mystream >Confirming Message Processing
After a consumer successfully processes a message, it's crucial to acknowledge it. This tells Redis that the message has been handled and can be removed from the consumer's Pending Entries List (PEL).
Acknowledgment prevents the same message from being re-delivered to another consumer if the current one crashes or goes offline before completing the task.
How to `XACK`
The command to acknowledge messages is XACK. Its syntax is straightforward:
XACK <streamname> <groupname> <ID> [ID ...]You provide the stream name, the consumer group name, and one or more message IDs that have been successfully processed.
Put `XACK` into Practice
Let's assume you received message IDs 1678881234567-0 and 1678881234568-0 from the previous read. You would acknowledge them like this (replace with your actual IDs):
XACK mystream mygroup 1678881234567-0 1678881234568-0Test Your Knowledge
You've learned how to create groups, read messages, and acknowledge them. Which of the following statements about Redis Consumer Groups is TRUE?
Recap: Consumer Group Logic
Great job! You've mastered the fundamentals of implementing Redis Consumer Group logic:
- We used
XGROUP CREATEto set up a new group for a stream. - You learned to read messages cooperatively as a consumer with
XREADGROUP. - We saw how
XACKis vital for acknowledging processed messages, managing the Pending Entries List (PEL).
Next, we'll explore how to handle pending messages and consumer failures more robustly!
よくある質問
「コンシューマーグループロジックの実装」レッスンは無料ですか?
はい。「コンシューマーグループロジックの実装」の完全なテキストはこのウェブで無料で読めます。インタラクティブに演習し(組み込みコードエディタと24時間対応のAIチューター)、Redis Caching & Messaging (Pub/Sub, Streams)コースの残りをアンロックするには、CoddyKit PROにアップグレードしてください。 Redis Caching & Messaging (Pub/Sub, Streams)コースには全4レッスンが含まれています。
「コンシューマーグループロジックの実装」で何を学びますか?
グループの作成、`XREADGROUP` によるメッセージの読み取り、`XACK` による処理の確認を学びます。 ブラウザで直接実行するハンズオンコードでRedis Caching & Messaging (Pub/Sub, Streams)を演習し、24時間対応のAIチューターがレッスンを進める中での質問に答えます。
Redis Caching & Messaging (Pub/Sub, Streams)を始めるのに経験は必要ですか?
事前経験は必要ありません。CoddyKitのRedis Caching & Messaging (Pub/Sub, Streams)は初級者から上級者向けに構成されているため、ここから始めるか最初から始めて、自分のペースで進むことができます。 これはレッスン2/4です。
「コンシューマーグループロジックの実装」レッスンにはどのくらい時間がかかりますか?
ほとんどのCoddyKitレッスンは約5~10分かかります。各レッスンはコンパクトでインタラクティブなので、着実に進歩し、ウェブとアプリ全体で正確に前回の場所から再開できます。
このRedis Caching & Messaging (Pub/Sub, Streams)レッスンでコードを書いて実行できますか?
はい。すべてのRedis Caching & Messaging (Pub/Sub, Streams)レッスンに組み込みコードエディタが含まれているため、ブラウザでリアルコードを書いて実行し、即座のAIフィードバックを取得できます。ローカル設定は不要です。
このコースのすべてのレッスン
- コンシューマーグループ入門
- コンシューマーグループロジックの実装
- 保留中のメッセージと障害への対処
- コンシューマーグループの遅延を監視する