From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from localhost (localhost [127.0.0.1]) by turing.freelists.org (Avenir Technologies Mail Multiplex) with ESMTP id 6922E24D82 for ; Sat, 7 Sep 2019 12:02:03 -0400 (EDT) Received: from turing.freelists.org ([127.0.0.1]) by localhost (turing.freelists.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id D-sTdah4N1R4 for ; Sat, 7 Sep 2019 12:02:03 -0400 (EDT) Received: from smtpng3.m.smailru.net (smtpng3.m.smailru.net [94.100.177.149]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by turing.freelists.org (Avenir Technologies Mail Multiplex) with ESMTPS id 7DDB324D6E for ; Sat, 7 Sep 2019 12:02:02 -0400 (EDT) From: Vladislav Shpilevoy Subject: [tarantool-patches] [PATCH 0/2] Deprecate rows_per_wal Date: Sat, 7 Sep 2019 18:05:35 +0200 Message-Id: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: tarantool-patches-bounce@freelists.org Errors-to: tarantool-patches-bounce@freelists.org Reply-To: tarantool-patches@freelists.org List-Help: List-Unsubscribe: List-software: Ecartis version 1.0.0 List-Id: tarantool-patches List-Subscribe: List-Owner: List-post: List-Archive: To: tarantool-patches@freelists.org Cc: alexander.turenko@tarantool.org The patchset deprecates and drops rows_per_wal box.cfg option. It is done in two separate commits so as the first one could be cherry-picked to all the branches < master and >= 1.10. The second commit actually drops the option - box.cfg will raise an error on it. It it is for master branch only. Branch: http://github.com/tarantool/tarantool/tree/gerold103/gh-3762-rows_per_wal-deprecate Issue: https://github.com/tarantool/tarantool/issues/3762 Vladislav Shpilevoy (2): wal: deprecate rows_per_wal in favour of wal_max_size wal: drop rows_per_wal option src/box/box.cc | 30 +------- src/box/lua/load_cfg.lua | 38 ++++++---- src/box/wal.c | 14 +--- src/box/wal.h | 13 +++- test/app-tap/init_script.result | 39 +++++----- test/app-tap/snapshot.test.lua | 2 +- test/app/app.lua | 2 +- test/app/fiber.result | 6 +- test/app/fiber.test.lua | 4 +- test/box-py/box.lua | 2 +- test/box-tap/cfg.test.lua | 3 +- test/box/admin.result | 2 - test/box/cfg.result | 4 - test/box/configuration.result | 107 --------------------------- test/box/proxy.lua | 2 +- test/box/tiny.lua | 1 - test/engine/box.lua | 2 +- test/engine_long/box.lua | 1 - test/long_run-py/box.lua | 1 - test/vinyl/vinyl.lua | 1 - test/xlog-py/box.lua | 1 - test/xlog/checkpoint_daemon.result | 11 ++- test/xlog/checkpoint_daemon.test.lua | 9 ++- test/xlog/errinj.result | 7 +- test/xlog/errinj.test.lua | 5 +- test/xlog/panic.lua | 1 - test/xlog/upgrade/fill.lua | 2 +- test/xlog/xlog.lua | 2 +- 28 files changed, 97 insertions(+), 215 deletions(-) delete mode 100644 test/box/configuration.result -- 2.20.1 (Apple Git-117)