5 releases (breaking)
0.4.0 | Sep 12, 2023 |
---|---|
0.3.0 | Sep 12, 2023 |
0.2.0 | Sep 12, 2023 |
0.1.0 | Sep 11, 2023 |
0.0.0 | Sep 11, 2023 |
#1689 in Database interfaces
82KB
2K
SLoC
Overview
pg_bm25
is a PostgreSQL extension that enables full-text search
using the Okapi BM25 algorithm, the state-of-the-art ranking function
for full text search. It is built in Rust using pgrx
and supported on PostgreSQL
11+.
Development
Prerequisites
Before developing the extension, ensure that you have Rust installed
(version >1.70), ideally via rustup
(we've observed issues with installing Rust
via Homebrew on macOS).
Then, install and initialize pgrx:
cargo install --locked cargo-pgrx
cargo pgrx init
Running the Extension
First, start pgrx:
cargo pgrx run
This will launch an interactive connection to Postgres. Inside Postgres, create the extension by running:
CREATE EXTENSION pg_bm25;
You can verify that the extension functions are installed by using:
\df
Now, you have access to all the extension functions.
Indexing a Table
By default, the pg_bm25
extension creates a table called paradedb.mock_items
that you can
use for quick experimentation.
To index a table, use the following SQL command:
CREATE TABLE mock_items AS SELECT * FROM paradedb.mock_items;
CREATE INDEX idx_mock_items ON mock_items USING bm25 ((mock_items.*));
Once the indexing is complete, you can run various search functions on it.
Performing Searches
Execute a search query on your indexed table:
SELECT *
FROM mock_items
WHERE mock_items @@@ 'description:keyboard OR category:electronics OR rating>2';
Modifying the Extension
If you make changes to the extension code, follow these steps to update it:
- Recompile the extension:
cargo pgrx run
- Recreate the extension to load the latest changes:
DROP EXTENSION pg_bm25;
CREATE EXTENSION pg_bm25;
Testing
To run the unit test suite, use the following command:
cargo pgrx test
This will run all unit tests defined in /src
. To add a new unit test, simply add
tests inline in the relevant files, using the #[cfg(test)]
attribute.
To run the integration test suite, first install the extension on your system with:
cargo pgrx install
You'll need to run this command every time you make changes to the extension that you want reflected in the integration test suite. Then, run the tests with:
./test/runtests.sh
This will create a temporary database, initialize it with the SQL commands defined
in fixtures.sql
, and run the tests in /test/sql
against it. To add a new test,
simply add a new .sql
file to /test/sql
and a corresponding .out
file to
/test/expected
for the expected output, and it will automatically get picked up
by the test suite.
Packaging
The extension gets packaged into our Docker image(s) as part of the build process. If you want to package the extension locally, you can do so by running the following command:
cargo pgrx package [--test]
Dependencies
~46MB
~899K SLoC