git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [Announce] bup 0.09: git-based backup system for really huge datasets
@ 2010-02-09 22:48 Avery Pennarun
  2010-02-10  9:54 ` Jakub Narebski
  2010-02-11 13:51 ` Stephen R. van den Berg
  0 siblings, 2 replies; 5+ messages in thread
From: Avery Pennarun @ 2010-02-09 22:48 UTC (permalink / raw)
  To: Git Mailing List

Hi all,

bup is a file backup tool based on the git packfile format.  If you're
interested in git, you might find bup interesting because:

- It can handle really massive datasets (hundreds of gigabytes)
without melting down.

- It can handle huge individual files (hundreds of gigabytes), such as
virtual machine images or giant textual database dumps, while neither
wasting disk space nor bogging down in xdelta.

- It can backup files directly to a remote server, without creating
git objects on the local system first.

- It uses a different format for its index file (.bup/bupindex) that
allows you to search and iterate non-linearly.  Thus if you have a
filesystem with a million files and only one of them is marked dirty,
bup can back it up near-instantly.

- Like git, it separates the concept of indexing the filesystem from
the concept of actually making new commits.  Thus it would be easy to
plugin an inotify-like system eventually, avoiding the slow filesystem
iteration every time you want to make a backup.

- It introduces a "multi-index" file (midx) that has a sorted list of
the objects from multiple .pack files, so that checking for a
nonexistent object only needs to swap in two pages at most.  (This is
unimportant in git, but critical when most of your work is ingesting
huge files whose sha1sums haven't been seen before.)

- It provides a FUSE-based filesystem so that you can easily browse
your backup history, including exporting it via samba if you want.

bup doesn't yet back up extra file metadata (beyond what git already
tracks).  Obviously this will be needed relatively soon.

bup is still pretty experimental, but it's already a useful tool for
backing up your files, even if those files include millions of files
and hundreds of gigs of VM images.

You can find the source code (and README) at github:

    http://github.com/apenwarr/bup

To subscribe to the bup mailing list, send an email to:

    bup-list+subscribe@googlegroups.com

Looking forward to everyone's feedback.

Have fun,

Avery

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2010-02-12 17:52 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-02-09 22:48 [Announce] bup 0.09: git-based backup system for really huge datasets Avery Pennarun
2010-02-10  9:54 ` Jakub Narebski
2010-02-10 20:01   ` Avery Pennarun
2010-02-11 13:51 ` Stephen R. van den Berg
2010-02-12 17:51   ` Avery Pennarun

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).