kumar
kumar

Reputation: 451

Is it possible to do Sharding in PostgreSQL without any extra plugin?

I want to do sharding in postgresql without using citus plugin.

can anybody suggest how to do ?

Upvotes: 0

Views: 534

Answers (1)

P Ackerman
P Ackerman

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

Related Questions