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 3F5BC6B944; Tue, 13 Apr 2021 17:42:50 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 dev.tarantool.org 3F5BC6B944 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=tarantool.org; s=dev; t=1618324970; bh=S96XWiqHP87p9kr+TdIe/ZwIZ944taRc2dJblY3wYcA=; 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=PjZrW/boOmc7tjjhEuGhy2R5tn4AA8Fl3PCjN4CJd0md/0+V+uTb+qhTwDUdELgsL qIh7S+j0giEjvabNiR0fjtB83VYiXKniVNQ9/3nGSVICo+whxb+3I8mKVPG8mTOWdu crE4O1C8pG4aGC9KzL7utdq1Uw2A4xvR5HJPXHIs= Received: from mail-lj1-f175.google.com (mail-lj1-f175.google.com [209.85.208.175]) (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 789D06BD2D for ; Tue, 13 Apr 2021 17:42:49 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 dev.tarantool.org 789D06BD2D Received: by mail-lj1-f175.google.com with SMTP id o16so19641436ljp.3 for ; Tue, 13 Apr 2021 07:42:49 -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=orJZWhOXxjb5jBD/fANHvpF7JvVtTT7ZitoEiVpMT9o=; b=DF0mxBK6lUYfGJQxEYBsuKXtQf+ga2j/cjuLg4yKiti9ARYk/o0qkrC1c6rsddE5vf ucgp4jwTGfaZ4JMvHVTyC6OzFp4umscaYtMvG5f1UZxn7U5yCGGiM/LOAus2VnPMVkBF 92C3uJG3i0tlcGgfvOMoXzmD5+WsD9Grg5QhklXUSgd7SIF371bNY8RlftsUPQyMCSfF fR9YKrhzQR+tcQTWzToDle3/vhJo4gRDnfkud4aEp/dHl1p5I/0bLEeHF/Jgw3CgYrjg pFafI3n849ubZVAeDGIct1K3fdms/TBwYPV51ek1U3Gc3I0MMJBa+Z7dow4htmeqxW6s dweg== X-Gm-Message-State: AOAM530vZeZ/+ls+i7peSwVepabQ8azgyTDHkMXP4Z7oI96H9mEsuZeo kqK6EIzNvHQpgihH+nWBV4nYhRL+KsU= X-Google-Smtp-Source: ABdhPJxyRn552HYCPANHDP+IQ5/1t4jhuiULVd9GjLeLj5CNjHn0MsUbrFI6kIB7dTvUvafUvIAWVA== X-Received: by 2002:a2e:3005:: with SMTP id w5mr21005014ljw.493.1618324968399; Tue, 13 Apr 2021 07:42:48 -0700 (PDT) Received: from grain.localdomain ([5.18.199.94]) by smtp.gmail.com with ESMTPSA id n22sm4030157ljc.23.2021.04.13.07.42.47 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 13 Apr 2021 07:42:47 -0700 (PDT) Received: by grain.localdomain (Postfix, from userid 1000) id C9986560162; Tue, 13 Apr 2021 17:42:46 +0300 (MSK) Date: Tue, 13 Apr 2021 17:42:46 +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 v2 0/9] 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 Mon, Apr 12, 2021 at 10:40:13PM +0300, Serge Petrenko wrote: > Changes in v2: > - Added tests for patches 1, 6, 9 > - Minor typo fixes and bugfixes. > > https://github.com/tarantool/tarantool/tree/sp/gh-5445-election-fixes > https://github.com/tarantool/tarantool/issues/5445 > https://github.com/tarantool/tarantool/issues/3055 > The series looks ok for me, but I must confess I still lack some of internals of our raft implementation. So better to wait for Vlad's comments.