Skip to main content

A concurrent.futures.Executor implementation using Celery as backend

Project description

Celery Executor

PyPI version fury.io Build Status Read The Docs PyUP

A concurrent.futures.Executor implementation using Celery as backend

Features

The package provides a CeleryExecutor implementing the interface of concurrent.futures.Executor

>>> from celery_executor.executors import CeleryExecutor
>>> executor = CeleryExecutor()
>>> for result in executor.map(str.upper, ['one', 'two', 'three']):
...     print(result)
ONE
TWO
THREE

Beware that the Executor.map() interface can yield the results out of order, if later ones got to finish first.

Caveats

This executor frees the developer to the burden of mark every single task function with the Celery decorators, and to import such tasks on the Worker beforehand. But does not frees from sending the code to the Worker.

The function sent to CeleryExecutor.map() should be pickable on the client (caller of .map() or .submit()) and should be unpickable on the Celery Worker handling the "Task" sent. Is not possible to send lambdas for example.

As Celery assumes that is to the developer to put the needed code on the Worker, be sure that the function/partial code sent to CeleryExecutor to exist on the Worker.

To Be Done

  • Document the CeleryExecutor.__init__() nonstandard extra options predelay, postdelay and applyasync_kwargs.
  • Test behaviours of canceling a Task when canceling a Future
  • Test behaviours of shutting down executors and trying to send new tasks
  • Find a way to test the RUNNING state of Celery Tasks, as its events are not propagated by the test worker Celery provides

Credits

This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.

======= History

0.1.0 (2018-05-25)

  • First release on PyPI.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

celery-executor-0.2.0.tar.gz (12.6 kB view details)

Uploaded Source

Built Distribution

celery_executor-0.2.0-py2.py3-none-any.whl (4.6 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file celery-executor-0.2.0.tar.gz.

File metadata

File hashes

Hashes for celery-executor-0.2.0.tar.gz
Algorithm Hash digest
SHA256 141f4de4175df60e00b1534b2243e0d8bedda08be0cc55bc1a9e3dc2a169fbca
MD5 8beccc9a64fc652f86f0f028dd18d1b7
BLAKE2b-256 ba304791f9180276c36f2f0a7980fa890b477813dc9c4d6434d8418b0b338936

See more details on using hashes here.

File details

Details for the file celery_executor-0.2.0-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for celery_executor-0.2.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 1ca778c0a59652bf4480af1489e9ba1315d38315ea9939c6ef5df348c3e4ba08
MD5 6ec6b2e03cd0884d2d552514abb0711c
BLAKE2b-256 71c843caf397e90a0cedb93811aedfe88ce6df9c4ab9eb44881c89b313b59f40

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page