O Rsync para verificação aumenta durante o backup

9

No momento, estou transferindo cerca de 40 Gigs de arquivos de um disco externo para o meu disco rígido, e a saída de progresso do rsync sempre mostra algo como

... to-check=1100/24094)
... to-check=1099/24094)

Mas durante as transferências, o segundo número aumenta e o primeiro nunca passa de 1000.

... to-check=1200/27199)
... to-check=1199/27199)

Isso me deixa intrigado - quando a transferência realmente terminará?

Edit: Ok, em algum momento acabou. Ainda assim, o que está causando esse comportamento?

    
por slhck 15.11.2010 / 22:05

1 resposta

15

O rsync inicia a transferência dos arquivos antes de concluir o rastreamento para ver exatamente quantos existem, para acelerar o processo geral. Isso significa que o número sobe quando está em execução.

A partir do rsync 3.1.0, isso mudou um pouco:

The output of the --progress option has changed: the string "xfer" was shortened to "xfr", and the string "to-check" was shortened to "to-chk", both designed to make room for the (by default) wider display of file size numbers without making the total line-length longer. Also, when incremental recursion is enabled, the string "ir-chk" will be used instead of "to-chk" up until the incremental-recursion scan is done, letting you know that the value to check and the total value will still be increasing as new files are found.

    
por 16.11.2010 / 00:08

Tags