-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
models: allow more than nine restarts #186
Closed
audrium opened this issue
Nov 29, 2022
· 0 comments
· Fixed by #205 · May be fixed by reanahub/reana-server#637 or reanahub/reana-commons#416
Closed
models: allow more than nine restarts #186
audrium opened this issue
Nov 29, 2022
· 0 comments
· Fixed by #205 · May be fixed by reanahub/reana-server#637 or reanahub/reana-commons#416
Comments
giuseppe-steduto
added a commit
to giuseppe-steduto/reana-db
that referenced
this issue
Oct 2, 2023
Change the workflow table to split the run_number into two integers: one referring to the generation of the workflows, and the other one referring to the restart number, thus removing the limit of 9 restarts. Closes reanahub#186.
giuseppe-steduto
added a commit
to giuseppe-steduto/reana-db
that referenced
this issue
Oct 11, 2023
Change the workflow table to split the run_number into two integers: one referring to the generation of the workflows, and the other one referring to the restart number, thus removing the limit of 9 restarts. Closes reanahub#186.
giuseppe-steduto
added a commit
to giuseppe-steduto/reana-db
that referenced
this issue
Oct 11, 2023
Change the workflow table to split the run_number into two integers: one referring to the generation of the workflows, and the other one referring to the restart number, thus removing the limit of 9 restarts. Closes reanahub#186.
giuseppe-steduto
added a commit
to giuseppe-steduto/reana-db
that referenced
this issue
Oct 11, 2023
Change the workflow table to split the run_number into two integers: one referring to the generation of the workflows, and the other one referring to the restart number, thus removing the limit of 9 restarts. Closes reanahub#186.
giuseppe-steduto
added a commit
to giuseppe-steduto/reana-db
that referenced
this issue
Oct 11, 2023
Change the workflow table to split the run_number into two integers: one referring to the generation of the workflows, and the other one referring to the restart number, thus removing the limit of 9 restarts. Closes reanahub#186.
giuseppe-steduto
added a commit
to giuseppe-steduto/reana-db
that referenced
this issue
Oct 16, 2023
Change the workflow table to split the run_number into two integers: one is the major run number (the number before the dot), and the other one is the minor run number (after the dot), which increases when restarting a workflow, thus removing the limit of 9 restarts. Closes reanahub#186.
giuseppe-steduto
added a commit
to giuseppe-steduto/reana-db
that referenced
this issue
Oct 16, 2023
Change the workflow table to split the run_number into two integers: one is the major run number (the number before the dot), and the other one is the minor run number (after the dot), which increases when restarting a workflow, thus removing the limit of 9 restarts. Closes reanahub#186.
giuseppe-steduto
added a commit
to giuseppe-steduto/reana-db
that referenced
this issue
Oct 30, 2023
Change the workflow table to split the run_number into two integers: one is the major run number (the number before the dot), and the other one is the minor run number (after the dot), which increases when restarting a workflow, thus removing the limit of 9 restarts. Closes reanahub#186.
giuseppe-steduto
added a commit
to giuseppe-steduto/reana-db
that referenced
this issue
Oct 30, 2023
Change the workflow table to split the run_number into two integers: one is the major run number (the number before the dot), and the other one is the minor run number (after the dot), which increases when restarting a workflow, thus removing the limit of 9 restarts. Closes reanahub#186.
mdonadoni
added a commit
to mdonadoni/reana-server
that referenced
this issue
Nov 1, 2023
mdonadoni
added a commit
to mdonadoni/reana-commons
that referenced
this issue
Nov 1, 2023
mdonadoni
added a commit
to mdonadoni/reana-commons
that referenced
this issue
Nov 6, 2023
mdonadoni
added a commit
to mdonadoni/reana-server
that referenced
this issue
Nov 6, 2023
mdonadoni
added a commit
to mdonadoni/reana-commons
that referenced
this issue
Nov 6, 2023
# for free
to join this conversation on GitHub.
Already have an account?
# to comment
After implementing a fix for models: incorrect run number assignment after many restarts we now have a limit to permit at most nine restarts of a workflow:
This is due the way we currently store
run_number
value in the DB as a single float field. We should implement a different way to store this value in the DB which would solve this issue. One possible solution would be to store each run number as two integers and update the rest of the codebase accordingly.The text was updated successfully, but these errors were encountered: