How to Persist Scheduled Jobs at Runtime in Taskiq for FastAPI with NATS? #449
Unanswered
Atanusaha143
asked this question in
Q&A
Replies: 1 comment 3 replies
-
Yes, of course there is a mechanism. First of all, you can pick for example ListRedisScheduleSource from taskiq-redis. Or alternatively you can implement your own schedule source. To schedule tasks dynamically, check out this section of docs. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi everyone,
I'm currently working on a FastAPI project where I need to schedule jobs dynamically at runtime with NATS. For my use case, it's crucial to persist these scheduled jobs so that they survive restarts or crashes.
I'm exploring Taskiq for this, and I was wondering—does Taskiq offer any built-in support for persisting scheduled jobs with the help of NATS on FastAPI? Or would I need to implement my own persistence mechanism?
Any insights or recommended approaches would be greatly appreciated!
Thanks in advance!
Beta Was this translation helpful? Give feedback.
All reactions