Conversation
psteinroe
added this pull request to stack #25
September 15, 2026 03:35
psteinroe
force-pushed
the
feat/event-pipeline
branch
from
September 15, 2026 03:38
32e7123 to
15c613a
Compare
psteinroe
force-pushed
the
feat/event-pipeline
branch
from
September 15, 2026 03:43
15c613a to
f2eec70
Compare
psteinroe
force-pushed
the
feat/event-pipeline
branch
from
September 15, 2026 03:52
f2eec70 to
6373b0a
Compare
psteinroe
force-pushed
the
feat/event-pipeline
branch
2 times, most recently
from
September 15, 2026 04:00
5bac5a9 to
ac6d4f2
Compare
psteinroe
force-pushed
the
feat/event-pipeline
branch
from
September 15, 2026 04:07
ac6d4f2 to
4066b14
Compare
psteinroe
force-pushed
the
feat/event-pipeline
branch
from
September 15, 2026 04:11
4066b14 to
4f37cd4
Compare
psteinroe
force-pushed
the
feat/event-pipeline
branch
2 times, most recently
from
September 15, 2026 04:22
21c7920 to
2786766
Compare
psteinroe
force-pushed
the
feat/event-pipeline
branch
from
September 15, 2026 04:24
2786766 to
2ca68c3
Compare
psteinroe
force-pushed
the
feat/event-pipeline
branch
from
September 15, 2026 04:36
2ca68c3 to
a79ef01
Compare
psteinroe
force-pushed
the
feat/event-pipeline
branch
from
September 15, 2026 04:45
a79ef01 to
704d92e
Compare
psteinroe
force-pushed
the
feat/event-pipeline
branch
from
September 15, 2026 04:52
704d92e to
787e24f
Compare
psteinroe
force-pushed
the
feat/event-pipeline
branch
from
September 15, 2026 05:02
787e24f to
48334ea
Compare
psteinroe
removed this pull request from stack #25
September 15, 2026 11:41
psteinroe
force-pushed
the
feat/event-pipeline
branch
from
September 15, 2026 12:13
48334ea to
22872ea
Compare
psteinroe
force-pushed
the
feat/event-pipeline
branch
from
September 15, 2026 12:26
22872ea to
36e8909
Compare
psteinroe
force-pushed
the
feat/event-pipeline
branch
from
September 15, 2026 13:26
36e8909 to
8c3d9e2
Compare
psteinroe
added this pull request to stack #27
September 15, 2026 13:27
psteinroe
force-pushed
the
feat/event-pipeline
branch
from
September 15, 2026 13:41
8c3d9e2 to
882c80a
Compare
psteinroe
force-pushed
the
feat/event-pipeline
branch
from
September 15, 2026 13:43
882c80a to
670bfbb
Compare
psteinroe
force-pushed
the
feat/event-pipeline
branch
from
September 15, 2026 13:47
670bfbb to
1880aff
Compare
psteinroe
force-pushed
the
feat/event-pipeline
branch
from
September 15, 2026 13:49
1880aff to
f95a27e
Compare
psteinroe
force-pushed
the
feat/event-pipeline
branch
from
September 15, 2026 14:00
f95a27e to
8dc6c3c
Compare
psteinroe
force-pushed
the
feat/event-pipeline
branch
from
September 15, 2026 14:06
8dc6c3c to
618bced
Compare
psteinroe
force-pushed
the
feat/event-pipeline
branch
2 times, most recently
from
September 18, 2026 21:41
f64409a to
143a962
Compare
psteinroe
force-pushed
the
feat/event-pipeline
branch
from
September 19, 2026 06:40
143a962 to
fd2a4eb
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Make custom events durable by representing each emission as an internal execution and fanning it out asynchronously through a hidden dispatcher worker. This removes shared-inbox and per-worker event polling overhead while preserving typed event APIs.
PostgreSQL-native fan-out
Custom-event filters compile into normalized matcher tables. Claim-fenced dispatch uses indexed candidate discovery plus complete residual verification, deduplicates subscriptions, and atomically writes destination executions with a completion marker. Destination uniqueness makes retries idempotent, while per-source validation failures do not roll back valid peers in the same batch.
Application-owned database triggers
Pgconductor no longer creates, synchronizes, or manages triggers on application tables. Applications that emit events from PostgreSQL triggers own those triggers and can call
pgconductor.emit_event()transactionally, so source changes and event persistence still commit or roll back together.Worker lifecycle and bounded matching
The hidden dispatcher reuses the normal claim, execution, retry, and result-flush lifecycle with an initial batch size of 10. Registration precedes dispatcher polling, recursive drain passes process newly emitted work, and registration/dispatch enforce documented limits for subscriptions, filters, scalar event fields, and destinations.
Refs #14