We have successfully deployed Postgres 9.3 with streaming replication (WAL replication). Currently, we have 2 slaves, the second slave is a cascading slave from the first slave. Both slaves are hot modes with active read-only connections.
In connection with the download, we would like to create a third slave device, with slightly different hardware specifications, and another application that uses it as a read-only database in most cases of using a data warehouse. Since this is for another application, we would like to optimize it specifically for this application and improve performance by using some additional indexes. For size and performance purposes, we prefer not to have these indexes on the main device or on the other 2 slaves.
So, my main question is: can we create different indexes for slave devices for streaming replication, and if not, is there another data storage method that I skip?
source
share