Packs a History Free PostgreSQL RelStorage for ZODB.
Project description
relstorage_packer
Packs a ZODB in a history free PostgreSQL RelStorage with blobs in filesystem.
Overview
This script works also for very large Relstorage ZODBs with several million objects. The original pack script took several days and consumed lots of RAM. So there was need to accelerate the process of packing.
This script does not consume relevant amounts of RAM, runs much faster than the original. Where the old took 3.5 days only for analysis it takes now about 6 hours. On subsequent runs it only processes changes after last run: it considers only transactions newer than last processed transaction of the prior run.
At time of writing processing 44mio objects takes initially about 3-6h depending on hardware and configuration of Postgresql.
The script creates an inverse object graph, this takes little extra space in DB.
Limitations
At time of development the critical production environment was a postgresql database running relstorage with blobs stored on a fileserver in history free mode. So this is implemented.
I’am sure its easily possible to make this work on MySQL and Oracle too. Also considering blobs inside DB is for sure possible.
I’am not sure if this way of cleanup makes sense for non-history-free mode. At least it needs a lot of love and understanding of ZODB to refactor and implement.
Contributions are welcome!
Usage
Create a configuration file. It is the same as used in classical pack script deployed with Relstorage:
<relstorage> create-schema false keep-history false shared-blob-dir true blob-dir var/blobstorage commit-lock-timeout 600 <postgresql> dsn dbname='test_site' host='127.0.0.1' user='zodb' password='secret' </postgresql> </relstorage>
After installation a script relstorage_pack is available:
Usage: relstorage_pack config_file Fast ZODB Relstorage Packer for history free PostgreSQL Options: -h, --help show this help message and exit -i, --init Removes all reference counts and starts from scratch. -v, --verbose More verbose output, includes debug messages.
When running first time with your database pass --init as parameter. This drops and recreates the packing table.
Source Code
The sources are in a GIT DVCS with its main branches at github.
We’d be happy to see many forks and pull-requests to make this package even better.
Contributors
Jens W. Klein <jens@bluedynamics.com> (Maintainer)
Thanks to Robert Penz for some good ideas at our Linux User Group Tirol Meeting. Also thanks to Shane Hathaway for Relstorage and Jim Fulton for ZODB and zc.zodbdgc (which unfortunately does not work with Relstorage).
History
1.0
started package[jensens, 2013-11-23]
License
Copyright (c) 2013, BlueDynamics Alliance, Austria, Germany, Switzerland All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
Neither the name of the BlueDynamics Alliance nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY BlueDynamics Alliance AS IS AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BlueDynamics Alliance BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.