Open source column-oriented storage engine for PostgreSQL?
Citus Data has developed an open source columnar store extension for PostgreSQL. It is available under the Apache License v2.0. It supports PostgreSQL 9.3 and higher. First, creation the extension and a foreign server: CREATE EXTENSION cstore_fdw; CREATE SERVER cstore_server FOREIGN DATA WRAPPER cstore_fdw; Next, create some foreign tables: CREATE FOREIGN TABLE customer_reviews ( customer_id … Read more