-
Hi,
I'm getting the following traceback:
```
Traceback (most recent call last):
File "/usr/lib/python3.5/site-packages/celery/worker/worker.py", line 227, in _process_task
r…
-
With https://github.com/selinon/selinon/issues/14 implemented caches could be reused to cache results of tasks (celery tasks). The difference is that results could be cached only if a Celery task is m…
-
Start the services using Docker Compose as below:
```
$ ./docker-compose.sh up
```
Failure output:
```
data-model-importer_1 | [2017-05-29 06:59:29 +0000] [6] [INFO] Starting gunicorn 19…
-
Add support for parametrizing queues would be cool:
```yaml
tasks:
- name: FooTask
import: my.module
queue: "{DEPLOY_QUEUE_PREFIX}footask"
```
`DEPLOY_QUEUE_PREFIX` could be `deploy…
-
It would be nice to add cache support to storage pool. This way workers can hit cache and do not necessarily query database for already available results (in Dispatcher task and SelinonTaskEnvelope ta…
-
Currently if there is a configuration misspelling, selinonlib skips the entry, It would be nice to print at least a warning about unknown key.
-
Currently, there is no possibility to get info about exceptions that were raised in tasks. To be more precise it is possible to get using Celery routines, but would worth to encapsulate this in Selino…
-
Currently, Selinon uses auto-generated code from selinonlib. It was nice for debugging the initial implementation, but we should avoid code auto-generation.
-
SSIA
-
Currently, there is no way how to define a flow which would spawn N tasks based on iterable. A use case:
I want to spawn _N-times_ Task2 based on results of Task1. The YAML configuration could be:
`…