Using watchfiles and exec commands in bin scripts
parent
aa3dc3dba4
commit
62da4a19ac
@ -1,3 +1,18 @@
|
|||||||
# FastAPI and Celery
|
# FastAPI and Celery
|
||||||
|
|
||||||
Learning distributed task queues by doing. Since it's a greenfield project this also uses a newer async web framework.
|
Learning distributed task queues by doing. Since it's a greenfield project this also uses a newer async web framework.
|
||||||
|
|
||||||
|
## Debugging Celery
|
||||||
|
|
||||||
|
### Check results in redis result backend
|
||||||
|
|
||||||
|
```
|
||||||
|
docker-compose exec redis sh
|
||||||
|
redis-cli
|
||||||
|
KEYS celery*
|
||||||
|
MGET celery-task-meta-<UID of Task>
|
||||||
|
```
|
||||||
|
|
||||||
|
### Checking results in Flower
|
||||||
|
|
||||||
|
`0.0.0.0:
|
||||||
|
Loading…
Reference in New Issue