mirror of https://github.com/citusdata/citus.git
Merge pull request #4699 from citusdata/readme
Columnar: update README to compare with cstore_fdw.pull/4702/head
commit
1c4081ea5f
|
@ -16,6 +16,26 @@ The Citus Columnar tables work best for analytic or DW workloads:
|
||||||
* Doesn't read unnecessary columns
|
* Doesn't read unnecessary columns
|
||||||
* Efficient `VACUUM`
|
* Efficient `VACUUM`
|
||||||
|
|
||||||
|
# Next generation of cstore_fdw
|
||||||
|
|
||||||
|
Citus Columnar is the next generation of
|
||||||
|
[cstore_fdw](https://github.com/citusdata/cstore_fdw/).
|
||||||
|
|
||||||
|
Benefits of Citus Columnar over cstore_fdw:
|
||||||
|
|
||||||
|
* Citus Columnar is based on the [Table Access Method
|
||||||
|
API](https://www.postgresql.org/docs/current/tableam.html), which
|
||||||
|
allows it to behave exactly like an ordinary heap (row) table for
|
||||||
|
most operations.
|
||||||
|
* Supports Write-Ahead Log (WAL).
|
||||||
|
* Supports ``ROLLBACK``.
|
||||||
|
* Supports physical replication.
|
||||||
|
* Supports recovery, including Point-In-Time Restore (PITR).
|
||||||
|
* Supports ``pg_dump`` and ``pg_upgrade`` without the need for special
|
||||||
|
options or extra steps.
|
||||||
|
* Better user experience; simple ``USING``clause.
|
||||||
|
* Supports more features that work on ordinary heap (row) tables.
|
||||||
|
|
||||||
# Limitations
|
# Limitations
|
||||||
|
|
||||||
* Append-only (no ``UPDATE``/``DELETE`` support)
|
* Append-only (no ``UPDATE``/``DELETE`` support)
|
||||||
|
|
Loading…
Reference in New Issue