Starting a new set of plots while other plots are running #5530
Unanswered
cpereyra5199
asked this question in
Q&A
Replies: 1 comment 2 replies
-
What do you mean by "My system currently supports 10 plots concurrently". How did calculate how many plots your machine supports? The main concern is that running a lot of plots at the same time might starve some resource. For example, if you start 20 plots at the same time, they might all start writing large amounts of data to disk at the same time, and disks might not be able to keep up. If you stagger when plots are started (for example leaving 30 minutes between starts), then it is a lot less likely that all plots will be doing the same operation at the same time – less likely to starve resources. |
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
Uh oh!
There was an error while loading. Please reload this page.
-
I have a question about concurrent plots. My system currently supports 10 plots concurrently. From what I am reading, which I may be understanding incorrectly, it seems after a certain stage I should be able to start spinning up new plots. Can anyone confirm if this is the case? For example I currently have 10 plots at about 77% complete and I have started another 5 plots. They seem to be running fine, but I don't understand how that is possible if I have 20 threads and 15 plots would use 30. Any explanation would be much appreciated!
Thank you.
Beta Was this translation helpful? Give feedback.
All reactions