[Plugin] unbalanced


Recommended Posts

I'm running into an odd issue where I ran unbalanced for scattering directly from one drive to an empty drive (with +2TB greater space than the source drive, so plenty of room).  Most things moved fine, but one top-level folder (a share) is having all of the files skipped with a yellow checkmark next to them.  I've run docker-safe permissions multiple times.  Here is a small example of what is being spit out in the log file: 

2024/03/22 02:39:00 command started: (src: /mnt/disk8) rsync -avPR -X "Unraid TV/For All Mankind" "/mnt/disk2/"

2024/03/22 02:39:01 command:end:error(exit status 23)

2024/03/22 02:39:01 command:retcode(0):exitcode(23)

2024/03/22 02:39:01 Command Finished

2024/03/22 02:39:01 Current progress: 52.04% done ~ 24s left (0.00 MB/s)

2024/03/22 02:39:01 skipping:deletion:(rsync command was flagged):(/mnt/disk2/Unraid TV/For All Mankind)

2024/03/22 02:39:01 command started: (src: /mnt/disk8) rsync -avPR -X "Unraid TV/The Newsroom 2012" "/mnt/disk2/"

2024/03/22 02:39:01 command:end:error(exit status 23)

2024/03/22 02:39:01 command:retcode(0):exitcode(23)

2024/03/22 02:39:01 Command Finished

2024/03/22 02:39:01 Current progress: 52.55% done ~ 23s left (0.00 MB/s)

2024/03/22 02:39:01 skipping:deletion:(rsync command was flagged):(/mnt/disk2/Unraid TV/The Newsroom 2012)

2024/03/22 02:39:01 command started: (src: /mnt/disk8) rsync -avPR -X "Unraid TV/House of Cards 2013" "/mnt/disk2/"

2024/03/22 02:39:02 command:end:error(exit status 23)

2024/03/22 02:39:02 command:retcode(0):exitcode(23)

2024/03/22 02:39:02 Command Finished

 

Link to comment
2 hours ago, andCoffee said:

but one top-level folder (a share) is having all of the files skipped with a yellow checkmark next to them

rsync error 23 can be triggered by many different reasons, which are not clearly specified 

due to that, unbalanced plays it "safe":

- it flags the command producing the error 23

- does not remove the source folder/files which triggered it

 

this gives you a chance, as the content owner to 

- check if the files in the destination look ok (probably a spot check or more thorough check if you have important data)

- allow you to remove the files on the source, via th rmsrc button on the history page, if you find the folder/files state to your satisfaction

 

to recap, rsync error 23 is too vague to be handled automatically, so it requires some user attention in order to validate the transfer

Link to comment
On 3/21/2024 at 12:44 PM, jbrodriguez said:

oh right, i misread the screenshot, unbalanced looks for children of a selection in order to transfer files, what if you select truenas4 folder and unselect $RECYCLE.BIN and any other file/folder you don't want to be transferred

Unfortunately same behaviour. I proceeded moving manually those files, meanwhile, a disk failed, so now I am trying to move the entire content of disk 6 (12TB) to disks 11 and 12 (8 TB + 8TB) and I'm getting the same problem.

 

It stays a while "checking issues" then the usual 1 byte transfer.

 

Is there some logging that would be useful to you?

 

In this case:

1149230629_ScreenShot2024-03-22at20_43_41.thumb.png.2297d67d3bbaa54ba6d41f1e6b163635.png

 

"The following items will not be transferred, because there's not enough space in the target disks"

But I'm trying to copy 11.86TB in 15+ TB drives:

 

565286566_ScreenShot2024-03-22at20_43_54.thumb.png.668d37acb79b8ae9b69ec2caf1a6df64.png

Edited by Jetro
Added screenshots
Link to comment
18 hours ago, Jetro said:

In this case:

1149230629_ScreenShot2024-03-22at20_43_41.thumb.png.2297d67d3bbaa54ba6d41f1e6b163635.png

 

this is sort of odd, looks like it can't list the items below the Truenas4 folder

 

can you run 

 

find "/mnt/disk1/TheHub/Truenas4/." ! -name . -prune -exec du -bs {} +

 

you don't need to post the whole listing, just the first couple of entries (just the size, edit the name if you want)

Link to comment

I got the right output:

147621332       /mnt/disk1/TheHub/Truenas4/./filename.mp4
976276944       /mnt/disk1/TheHub/Truenas4/./filename.mp4
3409636407      /mnt/disk1/TheHub/Truenas4/./filename.mp4
209565299       /mnt/disk1/TheHub/Truenas4/./filename.mp4
272780277       /mnt/disk1/TheHub/Truenas4/./filename.mp4
320218609       /mnt/disk1/TheHub/Truenas4/./filename.mp4
172232382       /mnt/disk1/TheHub/Truenas4/./filename.mp4

 

Then I also got folders which dimension is 6

Link to comment
On 7/15/2023 at 10:04 AM, Darryl said:

@MammothJerk cc: @jbrodriguez Do you have any more information or work around on this issue?

Doing my own rudimentary research and considering your hypothesis/finding.  If subdirectories are moved separately, all hard links to the files will not be in the data set: therefore I think this, from 'man rsync' is true (emphasis added).

So --inplace would need to used to mitigate the issue. but the following from 'man rsync' should be observed:

 

Any thoughts, or could you confirm my thinking?

 

Was this ever resolved? If I move my data between disks manually, my hard links are fine because I am not intentionally splitting out the subfolders.

 

rsync -aHAXvP --info=progress2 /mnt/disk7/ /mnt/disk3

 

However, trying something similar in Unbalanced splits all of the top level share folders into separate transfers, thus breaking hard links that all existing with disk7, for example, but are in separate subfolders (tv vs downloads).

 

image.thumb.png.d0d1e9f56cdbc4d056cc658303fe1d83.png

 

I'd like to opt out of the -R command and run these transfers at the /diskX folder level instead of one level down. Is that possible?

 

Thank you.

Edited by adamfl
Link to comment
6 hours ago, adamfl said:

I'd like to opt out of the -R command and run these transfers at the /diskX folder level instead of one level down. Is that possible?

hi, currently not possible to opt out from the default args, you can only add arguments

could probably make it fully configurable, although it can be risky (for non-experienced users) 🤷‍♂️

  • Like 1
Link to comment

Forgive me for ignorance but would this be the right app to use if I just want to rebalance all the data on my array after adding a new disk? i.e. I have 6 disks that are 97% full and I want a bit of data from each to shift to this new empty drive. Can this app do that simply? If not simply, then at all?

Link to comment
9 hours ago, MyNameWasTaken said:

I just want to rebalance all the data on my array after adding a new disk? i.e. I have 6 disks that are 97% full and I want a bit of data from each to shift to this new empty drive.

Why? There are good reasons to let all the new writes go to the new disk. Usually newly added data is going to be accessed most frequently, and disks are much faster on the first bit compared to when they are almost full. User shares have no issues combining all the data seamlessly.

Link to comment
18 hours ago, JonathanM said:

Why? There are good reasons to let all the new writes go to the new disk. Usually newly added data is going to be accessed most frequently, and disks are much faster on the first bit compared to when they are almost full. User shares have no issues combining all the data seamlessly.

The new disk is not new. It's an old parity I've added to the array. And newly added data isn't going to be accessed any more frequently than older data so I don't need it to be faster. I'd rather equalize the amounts so all drives perform comparably

Link to comment

I used “Move” to start a move from my #1 disk to # 4 disk, just to balance out a bit. It was going to take about 14 hours, so I stopped it after about 5 minutes. I understand it copies and only deletes from the source at the end of the move, I’ve used it before.

My question please, since it only copied some files to disk #4, and I aborted, and the files are still on #1, can I delete them from #4?

Thanks,

Tom

Edited by Tom899
Link to comment

So I don't know what I should do. Tried to move some music to another drive.  It seems to be hanging? under settings it shows it to be running. but when I go to the Web UI I can't click on anything. and there is a spinning circle in the top right corner

 

 

unbalance.jpg

Link to comment
18 hours ago, Tom899 said:

My question please, since it only copied some files to disk #4, and I aborted, and the files are still on #1, can I delete them from #4?

you can take a look at the history tab, it will show the successful commands with a green icon and the failed transfer (stopped) with a red icon

the files referenced by the transfer with the red icon are still on the source disk, you can remove them from the target/destination disk

Link to comment
10 hours ago, Seven7527 said:

but when I go to the Web UI I can't click on anything. and there is a spinning circle in the top right corner

mmm that seems to be a bug, can you do a t

tail -f /var/log/unbalanced.log

if that doesn't show anything do a 

cat /var/log/unbalanced.log

it does seem to be running but for some reason, the ui isn't picking up notices about current state of the transfer

Link to comment
16 minutes ago, jbrodriguez said:

you can take a look at the history tab, it will show the successful commands with a green icon and the failed transfer (stopped) with a red icon

the files referenced by the transfer with the red icon are still on the source disk, you can remove them from the target/destination disk

Thank you for replying, I appreciate!

Here's my history tab, I don't see either green or red icons?

Oh wait, is it the green icon in the unbalanced bar top left? If it is, that means I should not delete?

I'm sorry, a little new to this. If I do want to delete in the future, How, a separate program for deleting files and folders??

Thanks,

Tom1710673941_UnbalancedHistoryTab.thumb.jpg.38019e2740be0eb5d33c26d7af9d3f31.jpg

Edited by Tom899
Link to comment
56 minutes ago, jbrodriguez said:

select one of the items on the left sidebar (transfer operations), it will show a list of transfer rsync commands on the right pane

Got it, dumb me! What are the blue icons? After thinking about it, probably means staged, next...

 

Do you please have any tips on how to delete?

 

I know this can be complicated, and dangerous. I figured out Midnight Commander, and deleted what was necessary.

Thanks for your help, unbalanced is a great program!

Unbalanced History Tab 2.jpg

Edited by Tom899
  • Thanks 1
Link to comment
7 hours ago, jbrodriguez said:

mmm that seems to be a bug, can you do a t

tail -f /var/log/unbalanced.log

if that doesn't show anything do a 

cat /var/log/unbalanced.log

it does seem to be running but for some reason, the ui isn't picking up notices about current state of the transfer

tail -f /var/log/unbalanced.log

Transferred 0B at ~ 0.00 MB/s

2024/04/04 20:20:59 Unable to write history: json: unsupported value: NaN

2024/04/04 20:27:29 unable to read websocket message: websocket: close 1001 (going away)

2024/04/04 20:29:55 unable to read websocket message: websocket: close 1001 (going away)

2024/04/04 20:37:14 unable to read websocket message: websocket: close 1001 (going away)

2024/04/04 20:45:38 unable to read websocket message: websocket: close 1001 (going away)

2024/04/04 20:51:53 unable to read websocket message: websocket: close 1001 (going away)

2024/04/04 21:03:25 unable to read websocket message: websocket: close 1001 (going away)

2024/04/04 21:48:25 unable to read websocket message: websocket: close 1001 (going away)

 

 

 

cat /var/log/unbalanced.log

2024/03/07 14:40:14 cli: {Port:7090 LogsDir:/var/log DryRun:true NotifyPlan:0 NotifyTransfer:0 ReservedAmount:1 ReservedUnit:Gb RsyncArgs:[-X] Verbosity:0 RefreshRate:1000 Boot:{}}

2024/03/07 14:40:14 starting unbalanced 2024.01.26 ...

2024/03/07 14:40:14 started service server (listening http on :7090) ...

2024/03/07 14:40:14 Unable to read history: open /boot/config/plugins/unbalanced/unbalanced.hist: no such file or directory

2024/03/07 15:45:27 unable to read websocket message: read tcp 192.168.7.93:7090->192.168.7.152:61836: read: connection timed out

2024/03/26 15:09:18 received terminated signal. shutting down the app ...

2024/03/26 15:09:18 cli: {Port:7090 LogsDir:/var/log DryRun:true NotifyPlan:0 NotifyTransfer:0 ReservedAmount:1 ReservedUnit:Gb RsyncArgs:[-X] Verbosity:0 RefreshRate:1000 Boot:{}}

2024/03/26 15:09:18 starting unbalanced 2024.03.26 ...

2024/03/26 15:09:18 started service server (listening http on :7090) ...

2024/03/26 15:09:18 Unable to read history: open /boot/config/plugins/unbalanced/unbalanced.hist: no such file or directory

2024/03/26 16:33:22 packet {ID: Topic:scatter:plan:start Payload:map[selected:[.Trash-0 .Trash-99 Backups] source:disk1 targets:[disk3]]}

2024/03/26 16:33:22 Running scatter planner ...

2024/03/26 16:33:22 scatterPlan:source:(&{ID:1 Name:disk1 Path:/mnt/disk1 Device:sdb Type:Data FsType:xfs Free:752414498816 Size:11999161815040 Serial:WDC_WD120EMFZ-11A6JA0_Z2J5EJST Status:DISK_OK BlocksTotal:2929482865 BlocksFree:183694946})

2024/03/26 16:33:22 scatterPlan:dest:(&{ID:3 Name:disk3 Path:/mnt/disk3 Device:sdd Type:Data FsType:xfs Free:5876192268288 Size:11998001573888 Serial:WDC_WD120EMFZ-11A6JA0_9JGRPDKT Status:DISK_OK BlocksTotal:2929199603 BlocksFree:1434617253})

2024/03/26 16:33:22 planner:array(4 disks):blockSize(4096)

2024/03/26 16:33:22 disk(/mnt/disk1):fs(xfs):size(11999161815040):free(752414498816):blocksTotal(2929482865):blocksFree(183694946)

2024/03/26 16:33:22 disk(/mnt/disk2):fs(xfs):size(9998694297600):free(2960578879488):blocksTotal(2441087475):blocksFree(722797578)

2024/03/26 16:33:22 disk(/mnt/disk3):fs(xfs):size(11998001573888):free(5876192268288):blocksTotal(2929199603):blocksFree(1434617253)

2024/03/26 16:33:22 disk(/mnt/cache):fs(btrfs):size(2000398901248):free(1219308601344):blocksTotal(488378638):blocksFree(297682764)

2024/03/26 16:33:22 scanning:disk(/mnt/disk1):folder(.Trash-0)

2024/03/26 16:33:22 issues:owner(0):group(0):folder(0):file(0)

2024/03/26 16:33:22 items:count(2):size(20.00 B)

2024/03/26 16:33:22 scanning:disk(/mnt/disk1):folder(.Trash-99)

2024/03/26 16:33:22 issues:owner(0):group(0):folder(0):file(0)

2024/03/26 16:33:22 items:count(2):size(20.00 B)

2024/03/26 16:33:22 scanning:disk(/mnt/disk1):folder(Backups)

2024/03/26 16:33:22 issues:owner(0):group(0):folder(0):file(0)

2024/03/26 16:33:22 items:count(1):size(0B)

2024/03/26 16:33:22 scatterPlan:items(5)

2024/03/26 16:33:22 scatterPlan:found(/mnt/disk1/.Trash-0/info):size(10)

2024/03/26 16:33:22 scatterPlan:found(/mnt/disk1/.Trash-0/files):size(10)

2024/03/26 16:33:22 scatterPlan:found(/mnt/disk1/.Trash-99/info):size(10)

2024/03/26 16:33:22 scatterPlan:found(/mnt/disk1/.Trash-99/files):size(10)

2024/03/26 16:33:22 scatterPlan:found(/mnt/disk1/Backups):size(1)

2024/03/26 16:33:22 scatterPlan:issues:owner(0),group(0),folder(0),file(0)

2024/03/26 16:33:22 scatterPlan:Trying to allocate items to disk3 ...

2024/03/26 16:33:22 scatterPlan:ItemsLeft(5):ReservedSpace(1073741824)

2024/03/26 16:33:22 0s

2024/03/26 16:33:22 scatterPlan:5 items will be transferred.

2024/03/26 16:33:22 scatterPlan:willBeTransferred(.Trash-0/info)

2024/03/26 16:33:22 scatterPlan:willBeTransferred(.Trash-0/files)

2024/03/26 16:33:22 scatterPlan:willBeTransferred(.Trash-99/info)

2024/03/26 16:33:22 scatterPlan:willBeTransferred(.Trash-99/files)

2024/03/26 16:33:22 scatterPlan:willBeTransferred(Backups)

2024/03/26 16:33:22 scatterPlan:ItemsLeft(0)

2024/03/26 16:33:22 scatterPlan:Listing (4) disks ...

2024/03/26 16:33:22 =========================================================

2024/03/26 16:33:22 disk(/mnt/disk1):no-items:currentFree(752.41 GB)

2024/03/26 16:33:22 ---------------------------------------------------------

2024/03/26 16:33:22 ---------------------------------------------------------

2024/03/26 16:33:22

2024/03/26 16:33:22 =========================================================

2024/03/26 16:33:22 disk(/mnt/disk2):no-items:currentFree(2.96 TB)

2024/03/26 16:33:22 ---------------------------------------------------------

2024/03/26 16:33:22 ---------------------------------------------------------

2024/03/26 16:33:22

2024/03/26 16:33:22 =========================================================

2024/03/26 16:33:22 disk(/mnt/disk3):items(5)-(41.00 B):currentFree(5.88 TB)-plannedFree(5.88 TB)

2024/03/26 16:33:22 ---------------------------------------------------------

2024/03/26 16:33:22 [10.00 B] /mnt/disk1/.Trash-0/./info

2024/03/26 16:33:22 [10.00 B] /mnt/disk1/.Trash-0/./files

2024/03/26 16:33:22 [10.00 B] /mnt/disk1/.Trash-99/./info

2024/03/26 16:33:22 [10.00 B] /mnt/disk1/.Trash-99/./files

2024/03/26 16:33:22 [1.00 B] /mnt/disk1/Backups

2024/03/26 16:33:22 ---------------------------------------------------------

2024/03/26 16:33:22

2024/03/26 16:33:22 =========================================================

2024/03/26 16:33:22 disk(/mnt/cache):no-items:currentFree(1.22 TB)

2024/03/26 16:33:22 ---------------------------------------------------------

2024/03/26 16:33:22 ---------------------------------------------------------

2024/03/26 16:33:22

2024/03/26 16:33:22 =========================================================

2024/03/26 16:33:22 Bytes To Transfer: 41.00 B

2024/03/26 16:33:22 ---------------------------------------------------------

2024/03/26 16:33:55 packet {ID: Topic:scatter:move Payload:map[bytesToTransfer:41 chosenFolders:[.Trash-0 .Trash-99 Backups] ended:2024-03-26T16:33:22.955764554-05:00 fileIssue:0 folderIssue:0 groupIssue:0 ownerIssue:0 started:2024-03-26T16:33:22.934653907-05:00 target: vdisks:map[/mnt/cache:map[bin:<nil> currentFree:1.219308601344e+12 dst:false path:/mnt/cache plannedFree:1.219308601344e+12 src:false] /mnt/disk1:map[bin:<nil> currentFree:7.52414498816e+11 dst:false path:/mnt/disk1 plannedFree:7.52414498857e+11 src:true] /mnt/disk2:map[bin:<nil> currentFree:2.960578879488e+12 dst:false path:/mnt/disk2 plannedFree:2.960578879488e+12 src:false] /mnt/disk3:map[bin:map[blocksUsed:4 items:[map[blocksUsed:1 location:/mnt/disk1 name:/mnt/disk1/.Trash-0/./info path:.Trash-0/info size:10] map[blocksUsed:1 location:/mnt/disk1 name:/mnt/disk1/.Trash-0/./files path:.Trash-0/files size:10] map[blocksUsed:1 location:/mnt/disk1 name:/mnt/disk1/.Trash-99/./info path:.Trash-99/info size:10] map[blocksUsed:1 location:/mnt/disk1 name:/mnt/disk1/.Trash-99/./files path:.Trash-99/files size:10] map[blocksUsed:0 location:/mnt/disk1 name:/mnt/disk1/Backups path:Backups size:1]] size:41] currentFree:5.876192268288e+12 dst:true path:/mnt/disk3 plannedFree:5.876192268247e+12 src:false]]]}

2024/03/26 16:33:55 {Started:2024-03-26 16:33:22.934653907 -0500 CDT Ended:2024-03-26 16:33:22.955764554 -0500 CDT ChosenFolders:[.Trash-0 .Trash-99 Backups] OwnerIssue:0 GroupIssue:0 FolderIssue:0 FileIssue:0 VDisks:map[/mnt/cache:0xc000199380 /mnt/disk1:0xc0001993b0 /mnt/disk2:0xc0001993e0 /mnt/disk3:0xc000199410] Target: BytesToTransfer:41}

2024/03/26 16:33:55 running Move operation ...

2024/03/26 16:33:55 command started: (src: /mnt/disk1) rsync -avPR -X --dry-run ".Trash-0/info" "/mnt/disk3/"

2024/03/26 16:33:56 command:retcode(0):exitcode(0)

2024/03/26 16:33:56 Command Finished

2024/03/26 16:33:56 Current progress: 24.39% done ~ 1s left (0.00 MB/s)

2024/03/26 16:33:56 command started: (src: /mnt/disk1) rsync -avPR -X --dry-run ".Trash-0/files" "/mnt/disk3/"

2024/03/26 16:33:56 command:retcode(0):exitcode(0)

2024/03/26 16:33:56 Command Finished

2024/03/26 16:33:56 Current progress: 48.78% done ~ 1s left (0.00 MB/s)

2024/03/26 16:33:56 command started: (src: /mnt/disk1) rsync -avPR -X --dry-run ".Trash-99/info" "/mnt/disk3/"

2024/03/26 16:33:57 command:retcode(0):exitcode(0)

2024/03/26 16:33:57 Command Finished

2024/03/26 16:33:57 Current progress: 73.17% done ~ 0s left (0.00 MB/s)

2024/03/26 16:33:57 command started: (src: /mnt/disk1) rsync -avPR -X --dry-run ".Trash-99/files" "/mnt/disk3/"

2024/03/26 16:33:57 command:retcode(0):exitcode(0)

2024/03/26 16:33:57 Command Finished

2024/03/26 16:33:57 Current progress: 97.56% done ~ 0s left (0.00 MB/s)

2024/03/26 16:33:57 command started: (src: /mnt/disk1) rsync -avPR -X --dry-run "Backups" "/mnt/disk3/"

2024/03/26 16:33:58 command:retcode(0):exitcode(0)

2024/03/26 16:33:58 Command Finished

2024/03/26 16:33:58 Current progress: 100.00% done ~ 0s left (0.00 MB/s)

2024/03/26 16:33:58

unbalanced - MOVE operation completed

 

 

Started: Mar 26, 2024 16:33:55

Ended: Mar 26, 2024 16:33:58

 

Elapsed: 0s

 

Move operation has finished

 

Transferred 41.00 B at ~ 0.00 MB/s

2024/03/26 16:34:14 packet {ID: Topic:scatter:plan:start Payload:map[selected:[.Trash-0 .Trash-99 Backups] source:disk1 targets:[disk3]]}

2024/03/26 16:34:14 Running scatter planner ...

2024/03/26 16:34:14 scatterPlan:source:(&{ID:1 Name:disk1 Path:/mnt/disk1 Device:sdb Type:Data FsType:xfs Free:752414498816 Size:11999161815040 Serial:WDC_WD120EMFZ-11A6JA0_Z2J5EJST Status:DISK_OK BlocksTotal:2929482865 BlocksFree:183694946})

2024/03/26 16:34:14 scatterPlan:dest:(&{ID:3 Name:disk3 Path:/mnt/disk3 Device:sdd Type:Data FsType:xfs Free:5876192268288 Size:11998001573888 Serial:WDC_WD120EMFZ-11A6JA0_9JGRPDKT Status:DISK_OK BlocksTotal:2929199603 BlocksFree:1434617253})

2024/03/26 16:34:14 planner:array(4 disks):blockSize(4096)

2024/03/26 16:34:14 disk(/mnt/disk1):fs(xfs):size(11999161815040):free(752414498816):blocksTotal(2929482865):blocksFree(183694946)

2024/03/26 16:34:14 disk(/mnt/disk2):fs(xfs):size(9998694297600):free(2960578879488):blocksTotal(2441087475):blocksFree(722797578)

2024/03/26 16:34:14 disk(/mnt/disk3):fs(xfs):size(11998001573888):free(5876192268288):blocksTotal(2929199603):blocksFree(1434617253)

2024/03/26 16:34:14 disk(/mnt/cache):fs(btrfs):size(2000398901248):free(1219308810240):blocksTotal(488378638):blocksFree(297682815)

2024/03/26 16:34:14 scanning:disk(/mnt/disk1):folder(.Trash-0)

2024/03/26 16:34:14 issues:owner(0):group(0):folder(0):file(0)

2024/03/26 16:34:14 items:count(2):size(20.00 B)

2024/03/26 16:34:14 scanning:disk(/mnt/disk1):folder(.Trash-99)

2024/03/26 16:34:14 issues:owner(0):group(0):folder(0):file(0)

2024/03/26 16:34:14 items:count(2):size(20.00 B)

2024/03/26 16:34:14 scanning:disk(/mnt/disk1):folder(Backups)

2024/03/26 16:34:14 issues:owner(0):group(0):folder(0):file(0)

2024/03/26 16:34:14 items:count(1):size(0B)

2024/03/26 16:34:14 scatterPlan:items(5)

2024/03/26 16:34:14 scatterPlan:found(/mnt/disk1/.Trash-0/info):size(10)

2024/03/26 16:34:14 scatterPlan:found(/mnt/disk1/.Trash-0/files):size(10)

2024/03/26 16:34:14 scatterPlan:found(/mnt/disk1/.Trash-99/info):size(10)

2024/03/26 16:34:14 scatterPlan:found(/mnt/disk1/.Trash-99/files):size(10)

2024/03/26 16:34:14 scatterPlan:found(/mnt/disk1/Backups):size(1)

2024/03/26 16:34:14 scatterPlan:issues:owner(0),group(0),folder(0),file(0)

2024/03/26 16:34:14 scatterPlan:Trying to allocate items to disk3 ...

2024/03/26 16:34:14 scatterPlan:ItemsLeft(5):ReservedSpace(1073741824)

2024/03/26 16:34:14 16ms

2024/03/26 16:34:14 scatterPlan:5 items will be transferred.

2024/03/26 16:34:14 scatterPlan:willBeTransferred(.Trash-0/info)

2024/03/26 16:34:14 scatterPlan:willBeTransferred(.Trash-0/files)

2024/03/26 16:34:14 scatterPlan:willBeTransferred(.Trash-99/info)

2024/03/26 16:34:14 scatterPlan:willBeTransferred(.Trash-99/files)

2024/03/26 16:34:14 scatterPlan:willBeTransferred(Backups)

2024/03/26 16:34:14 scatterPlan:ItemsLeft(0)

2024/03/26 16:34:14 scatterPlan:Listing (4) disks ...

2024/03/26 16:34:14 =========================================================

2024/03/26 16:34:14 disk(/mnt/disk1):no-items:currentFree(752.41 GB)

2024/03/26 16:34:14 ---------------------------------------------------------

2024/03/26 16:34:14 ---------------------------------------------------------

2024/03/26 16:34:14

2024/03/26 16:34:14 =========================================================

2024/03/26 16:34:14 disk(/mnt/disk2):no-items:currentFree(2.96 TB)

2024/03/26 16:34:14 ---------------------------------------------------------

2024/03/26 16:34:14 ---------------------------------------------------------

2024/03/26 16:34:14

2024/03/26 16:34:14 =========================================================

2024/03/26 16:34:14 disk(/mnt/disk3):items(5)-(41.00 B):currentFree(5.88 TB)-plannedFree(5.88 TB)

2024/03/26 16:34:14 ---------------------------------------------------------

2024/03/26 16:34:14 [10.00 B] /mnt/disk1/.Trash-0/./info

2024/03/26 16:34:14 [10.00 B] /mnt/disk1/.Trash-0/./files

2024/03/26 16:34:14 [10.00 B] /mnt/disk1/.Trash-99/./info

2024/03/26 16:34:14 [10.00 B] /mnt/disk1/.Trash-99/./files

2024/03/26 16:34:14 [1.00 B] /mnt/disk1/Backups

2024/03/26 16:34:14 ---------------------------------------------------------

2024/03/26 16:34:14

2024/03/26 16:34:14 =========================================================

2024/03/26 16:34:14 disk(/mnt/cache):no-items:currentFree(1.22 TB)

2024/03/26 16:34:14 ---------------------------------------------------------

2024/03/26 16:34:14 ---------------------------------------------------------

2024/03/26 16:34:14

2024/03/26 16:34:14 =========================================================

2024/03/26 16:34:14 Bytes To Transfer: 41.00 B

2024/03/26 16:34:14 ---------------------------------------------------------

2024/03/26 16:34:23 packet {ID: Topic:scatter:move Payload:map[bytesToTransfer:41 chosenFolders:[.Trash-0 .Trash-99 Backups] ended:2024-03-26T16:34:14.053038494-05:00 fileIssue:0 folderIssue:0 groupIssue:0 ownerIssue:0 started:2024-03-26T16:34:14.037216605-05:00 target: vdisks:map[/mnt/cache:map[bin:<nil> currentFree:1.21930881024e+12 dst:false path:/mnt/cache plannedFree:1.21930881024e+12 src:false] /mnt/disk1:map[bin:<nil> currentFree:7.52414498816e+11 dst:false path:/mnt/disk1 plannedFree:7.52414498857e+11 src:true] /mnt/disk2:map[bin:<nil> currentFree:2.960578879488e+12 dst:false path:/mnt/disk2 plannedFree:2.960578879488e+12 src:false] /mnt/disk3:map[bin:map[blocksUsed:4 items:[map[blocksUsed:1 location:/mnt/disk1 name:/mnt/disk1/.Trash-0/./info path:.Trash-0/info size:10] map[blocksUsed:1 location:/mnt/disk1 name:/mnt/disk1/.Trash-0/./files path:.Trash-0/files size:10] map[blocksUsed:1 location:/mnt/disk1 name:/mnt/disk1/.Trash-99/./info path:.Trash-99/info size:10] map[blocksUsed:1 location:/mnt/disk1 name:/mnt/disk1/.Trash-99/./files path:.Trash-99/files size:10] map[blocksUsed:0 location:/mnt/disk1 name:/mnt/disk1/Backups path:Backups size:1]] size:41] currentFree:5.876192268288e+12 dst:true path:/mnt/disk3 plannedFree:5.876192268247e+12 src:false]]]}

2024/03/26 16:34:23 {Started:2024-03-26 16:34:14.037216605 -0500 CDT Ended:2024-03-26 16:34:14.053038494 -0500 CDT ChosenFolders:[.Trash-0 .Trash-99 Backups] OwnerIssue:0 GroupIssue:0 FolderIssue:0 FileIssue:0 VDisks:map[/mnt/cache:0xc0003e8ff0 /mnt/disk1:0xc0003e9020 /mnt/disk2:0xc0003e9050 /mnt/disk3:0xc0003e9080] Target: BytesToTransfer:41}

2024/03/26 16:34:23 running Move operation ...

2024/03/26 16:34:23 command started: (src: /mnt/disk1) rsync -avPR -X ".Trash-0/info" "/mnt/disk3/"

2024/03/26 16:34:24 command:retcode(0):exitcode(0)

2024/03/26 16:34:24 Command Finished

2024/03/26 16:34:24 Current progress: 24.39% done ~ 1s left (0.00 MB/s)

2024/03/26 16:34:24 removing:(rm -rf "/mnt/disk1/.Trash-0/info")

2024/03/26 16:34:24 command started: (src: /mnt/disk1) rsync -avPR -X ".Trash-0/files" "/mnt/disk3/"

2024/03/26 16:34:24 command:retcode(0):exitcode(0)

2024/03/26 16:34:24 Command Finished

2024/03/26 16:34:24 Current progress: 48.78% done ~ 1s left (0.00 MB/s)

2024/03/26 16:34:24 removing:(rm -rf "/mnt/disk1/.Trash-0/files")

2024/03/26 16:34:24 command started: (src: /mnt/disk1) rsync -avPR -X ".Trash-99/info" "/mnt/disk3/"

2024/03/26 16:34:25 command:retcode(0):exitcode(0)

2024/03/26 16:34:25 Command Finished

2024/03/26 16:34:25 Current progress: 73.17% done ~ 0s left (0.00 MB/s)

2024/03/26 16:34:25 removing:(rm -rf "/mnt/disk1/.Trash-99/info")

2024/03/26 16:34:25 command started: (src: /mnt/disk1) rsync -avPR -X ".Trash-99/files" "/mnt/disk3/"

2024/03/26 16:34:25 command:retcode(0):exitcode(0)

2024/03/26 16:34:25 Command Finished

2024/03/26 16:34:25 Current progress: 97.56% done ~ 0s left (0.00 MB/s)

2024/03/26 16:34:25 removing:(rm -rf "/mnt/disk1/.Trash-99/files")

2024/03/26 16:34:25 command started: (src: /mnt/disk1) rsync -avPR -X "Backups" "/mnt/disk3/"

2024/03/26 16:34:26 command:retcode(0):exitcode(0)

2024/03/26 16:34:26 Command Finished

2024/03/26 16:34:26 Current progress: 100.00% done ~ 0s left (0.00 MB/s)

2024/03/26 16:34:26 removing:(rm -rf "/mnt/disk1/Backups")

2024/03/26 16:34:26

unbalanced - MOVE operation completed

 

 

Started: Mar 26, 2024 16:34:23

Ended: Mar 26, 2024 16:34:26

 

Elapsed: 2.512s

 

Move operation has finished

 

Transferred 41.00 B at ~ 0.00 MB/s

2024/03/26 16:34:35 unable to read websocket message: websocket: close 1001 (going away)

2024/04/04 20:18:59 packet {ID: Topic:scatter:plan:start Payload:map[selected:[Movies/Music] source:disk1 targets:[disk3]]}

2024/04/04 20:18:59 Running scatter planner ...

2024/04/04 20:18:59 scatterPlan:source:(&{ID:1 Name:disk1 Path:/mnt/disk1 Device:sdb Type:Data FsType:xfs Free:795902504960 Size:11999161815040 Serial:WDC_WD120EMFZ-11A6JA0_Z2J5EJST Status:DISK_OK BlocksTotal:2929482865 BlocksFree:194312135})

2024/04/04 20:18:59 scatterPlan:dest:(&{ID:3 Name:disk3 Path:/mnt/disk3 Device:sdd Type:Data FsType:xfs Free:5569926094848 Size:11998001573888 Serial:WDC_WD120EMFZ-11A6JA0_9JGRPDKT Status:DISK_OK BlocksTotal:2929199603 BlocksFree:1359845238})

2024/04/04 20:18:59 planner:array(4 disks):blockSize(4096)

2024/04/04 20:18:59 disk(/mnt/disk1):fs(xfs):size(11999161815040):free(795902504960):blocksTotal(2929482865):blocksFree(194312135)

2024/04/04 20:18:59 disk(/mnt/disk2):fs(xfs):size(9998694297600):free(2960578813952):blocksTotal(2441087475):blocksFree(722797562)

2024/04/04 20:18:59 disk(/mnt/disk3):fs(xfs):size(11998001573888):free(5569926094848):blocksTotal(2929199603):blocksFree(1359845238)

2024/04/04 20:18:59 disk(/mnt/cache):fs(btrfs):size(2000398901248):free(1226592927744):blocksTotal(488378638):blocksFree(299461164)

2024/04/04 20:18:59 scanning:disk(/mnt/disk1):folder(Movies/Music)

2024/04/04 20:18:59 issues:owner(0):group(0):folder(0):file(0)

2024/04/04 20:18:59 items:count(1):size(0B)

2024/04/04 20:18:59 scatterPlan:items(1)

2024/04/04 20:18:59 scatterPlan:found(/mnt/disk1/Movies/Music):size(1)

2024/04/04 20:18:59 scatterPlan:issues:owner(0),group(0),folder(0),file(0)

2024/04/04 20:18:59 scatterPlan:Trying to allocate items to disk3 ...

2024/04/04 20:18:59 scatterPlan:ItemsLeft(1):ReservedSpace(1073741824)

2024/04/04 20:18:59 0s

2024/04/04 20:18:59 scatterPlan:1 items will be transferred.

2024/04/04 20:18:59 scatterPlan:willBeTransferred(Movies/Music)

2024/04/04 20:18:59 scatterPlan:ItemsLeft(0)

2024/04/04 20:18:59 scatterPlan:Listing (4) disks ...

2024/04/04 20:18:59 =========================================================

2024/04/04 20:18:59 disk(/mnt/disk1):no-items:currentFree(795.90 GB)

2024/04/04 20:18:59 ---------------------------------------------------------

2024/04/04 20:18:59 ---------------------------------------------------------

2024/04/04 20:18:59

2024/04/04 20:18:59 =========================================================

2024/04/04 20:18:59 disk(/mnt/disk2):no-items:currentFree(2.96 TB)

2024/04/04 20:18:59 ---------------------------------------------------------

2024/04/04 20:18:59 ---------------------------------------------------------

2024/04/04 20:18:59

2024/04/04 20:18:59 =========================================================

2024/04/04 20:18:59 disk(/mnt/disk3):items(1)-(1.00 B):currentFree(5.57 TB)-plannedFree(5.57 TB)

2024/04/04 20:18:59 ---------------------------------------------------------

2024/04/04 20:18:59 [1.00 B] /mnt/disk1/Movies/Music

2024/04/04 20:18:59 ---------------------------------------------------------

2024/04/04 20:18:59

2024/04/04 20:18:59 =========================================================

2024/04/04 20:18:59 disk(/mnt/cache):no-items:currentFree(1.23 TB)

2024/04/04 20:18:59 ---------------------------------------------------------

2024/04/04 20:18:59 ---------------------------------------------------------

2024/04/04 20:18:59

2024/04/04 20:18:59 =========================================================

2024/04/04 20:18:59 Bytes To Transfer: 1.00 B

2024/04/04 20:18:59 ---------------------------------------------------------

2024/04/04 20:19:36 packet {ID: Topic:scatter:move Payload:map[bytesToTransfer:1 chosenFolders:[Movies/Music] ended:2024-04-04T20:18:59.73935586-05:00 fileIssue:0 folderIssue:0 groupIssue:0 ownerIssue:0 started:2024-04-04T20:18:59.733884648-05:00 target: vdisks:map[/mnt/cache:map[bin:<nil> currentFree:1.226592927744e+12 dst:false path:/mnt/cache plannedFree:1.226592927744e+12 src:false] /mnt/disk1:map[bin:<nil> currentFree:7.9590250496e+11 dst:false path:/mnt/disk1 plannedFree:7.95902504961e+11 src:true] /mnt/disk2:map[bin:<nil> currentFree:2.960578813952e+12 dst:false path:/mnt/disk2 plannedFree:2.960578813952e+12 src:false] /mnt/disk3:map[bin:map[blocksUsed:0 items:[map[blocksUsed:0 location:/mnt/disk1 name:/mnt/disk1/Movies/Music path:Movies/Music size:1]] size:1] currentFree:5.569926094848e+12 dst:true path:/mnt/disk3 plannedFree:5.569926094847e+12 src:false]]]}

2024/04/04 20:19:36 {Started:2024-04-04 20:18:59.733884648 -0500 CDT Ended:2024-04-04 20:18:59.73935586 -0500 CDT ChosenFolders:[Movies/Music] OwnerIssue:0 GroupIssue:0 FolderIssue:0 FileIssue:0 VDisks:map[/mnt/cache:0xc000390510 /mnt/disk1:0xc000390540 /mnt/disk2:0xc000390570 /mnt/disk3:0xc0003905a0] Target: BytesToTransfer:1}

2024/04/04 20:19:36 running Move operation ...

2024/04/04 20:19:36 command started: (src: /mnt/disk1) rsync -avPR -X --dry-run "Movies/Music" "/mnt/disk3/"

2024/04/04 20:19:37 command:retcode(0):exitcode(0)

2024/04/04 20:19:37 Command Finished

2024/04/04 20:19:37 Current progress: 100.00% done ~ 0s left (0.00 MB/s)

2024/04/04 20:19:37

unbalanced - MOVE operation completed

 

 

Started: Apr  4, 2024 20:19:36

Ended: Apr  4, 2024 20:19:37

 

Elapsed: 502ms

 

Move operation has finished

 

Transferred 1.00 B at ~ 0.00 MB/s

2024/04/04 20:19:58 packet {ID: Topic:scatter:plan:start Payload:map[selected:[Movies/Music] source:disk1 targets:[disk3]]}

2024/04/04 20:19:58 Running scatter planner ...

2024/04/04 20:19:58 scatterPlan:source:(&{ID:1 Name:disk1 Path:/mnt/disk1 Device:sdb Type:Data FsType:xfs Free:795902504960 Size:11999161815040 Serial:WDC_WD120EMFZ-11A6JA0_Z2J5EJST Status:DISK_OK BlocksTotal:2929482865 BlocksFree:194312135})

2024/04/04 20:19:58 scatterPlan:dest:(&{ID:3 Name:disk3 Path:/mnt/disk3 Device:sdd Type:Data FsType:xfs Free:5569926094848 Size:11998001573888 Serial:WDC_WD120EMFZ-11A6JA0_9JGRPDKT Status:DISK_OK BlocksTotal:2929199603 BlocksFree:1359845238})

2024/04/04 20:19:58 planner:array(4 disks):blockSize(4096)

2024/04/04 20:19:58 disk(/mnt/disk1):fs(xfs):size(11999161815040):free(795902504960):blocksTotal(2929482865):blocksFree(194312135)

2024/04/04 20:19:58 disk(/mnt/disk2):fs(xfs):size(9998694297600):free(2960578813952):blocksTotal(2441087475):blocksFree(722797562)

2024/04/04 20:19:58 disk(/mnt/disk3):fs(xfs):size(11998001573888):free(5569926094848):blocksTotal(2929199603):blocksFree(1359845238)

2024/04/04 20:19:58 disk(/mnt/cache):fs(btrfs):size(2000398901248):free(1226593001472):blocksTotal(488378638):blocksFree(299461182)

2024/04/04 20:19:58 scanning:disk(/mnt/disk1):folder(Movies/Music)

2024/04/04 20:19:58 issues:owner(0):group(0):folder(0):file(0)

2024/04/04 20:19:58 items:count(1):size(0B)

2024/04/04 20:19:58 scatterPlan:items(1)

2024/04/04 20:19:58 scatterPlan:found(/mnt/disk1/Movies/Music):size(1)

2024/04/04 20:19:58 scatterPlan:issues:owner(0),group(0),folder(0),file(0)

2024/04/04 20:19:58 scatterPlan:Trying to allocate items to disk3 ...

2024/04/04 20:19:58 scatterPlan:ItemsLeft(1):ReservedSpace(1073741824)

2024/04/04 20:19:58 0s

2024/04/04 20:19:58 scatterPlan:1 items will be transferred.

2024/04/04 20:19:58 scatterPlan:willBeTransferred(Movies/Music)

2024/04/04 20:19:58 scatterPlan:ItemsLeft(0)

2024/04/04 20:19:58 scatterPlan:Listing (4) disks ...

2024/04/04 20:19:58 =========================================================

2024/04/04 20:19:58 disk(/mnt/disk1):no-items:currentFree(795.90 GB)

2024/04/04 20:19:58 ---------------------------------------------------------

2024/04/04 20:19:58 ---------------------------------------------------------

2024/04/04 20:19:58

2024/04/04 20:19:58 =========================================================

2024/04/04 20:19:58 disk(/mnt/disk2):no-items:currentFree(2.96 TB)

2024/04/04 20:19:58 ---------------------------------------------------------

2024/04/04 20:19:58 ---------------------------------------------------------

2024/04/04 20:19:58

2024/04/04 20:19:58 =========================================================

2024/04/04 20:19:58 disk(/mnt/disk3):items(1)-(1.00 B):currentFree(5.57 TB)-plannedFree(5.57 TB)

2024/04/04 20:19:58 ---------------------------------------------------------

2024/04/04 20:19:58 [1.00 B] /mnt/disk1/Movies/Music

2024/04/04 20:19:58 ---------------------------------------------------------

2024/04/04 20:19:58

2024/04/04 20:19:58 =========================================================

2024/04/04 20:19:58 disk(/mnt/cache):no-items:currentFree(1.23 TB)

2024/04/04 20:19:58 ---------------------------------------------------------

2024/04/04 20:19:58 ---------------------------------------------------------

2024/04/04 20:19:58

2024/04/04 20:19:58 =========================================================

2024/04/04 20:19:58 Bytes To Transfer: 1.00 B

2024/04/04 20:19:58 ---------------------------------------------------------

2024/04/04 20:20:10 packet {ID: Topic:scatter:move Payload:map[bytesToTransfer:1 chosenFolders:[Movies/Music] ended:2024-04-04T20:19:58.127948479-05:00 fileIssue:0 folderIssue:0 groupIssue:0 ownerIssue:0 started:2024-04-04T20:19:58.122860331-05:00 target: vdisks:map[/mnt/cache:map[bin:<nil> currentFree:1.226593001472e+12 dst:false path:/mnt/cache plannedFree:1.226593001472e+12 src:false] /mnt/disk1:map[bin:<nil> currentFree:7.9590250496e+11 dst:false path:/mnt/disk1 plannedFree:7.95902504961e+11 src:true] /mnt/disk2:map[bin:<nil> currentFree:2.960578813952e+12 dst:false path:/mnt/disk2 plannedFree:2.960578813952e+12 src:false] /mnt/disk3:map[bin:map[blocksUsed:0 items:[map[blocksUsed:0 location:/mnt/disk1 name:/mnt/disk1/Movies/Music path:Movies/Music size:1]] size:1] currentFree:5.569926094848e+12 dst:true path:/mnt/disk3 plannedFree:5.569926094847e+12 src:false]]]}

2024/04/04 20:20:10 {Started:2024-04-04 20:19:58.122860331 -0500 CDT Ended:2024-04-04 20:19:58.127948479 -0500 CDT ChosenFolders:[Movies/Music] OwnerIssue:0 GroupIssue:0 FolderIssue:0 FileIssue:0 VDisks:map[/mnt/cache:0xc0003e9a70 /mnt/disk1:0xc0003e9aa0 /mnt/disk2:0xc0003e9ad0 /mnt/disk3:0xc0003e9b00] Target: BytesToTransfer:1}

2024/04/04 20:20:10 running Move operation ...

2024/04/04 20:20:10 command started: (src: /mnt/disk1) rsync -avPR -X "Movies/Music" "/mnt/disk3/"

2024/04/04 20:20:10 command:retcode(0):exitcode(0)

2024/04/04 20:20:10 Command Finished

2024/04/04 20:20:10 Current progress: 100.00% done ~ 0s left (0.00 MB/s)

2024/04/04 20:20:10 removing:(rm -rf "/mnt/disk1/Movies/Music")

2024/04/04 20:20:10

unbalanced - MOVE operation completed

 

 

Started: Apr  4, 2024 20:20:10

Ended: Apr  4, 2024 20:20:10

 

Elapsed: 0s

 

Move operation has finished

 

Transferred 1.00 B at ~ 0.00 MB/s

2024/04/04 20:20:51 packet {ID: Topic:scatter:plan:start Payload:map[selected:[Movies/Music] source:disk1 targets:[disk3]]}

2024/04/04 20:20:51 Running scatter planner ...

2024/04/04 20:20:51 scatterPlan:source:(&{ID:1 Name:disk1 Path:/mnt/disk1 Device:sdb Type:Data FsType:xfs Free:795902504960 Size:11999161815040 Serial:WDC_WD120EMFZ-11A6JA0_Z2J5EJST Status:DISK_OK BlocksTotal:2929482865 BlocksFree:194312135})

2024/04/04 20:20:51 scatterPlan:dest:(&{ID:3 Name:disk3 Path:/mnt/disk3 Device:sdd Type:Data FsType:xfs Free:5569926094848 Size:11998001573888 Serial:WDC_WD120EMFZ-11A6JA0_9JGRPDKT Status:DISK_OK BlocksTotal:2929199603 BlocksFree:1359845238})

2024/04/04 20:20:51 planner:array(4 disks):blockSize(4096)

2024/04/04 20:20:51 disk(/mnt/disk1):fs(xfs):size(11999161815040):free(795902504960):blocksTotal(2929482865):blocksFree(194312135)

2024/04/04 20:20:51 disk(/mnt/disk2):fs(xfs):size(9998694297600):free(2960578813952):blocksTotal(2441087475):blocksFree(722797562)

2024/04/04 20:20:51 disk(/mnt/disk3):fs(xfs):size(11998001573888):free(5569926094848):blocksTotal(2929199603):blocksFree(1359845238)

2024/04/04 20:20:51 disk(/mnt/cache):fs(btrfs):size(2000398901248):free(1226592927744):blocksTotal(488378638):blocksFree(299461164)

2024/04/04 20:20:51 scanning:disk(/mnt/disk1):folder(Movies/Music)

2024/04/04 20:20:51 issues:not-available:(stat /mnt/disk1/Movies/Music: no such file or directory)

2024/04/04 20:20:51 items:not-available:(stat /mnt/disk1/Movies/Music: no such file or directory)

2024/04/04 20:20:51 scatterPlan:items(0)

2024/04/04 20:20:51 scatterPlan:issues:owner(0),group(0),folder(0),file(0)

2024/04/04 20:20:51 scatterPlan:Trying to allocate items to disk3 ...

2024/04/04 20:20:51 scatterPlan:ItemsLeft(0):ReservedSpace(1073741824)

2024/04/04 20:20:51 0s

2024/04/04 20:20:51 scatterPlan:No items can be transferred.

2024/04/04 20:20:51 scatterPlan:ItemsLeft(0)

2024/04/04 20:20:51 scatterPlan:Listing (4) disks ...

2024/04/04 20:20:51 =========================================================

2024/04/04 20:20:51 disk(/mnt/disk1):no-items:currentFree(795.90 GB)

2024/04/04 20:20:51 ---------------------------------------------------------

2024/04/04 20:20:51 ---------------------------------------------------------

2024/04/04 20:20:51

2024/04/04 20:20:51 =========================================================

2024/04/04 20:20:51 disk(/mnt/disk2):no-items:currentFree(2.96 TB)

2024/04/04 20:20:51 ---------------------------------------------------------

2024/04/04 20:20:51 ---------------------------------------------------------

2024/04/04 20:20:51

2024/04/04 20:20:51 =========================================================

2024/04/04 20:20:51 disk(/mnt/disk3):no-items:currentFree(5.57 TB)

2024/04/04 20:20:51 ---------------------------------------------------------

2024/04/04 20:20:51 ---------------------------------------------------------

2024/04/04 20:20:51

2024/04/04 20:20:51 =========================================================

2024/04/04 20:20:51 disk(/mnt/cache):no-items:currentFree(1.23 TB)

2024/04/04 20:20:51 ---------------------------------------------------------

2024/04/04 20:20:51 ---------------------------------------------------------

2024/04/04 20:20:51

2024/04/04 20:20:51 =========================================================

2024/04/04 20:20:51 Bytes To Transfer: 0B

2024/04/04 20:20:51 ---------------------------------------------------------

2024/04/04 20:20:59 packet {ID: Topic:scatter:move Payload:map[bytesToTransfer:0 chosenFolders:[Movies/Music] ended:2024-04-04T20:20:51.073630525-05:00 fileIssue:0 folderIssue:0 groupIssue:0 ownerIssue:0 started:2024-04-04T20:20:51.070445768-05:00 target: vdisks:map[/mnt/cache:map[bin:<nil> currentFree:1.226592927744e+12 dst:false path:/mnt/cache plannedFree:1.226592927744e+12 src:false] /mnt/disk1:map[bin:<nil> currentFree:7.9590250496e+11 dst:false path:/mnt/disk1 plannedFree:7.9590250496e+11 src:true] /mnt/disk2:map[bin:<nil> currentFree:2.960578813952e+12 dst:false path:/mnt/disk2 plannedFree:2.960578813952e+12 src:false] /mnt/disk3:map[bin:<nil> currentFree:5.569926094848e+12 dst:true path:/mnt/disk3 plannedFree:5.569926094848e+12 src:false]]]}

2024/04/04 20:20:59 {Started:2024-04-04 20:20:51.070445768 -0500 CDT Ended:2024-04-04 20:20:51.073630525 -0500 CDT ChosenFolders:[Movies/Music] OwnerIssue:0 GroupIssue:0 FolderIssue:0 FileIssue:0 VDisks:map[/mnt/cache:0xc0000b70b0 /mnt/disk1:0xc0000b70e0 /mnt/disk2:0xc0000b7110 /mnt/disk3:0xc0000b7140] Target: BytesToTransfer:0}

2024/04/04 20:20:59 running Move operation ...

2024/04/04 20:20:59

unbalanced - MOVE operation completed

 

 

Started: Apr  4, 2024 20:20:59

Ended: Apr  4, 2024 20:20:59

 

Elapsed: 0s

 

Move operation has finished

 

Transferred 0B at ~ 0.00 MB/s

2024/04/04 20:20:59 Unable to write history: json: unsupported value: NaN

2024/04/04 20:27:29 unable to read websocket message: websocket: close 1001 (going away)

2024/04/04 20:29:55 unable to read websocket message: websocket: close 1001 (going away)

2024/04/04 20:37:14 unable to read websocket message: websocket: close 1001 (going away)

2024/04/04 20:45:38 unable to read websocket message: websocket: close 1001 (going away)

2024/04/04 20:51:53 unable to read websocket message: websocket: close 1001 (going away)

2024/04/04 21:03:25 unable to read websocket message: websocket: close 1001 (going away)

2024/04/04 21:48:25 unable to read websocket message: websocket: close 1001 (going away)

Link to comment
37 minutes ago, Seven7527 said:

2024/04/04 20:20:51 scanning:disk(/mnt/disk1):folder(Movies/Music)

2024/04/04 20:20:51 issues:not-available:(stat /mnt/disk1/Movies/Music: no such file or directory)

2024/04/04 20:20:51 items:not-available:(stat /mnt/disk1/Movies/Music: no such file or directory)

there's something odd about your data, these folders can't be found by the operating system, when issuing a stat command 🤷‍♂️

 

if you run the following on the command line, does it work ?

stat /mnt/disk1/Movies/Music

 

but that's not the "it hangs spinning" problem, i think

42 minutes ago, Seven7527 said:

2024/04/04 20:20:59 Unable to write history: json: unsupported value: NaN

 

this isn't good, it means some value can't get converted to json format, i wonder if some size is getting misread by the os (given the os error above), this is what's probably causing the ui to hang, but can't tell for sure

 

is that a healthy drive or it has some issues ?

 

in any case, there's no data transfer happening, it's always coming up with "zero" bytes to transfer, 

Link to comment
1 hour ago, jbrodriguez said:

there's something odd about your data, these folders can't be found by the operating system, when issuing a stat command 🤷‍♂️

 

if you run the following on the command line, does it work ?

stat /mnt/disk1/Movies/Music

 

but that's not the "it hangs spinning" problem, i think

 

this isn't good, it means some value can't get converted to json format, i wonder if some size is getting misread by the os (given the os error above), this is what's probably causing the ui to hang, but can't tell for sure

 

is that a healthy drive or it has some issues ?

 

in any case, there's no data transfer happening, it's always coming up with "zero" bytes to transfer, 

this is what happen

stat: cannot statx '/mnt/disk1/Movies/Music': No such file or directory

Link to comment

oh nope showed be this  stat /mnt/disk1/Media/Music

 

this is what I get 

 

:~# stat /mnt/disk1/Media/Music
  File: /mnt/disk1/Media/Music
  Size: 4096            Blocks: 8          IO Block: 4096   directory
Device: 9,1     Inode: 15032385753  Links: 78
Access: (0777/drwxrwxrwx)  Uid: (   99/  nobody)   Gid: (  100/   users)
Access: 2020-10-29 20:13:25.745604274 -0500
Modify: 2023-10-22 09:09:15.968251171 -0500
Change: 2024-02-28 00:00:07.664440685 -0600
 Birth: 2021-02-03 17:22:08.921462676 -0600

Link to comment

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.