Gnu parallel rsync hanging indefinitely

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
0
down vote

favorite












To be clear, I am running this exact command(variables changed) in a gnu parallel setting:



/usr/bin/parallel -q -j20 
rsync --recursive -av -e ssh -oCompression=no -x -T
-oUserKnownHostsFile=/dev/null -oConnectTimeout=15
-i ssh_key -l some_username --chmod=Dugo+rwx,Fugo+rw
--files-from /some/base/dir somehostame:/some/other/dir


This consumes about 50 files(containing list of file/directory names for rsync), across 20 workers through gnu parallel. I ran the above yesterday night, and I came back to work to see that there is still 1 rsync job, hanging:



rsync --recursive -av -e ssh -oCompression=no -x -T -
oUserKnownHostsFile=/dev/null -oConnectTimeout=15
-i ssh-beta-secdata-20180515t213639 -l diskmaker
--chmod=Dugo+rwx,Fugo+rw
--files-from ./some_filelist /some/base/dir somehostname:/some/other/dir


So to be clear, some_filelist is a list of directories I want to do rsync in.



I'll take the files from the base(as if chroot'd) from /some/base/dir to a remote directory somehostname:/some/other/dir.



So there are like, 500 jobs that parallel pulls from. I analyzed each file list, and there's nothing special about this ./some_filelist; standard 200 files from an rsync dryrun.



Does anyone have diagnosis for this problem? I am completely lost to how this could happen. I can post more snippets if required.







share|improve this question



















  • can you list what files the hanging process has open (lsof -p pid), and what syscall it is hanging on (strace -p pid).
    – meuh
    May 16 at 19:38










  • Does it work, if you run the hanging command on the command line? Can you try splitting ./some_filelist and see if some parts work find? Is the the same part that is hanging if you use parallel --shuf?
    – Ole Tange
    May 17 at 11:49










  • Hope you make sure different rsync processes do not read/write to the same dirs.
    – akostadinov
    May 17 at 21:45














up vote
0
down vote

favorite












To be clear, I am running this exact command(variables changed) in a gnu parallel setting:



/usr/bin/parallel -q -j20 
rsync --recursive -av -e ssh -oCompression=no -x -T
-oUserKnownHostsFile=/dev/null -oConnectTimeout=15
-i ssh_key -l some_username --chmod=Dugo+rwx,Fugo+rw
--files-from /some/base/dir somehostame:/some/other/dir


This consumes about 50 files(containing list of file/directory names for rsync), across 20 workers through gnu parallel. I ran the above yesterday night, and I came back to work to see that there is still 1 rsync job, hanging:



rsync --recursive -av -e ssh -oCompression=no -x -T -
oUserKnownHostsFile=/dev/null -oConnectTimeout=15
-i ssh-beta-secdata-20180515t213639 -l diskmaker
--chmod=Dugo+rwx,Fugo+rw
--files-from ./some_filelist /some/base/dir somehostname:/some/other/dir


So to be clear, some_filelist is a list of directories I want to do rsync in.



I'll take the files from the base(as if chroot'd) from /some/base/dir to a remote directory somehostname:/some/other/dir.



So there are like, 500 jobs that parallel pulls from. I analyzed each file list, and there's nothing special about this ./some_filelist; standard 200 files from an rsync dryrun.



Does anyone have diagnosis for this problem? I am completely lost to how this could happen. I can post more snippets if required.







share|improve this question



















  • can you list what files the hanging process has open (lsof -p pid), and what syscall it is hanging on (strace -p pid).
    – meuh
    May 16 at 19:38










  • Does it work, if you run the hanging command on the command line? Can you try splitting ./some_filelist and see if some parts work find? Is the the same part that is hanging if you use parallel --shuf?
    – Ole Tange
    May 17 at 11:49










  • Hope you make sure different rsync processes do not read/write to the same dirs.
    – akostadinov
    May 17 at 21:45












up vote
0
down vote

favorite









up vote
0
down vote

favorite











To be clear, I am running this exact command(variables changed) in a gnu parallel setting:



/usr/bin/parallel -q -j20 
rsync --recursive -av -e ssh -oCompression=no -x -T
-oUserKnownHostsFile=/dev/null -oConnectTimeout=15
-i ssh_key -l some_username --chmod=Dugo+rwx,Fugo+rw
--files-from /some/base/dir somehostame:/some/other/dir


This consumes about 50 files(containing list of file/directory names for rsync), across 20 workers through gnu parallel. I ran the above yesterday night, and I came back to work to see that there is still 1 rsync job, hanging:



rsync --recursive -av -e ssh -oCompression=no -x -T -
oUserKnownHostsFile=/dev/null -oConnectTimeout=15
-i ssh-beta-secdata-20180515t213639 -l diskmaker
--chmod=Dugo+rwx,Fugo+rw
--files-from ./some_filelist /some/base/dir somehostname:/some/other/dir


So to be clear, some_filelist is a list of directories I want to do rsync in.



I'll take the files from the base(as if chroot'd) from /some/base/dir to a remote directory somehostname:/some/other/dir.



So there are like, 500 jobs that parallel pulls from. I analyzed each file list, and there's nothing special about this ./some_filelist; standard 200 files from an rsync dryrun.



Does anyone have diagnosis for this problem? I am completely lost to how this could happen. I can post more snippets if required.







share|improve this question











To be clear, I am running this exact command(variables changed) in a gnu parallel setting:



/usr/bin/parallel -q -j20 
rsync --recursive -av -e ssh -oCompression=no -x -T
-oUserKnownHostsFile=/dev/null -oConnectTimeout=15
-i ssh_key -l some_username --chmod=Dugo+rwx,Fugo+rw
--files-from /some/base/dir somehostame:/some/other/dir


This consumes about 50 files(containing list of file/directory names for rsync), across 20 workers through gnu parallel. I ran the above yesterday night, and I came back to work to see that there is still 1 rsync job, hanging:



rsync --recursive -av -e ssh -oCompression=no -x -T -
oUserKnownHostsFile=/dev/null -oConnectTimeout=15
-i ssh-beta-secdata-20180515t213639 -l diskmaker
--chmod=Dugo+rwx,Fugo+rw
--files-from ./some_filelist /some/base/dir somehostname:/some/other/dir


So to be clear, some_filelist is a list of directories I want to do rsync in.



I'll take the files from the base(as if chroot'd) from /some/base/dir to a remote directory somehostname:/some/other/dir.



So there are like, 500 jobs that parallel pulls from. I analyzed each file list, and there's nothing special about this ./some_filelist; standard 200 files from an rsync dryrun.



Does anyone have diagnosis for this problem? I am completely lost to how this could happen. I can post more snippets if required.









share|improve this question










share|improve this question




share|improve this question









asked May 16 at 15:39









OneRaynyDay

1063




1063











  • can you list what files the hanging process has open (lsof -p pid), and what syscall it is hanging on (strace -p pid).
    – meuh
    May 16 at 19:38










  • Does it work, if you run the hanging command on the command line? Can you try splitting ./some_filelist and see if some parts work find? Is the the same part that is hanging if you use parallel --shuf?
    – Ole Tange
    May 17 at 11:49










  • Hope you make sure different rsync processes do not read/write to the same dirs.
    – akostadinov
    May 17 at 21:45
















  • can you list what files the hanging process has open (lsof -p pid), and what syscall it is hanging on (strace -p pid).
    – meuh
    May 16 at 19:38










  • Does it work, if you run the hanging command on the command line? Can you try splitting ./some_filelist and see if some parts work find? Is the the same part that is hanging if you use parallel --shuf?
    – Ole Tange
    May 17 at 11:49










  • Hope you make sure different rsync processes do not read/write to the same dirs.
    – akostadinov
    May 17 at 21:45















can you list what files the hanging process has open (lsof -p pid), and what syscall it is hanging on (strace -p pid).
– meuh
May 16 at 19:38




can you list what files the hanging process has open (lsof -p pid), and what syscall it is hanging on (strace -p pid).
– meuh
May 16 at 19:38












Does it work, if you run the hanging command on the command line? Can you try splitting ./some_filelist and see if some parts work find? Is the the same part that is hanging if you use parallel --shuf?
– Ole Tange
May 17 at 11:49




Does it work, if you run the hanging command on the command line? Can you try splitting ./some_filelist and see if some parts work find? Is the the same part that is hanging if you use parallel --shuf?
– Ole Tange
May 17 at 11:49












Hope you make sure different rsync processes do not read/write to the same dirs.
– akostadinov
May 17 at 21:45




Hope you make sure different rsync processes do not read/write to the same dirs.
– akostadinov
May 17 at 21:45















active

oldest

votes











Your Answer







StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
convertImagesToLinks: false,
noModals: false,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);








 

draft saved


draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f444180%2fgnu-parallel-rsync-hanging-indefinitely%23new-answer', 'question_page');

);

Post as a guest



































active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes










 

draft saved


draft discarded


























 


draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f444180%2fgnu-parallel-rsync-hanging-indefinitely%23new-answer', 'question_page');

);

Post as a guest













































































Popular posts from this blog

How to check contact read email or not when send email to Individual?

Bahrain

Postfix configuration issue with fips on centos 7; mailgun relay