From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Date: Thu, 25 Oct 2018 12:24:21 +0300 From: Vladimir Davydov Subject: Re: [PATCH v3 1/5] wal: preallocate disk space before writing rows Message-ID: <20181025092421.ncm3c3h3nalal77i@esperanza> References: <2b1b6e6c39cff3952dda76a482e0960ba0b5a943.1540388352.git.vdavydov.dev@gmail.com> <20181024170823.GI12973@chai> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20181024170823.GI12973@chai> To: Konstantin Osipov Cc: tarantool-patches@freelists.org List-ID: On Wed, Oct 24, 2018 at 08:08:23PM +0300, Konstantin Osipov wrote: > * Vladimir Davydov [18/10/24 16:43]: > > This function introduces a new xlog method xlog_fallocate() that makes > > sure that the requested amount of disk space is available at the current > > write position. It does that with posix_fallocate(). The new method is > > called before writing anything to WAL, see wal_fallocate(). In order not > > to invoke the system call too often, wal_fallocate() allocates disk > > space in big chunks (1 MB). > > > > The reason why I'm doing this is that I want to have a single and > > clearly defined point in the code to handle ENOSPC errors, where > > I could delete old WALs and retry (this is what #3397 is about). > > > > Needed for #3397 > > Thank you for taking into account the comments. Please push. Pushed to 1.10-features