From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: From: Vladimir Davydov Subject: [PATCH v3 0/3] Allow to build indexes for vinyl spaces Date: Thu, 7 Jun 2018 13:56:15 +0300 Message-Id: To: kostja@tarantool.org Cc: tarantool-patches@freelists.org List-ID: This patch set implements the ability to build secondary indexes for non-empty vinyl spaces. For implementation details, see patch 3. https://github.com/tarantool/tarantool/issues/1653 https://github.com/tarantool/tarantool/commits/vy-allow-to-build-secondary-indexes Changes in v3: - Remove merged patches from the patch set. - Rebase tests on top of the latest 1.10. - When building a new index, use original tuple LSNs instead of max LSN to the time. Changes in v2: - Split the patch into logical parts. - Address comments by Konstantin and Vladislav (refactoring mostly). v1: https://www.freelists.org/post/tarantool-patches/PATCH-vinyl-allow-to-build-secondary-index-for-nonempty-space v2: https://www.freelists.org/post/tarantool-patches/PATCH-v2-08-Allow-to-build-indexes-for-vinyl-spaces Vladimir Davydov (3): vinyl: do not yield on dump completion vinyl: relax limitation imposed on run min/max lsn vinyl: allow to build secondary index for non-empty space src/box/vinyl.c | 450 +++++++++++++++++++++++--- src/box/vy_log.c | 2 +- src/box/vy_log.h | 4 +- src/box/vy_lsm.c | 14 +- src/box/vy_lsm.h | 2 +- src/box/vy_quota.h | 10 + src/box/vy_read_iterator.c | 13 - src/box/vy_scheduler.c | 71 +++-- src/box/vy_scheduler.h | 7 + test/box/alter.result | 501 ----------------------------- test/box/alter.test.lua | 159 --------- test/engine/ddl.result | 672 +++++++++++++++++++++++++++++++++++++++ test/engine/ddl.test.lua | 221 +++++++++++++ test/vinyl/ddl.result | 439 ++++++++++++++----------- test/vinyl/ddl.test.lua | 231 +++++++++----- test/vinyl/errinj.result | 312 ++++++++++++++++++ test/vinyl/errinj.test.lua | 134 ++++++++ test/vinyl/errinj_gc.result | 78 ++++- test/vinyl/errinj_gc.test.lua | 38 ++- test/vinyl/errinj_vylog.result | 57 ++++ test/vinyl/errinj_vylog.test.lua | 29 ++ test/vinyl/gh.result | 2 +- 22 files changed, 2396 insertions(+), 1050 deletions(-) -- 2.11.0