citus

Distributed PostgreSQL for scaling out analytics and applications

brewmacoslinux
Try with needOr install directly
Source

About

PostgreSQL-based distributed RDBMS

Commands

psql

Examples

Connect to Citus coordinator node$ psql -h localhost -U postgres -d postgres
Create a distributed table and shard it$ psql -h localhost -U postgres -c "CREATE TABLE events (id INT, data TEXT); SELECT create_distributed_table('events', 'id');"
Run distributed query across worker nodes$ psql -h localhost -U postgres -c "SELECT count(*) FROM events;"