Skip to content
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

[BUG] Plot mover isn't working #105

Open
tekstaker opened this issue Jul 11, 2021 · 5 comments
Open

[BUG] Plot mover isn't working #105

tekstaker opened this issue Jul 11, 2021 · 5 comments
Labels
bug Something isn't working

Comments

@tekstaker
Copy link

Describe the bug
Plot mover isn't working for me. After a while, the outdrive just fills up, and the ploto script terminates.

To Reproduce
I have a bunch of paths. Some exist, some are full.

eg:

...
    "EnableMover":  "true",
    "PathsToMovePlotsTo":  "H:\\chia_nft_plots,I:\\chia_nft_plots,J:\\chia_nft_plots,L:\\chia_nft_plots,M:\\chia_nft_plots,O:\\chia_nft_plots,P:\\chia_nft_plots",
    "DiskConfig":  [
...

Expected behavior

  • an error should be generated for missing folders.
  • a warning should be generated for full folders.
  • the script should try to fill the drives, starting with the first one in the list and working it's way to the last drive.
  • it would be nice if the UI returned information about the status of the mover process. eg: No plots found to move, sleeping for 60 seconds. ; Moving plot from E:\adfadfasdfdsf.plot to G:\PlotArchive\adfadfasdfdsf.plot @ 12.6MB/s, ETA 1.2hrs.
  • it would be nice if the mover could move the plots in parallel - I have a SSD outdrive, but the final drives are spinners. So I could actually move 4 plots from the SSD to 4 different drives at the same time, without the SSD being the bottleneck.

Ploto Version in use

  • it would be nice if ploto spawns showed the version number.

image

Additional context
@KillaDreams says that maybe we should use a single forward slash instead of the double backslashes in the PathsToMovePlotsTo parameter.

@tekstaker tekstaker added the bug Something isn't working label Jul 11, 2021
@tekstaker
Copy link
Author

Here's a screenshot of the plotmover NOT finding valid plots in the outdrive:
image

As you can see, there are two files in the outdrive awaiting transfer.

@chefsas
Copy link

chefsas commented Jul 12, 2021

@lanceosaurus can you confirm if Ploto-Mover is copying the files to the final destination you have specified in your config? I figured out that's what Ploto was doing with mine. They were being copied to the final destination, but Ploto would not delete them from the staging drive (source). I ended up having to setup a robocopy script that monitors the folders periodically for .PLOT files and moves them. That seems to be working for me right now.

@tekstaker
Copy link
Author

tekstaker commented Jul 12, 2021 via email

@chefsas
Copy link

chefsas commented Jul 12, 2021

FYI -- here's the script I leave running in PowerShell -- it scans when 2 changes are detected (/mon:2) and moves the plots from E:\ to Z:\ (which is a network share on my farmer). I have multiple staging drives, so I just open multiple PowerShell windows and adjust the drive paths as necessary. This is messy because it isn't smart enough to move to the next final drive when Z:\ fills like Ploto would....

robocopy /mov /mon:2 E:\ Z:\ *.PLOT

@tekstaker
Copy link
Author

Yes, I too have a manual script to move them.... but they are supposed to be automagically moved by Ploto!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants