Quantcast
Channel: StackExchange Replication Questions
Viewing all articles
Browse latest Browse all 17268

Postgresql redundancy for read-only queries with refresh on demand

$
0
0

I was wondering if there are any postgresql tools which would facilitate replication to read-only server on demand. Here is problem description:

  • Every data changing process is running as multiple transactions (processes are complex - for example, load data, run calculation, run more data, etc.). Until process is finished, I consider database to be inconsistent for reporting.

  • Reports should use only consistent data, but shouldn't wait for the data changing process to complete - they should use old (consistent) data.

Ideally, reports should run on a consistent snapshot of the database. The idea to solve this problem is as follows:

  • have two servers - master and slave. Initially both having exactly same data.
  • all data-changing processes will run on master
  • all reporting tasks will run on slave
  • once data-changing process is completed, refresh of slave is triggered. Trigger would be for example: run some command, create a file on filesystem, etc. Reading partially refreshed slave is not permited.
    • this can't take too long - should be proportional to size of changes on master

Slave will not be used for fail over, this is not the purpose.

Is there any good solution to this problem? Or maybe it can be solved in a different way?


Viewing all articles
Browse latest Browse all 17268

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>