Book Image

PostgreSQL Replication

By : Zoltan Böszörmenyi, Hans-Jürgen Schönig
Book Image

PostgreSQL Replication

By: Zoltan Böszörmenyi, Hans-Jürgen Schönig

Overview of this book

<p>PostgreSQL offers a comprehensive set of replication related features, which can be used to make your database servers more robust and way more scalable. Unleashing the power of PostgreSQL provides the user with countless opportunities and a competitive advantage over other database systems. To make things more powerful, PostgreSQL can be used in conjunction with a handful of sophisticated tools serving various different needs such as queuing, logical replication, or simplified transaction log handling.</p> <p>"PostgreSQL Replication" is a practical, hands-on guide to PostgreSQL replication. It will provide you with the theoretical background as well as simple examples showing you how to make replication work on your system. A broad toolchain will be presented along with mature PostgreSQL-core technology.</p> <p>"PostgreSQL Replication" starts with an introduction to replication concepts as well as the physical limitations of different replication solutions. You will be guided through various techniques such as Point-In-Time-Recovery, transaction-log-based replication and you will be introduced to a set of replication-related tools. In the final chapter you will learn to scale PostgreSQL to many different servers using PL/Proxy.</p> <p>You will learn how to reset PostgreSQL to a certain point in time and figure out how to replicate data in many ways. You will deal with both synchronous as well as asynchronous replication. In addition to that, the book covers important topics, such as Slony, and upgrades with virtually no downtime. We will also cover important performance-related topics to make sure your database setups will provide you with high speed AND high availability.</p> <p>"PostgreSQL Replication" contains all the information you need to design and operate replicated setups. You will learn everything you need to know for your daily work and a lot more.</p>
Table of Contents (20 chapters)
PostgreSQL Replication
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface
Index

Installing skytools


Skytools is an open source package and can be downloaded freely from pgfoundry.org. For the purpose of this chapter we have used Version 3.1.4:

http://skytools.projects.pgfoundry.org/testing/skytools-3.1.4.tar.gz

To install the software, we first have to extract the TAR file and run configure. The important thing here is that we have to tell configure where to find pg_config. This is important to make Skytools know how to compile the code and where to look for libraries.

Tip

configure will successfully execute if all dependencies are met. If you build from git you will need git, autoconf, automake, asciidoc, xmlto, and libtool. In addition to that you will always need rsync, psycopg2, and Python.

Once this has been executed successfully, we can run make and make install (which might have to run as root if PostgreSQL has been installed as root user).

./configure \
--with-pgconfig=/usr/local/pgsql/bin/pg_config
make
make install

Once the code has been compiled, we can move...