Suppose you run your business on top of a postgresql database. After a while, you will get so much traffic that it cannot be processed with a single postgresql instance, so you want to add more instances (scale it horizontally) to be able to handle growth.
Your data is relational, so probably switching to some kind of solution with a key / value is not an option.
How would you do this with postgresql?
PS. Postgresql Version: 9.5
database postgresql horizontal-scaling
user232343
source share