Open
Description
Related dev. resources:
- TCS release cards: https://jira.vk.team/browse/PRODUCTS-682
- Dev ticket: https://jira.vk.team/browse/TNTP-3078
Product: TCS
Since: 0.29
Audience/target: admins, end users (finops)
Root document: https://www.tarantool.io/ru/column-store/doc/latest/
SME: @ ch3rrydrunk, @ Galiev-Ruslan
Details
Data insertions like INSERT INTO table VALUES (...)
or INSERT INTO table FROM SELECT ...
used to insert data into the column storage.
Now, both SQL Insert and POST /v2/insert {data} will by default insert data into the string buffer. The data will eventually be moved to the column storage as a result of flushing.
To control this behavior, a new option insert_into_columns
is added to TCS aggregation configuration with the default value set tofalse
. When the option is set to true
, the behavior is reverted to the old one.