Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion messenger.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1768,7 +1768,21 @@ under the transport in ``messenger.yaml``:
The Redis consumer group name

``consumer`` (default: ``consumer``)
Consumer name used in Redis
Consumer name used in Redis. Allows to set explicit consumer name identifier.
Recommended for environments with multiple workers to prevent duplicate message processing.
Typically set via environment variable:

.. code-block:: yaml

# config/packages/messenger.yaml
framework:
messenger:
transports:
redis:
dsn: '%env(MESSENGER_TRANSPORT_DSN)%'
options:
consumer: '%env(MESSENGER_CONSUMER_NAME)%'


``auto_setup`` (default: ``true``)
Whether to create the Redis group automatically
Expand Down