Hi, i use your tut, and it works great so far,
when i use
https://github.com/yadayada/acd_cli
to mount ACD and i get uploadspeed with
1 File = 30mb/s
4 Files parallel 120mb/s
4 Files with "acd_cli ul -x 8 -r 5" = 60mb/s
Here are Screenshots:
http://imgur.com/a/Hqy1w
shouldnt it allways at maxpseed?
I´m at 1gig/1gig so bottleneck is not upload/downlad, and it seams on parallel connections amazon isnt the bottleneck too
I also try this script, and push files over and over to the folder, but i dont get more speed of 30mb/s like 1 file transfer
it reconize new files, but dont speed up parallel transfers, it transfer 1 file, and when its finish, its transfer next file...
#!/bin/bash
FOLDER="/home/plex/toupload"
inotifywait -m $FOLDER -e create -e moved_to |
while read path action file; do
echo "The file '$file' appeared in directory '$path' via '$action'"
acd_cli ul $FOLDER/"$file" /Media/Unsorted/
rm -rf $FOLDER/"$file"
done
is there any other way to open a parallel transfer everytime a file is join the folder?
So, FIle 1 needs 5min. to copy to the Cloud, and after 30 sec. next file joins, transfer this instant too, and not waiting for finish the 1 file
i dont stick to inotifywait, i just want to transfer everything instant when it joins the folder
i get higher mb/s rate with parallel transfers
1 file after onther is to slow
ore a cron check every minute the folder, and when a NEW file joins, transfer only this... PARALlEL
