What is the best way to archive all the task info? #1382
Unanswered
candleindark
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Context:
Information of executed tasks is stored as part of Flower's state, and the state of Flower is saved to a database file specified by the db option. Flower only keeps information about the most recently executed tasks up to the number specified by
max_tasks
. Increasing the value ofmax_tasks
make writing to the database file more costly.Goal:
I want to store information about all the tasks ever executed efficiently and retrieve this information efficiently once it's stored.
Question:
Is it possible to direct Flower to store the information of tasks to a database server such as Postgres?
Beta Was this translation helpful? Give feedback.
All reactions