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 DEDF66FC86; Mon, 22 Mar 2021 11:30:03 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 dev.tarantool.org DEDF66FC86 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=tarantool.org; s=dev; t=1616401803; bh=RtPsAwZtzdm+wEAjTZMn9aHIyYgXDLd6jB9BdQsX+hA=; 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=diTTmpE1KltZRLlo3xc6lYHiSO+FeC+OratXFAIBTaCs35s8qS4OwqMp5Q8gWWNON C8XjkKvTN+ElzcNVeqaZqcwI2fmc3egjW6TpEH+0r/5xI05tgviiLphpukYKQO9VDI n8+9YpzgeAYeLMj4UfxL8qlrn52IjGNJ5MAVB7uQ= Received: from mail-lf1-f41.google.com (mail-lf1-f41.google.com [209.85.167.41]) (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 E4B846FC86 for ; Mon, 22 Mar 2021 11:30:02 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 dev.tarantool.org E4B846FC86 Received: by mail-lf1-f41.google.com with SMTP id n138so19871550lfa.3 for ; Mon, 22 Mar 2021 01:30:02 -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=ktMpPRIb9ChUAgoADchwZQaTYfGwZ0jYKAzeUKvwEdQ=; b=ctBwRdL4ixemNFScLBQbi+3NvHJhbyXs2wtNiiSsvpsW8DVErw6ZHrWoxJSUKF358o dOwVzdwO7vBO4QHtqqszyDjMKWc1U4ENHqMYxfT8vF2F+donNLWTw0Mmy7qA0EGTyUQf eeZ2xezIwmcYD5SUgU10ogF7478XcqScLo7/JdMbQSoE6Bi4jdOqRBEOJtCsLRGPDKxK DFVwfVSgeJ4TnPffX21f8QcMdgaqyM7CR+IUWoat17MlS3YIzLUUvcViM+wjVBaehfBq iSnEcsMC9bZm4mwNt31agHkF+v8rmkDqGcH+W/AbpPYGSw4i3Ra0kN1I+NMpEEmI29cI 37jw== X-Gm-Message-State: AOAM533cr/1YqSZ/njEmgeJzHs1Wf8gZuXe3NOdJakpYgJhWGPB58sfc lUVhAVu5HWwvLe2TT4V2KvI= X-Google-Smtp-Source: ABdhPJy5lsFQpK/4qbXACd21HbZzjOiMV5lRK93IjwR27ikboc2X5LUb2ITKbEAFq7fZmwK87SNxEg== X-Received: by 2002:ac2:55ad:: with SMTP id y13mr8746773lfg.246.1616401802486; Mon, 22 Mar 2021 01:30:02 -0700 (PDT) Received: from grain.localdomain ([5.18.171.94]) by smtp.gmail.com with ESMTPSA id 21sm1486218lfh.231.2021.03.22.01.30.01 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 22 Mar 2021 01:30:01 -0700 (PDT) Received: by grain.localdomain (Postfix, from userid 1000) id E7CC0560179; Mon, 22 Mar 2021 11:30:00 +0300 (MSK) Date: Mon, 22 Mar 2021 11:30:00 +0300 To: Konstantin Osipov Message-ID: References: <20210320131521.1249747-1-gorcunov@gmail.com> <20210320131521.1249747-2-gorcunov@gmail.com> <20210322080746.GB110797@starling> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20210322080746.GB110797@starling> User-Agent: Mutt/2.0.5 (2021-01-21) Subject: Re: [Tarantool-patches] [PATCH v2 1/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: Mons Anderson , tml , Vladislav Shpilevoy Errors-To: tarantool-patches-bounces@dev.tarantool.org Sender: "Tarantool-patches" On Mon, Mar 22, 2021 at 11:07:46AM +0300, Konstantin Osipov wrote: > > > > The `wal_cleanup_delay` should be set to: > > > > - `-1` to wait infinitely until all existing replicas are subscribed; > > - `0` to disable the cleanup delay; > > - `>0` to wait for specified number of seconds. > > wal_gc_delay maybe? I like this name even more than wal_cleanup_delay, thanks! If noone object I will rename. Lets wait for other people replies.