Re: index prefetching
Tomas Vondra <tomas.vondra@enterprisedb.com>
Commits
GET /api/v1/messages/:b64id/commits
the thread's linked commits as JSON, with link sources.
API reference →
-
aio: io_uring: Trigger async processing for large IOs
- a9ee66881744 19 (unreleased) landed
-
read stream: Split decision about look ahead for AIO and combining
- 8ca147d582a5 19 (unreleased) landed
-
read_stream: Only increase read-ahead distance when waiting for IO
- f63ca3379025 19 (unreleased) landed
-
read_stream: Prevent distance from decaying too quickly
- 6e36930f9aaf 19 (unreleased) landed
-
Reduce ExecSeqScan* code size using pg_assume()
- b227b0bb4e03 19 (unreleased) cited
-
Fix rare bug in read_stream.c's split IO handling.
- b421223172a2 19 (unreleased) cited
-
Fix multiranges to behave more like dependent types.
- 3e8235ba4f9c 17.0 cited
-
Add EXPLAIN (MEMORY) to report planner memory consumption
- 5de890e3610d 17.0 cited
-
Optimize nbtree backward scan boundary cases.
- c9c0589fda0e 17.0 cited
-
Increment xactCompletionCount during subtransaction abort.
- 90c885cdab8b 14.0 cited
-
Add nbtree Valgrind buffer lock checks.
- 4a70f829d86c 14.0 cited
-
Add nbtree high key "continuescan" optimization.
- 29b64d1de7c7 12.0 cited
-
Reduce pinning and buffer content locking for btree scans.
- 2ed5b87f96d4 9.5.0 cited
-
Teach btree to handle ScalarArrayOpExpr quals natively.
- 9e8da0f75731 9.2.0 cited
On 1/16/24 09:13, Konstantin Knizhnik wrote: > Hi, > > On 12/01/2024 6:42 pm, Tomas Vondra wrote: >> Hi, >> >> Here's an improved version of this patch, finishing a lot of the stuff >> that I alluded to earlier - moving the code from indexam.c, renaming a >> bunch of stuff, etc. I've also squashed it into a single patch, to make >> it easier to review. > > I am thinking about testing you patch with Neon (cloud Postgres). As far > as Neon seaprates compute and storage, prefetch is much more critical > for Neon > architecture than for vanilla Postgres. > > I have few complaints: > > 1. It disables prefetch for sequential access pattern (i.e. INDEX > MERGE), motivating it that in this case OS read-ahead will be more > efficient than prefetch. It may be true for normal storage devices, bit > not for Neon storage and may be also for Postgres on top of DFS (i.e. > Amazon RDS). I wonder if we can delegate decision whether to perform > prefetch in this case or not to some other level. I do not know > precisely where is should be handled. The best candidate IMHO is > storager manager. But it most likely requires extension of SMGR API. Not > sure if you want to do it... Straightforward solution is to move this > logic to some callback, which can be overwritten by user. > Interesting point. You're right these decisions (whether to prefetch particular patterns) are closely tied to the capabilities of the storage system. So it might make sense to maybe define it at that level. Not sure what exactly RDS does with the storage - my understanding is that it's mostly regular Postgres code, but managed by Amazon. So how would that modify the prefetching logic? However, I'm not against making this modular / wrapping this in some sort of callbacks, for example. > 2. It disables prefetch for direct_io. It seems to be even more obvious > than 1), because prefetching using `posix_fadvise` definitely not > possible in case of using direct_io. But in theory if SMGR provides some > alternative prefetch implementation (as in case of Neon), this also may > be not true. Still unclear why we can want to use direct_io in Neon... > But still I prefer to mo.ve this decision outside executor. > True. I think this would / should be customizable by the callback. > 3. It doesn't perform prefetch of leave pages for IOS, only referenced > heap pages which are not marked as all-visible. It seems to me that if > optimized has chosen IOS (and not bitmap heap scan for example), then > there should be large enough fraction for all-visible pages. Also index > prefetch is most efficient for OLAp queries and them are used to be > performance for historical data which is all-visible. But IOS can be > really handled separately in some other PR. Frankly speaking combining > prefetch of leave B-Tree pages and referenced heap pages seems to be > very challenged task. > I see prefetching of leaf pages as interesting / worthwhile improvement, but out of scope for this patch. I don't think it can be done at the executor level - the prefetch requests need to be submitted from the index AM code (by calling PrefetchBuffer, etc.) > 4. I think that performing prefetch at executor level is really great > idea and so prefetch can be used by all indexes, including custom > indexes. But prefetch will be efficient only if index can provide fast > access to next TID (located at the same page). I am not sure that it is > true for all builtin indexes (GIN, GIST, BRIN,...) and especially for > custom AM. I wonder if we should extend AM API to make index make a > decision weather to perform prefetch of TIDs or not. I'm not against having a flag to enable/disable prefetching, but the question is whether doing prefetching for such indexes can be harmful. I'm not sure about that. > > 5. Minor notice: there are few places where index_getnext_slot is called > with last NULL parameter (disabled prefetch) with the following comment > "XXX Would be nice to also benefit from prefetching here." But all this > places corresponds to "point loopkup", i.e. unique constraint check, > find replication tuple by index... Prefetch seems to be unlikely useful > here, unlkess there is index bloating and and we have to skip a lot of > tuples before locating right one. But should we try to optimize case of > bloated indexes? > Are you sure you're looking at the last patch version? Because the current patch does not have any new parameters in index_getnext_* and the comments were removed too (I suppose you're talking about execIndexing, execReplication and those places). regards -- Tomas Vondra EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company