📌 Description
Several org-scoped list endpoints (org vaults, transactions, notifications,
audit logs) filter and sort on (organization_id, created_at, id) but it is not
verified that every hot path has a matching composite index. A missing covering
index turns a paginated list into a sequential scan as data grows.
This issue audits the hot org-scoped queries and adds any missing composite
indexes, backed by an EXPLAIN-based regression test.
Goal: ensure every hot org-scoped list query uses an index, verified by an
EXPLAIN regression test.
🎯 Requirements and Context
- Must enumerate hot org-scoped queries and their required composite indexes.
- Add missing indexes via
db/migrations (with down-rollback).
- Must add an EXPLAIN-based test asserting index usage (no seq scan on hot paths).
- Must not duplicate the existing performance-index migration's coverage.
🛠️ Suggested Execution
1. Fork the repo and create a branch
git checkout -b perf/org-list-index-audit
2. Implement changes
- Add index migration(s) in
db/migrations.
- Document the audit in
docs/performance-testing.md.
3. Test and commit
- Add
src/tests/performance/orgListPlans.perf.test.ts run with bun test.
- Cover edge cases: each hot query uses index, rollback works, large-table plan.
Example commit message
perf: index and query-plan audit for org-scoped list endpoints
✅ Guidelines
- Minimum 95% test coverage on the new/changed lines.
- Clear, reviewer-friendly documentation.
- No regressions on existing queries.
- Timeframe: 96 hours.
🏷️ Labels
type-performance · area-backend · type-testing · MAYBE REWARDED · GRANTFOX OSS · OFFICIAL CAMPAIGN
💬 Community & Support
- Join the Disciplr contributor Discord to coordinate, ask questions, and get
unblocked fast: https://discord.gg/xvNAvMJf
- Please introduce yourself in the channel before you start so we can avoid
duplicate work, pair you with a reviewer, and get your PR merged quickly.
- Maintainers actively triage this channel and aim for fast, clear, respectful
reviews — reach out any time you're blocked.
📌 Description
Several org-scoped list endpoints (org vaults, transactions, notifications,
audit logs) filter and sort on
(organization_id, created_at, id)but it is notverified that every hot path has a matching composite index. A missing covering
index turns a paginated list into a sequential scan as data grows.
This issue audits the hot org-scoped queries and adds any missing composite
indexes, backed by an EXPLAIN-based regression test.
🎯 Requirements and Context
db/migrations(with down-rollback).🛠️ Suggested Execution
1. Fork the repo and create a branch
2. Implement changes
db/migrations.docs/performance-testing.md.3. Test and commit
src/tests/performance/orgListPlans.perf.test.tsrun withbun test.Example commit message
✅ Guidelines
🏷️ Labels
type-performance·area-backend·type-testing·MAYBE REWARDED·GRANTFOX OSS·OFFICIAL CAMPAIGN💬 Community & Support
unblocked fast: https://discord.gg/xvNAvMJf
duplicate work, pair you with a reviewer, and get your PR merged quickly.
reviews — reach out any time you're blocked.