Database/PostgreSQL(EDB)
PostgreSQL에서 ColumnStore 사용 (빠른 손절)
데브포유
2022. 7. 12. 08:02
반응형
PostgreSQL에서도 컬럼 확장 "CSTORE_FDW"를 사용할 수 있다고 해서, MairaDB ColumnStore 대안으로
사용할 수 있을 것 같아서 관련 자료를 찾아 봤다가 빠른 손절을 했습니다.
손절 이유는 cstore_fdw 제한 사항 때문입니다.
CSTORE_FDW 제한 사항
불행히도 생산 준비를 줄이는 몇 가지 제한 사항이 있습니다. 예:
- 기본 키 및 외래 키 없음
- 파티션 지원 없음
- 업데이트/삭제 없음
- SIMD 지원 없음
MariaDB ColumnStore는 파티션도 지원하고, 업데이트/삭제도 지원하기 때문에 비교 대상이 될 수가 없었습니다.
업데이트/삭제가 필요 없다면 ClickHouse가 더 좋을 것 같기도 하구요...
https://citusdata.github.io/cstore_fdw/
cstore_fdw
Introducing cstore_fdw, the first column-oriented store available for PostgreSQL. Using it will let you: Leverage typical analytics benefits of columnar stores Deploy on stock PostgreSQL or scale-out PostgreSQL (Citus) Download and get started at https://g
citusdata.github.io
반응형