Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a master-slave setup that essentially feeds 2 different systems. One system inserts gobs of data, while the other reads it back out. I have quite a few indexes set up for the reads, but of course indexes slow the writes down.

Using Postgres's automatic master-slave replication strategies, is there a way to just replicate the raw data but not have the indexes present on the master?

I saw an answer to this, but it was for MySQL, and I'm using Postgres (Can you index tables differently on Master and Slave (MySQL)).

Thanks in advance.

share|improve this question
2  
I'm surprised this wasn't migrated to dba.stackexchange.com. I'd suggest asking there.The short version, though, is "no" for the built-in log-shipping or streaming replication, and "yes" for Bucardo, Slony and other row-level replication options. – Craig Ringer Oct 28 '12 at 0:37
Totally my bad about asking on the wrong forum. I forgot about all the sister sites. Thank you for the answer though! – juanpaco Oct 29 '12 at 0:20

closed as off topic by mu is too short, Christoph, RivieraKid, Wh1T3h4Ck5, Rob Oct 27 '12 at 22:12

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.