Reputation: 451
I want to do sharding in postgresql without using citus plugin.
can anybody suggest how to do ?
Upvotes: 0
Views: 534
Reputation: 2406
Postgresql 10 actually added support for native partitioning, but that was released less than a week ago. Have a look here for some examples of SQL syntax for usage:
https://postgrespro.co.il/blog/whats-new-in-postgresql-10-part-2-native-partitioning/
Upvotes: 1