Speed up sequential plotting by separating the plotting process and transfer of completed plot #548
Replies: 3 comments 2 replies
-
you are not wrong... but you could potentially cut it a bit down, if you add the |
Beta Was this translation helpful? Give feedback.
-
I recently proposed to #dev to wrap the final step (rename and where it matters most copy) into a thread, so plotting of a new file is not delayed. |
Beta Was this translation helpful? Give feedback.
-
I have a general question regarding the plotting. Is the data being transfered sequential or random? |
Beta Was this translation helpful? Give feedback.
-
Plotting with network-attached storage as destination
Consider the case where one creates sequential plots with the destination folder
-d
set to a NAS (Network Attached Storage) directory. For example, suppose we have a plotting process for two consecutive plots initiated with:chia plots create -k 32 -n 2 -t /media/user/SSD
-d/home/user/mnt/my_shared_nas_volume
/media/user/SSD
(local drive) to/home/user/mnt/my_shared_volume
(network attached drive via NFS or CIFS).The file transfer will "block" the creation of the second plot (step 2 above) — with WiFi connection this can take well over 3.5 hours to complete!
Potential time saving
-d
. When the plot is completed, it can then be transferred / copied to the NAS while the second plot has started.👋 I might have missed something obvious, so please correct me if there is a better way to handle such a situation.
Beta Was this translation helpful? Give feedback.
All reactions