Skip to content
Snippets Groups Projects
Verified Commit 7f154389 authored by Denis Smirnov's avatar Denis Smirnov
Browse files

feat: migrate to the full-temporary spaces

All materialized table on the storages are now fully temporary and
do not leave any records in WAL. Statistics table are left data
temporary as there is no need to recreate them on every restart.
parent b8bde87e
No related branches found
No related tags found
1 merge request!1414sbroad import
variables:
GIT_SUBMODULE_STRATEGY: none
SBROAD_DEV_IMAGE: docker-public.binary.picodata.io/sbroad-builder:0.9.0
SBROAD_DEV_IMAGE: docker-public.binary.picodata.io/sbroad-builder:0.10.0
CACHE_ARCHIVE: /data/gitlab-runner/shared-storage/sbroad
stages:
......
......@@ -52,7 +52,7 @@ impl TmpSpace {
let fields_len = fields.len() as u32;
// Vinyl engine does not support temporary spaces.
let space_type = match engine {
SpaceEngine::Memtx => SpaceType::DataTemporary,
SpaceEngine::Memtx => SpaceType::Temporary,
SpaceEngine::Vinyl => SpaceType::Normal,
};
let options = SpaceCreateOptions {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment