Re: Yet another fast GiST build
x4mmm@yandex-team.ru
From: "Andrey M. Borodin" <x4mmm@yandex-team.ru>
To: Thomas Munro <thomas.munro@gmail.com>
Cc: Michael Paquier <michael@paquier.xyz>, Alexander Korotkov <a.korotkov@postgrespro.ru>, Darafei Komяpa Praliaskouski <me@komzpa.net>, pgsql-hackers <pgsql-hackers@postgresql.org>
Date: 2020-02-24T08:50:31Z
Lists: pgsql-hackers
Hi Thomas! Thanks for looking into this! I’ll fix your notices asap. > On 24 февр. 2020 г., at 01:58, Thomas Munro <thomas.munro@gmail.com> wrote: > > On Thu, Feb 20, 2020 at 10:14 AM Thomas Munro <thomas.munro@gmail.com> wrote: >> 1. We expect floats to be in IEEE format, and the sort order of IEEE >> floats is mostly correlated to the binary sort order of the bits >> reinterpreted as an int. It isn't in some special cases, but for this >> use case we don't really care about that, we're just trying to >> encourage locality. > > I suppose there is a big jump in integer value (whether signed or > unsigned) as you cross from positive to negative floats, and then the > sort order is reversed. I have no idea if either of those things is a > problem worth fixing. That made me wonder if there might also be an > endianness problem. It seems from some quick googling that all > current architectures have integers and floats of the same endianness. > Apparently this wasn't always the case, and some ARMs have a weird > half-flipped arrangement for 64 bit floats, but not 32 bit floats as > you are using here. Yes, this leap is a problem for point as generic data type. And I do not know how to fix it. It can cause inefficient Index Scans when searching near (0,0) and query window touches simultaneously all quadrants (4x slower). But everything will be just fine when all data is in 2nd quadrant. Actually, we do not need to add this hacky code to core: we can provide colum-wise ordering or something similar as an example. This feature is aimed at PostGIS and they already possess bit tricks tricks [0]. I’ve taken this union code from PostGIS. Thanks! Best regards, Andrey Borodin. [0] https://github.com/postgis/postgis/blob/master/postgis/gserialized_gist_nd.c#L1150
Commits
-
Add sortsupport for gist_btree opclasses, for faster index builds.
- 9f984ba6d23d 14.0 landed
-
pageinspect: Fix relcache leak in gist_page_items().
- 04eb75e783ba 14.0 landed
-
Fix test failure with wal_level=minimal.
- 5abca4b1cd71 14.0 landed
-
Enhance nbtree index tuple deletion.
- d168b666823b 14.0 cited
-
Fix portability issues in the new gist pageinspect test.
- 6ecaaf810b8b 14.0 landed
-
Add functions to 'pageinspect' to inspect GiST indexes.
- 756ab29124d7 14.0 landed
-
Fix missing validation for the new GiST sortsupport functions.
- 6f0bc5e1daf0 14.0 landed
-
Fix compilation warning in xlog.c
- 0a3c864c3275 14.0 cited
-
Set right-links during sorted GiST index build.
- 265ea567852a 14.0 landed
-
Fix checksum calculation in the new sorting GiST build.
- c47a240fe6db 14.0 landed
-
Add support for building GiST index by sorting.
- 16fa9b2b30a3 14.0 landed