-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Could scheduler resume jobs execution after reload? #52
Comments
I would also be interested in a recommended approach for resuming jobs with |
Also metadata_storage trait doesn't have get_all method, only get_by_id( |
The key point here is actually how to correspond to We need to customize our own implementation of Looking forward to the author providing a good solution directly. |
@Dkwcs - the get_all method will definitely help in this regard, also to specify the GUID in creating a Job. |
For now I see only one way to resume jobs execution after reloading service.
I have added custom wrapper over metadata_storage to get all jobs ids then data and use this jobs data to recreate jobs and run them again.
Maybe much more simple way exists?
The text was updated successfully, but these errors were encountered: