Procházet zdrojové kódy

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 před 6 roky
rodič
revize
3be4d65782
1 změnil soubory, kde provedl 11 přidání a 0 odebrání
  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