<DIV>Hi:</DIV>
<DIV>  I have a large directory with about 0 Milillion files in it to backup by network. Server and client both windows.</DIV>
<DIV>  rsync server config:</DIV>
<DIV>------------------------------------------------------------------------------------------------------</DIV>
<DIV>strict modes = false<BR>hosts allow = 10.200.121.104<BR>hosts allow = 10.171.209.87<BR>hosts deny = *<BR>log file = /cygdrive/d/log/rsyncd.log</DIV>
<DIV>port=8730<BR>uid = 0<BR>gid = 0</DIV>
<DIV># Module definitions<BR># Remember cygwin naming conventions : c:\work becomes /cygwin/c/work<BR>#<BR>[d_hst]<BR>path = /cygdrive/d/hst<BR>read only = false<BR>transfer logging = yes<BR>auth users = admin<BR>secrets file = etc/user.pass<BR>list = no<BR>ignore errors</DIV>
<DIV>------------------------------------------------------------------------------------------------------</DIV>
<DIV> </DIV>
<DIV>client bat script:</DIV>
<DIV>------------------------------------------------------------------------------------------------------</DIV>
<DIV>@echo off</DIV>
<DIV>set RSYNC_HOME="c:\Program Files (x86)\cwRsync\bin\"<BR>cd /d %RSYNC_HOME%</DIV>
<DIV>:: Source root directory<BR>set src_dir=rsync://admin@10.160.27.48:8730/d_hst</DIV>
<DIV>:: Destination root directory<BR>set dst_dir=/cygdrive/e/filetest</DIV>
<DIV>:: Make sure path without space<BR>set pwd_file="/cygdrive/c/user.pass"</DIV>
<DIV>:: Log file<BR>set log_dir=/cygdrive/d/log</DIV>
<DIV>:: Synchronize Files, with 16 connections according to 16 directories(0~f)<BR>for %%i in (0 1 2 3 4 5 6) do (<BR>setlocal enabledelayedexpansion<BR>set log_file=%log_dir%/%date:~3,4%%date:~8,2%%date:~11,2%%time:~0,2%%time:~3,2%%time:~6,2%_%%i.txt<BR>:: Remove space in log_file<BR>set "log_file=!log_file: =!"<BR>start cmd /c rsync -avvu --delete %src_dir%/Files/%%i %dst_dir%/Files --password-file=%pwd_file% --log-file=!log_file! --log-file-format=""<BR>)</DIV>------------------------------------------------------------------------------------------------------ 
<DIV> </DIV>
<DIV>In order to make backup faster, I created many rsync intances with "-avvu" options. It seems worked, and only take about 5 hours to complete backup job. </DIV>
<DIV>When I restarted the client bat script, and expect very little time to complete backup, but it still cost about 3 hours. </DIV>
<DIV>It seems that concurrence makes no effect, I can not figure out what happend, the file checking is so slow?</DIV>
<DIV>Does anybody encounted cases like this? Any help will be thankful.</DIV>
<DIV> </DIV>
<DIV> </DIV>