Re: WIP: BRIN multi-range indexes
Tomas Vondra <tomas.vondra@2ndquadrant.com>
From: Tomas Vondra <tomas.vondra@2ndquadrant.com>
To: Alvaro Herrera <alvherre@2ndquadrant.com>
Cc: John Naylor <john.naylor@2ndquadrant.com>, pgsql-hackers <pgsql-hackers@postgresql.org>
Date: 2020-09-11T10:14:41Z
Lists: pgsql-hackers
Attachments
On Thu, Sep 10, 2020 at 05:01:37PM -0300, Alvaro Herrera wrote: >On 2020-Sep-10, Tomas Vondra wrote: > >> I've spent a bit of time experimenting with this. My idea was to allow >> keeping an "expanded" version of the summary somewhere. As the addValue >> function only receives BrinValues I guess one option would be to just >> add bv_mem_values field. Or do you have a better idea? > >Maybe it's okay to pass the BrinMemTuple to the add_value function, and >keep something there. Or maybe that's pointless and just a new field in >BrinValues is okay. > OK. I don't like changing the add_value API very much, so for the experimental version I simply added three new fields into the BrinValues struct - the deserialized value, serialization callback and the memory context. This seems to be working good enough for a WIP version. With the original (non-batched) patch version a build of an index took about 4s. With the minmax_multi_get_strategy_procinfo optimization and batch build it now takes ~2.6s, which is quite nice. It's still ~2.5x as much compared to plain minmax though. I think there's still room for a bit more improvement (in how we merge the ranges etc.) and maybe we can get to ~2s or something like that. >> Of course, more would need to be done: >> >> 1) We'd need to also pass the right memory context (bt_context seems >> like the right thing, but that's not something addValue sees now). > >You could use GetMemoryChunkContext() for that. > Maybe, although I prefer to just pass the memory context explicitly. >> 2) We'd also need to specify some sort of callback that serializes the >> in-memory value into bt_values. That's not something addValue can do, >> because it doesn't know whether it's the last value in the range etc. I >> guess one option would be to add yet another support proc, but I guess a >> simple callback would be enough. > >Hmm. > I added a simple serialization callback. It works but it's a bit weird that twe have most functions defined as support procedures, and then this extra C callback. >> I've hacked together an experimental version of this to see how much >> would it help, and it reduces the duration from ~4.6s to ~3.3s. Which is >> nice, but plain minmax is ~1.1s. I suppose there's room for further >> improvements in compare_combine_ranges/reduce_combine_ranges and so on, >> but I still think there'll always be a gap compared to plain minmax. > >The main reason I'm talking about desupporting plain minmax is that, >even if it's amazingly fast, it loses quite quickly in real-world cases >because of loss of correlation. Minmax's build time is pretty much >determined by speed at which you can seqscan the table. I don't think >we lose much if we add overhead in order to create an index that is 100x >more useful. > I understand. I just feel a bit uneasy about replacing an index with something that may or may not be better for a certain use case. I mean, if you have data set for which regular minmax works fine, wouldn't you be annoyed if we just switched it for something slower? regards -- Tomas Vondra http://www.2ndQuadrant.com PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services
Commits
-
BRIN minmax-multi indexes
- ab596105b55f 14.0 landed
-
BRIN bloom indexes
- 77b88cd1bb90 14.0 landed
-
Support the old signature of BRIN consistent function
- a681e3c107aa 14.0 landed
-
Remove unnecessary pg_amproc BRIN minmax entries
- a68dfa27d42f 14.0 landed
-
Optimize allocations in bringetbitmap
- 8e4b332e88b8 14.0 landed
-
Move IS [NOT] NULL handling from BRIN support functions
- 72ccf55cb99c 14.0 landed
-
Pass all scan keys to BRIN consistent function at once
- a1c649d889bd 14.0 landed
-
Properly detoast data in brin_form_tuple
- d2d3a4bd33d2 9.5.24 landed
- bae31e75f777 9.6.20 landed
- 0b96fc977c5b 10.15 landed
- 895d0f0e8218 11.10 landed
- 8149e9f9a0d6 12.5 landed
- 6a7b55f3716f 13.1 landed
- 7577dd84807a 14.0 landed