Add initial version of ParadeDB extension#122
Merged
Conversation
LocalStack extension for ParadeDB (PostgreSQL-based search and analytics). Features: - Runs paradedb/paradedb Docker container - Exposes PostgreSQL port 5432 for direct connections - Configurable via PARADEDB_POSTGRES_USER/PASSWORD/DB env vars - Integration tests for basic SQL and pg_search BM25 functionality - CI workflow for automated testing Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Update tests to use the new ParadeDB v2 API: - Use CREATE INDEX ... USING bm25 instead of CALL paradedb.create_bm25() - Use ||| operator for disjunction (OR) search - Use &&& operator for conjunction (AND) search - Use pdb.score() for relevance scoring - Use DROP INDEX instead of paradedb.drop_bm25() Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
whummer
commented
Jan 27, 2026
| logging.basicConfig() | ||
|
|
||
|
|
||
| class DatabaseDockerContainerExtension(Extension): |
Member
Author
There was a problem hiding this comment.
Note: This class is very similar to the existing ProxiedDockerContainerExtension - aiming to extract that into a reusable util package in a separate PR shortly. 👍
This can be helpful to avoid clashing with another locally-running postgres, for example.
No need to exhaustively verify or showcase different aspects of paradedb here.
purcell
approved these changes
Jan 28, 2026
Contributor
purcell
left a comment
There was a problem hiding this comment.
This seems in decent shape to me. I pushed a bunch of small changes directly, and yes, we'll extract the docker.py separately. I think I've addressed all the prior review comments too. 👍
Contributor
|
I've gone ahead and merged this for now, as a usable first cut. 🚀 |
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.
LocalStack extension for ParadeDB (PostgreSQL-based search and analytics).
🤖 Note: The code was predominantly generated via Claude Code (with some small manual corrections), using the following prompt:
Features:
/cc @ankitml @philippemnoel