Distributed PostgreSQL for scaling out analytics and applications
PostgreSQL-based distributed RDBMS
psql$ psql -h localhost -U postgres -d postgres$ psql -h localhost -U postgres -c "CREATE TABLE events (id INT, data TEXT); SELECT create_distributed_table('events', 'id');"$ psql -h localhost -U postgres -c "SELECT count(*) FROM events;"