Need some help to understand some config parameters #472
Unanswered
milan-patartics
asked this question in
Q&A
Replies: 1 comment 2 replies
-
If you find the answer... let us know. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I would like to create a job that starts 4 plotting threads with 30 minutes offset for each. But at the same time I also want to early start new plot creations when a thread's progress reaches phase 4 (+10 minutes).
I am bit confused by the max_concurrent and max_concurrent_with_start_early options.
I think the following settings for the scenario I described would work, but I would like to ask you for your opinion to validate that it will do what I am expecting.
max_concurrent: 4
max_concurrent_with_start_early: 8
stagger_minutes: 30
max_for_phase_1: 4 (?)
concurrency_start_early_phase: 4
concurrency_start_early_phase_delay: 10
So would this config start 4 threads at T, T+30, T+60, T+90 and keep creating new plot processes every time a thread reaches phase 4 plus 10 minutes?
Thank you!
Beta Was this translation helpful? Give feedback.
All reactions