You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is README-only and the CI matrix is green. I checked the changed roadmap rows against the current tree (docs/reference.md, docs/upgrading.md, sql/pgque.sql, sql/pgque-additions/*, sql/experimental/*). Most changed rows are backed by source/docs: send_batch fast path, experimental observability/OTel rows, delayed delivery, config API, and pause/resume all have corresponding implementations/docs.
BLOCKING (1)
MEDIUMREADME.md:515-530 — roadmap update is incomplete / contradicts the PR description
The PR description says this marks already-shipped roadmap items done, including:
System-table rotation / bloat mitigation
LISTEN/NOTIFY consumer wakeups on tick
Cross-database pg_cron scheduling
Migration guides
But the actual diff leaves all four rows blank. The current tree has evidence for these rows:
rotation/bloat mitigation: hot-path three-table rotation is documented in README.md architecture text and implemented via rotation maintenance;
LISTEN/NOTIFY wakeups: pg_notify('pgque_' || queue, ...) is in sql/pgque.sql / sql/pgque-tle.sql, with docs in docs/three-latencies.md and docs/reference.md;
cross-database pg_cron scheduling: lifecycle uses cron.schedule_in_database(...) in sql/pgque-additions/lifecycle.sql and generated SQL;
Re-review after c94d509: PR is now narrowed to the one supported roadmap change (Improved send_batch performance → ✅), and the PR description has been updated to match.
Verification: git diff --check passed locally; GitHub CI is green (14/14) on head c94d509. No remaining blocker from my side.
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
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.
Summary
Improved send_batch performanceas done in the README roadmapDetails
Updated the README roadmap table to reflect current repo reality:
Improved send_batch performance→ ✅Other roadmap rows remain unchanged until their status/evidence is reviewed separately.
Verification