Skip to content

Commit 9a386f1

Browse files
committed
minor #16691 [Messenger] Revert " Redis Sentinel support" (norbertschultheisz)
This PR was merged into the 5.4 branch. Discussion ---------- [Messenger] Revert " Redis Sentinel support" This reverts commit c4fe71f. Since the documented featured were merged into 6.1 unfutronatly this should be reverted. Commits ------- 3b6ade9 Revert "[Messenger] Redis Sentinel support"
2 parents 433679c + 3b6ade9 commit 9a386f1

File tree

1 file changed

+32
-46
lines changed

1 file changed

+32
-46
lines changed

messenger.rst

Lines changed: 32 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -1454,47 +1454,38 @@ A number of options can be configured via the DSN or via the ``options`` key
14541454
under the transport in ``messenger.yaml``:
14551455

14561456

1457-
======================= ===================================== =================================
1458-
Option Description Default
1459-
======================= ===================================== =================================
1460-
stream The Redis stream name messages
1461-
group The Redis consumer group name symfony
1462-
consumer Consumer name used in Redis consumer
1463-
auto_setup Create the Redis group automatically? true
1464-
auth The Redis password
1465-
delete_after_ack If ``true``, messages are deleted false
1466-
automatically after processing them
1467-
delete_after_reject If ``true``, messages are deleted true
1468-
automatically if they are rejected
1469-
lazy Connect only when a connection is false
1470-
really needed
1471-
serializer How to serialize the final payload ``Redis::SERIALIZER_PHP``
1472-
in Redis (the
1473-
``Redis::OPT_SERIALIZER`` option)
1474-
stream_max_entries The maximum number of entries which ``0`` (which means "no trimming")
1475-
the stream will be trimmed to. Set
1476-
it to a large enough number to
1477-
avoid losing pending messages
1478-
tls Enable TLS support for the connection false
1479-
redeliver_timeout Timeout before retrying a pending ``3600``
1480-
message which is owned by an
1481-
abandoned consumer (if a worker died
1482-
for some reason, this will occur,
1483-
eventually you should retry the
1484-
message) - in seconds.
1485-
claim_interval Interval on which pending/abandoned ``60000`` (1 Minute)
1486-
messages should be checked for to
1487-
claim - in milliseconds
1488-
sentinel_persistent_id String, if null connection is null
1489-
non-persistent.
1490-
sentinel_retry_interval Int, value in milliseconds ``0``
1491-
sentinel_read_timeout Float, value in seconds ``0``
1492-
default indicates unlimited
1493-
sentinel_timeout Float, value in seconds ``0``
1494-
default indicates unlimited
1495-
sentinel_master String, if null or empty Sentinel null
1496-
support is disabled
1497-
======================= ===================================== =================================
1457+
=================== ===================================== =================================
1458+
Option Description Default
1459+
=================== ===================================== =================================
1460+
stream The Redis stream name messages
1461+
group The Redis consumer group name symfony
1462+
consumer Consumer name used in Redis consumer
1463+
auto_setup Create the Redis group automatically? true
1464+
auth The Redis password
1465+
delete_after_ack If ``true``, messages are deleted false
1466+
automatically after processing them
1467+
delete_after_reject If ``true``, messages are deleted true
1468+
automatically if they are rejected
1469+
lazy Connect only when a connection is false
1470+
really needed
1471+
serializer How to serialize the final payload ``Redis::SERIALIZER_PHP``
1472+
in Redis (the
1473+
``Redis::OPT_SERIALIZER`` option)
1474+
stream_max_entries The maximum number of entries which ``0`` (which means "no trimming")
1475+
the stream will be trimmed to. Set
1476+
it to a large enough number to
1477+
avoid losing pending messages
1478+
tls Enable TLS support for the connection false
1479+
redeliver_timeout Timeout before retrying a pending ``3600``
1480+
message which is owned by an
1481+
abandoned consumer (if a worker died
1482+
for some reason, this will occur,
1483+
eventually you should retry the
1484+
message) - in seconds.
1485+
claim_interval Interval on which pending/abandoned ``60000`` (1 Minute)
1486+
messages should be checked for to
1487+
claim - in milliseconds
1488+
=================== ===================================== =================================
14981489

14991490
.. caution::
15001491

@@ -1523,11 +1514,6 @@ sentinel_master String, if null or empty Sentinel null
15231514

15241515
The ``delete_after_reject`` and ``lazy`` options were introduced in Symfony 5.2.
15251516

1526-
.. versionadded:: 5.4
1527-
1528-
The ``sentinel_persistent_id``, ``sentinel_retry_interval``, ``sentinel_read_timeout``,
1529-
``sentinel_timeout``, and ``sentinel_master`` options were introduced in Symfony 5.4.
1530-
15311517
.. deprecated:: 5.4
15321518

15331519
Not setting a explicit value for the ``delete_after_ack`` option is

0 commit comments

Comments
 (0)