apalis: Bug with SQLite storage
The only example with multiple jobs is the examples/rest-api
, but it uses a different storage type for each job. I have a requirement wherein my application has multiple jobs but I want to use the same database for each job. This does not seem possible for now, since when I do this, new jobs are often not deployed.
Right now I am creating a new in-memory database for each job I have but I would like to store them on an actual sqlite database. How can I do this?
About this issue
- Original URL
- State: closed
- Created a year ago
- Comments: 16 (9 by maintainers)
Commits related to this issue
- feat(backend): use apalis for cron jobs As mentioned in https://github.com/geofmureithi/apalis/issues/89#issuecomment-1550867310. — committed to IgnisDa/ryot by IgnisDa a year ago
- feat(backend): use apalis for cron jobs As mentioned in https://github.com/geofmureithi/apalis/issues/89#issuecomment-1550867310. — committed to IgnisDa/ryot by IgnisDa a year ago
- Improvements to scheduler (#28) * docs(video-games): add reference to config docs * feat(frontend): add loading UI * build(backend): bump version * feat(frontend): display item source * p... — committed to IgnisDa/ryot by IgnisDa a year ago
Thank you, got it working!
Thank you, it works now!
The error comes from decoding the jobtype you are pushing. I will try and create for you a simple working example.