|
From: Jamie C. <jca...@we...> - 2006-08-07 18:04:28
|
On 7/Aug/2006 10:23 Pat Erler wrote .. > On Mon, 07 Aug 2006 19:04:43 +0200, Jamie Cameron <jca...@we...> > wrote: > > > I don't think it is possible to do multi-part remote backups anyway, > and > > almost certainly won't be possible to do them over FTP.. > i thought about a stop and go procedure: > > 1) > get a list of all files to backup, calculate size > > 2) > create packages of files, roughly the same size > > 3) > package them sequentielly with a subroutine: > > make tgz; > transfer tgz; > delete tgz; > > > sounds unusual but i don't see to much other arguments against this > approach.. The tricky part is the way the remote transfer comment (ssh, rsh or some FTP script) is called by the tar comment. Basically it gets fed all the data as input, and so doesn't have much opportunity to split it up. If I was creating a totally new backup module I'd have more flexibility, but since the Filesystem Backup module works by calling the tar and dump commands I have to fit in with the way they do things :( - Jamie |