ParadeDB
is a modern elasticsearch alternative built on postgresql
Created:
Claims:
- Eliminate complex sync tools like ETL, kafka, and Debizium.
- No broken sync with elastic
- ACID guarantees
- Automatic cleanups by integrating with postgres’s vaccum process.
- Uses postgresql dialect
- RDS (and Azure Postgres and Google Cloud SQL) compatible
- S3 (and GCS and ABS) compatible
docker run \
--name paradedb \
-e POSTGRES_USER=pradeep \
-e POSTGRES_PASSWORD=tigerscott \
-e POSTGRES_DB=testdb \
-v paradedb_data:/var/lib/postgresql/data/ \
-p 5432:5432 \
-d \
paradedb/paradedb:latest
Note: I’m using podman, and I had to add registries.