Skip to main content

Moving datasets

Fuseki use sparse files to store datasets. Basically it means datasets appear to take more space than what they are really taking.

If you want to move them to another server, you will need to ensure whatever method you use will take this into account, otherwise you may find yourself with 20-30 times more data than you initially had.

For example the tar tool has a -S option which will look if the files to compress are sparse files and, in that case, only bring into the archive the "real" part of the file. More information here.

The rsync tool has a similar -S option which do the same. More information here.