Skip to content

Commit 622cd2a

Browse files
seutamotl
authored andcommitted
Storage: Fix and reorganize "column store" section
1 parent 592c360 commit 622cd2a

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

docs/feature/storage/index.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -71,13 +71,14 @@ a column store for fast sorting and aggregations.
7171

7272
CrateDB implements a {ref}`column store <crate-reference:ddl-storage-columnstore>`
7373
based on doc values in Lucene.
74-
For text values, other than storing the row data as-is (and indexing each value by default),
75-
each value term is stored into a column-based store by default.
76-
7774
This storage layout improves the performance of sorting, grouping, and aggregations,
7875
by keeping field data for one column packed at one place rather than scattered across documents.
79-
The column store is enabled by default in CrateDB and can be disabled only for text fields.
80-
It does not support container or geographic data types.
76+
77+
The column store is enabled by default in CrateDB and can optionally be disabled
78+
on a per-field level. It does not support container or geographic data types.
79+
80+
For all supported value types, other than storing the row data as-is, and indexing
81+
each value by default, each value term is stored into a column-based store by default.
8182

8283
## Storage process
8384

0 commit comments

Comments
 (0)