I have two PostgreSQL database servers. One is the master and another is a slave server which is in read only mode. I have written a few functions that CREATE TEMPORARY TABLE
within the function. Now my question: is it possible to run all of those functions in slave server? If it is possible, then how?
See the manuals.
All such connections are strictly read-only; not even temporary tables may be written
You will want something like slony or bucardo doing trigger-based replication if you want the replica to support write operations.
Edit: or, nowadays you can use logical replication.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With