This document describes the current stable version of Celery (5.2). For development docs, go here.
celery.utils.collections
¶
Custom maps, sets, sequences, and other data structures.
- class celery.utils.collections.AttributeDictMixin[source]¶
Mixin for Mapping interface that adds attribute access.
I.e., d.key -> d[key]).
- class celery.utils.collections.BufferMap(maxsize: int, iterable: Iterable = None, bufmaxsize: int = 1000)[source]¶
Map of buffers.
- Buffer¶
alias of
Messagebuffer
- exception Empty¶
Exception raised by Queue.get(block=0)/get_nowait().
- bufmaxsize = None¶
- maxsize = None¶
- total = 0¶
- class celery.utils.collections.ChainMap(*maps: Mapping, **kwargs: Any)[source]¶
Key lookup on a sequence of maps.
- changes = None¶
- defaults = None¶
- classmethod fromkeys(iterable: type, *args: Iterable) ChainMap [source]¶
Create a ChainMap with a single dict created from the iterable.
- items() a set-like object providing a view on D's items ¶
- key_t = None¶
- keys() a set-like object providing a view on D's keys ¶
- maps = None¶
- pop(k[, d]) v, remove specified key and return the corresponding value. [source]¶
If key is not found, d is returned if given, otherwise KeyError is raised.
- update([E, ]**F) None. Update D from mapping/iterable E and F. [source]¶
If E present and has a .keys() method, does: for k in E: D[k] = E[k] If E present and lacks .keys() method, does: for (k, v) in E: D[k] = v In either case, this is followed by: for k, v in F.items(): D[k] = v
- values() an object providing a view on D's values ¶
- class celery.utils.collections.ConfigurationView(changes: Mapping, defaults: Mapping = None, keys: List[str] = None, prefix: str = None)[source]¶
A view over an applications configuration dictionaries.
Custom (but older) version of
collections.ChainMap
.If the key does not exist in
changes
, thedefaults
dictionaries are consulted.- Parameters:
changes (Mapping) – Map of configuration changes.
defaults (List[Mapping]) – List of dictionaries containing the default configuration.
- swap_with(other: ConfigurationView) None [source]¶
- class celery.utils.collections.DictAttribute(obj: Any)[source]¶
Dict interface to attributes.
obj[k] -> obj.k obj[k] = val -> obj.k = val
- obj = None¶
- class celery.utils.collections.Evictable[source]¶
Mixin for classes supporting the
evict
method.- exception Empty¶
Exception raised by Queue.get(block=0)/get_nowait().
- class celery.utils.collections.LimitedSet(maxlen: int = 0, expires: float = 0, data: Mapping = None, minlen: int = 0)[source]¶
Kind-of Set (or priority queue) with limitations.
Good for when you need to test for membership (a in set), but the set should not grow unbounded.
maxlen
is enforced at all times, so if the limit is reached we’ll also remove non-expired items.You can also configure
minlen
: this is the minimal residual size of the set.All arguments are optional, and no limits are enabled by default.
- Parameters:
maxlen (int) – Optional max number of items. Adding more items than
maxlen
will result in immediate removal of items sorted by oldest insertion time.expires (float) – TTL for all items. Expired items are purged as keys are inserted.
minlen (int) –
Minimal residual size of this set. .. versionadded:: 4.0
Value must be less than
maxlen
if both are configured.Older expired items will be deleted, only after the set exceeds
minlen
number of items.data (Sequence) – Initial data to initialize set with. Can be an iterable of
(key, value)
pairs, a dict ({key: insertion_time}
), or another instance ofLimitedSet
.
Example
>>> s = LimitedSet(maxlen=50000, expires=3600, minlen=4000) >>> for i in range(60000): ... s.add(i) ... s.add(str(i)) ... >>> 57000 in s # last 50k inserted values are kept True >>> '10' in s # '10' did expire and was purged from set. False >>> len(s) # maxlen is reached 50000 >>> s.purge(now=time.monotonic() + 7200) # clock + 2 hours >>> len(s) # now only minlen items are cached 4000 >>>> 57000 in s # even this item is gone now False
- add(item: Any, now: float = None) None [source]¶
Add a new item, or reset the expiry time of an existing item.
- as_dict() Dict [source]¶
Whole set as serializable dictionary.
Example
>>> s = LimitedSet(maxlen=200) >>> r = LimitedSet(maxlen=200) >>> for i in range(500): ... s.add(i) ... >>> r.update(s.as_dict()) >>> r == s True
- max_heap_percent_overload = 15¶
- class celery.utils.collections.Messagebuffer(maxsize: int, iterable: ~typing.Iterable = None, deque: ~typing.Any = <class 'collections.deque'>)[source]¶
A buffer of pending messages.
- exception Empty¶
Exception raised by Queue.get(block=0)/get_nowait().