diff options
author | Yuval Lifshitz <ylifshit@ibm.com> | 2024-08-15 09:58:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-15 09:58:50 +0200 |
commit | 562cd337dcaf99eff86cdde4fbee409949cfb701 (patch) | |
tree | 164f9e9bec2209f33db33e2703e6a45e44f3c3ff | |
parent | Merge pull request #59225 from zdover23/wip-doc-2024-08-15-glossary-flapping-osd (diff) | |
parent | doc/rgw/notification: persistent notification queue full behavior (diff) | |
download | ceph-562cd337dcaf99eff86cdde4fbee409949cfb701.tar.xz ceph-562cd337dcaf99eff86cdde4fbee409949cfb701.zip |
Merge pull request #59219 from yuvalif/wip-yuval-50610
doc/rgw/notification: persistent notification queue full behavior
Reviewed-By: Anthony D'Atri <anthony.datri@gmail.com>
-rw-r--r-- | doc/radosgw/notifications.rst | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/doc/radosgw/notifications.rst b/doc/radosgw/notifications.rst index 76e8209bd28..2bbd2c52edf 100644 --- a/doc/radosgw/notifications.rst +++ b/doc/radosgw/notifications.rst @@ -61,9 +61,15 @@ Asynchronous Notifications ~~~~~~~~~~~~~~~~~~~~~~~~~~ Notifications can be sent asynchronously. They are committed into persistent -storage and then asynchronously sent to the topic's configured endpoint. In -this case, the only latency added to the original operation is the latency +storage and then asynchronously sent to the topic's configured endpoint. +The notification will be committed to persistent storage only if the triggering +operation was successful. +In this case, the only latency added to the original operation is the latency added when the notification is committed to persistent storage. +If the endpoint of the topic to which the notification is sent is not available for a long +period of time, the persistent storage allocated for this topic will eventually fill up. +When this happens the triggering operations will fail with ``503 Service Unavailable``, +which tells the client that it may retry later. .. note:: If the notification fails with an error, cannot be delivered, or times out, it is retried until it is successfully acknowledged. |