From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from [87.239.111.99] (localhost [127.0.0.1]) by dev.tarantool.org (Postfix) with ESMTP id 729006901E; Wed, 14 Apr 2021 21:21:56 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 dev.tarantool.org 729006901E DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=tarantool.org; s=dev; t=1618424516; bh=HHRKFwNPSjRV0z+9NS6AGKjMzFLooJk8kZzFEESkFI8=; h=Date:To:Cc:References:In-Reply-To:Subject:List-Id: List-Unsubscribe:List-Archive:List-Post:List-Help:List-Subscribe: From:Reply-To:From; b=MBU0EYAojTqSniAmgWKA9VTQTm97nvz8EZ8ZMbSfclpib0l3n0LCeXBZ3lWAeGk5J QgkTHPm9n1VhAJyo4pVhsFPSVyOhUMAML7MJcJrC7Msx0wyvV2eUXEydlvUL0/F8EV CKFhzH+KmiIxwpQeCIangvzC1Dry0rHZythY5LiY= Received: from mail-lj1-f177.google.com (mail-lj1-f177.google.com [209.85.208.177]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by dev.tarantool.org (Postfix) with ESMTPS id DDBA16901B for ; Wed, 14 Apr 2021 21:21:55 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 dev.tarantool.org DDBA16901B Received: by mail-lj1-f177.google.com with SMTP id o16so24311942ljp.3 for ; Wed, 14 Apr 2021 11:21:55 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-disposition:in-reply-to:user-agent; bh=MY+qi/FaXLweUdmHBc4SCU5kZwH/G7FcQpDV6rJ0KGM=; b=dReMUyh1mvRzpZskSOwZnYbPlB3H5Ov5vIjVDfW78s541NllA7MnVQkiGe9XnsFwur K8h1vtAjiXsupNnaETAdoxmiCNndJWuX8yowPpIak53h8Rs+ztoqalmmvWMUnHOG0Vch S2z0wtj/kin/jOXGZ9QIncnAk+vFjOOjN3pyNYeys2/C3A3RlmbAEZZ5ALfTH9THEBhk 8hdK0z46XFOcEHjBNNu8SR2svhJVgMClnmpoqwdVJuQGD1/yf80ll0nb4aCZ9YQ5HcwR 5wHrRPLCqCsiqQj4vqkS/1B1ZSFMKqOqIxSCKP99vwhl2vp6/CEvRgElzNmqv3ryf//b 0RKw== X-Gm-Message-State: AOAM531HmRWrgZc8NlYjd7lEgeBJwXPdDXUuycX8L7a+iFI2jB8NRRbC cA016pc5m2BRWmPJ7Cy4fHCQcDFQ574GAg== X-Google-Smtp-Source: ABdhPJyFmjywIe+QOJiKlfJ51MAqZIEqfU+X8BbPaOZL+guCFuZCs9i23A60ya3L2qdFVDlyfVyH2w== X-Received: by 2002:a05:651c:200e:: with SMTP id s14mr24770535ljo.471.1618424514763; Wed, 14 Apr 2021 11:21:54 -0700 (PDT) Received: from grain.localdomain ([5.18.199.94]) by smtp.gmail.com with ESMTPSA id l26sm108727lfk.101.2021.04.14.11.21.53 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 14 Apr 2021 11:21:53 -0700 (PDT) Received: by grain.localdomain (Postfix, from userid 1000) id 130815601DA; Wed, 14 Apr 2021 21:21:52 +0300 (MSK) Date: Wed, 14 Apr 2021 21:21:51 +0300 To: Serge Petrenko Cc: v.shpilevoy@tarantool.org, tarantool-patches@dev.tarantool.org Message-ID: References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/2.0.5 (2021-01-21) Subject: Re: [Tarantool-patches] [PATCH v3 00/10] raft: introduce manual elections and fix a bug with re-applying rolled back transactions X-BeenThere: tarantool-patches@dev.tarantool.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: Cyrill Gorcunov via Tarantool-patches Reply-To: Cyrill Gorcunov Errors-To: tarantool-patches-bounces@dev.tarantool.org Sender: "Tarantool-patches" On Wed, Apr 14, 2021 at 05:17:10PM +0300, Serge Petrenko wrote: > Changes in v3: > - fix gh-5445-leader-inconsistency.test.lua flakiness > - fixes as per review from Cyrill Gorcunov > - minor fixes and rewordings > - rebased on top of current master > - added patch 9/10 (remove parameter from clear_synchro_queue) > > Changes in v2: > - Added tests for patches 1, 6, 9 > - Minor typo fixes and bugfixes. Thanks! Ack for code structure, I can't comment much on architectural details, lets wait for Vlad's opinion.