Thread
Commits
Same data as JSON:
GET /api/v1/messages/:b64id/commits
the thread's linked commits as JSON, with link sources.
API reference →
-
Optimize fast-path FK checks with batched index probes
- b7b27eb41a5c 19 (unreleased) landed
-
Add fast path for foreign key constraint checks
- 2da86c1ef9b5 19 (unreleased) landed
-
Eliminating SPI / SQL from some RI triggers - take 3
amit <amitlangote09@gmail.com> — 2024-12-20T04:23:35Z
Hi, We discussed $subject at [1] and [2] and I'd like to continue that work with the hope to commit some part of it for v18. In short, performing the RI checks for inserts and updates of a referencing table as direct scans of the PK index results in up to 40% improvement in their performance, especially when they are done in a bulk manner as shown in the following example: create unlogged table pk (a int primary key); insert into pk select generate_series(1, 10000000); insert into fk select generate_series(1, 10000000); On my machine, the last query took 20 seconds with master, whereas 12 seconds with the patches. With master, a significant portion of the time can be seen spent in ExecutorStart() and ExecutorEnd() on the plan for the RI query, which adds up as it's done for each row in a bulk load. Patch avoids that overhead because it calls the index AM directly. The patches haven't changed in the basic design since the last update at [2], though there are few changes: 1. I noticed a few additions to the RI trigger functions the patch touches, such as those to support temporal foreign keys. I decided to leave the SQL for temporal queries in place as the plan for those doesn't look, on a glance, as simple as a simple index scan. 2. As I mentioned in [3], the new way of doing the PK lookup didn't have a way to recheck the PK tuple after detecting concurrent updates of the PK, so would cause an error under READ COMMITTED isolation level. The old way of executing an SQL plan would deal with that using the EvalPlanQual() mechanism in the executor. In the updated patch, I've added an equivalent rechecking function that's called in the same situations as EvalPlanQual() would get called in the old method. 3. I reordered the patches as Robert suggested at [5]. Mainly because the patch set includes changes to address a bug where PK lookups could return incorrect results under the REPEATABLE READ isolation level. This issue arises because RI lookups on partitioned PK tables manipulate ActiveSnapshot to pass the snapshot that's used by find_inheritance_children() to determine the visibility of detach-pending partitions to these RI lookups. To address this, the patch set introduces refactoring of the PartitionDesc interface, included in patch 0001. This refactoring eliminates the need to manipulate ActiveSnapshot by explicitly passing the correct snapshot for detach-pending visibility handling. The main patch (0002+0003), which focuses on improving performance by avoiding SQL queries for RI checks, builds upon these refactoring changes to pass the snapshot directly instead of manipulating the ActiveSnapshot. Reordering the patches this way ensures a logical progression of changes, as Robert suggested, while avoiding any impression that the bug was introduced by the ri_triggers.c changes. However, I need to spend some time addressing Robert's feedback on the basic design, as outlined at [5]. Specifically, the new PK lookup function could benefit significantly from caching information rather than recomputing it for each row. This implies that the PlanCreate function should create a struct to store reusable information across PlanExecute calls for different rows being checked. Beyond implementing these changes, I also need to confirm that the new plan execution preserves all operations performed by the SQL plan for the same checks, particularly those affecting user-visible behavior. I've already verified that permission checks are preserved: revoking access to the PK table during the checks causes them to fail, as expected. This behavior is maintained because permission checks are performed during each execution. The planned changes to separate the "plan" and "execute" steps should continue to uphold this and other behaviors that might need to be preserved. -- Thanks, Amit Langote [1] Simplifying foreign key/RI checks: https://www.postgresql.org/message-id/flat/CA%2BHiwqG5e8pk8s7%2B7zhr1Nc_PGyhEdM5f%3DpHkMOdK1RYWXfJsg%40mail.gmail.com [2] Eliminating SPI from RI triggers - take 2 https://www.postgresql.org/message-id/flat/CA%2BHiwqG5e8pk8s7%2B7zhr1Nc_PGyhEdM5f%3DpHkMOdK1RYWXfJsg%40mail.gmail.com [3] https://www.postgresql.org/message-id/CA+TgmoaiTNj4DgQy42OT9JmTTP1NWcMV+ke0i=+a7=VgnzqGXw@mail.gmail.com [4] https://www.postgresql.org/message-id/CA%2BTgmoa1DCQ0MdojD9o6Ppbfj%3DabXxe4FUkwA4O_6qBHwOMVjw%40mail.gmail.com [5] https://www.postgresql.org/message-id/CA+TgmoaiTNj4DgQy42OT9JmTTP1NWcMV+ke0i=+a7=VgnzqGXw@mail.gmail.com
-
Re: Eliminating SPI / SQL from some RI triggers - take 3
amit <amitlangote09@gmail.com> — 2025-04-03T10:19:53Z
On Fri, Dec 20, 2024 at 1:23 PM Amit Langote <amitlangote09@gmail.com> wrote: > We discussed $subject at [1] and [2] and I'd like to continue that > work with the hope to commit some part of it for v18. I did not get a chance to do any further work on this in this cycle, but plan to start working on it after beta release, so moving this to the next CF. I will post a rebased patch after the freeze to keep the bots green for now. -- Thanks, Amit Langote
-
Re: Eliminating SPI / SQL from some RI triggers - take 3
amit <amitlangote09@gmail.com> — 2025-10-21T04:07:19Z
On Thu, Apr 3, 2025 at 7:19 PM Amit Langote <amitlangote09@gmail.com> wrote: > On Fri, Dec 20, 2024 at 1:23 PM Amit Langote <amitlangote09@gmail.com> wrote: > > We discussed $subject at [1] and [2] and I'd like to continue that > > work with the hope to commit some part of it for v18. > > I did not get a chance to do any further work on this in this cycle, > but plan to start working on it after beta release, so moving this to > the next CF. I will post a rebased patch after the freeze to keep the > bots green for now. Sorry for the inactivity. I've moved the patch entry in the CF app to PG19-Drafts, since I don't plan to work on it myself in the immediate future. However, Junwang Zhao has expressed interest in taking this work forward, and I look forward to working with him on it. -- Thanks, Amit Langote
-
Re: Eliminating SPI / SQL from some RI triggers - take 3
Pavel Stehule <pavel.stehule@gmail.com> — 2025-10-21T05:10:10Z
Hi út 21. 10. 2025 v 6:07 odesílatel Amit Langote <amitlangote09@gmail.com> napsal: > On Thu, Apr 3, 2025 at 7:19 PM Amit Langote <amitlangote09@gmail.com> > wrote: > > On Fri, Dec 20, 2024 at 1:23 PM Amit Langote <amitlangote09@gmail.com> > wrote: > > > We discussed $subject at [1] and [2] and I'd like to continue that > > > work with the hope to commit some part of it for v18. > > > > I did not get a chance to do any further work on this in this cycle, > > but plan to start working on it after beta release, so moving this to > > the next CF. I will post a rebased patch after the freeze to keep the > > bots green for now. > > Sorry for the inactivity. I've moved the patch entry in the CF app to > PG19-Drafts, since I don't plan to work on it myself in the immediate > future. However, Junwang Zhao has expressed interest in taking this > work forward, and I look forward to working with him on it. > This is very interesting and important feature - I can help with testing and review if it will be necessary Regards Pavel > > -- > Thanks, Amit Langote > > >
-
Re: Eliminating SPI / SQL from some RI triggers - take 3
amit <amitlangote09@gmail.com> — 2025-10-22T13:55:53Z
. On Tue, Oct 21, 2025 at 2:10 PM Pavel Stehule <pavel.stehule@gmail.com> wrote: > út 21. 10. 2025 v 6:07 odesílatel Amit Langote <amitlangote09@gmail.com> napsal: >> >> On Thu, Apr 3, 2025 at 7:19 PM Amit Langote <amitlangote09@gmail.com> wrote: >> > On Fri, Dec 20, 2024 at 1:23 PM Amit Langote <amitlangote09@gmail.com> wrote: >> > > We discussed $subject at [1] and [2] and I'd like to continue that >> > > work with the hope to commit some part of it for v18. >> > >> > I did not get a chance to do any further work on this in this cycle, >> > but plan to start working on it after beta release, so moving this to >> > the next CF. I will post a rebased patch after the freeze to keep the >> > bots green for now. >> >> Sorry for the inactivity. I've moved the patch entry in the CF app to >> PG19-Drafts, since I don't plan to work on it myself in the immediate >> future. However, Junwang Zhao has expressed interest in taking this >> work forward, and I look forward to working with him on it. > > > This is very interesting and important feature - I can help with testing and review if it will be necessary Thanks for the interest. Just to add a quick note on the current direction I’ve been discussing off-list with Junwang: The next iteration of this work will likely follow a hybrid "fast-path + fallback" design rather than the original pure fast-path approach. The idea is to keep the optimization for straightforward cases where the foreign key and referenced key can be verified by a direct index probe, while falling back to the existing SPI path only when the runtime behavior of the executor is non-trivial to replicate -- such as visibility rechecks under concurrent updates -- or when the constraint itself involves richer semantics, like temporal foreign keys that require range and aggregation logic. That keeps the optimization safe without changing the meaning of constraint enforcement. This direction comes partly in response to the feedback from Robert and Tom in the earlier Eliminating SPI threads, who raised concerns that a fast path might silently diverge from what the executor does at runtime in subtle cases. The fallback design aims to address that directly: it keeps the optimization where it’s clearly safe, but defers to the existing SPI-based implementation whenever correctness might depend on executor behavior that would otherwise be difficult or risky to reproduce locally. In practice, this means adding a guarded fast path that performs the index probe and tuple lock directly under the same snapshot and security context that SPI would use, while caching stable metadata such as index descriptors, scan keys, and operator information per constraint or per statement. The fallback to SPI remains for the few cases that either depend on executor behavior or need features beyond a simple index probe: * Concurrent updates or deletes: If table_tuple_lock() reports that the target tuple was updated or deleted, we delegate to the SPI path so that EvalPlanQual and visibility rules are applied as today. * Partitioned parents: Skipped in v1 for simplicity, since they require routing the probe through the correct partition using PartitionDirectory. This can be added later as a separate patch once the core mechanism is stable. * Temporal foreign keys: These use range overlap and containment semantics (&&, <@, range_agg()) that inherently involve aggregation and multiple-row reasoning, so they stay on the SPI path. Everything else -- multi-column keys, cross-type equality supported by the index opfamily, collation matching, and RLS/ACL enforcement -- will be handled directly in the fast path. The security behavior will mirror the existing SPI path by temporarily switching to the parent table's owner with SECURITY_LOCAL_USERID_CHANGE | SECURITY_NOFORCE_RLS around the probe, like ri_PerformCheck() does. For concurrency, the fast path locks the located parent tuple with LockTupleKeyShare under GetActiveSnapshot(). If that succeeds (TM_Ok), the check passes immediately. While non-TM_Ok cases fall back for now, a later refinement could follow the update chain with table_tuple_fetch_row_version() under the current snapshot and re-lock the visible version, making the fast path fully self-contained. That’s the direction Junwang and I plan to explore next. -- Thanks, Amit Langote
-
Re: Eliminating SPI / SQL from some RI triggers - take 3
Junwang Zhao <zhjwpku@gmail.com> — 2025-12-01T06:09:00Z
Hi, On Wed, Oct 22, 2025 at 9:56 PM Amit Langote <amitlangote09@gmail.com> wrote: > > . > On Tue, Oct 21, 2025 at 2:10 PM Pavel Stehule <pavel.stehule@gmail.com> wrote: > > út 21. 10. 2025 v 6:07 odesílatel Amit Langote <amitlangote09@gmail.com> napsal: > >> > >> On Thu, Apr 3, 2025 at 7:19 PM Amit Langote <amitlangote09@gmail.com> wrote: > >> > On Fri, Dec 20, 2024 at 1:23 PM Amit Langote <amitlangote09@gmail.com> wrote: > >> > > We discussed $subject at [1] and [2] and I'd like to continue that > >> > > work with the hope to commit some part of it for v18. > >> > > >> > I did not get a chance to do any further work on this in this cycle, > >> > but plan to start working on it after beta release, so moving this to > >> > the next CF. I will post a rebased patch after the freeze to keep the > >> > bots green for now. > >> > >> Sorry for the inactivity. I've moved the patch entry in the CF app to > >> PG19-Drafts, since I don't plan to work on it myself in the immediate > >> future. However, Junwang Zhao has expressed interest in taking this > >> work forward, and I look forward to working with him on it. > > > > > > This is very interesting and important feature - I can help with testing and review if it will be necessary > > Thanks for the interest. > > Just to add a quick note on the current direction I’ve been discussing > off-list with Junwang: > > The next iteration of this work will likely follow a hybrid "fast-path > + fallback" design rather than the original pure fast-path approach. > The idea is to keep the optimization for straightforward cases where > the foreign key and referenced key can be verified by a direct index > probe, while falling back to the existing SPI path only when the > runtime behavior of the executor is non-trivial to replicate -- such > as visibility rechecks under concurrent updates -- or when the > constraint itself involves richer semantics, like temporal foreign > keys that require range and aggregation logic. That keeps the > optimization safe without changing the meaning of constraint > enforcement. > > This direction comes partly in response to the feedback from Robert > and Tom in the earlier Eliminating SPI threads, who raised concerns > that a fast path might silently diverge from what the executor does at > runtime in subtle cases. The fallback design aims to address that > directly: it keeps the optimization where it’s clearly safe, but > defers to the existing SPI-based implementation whenever correctness > might depend on executor behavior that would otherwise be difficult or > risky to reproduce locally. > > In practice, this means adding a guarded fast path that performs the > index probe and tuple lock directly under the same snapshot and > security context that SPI would use, while caching stable metadata > such as index descriptors, scan keys, and operator information per > constraint or per statement. The fallback to SPI remains for the few > cases that either depend on executor behavior or need features beyond > a simple index probe: > > * Concurrent updates or deletes: If table_tuple_lock() reports that > the target tuple was updated or deleted, we delegate to the SPI path > so that EvalPlanQual and visibility rules are applied as today. > > * Partitioned parents: Skipped in v1 for simplicity, since they > require routing the probe through the correct partition using > PartitionDirectory. This can be added later as a separate patch once > the core mechanism is stable. > > * Temporal foreign keys: These use range overlap and containment > semantics (&&, <@, range_agg()) that inherently involve aggregation > and multiple-row reasoning, so they stay on the SPI path. > > Everything else -- multi-column keys, cross-type equality supported by > the index opfamily, collation matching, and RLS/ACL enforcement -- > will be handled directly in the fast path. The security behavior will > mirror the existing SPI path by temporarily switching to the parent > table's owner with SECURITY_LOCAL_USERID_CHANGE | SECURITY_NOFORCE_RLS > around the probe, like ri_PerformCheck() does. > > For concurrency, the fast path locks the located parent tuple with > LockTupleKeyShare under GetActiveSnapshot(). If that succeeds (TM_Ok), > the check passes immediately. While non-TM_Ok cases fall back for now, > a later refinement could follow the update chain with > table_tuple_fetch_row_version() under the current snapshot and re-lock > the visible version, making the fast path fully self-contained. > > That’s the direction Junwang and I plan to explore next. > > -- > Thanks, Amit Langote As Amit has already stated, we are approaching a hybrid "fast-path + fallback" design. 0001 adds a fast path optimization for foreign key constraint checks that bypasses the SPI executor, the fast path applies when the referenced table is not partitioned, and the constraint does not involve temporal semantics. With the following test: create table pk (a numeric primary key); create table fk (a bigint references pk); insert into pk select generate_series(1, 2000000); head: [local] zhjwpku@postgres:5432-90419=# insert into fk select generate_series(1, 2000000, 2); INSERT 0 1000000 Time: 13516.177 ms (00:13.516) [local] zhjwpku@postgres:5432-90419=# update fk set a = a + 1; UPDATE 1000000 Time: 15057.638 ms (00:15.058) patched: [local] zhjwpku@postgres:5432-98673=# insert into fk select generate_series(1, 2000000, 2); INSERT 0 1000000 Time: 8248.777 ms (00:08.249) [local] zhjwpku@postgres:5432-98673=# update fk set a = a + 1; UPDATE 1000000 Time: 10117.002 ms (00:10.117) 0002 cache fast-path metadata used by the index probe, at the current time only comparison operator hash entries, operator function OIDs and strategy numbers and subtypes for index scans. But this cache doesn't buy any performance improvement. Caching additional metadata should improve performance for foreign key checks. Amit suggested introducing a mechanism for ri_triggers.c to register a cleanup callback in the EState, which AfterTriggerEndQuery() could then invoke to release per-statement cached metadata (such as the IndexScanDesc). However, I haven't been able to implement this mechanism yet. Amit and I agree that we can post the patches here for review now. We are continuing to work on improving the metadata cache implementation. -- Regards Junwang Zhao