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 1700C6EC55; Tue, 13 Jul 2021 15:19:14 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 dev.tarantool.org 1700C6EC55 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=tarantool.org; s=dev; t=1626178754; bh=qA678dJdBBkYHuJoK23YdvBtV+z/ihl1dAqLnWexPbA=; 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=wtLwsAYEHYwxF6iBrJVzjEerqFJl92oexlyYLaclT3OT6NOjDWNyAnfNb4N7VQ+h9 QhmRXZOA4f9Ha3WnFctr30AVdCFthpipDejvHfQmOTMhDiQ9gQuuvD2NjN8IMbhC5L MUiMRgjZt3Ui/tmWChPvjpy48vMQUsTZh9yPWY1g= Received: from mail-lj1-f169.google.com (mail-lj1-f169.google.com [209.85.208.169]) (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 0F7BD6EC55 for ; Tue, 13 Jul 2021 15:19:13 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 dev.tarantool.org 0F7BD6EC55 Received: by mail-lj1-f169.google.com with SMTP id e20so29619029ljn.8 for ; Tue, 13 Jul 2021 05:19:13 -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=qA678dJdBBkYHuJoK23YdvBtV+z/ihl1dAqLnWexPbA=; b=FZh7O7Chj6bR99JHTsKxU/kMHrDpBHgsDTh0NRZLwwCgG+5t9p05Q+48NTFZdTR6Aa 9asojfJT3e8+KJZhE5gwfQlO8h8g4lHSF5/3lw0oEnl6zvVzhl3IjU5hO1vLDOrWcNTd e102tT6OOG9mmwUaUkC2bRdzBqpjQaioBtbVNNT3DPGF2WfF35WNP2C6EQcOu1Kb8cx0 dFR/+tChy0vT9H7UceMB6vlhD9tljItN9g6mldanf+nKbGqTxaK3JQqv0DA3vIj8rsIT oBKd3oOGEl88HJwmDdTpUtPo/drAJAteHeDQGGRa0+kwuPyu0XCupY0XRfYW64AtsROf S1Gg== X-Gm-Message-State: AOAM530xJ2FXU4DX7q23FMLfQWAvBSNIe3jMbW4AGzwJ5+0Hn6CDFgRV 7/I/BohmYbGAvHhd4UBKZMPa9r7E2fY= X-Google-Smtp-Source: ABdhPJzg4eyPO4tMGWPji6Nlvb6sKSAygI3wKfzgRL7ONkYhoWTgv0mBNUIjCtyew/omiqJR91oaoA== X-Received: by 2002:a05:651c:111b:: with SMTP id d27mr3868182ljo.387.1626178751856; Tue, 13 Jul 2021 05:19:11 -0700 (PDT) Received: from grain.localdomain ([5.18.199.94]) by smtp.gmail.com with ESMTPSA id o14sm1456799lfr.296.2021.07.13.05.19.09 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 13 Jul 2021 05:19:09 -0700 (PDT) Received: by grain.localdomain (Postfix, from userid 1000) id 220095A001E; Tue, 13 Jul 2021 15:19:09 +0300 (MSK) Date: Tue, 13 Jul 2021 15:19:09 +0300 To: Vladislav Shpilevoy 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.7 (2021-05-04) Subject: Re: [Tarantool-patches] [PATCH 1/1] qsync: remove polling from box_promote() 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: tarantool-patches@dev.tarantool.org Errors-To: tarantool-patches-bounces@dev.tarantool.org Sender: "Tarantool-patches" On Tue, Jul 13, 2021 at 12:20:07AM +0200, Vladislav Shpilevoy wrote: > box_promote() when called manually used to wait for the existing > transactions from a foreign limbo to end during a timeout. Giving > them a chance to end on their terms. Ack