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 329636FC8F; Tue, 23 Mar 2021 21:33:50 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 dev.tarantool.org 329636FC8F DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=tarantool.org; s=dev; t=1616524430; bh=GMTYENIpYcq48QtgsaRIMos61CvBtO4Xg/GcFT0myiU=; h=Date:To:References:In-Reply-To:Subject:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To:Cc: From; b=OQX+PQyaZSpqa6OGawsCwRTZuXkHnxFhIgH1UgkWTnrpcAwc9GvyfgmcNOLxqgk36 /HJejaHjsNvyLUoozv0JzWLyAwLHgPGXrulMbxuBLxR75GxaBq7w7PL3825Xe7WWOW jPEkuIzNbP/MTHf3DTrg5MYHU56QOUO7sHEKlYy0= 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 B82886FC8F for ; Tue, 23 Mar 2021 21:33:48 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 dev.tarantool.org B82886FC8F Received: by mail-lj1-f175.google.com with SMTP id u10so26959308lju.7 for ; Tue, 23 Mar 2021 11:33:48 -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=Q5hhVVUWAzeEW3NUoBl8dKRx9zomdYzsjhQwSpNBJE4=; b=agtAop+1/VhK1CDdtu7Opy3FpY/zM5c6PulUhes/ctC0X4zF98Vn6TVEFwlN87fiWK hMZvspqiqh6a//MMglwN/155uJAU9avYunsBYYZnL61VyAYWpJwr0HDrPXwXthIihbbc Wk43sY9OuIuM4jZNrzfDA7C995FMptWWB/x8W/CzW6tqt+G+ZRijTTcCCJTNEdsGiMKF giUP07CHfbrwmp3kC6CgRwnPfHUsCvGZqXGlgmKC4WmRw9YMqeznu+4xclPPR8N29ya5 UsvPXp6krB0lcx2CZNpgYf2k6FlOyYMJOpPxD4yo4BctREcvriL6B5OQgbG3dblaOWFm xJMQ== X-Gm-Message-State: AOAM530iZDh5y+wFVcLoihgwXTS7m6hME4DcWsft983Np0HCQwqogH8J bTmsSk3V49NYq1TLPex1UdDjvimJVlA= X-Google-Smtp-Source: ABdhPJzb4BP+ORkAp2rTTxLmqJvFfio0sJj6el3DOha1O0ImWJWkrZ+TzwgYBSyRgH/t8N8rOXygiw== X-Received: by 2002:a2e:981a:: with SMTP id a26mr3966600ljj.204.1616524427539; Tue, 23 Mar 2021 11:33:47 -0700 (PDT) Received: from grain.localdomain ([5.18.171.94]) by smtp.gmail.com with ESMTPSA id q14sm1925010lfd.214.2021.03.23.11.33.46 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 23 Mar 2021 11:33:46 -0700 (PDT) Received: by grain.localdomain (Postfix, from userid 1000) id 9305756017D; Tue, 23 Mar 2021 21:33:45 +0300 (MSK) Date: Tue, 23 Mar 2021 21:33:45 +0300 To: tml Message-ID: References: <20210323154710.1696442-1-gorcunov@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20210323154710.1696442-1-gorcunov@gmail.com> User-Agent: Mutt/2.0.5 (2021-01-21) Subject: Re: [Tarantool-patches] [PATCH v3 0/3] gc/xlog: delay xlog cleanup until relays are subscribed 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 Cc: Vladislav Shpilevoy Errors-To: tarantool-patches-bounces@dev.tarantool.org Sender: "Tarantool-patches" On Tue, Mar 23, 2021 at 06:47:07PM +0300, Cyrill Gorcunov wrote: > v3: > - fix changelog > - rework box_check_wal_cleanup_delay, the replication_anon > setting is considered only in box_set_wal_cleanup_delay, > ie when config is checked and parsed, moreover the order > of setup is set to be behind "replication_anon" option > processing > - delay cycle now considers deadline instead of per cycle > calculation > - use `double` type for timestamp > - test update > - verify `.is_paused` value > - minimize number of inserts > - no need to use temporary space, regular space works as well > - add comments on why we should restart the master node > > issue https://github.com/tarantool/tarantool/issues/5806 > branch gorcunov/gh-5806-xlog-gc-3 I just noticed that with this change the test replication/replica_rejoin.test.lua started to fail. Investigating. I think it is due to default timeout.