Re: rsync 3.1.1: --ignore-missing-args / --delete-missing args problem

2017-04-08 Thread Georgy Fedorov via rsync
Hi Alex, Thank you very much indeed for that link. I was actually considering using find -0 together with --files-from, and making find to list only files that were changed some time ago -- but first, this would probably break hardlinks, and second, despite most of the files in question are

Re: rsync 3.1.1: --ignore-missing-args / --delete-missing args problem

2017-04-07 Thread Axel Kittenberger via rsync
> > Also, sounds like what you really want is --files-from > files-from is part of the command. -- Please use reply-all for most replies to avoid omitting the mailing list. To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read:

Re: rsync 3.1.1: --ignore-missing-args / --delete-missing args problem

2017-04-07 Thread Kevin Korb via rsync
Exit code 2 is "Protocol incompatibility". Also, sounds like what you really want is --files-from On 04/07/2017 10:01 AM, Axel Kittenberger via rsync wrote: > With this two options on a very live system you may need to take into > account this bug as well I reported a while ago: > >

Re: rsync 3.1.1: --ignore-missing-args / --delete-missing args problem

2017-04-07 Thread Axel Kittenberger via rsync
With this two options on a very live system you may need to take into account this bug as well I reported a while ago: https://bugzilla.samba.org/show_bug.cgi?id=12569 Due to this I'm currently not using --ignore-missing-args / --delete-missing but rather -exclude=* -include=- and a autocreated

Re: rsync 3.1.1: --ignore-missing-args / --delete-missing args problem

2017-04-07 Thread Kevin Korb via rsync
Those options are for handling files/dirs that are specified on the actual command line they have nothing to do with files vanishing while rsync is running. The correct solution is to simply ignore exit code 24. BTW, this is what filesystem snapshots are for. On 04/07/2017 08:58 AM, Georgy

rsync 3.1.1: --ignore-missing-args / --delete-missing args problem

2017-04-07 Thread Georgy Fedorov via rsync
Dear All, We sometimes have to replicate large "live" filesystems with many ( sometimes millions, up to few hundred millions ) files on them. ( Copying actively used files is of course a bad idea, but it really helps to keep the delta small, so one final transfer can later save the day. )