When running Apache Jackrabbit JCR as an embedded service in your app, is there a quick way to get a sound and consistent backup of the contents of the Jackrabbit repository without shutting Jackrabbit down? If so how?

link|improve this question

78% accept rate
feedback

1 Answer

up vote 3 down vote accepted

See BackupAndMigration on the Jackrabbit Wiki for a list of options.

I would recommend to use XML export (system view), as it is the simplest solution. Also, because it is part of the JCR standard, so it should work on other JCR implementations as well.

Note that this approach has one drawback: it is currently not possible to re-import a full export, ie. from the root node and including the jcr:system subnode that contains the version storage, since the jcr:system part and especially the version storage are not writeable (this is mainly because JCR does not specify how to import versions). Here is some explanation on the Jackrabbit mailing list.

link|improve this answer
Ok, thank you for the answer. I'm surprised that the XML export option does not back up the earlier versions of nodes. Since we use versionable nodes, I think we'll stick with shutting down and copying files the at file system level. – Chinnery Dec 16 '08 at 5:45
1  
I updated my answer wrt the version re-import problem, because my first explanation was wrong ;-). – Alexander Klimetschek Dec 31 '08 at 17:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.