Преглед изворни кода

Update configuration.rst (#5089)

* Update configuration.rst

Put a light on a strange behavior with ``rpc://`` result backend

* Update configuration.rst

* Update configuration.rst
Andrea Rabbaglietti пре 6 година
родитељ
комит
3be4d65782
1 измењених фајлова са 11 додато и 0 уклоњено
  1. 11 0
      docs/userguide/configuration.rst

+ 11 - 0
docs/userguide/configuration.rst

@@ -811,7 +811,18 @@ Example configuration
 
     result_backend = 'rpc://'
     result_persistent = False
+   
+**Please note**: using this backend could trigger the raise of ``celery.backends.rpc.BacklogLimitExceeded`` if the task tombstone is too *old*. 
 
+E.g.  
+
+.. code-block:: python
+
+    for i in range(10000):
+        r = debug_task.delay()
+
+    print(r.state)  # this would raise celery.backends.rpc.BacklogLimitExceeded
+    
 .. _conf-cache-result-backend:
 
 Cache backend settings