浏览代码

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