Postgres to Elasticsearch sync
Project description
PostgreSQL to Elasticsearch sync
- PGSync is a middleware for syncing data from Postgres to Elasticsearch.
- It allows you to keep Postgres as your source of truth data source and expose structured denormalized documents in Elasticsearch.
Requirements
- Python 3.7+
- Postgres 9.6+
- Redis 3.1.0
- Elasticsearch 6.3.1+
- SQlAlchemy 1.3.4+
Postgres setup
Enable logical decoding in your Postgres setting.
-
You also need to set up two parameters in your Postgres config postgresql.conf
wal_level = logicalmax_replication_slots = 1
Installation
You can install PGSync from PyPI:
$ pip install pgsync
Config
Create a schema for the application named e.g schema.json
Example spec
.. code-block::
[
{
"database": "[database name]",
"index": "[elasticsearch index]",
"nodes": {
"table": "[table A]",
"schema": "[table A schema]",
"columns": [
"column 1 from table A",
"column 2 from table A",
... additional columns
],
"children": [
{
"table": "[table B with relationship to table A]",
"schema": "[table B schema]",
"columns": [
"column 1 from table B",
"column 2 from table B",
... additional columns
],
"relationship": {
"variant": "object",
"type": "one_to_many"
},
...
},
{
... additional children
}
]
}
}
]
Environment variables
Setup environment variables required for the application
SCHEMA='/path/to/schema.json'
ELASTICSEARCH_HOST=localhost
ELASTICSEARCH_PORT=9200
PG_HOST=localhost
PG_USER=i-am-root # this must be a postgres superuser or replication user
PG_PORT=5432
PG_PASSWORD=*****
REDIS_HOST=redis
REDIS_PORT=6379
REDIS_DB=0
REDIS_AUTH=*****
Running
Bootstrap the database (one time only)
- $ bootstrap --config schema.json
Run pgsync as a daemon
- $ pgsync --config schema.json --daemon
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pgsync-2.3.2.tar.gz.
File metadata
- Download URL: pgsync-2.3.2.tar.gz
- Upload date:
- Size: 104.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a4f6c0ba9d5f1d56a3309620675337b2b4dd716128f63f496bdbfceab9a398d8
|
|
| MD5 |
ddcaf3eecbf3e1b9c1b777e718482543
|
|
| BLAKE2b-256 |
bb64ce4244c00cfd78947a74008b2ec6e6e1eb754c2f0b78ebd1d13d1596de25
|
File details
Details for the file pgsync-2.3.2-py2.py3-none-any.whl.
File metadata
- Download URL: pgsync-2.3.2-py2.py3-none-any.whl
- Upload date:
- Size: 54.3 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a30d1e9446d134026b0844f116586f974319697539e35eb1a3bae8361093894f
|
|
| MD5 |
d64f62f045af17db8262e5f32d03519e
|
|
| BLAKE2b-256 |
d35beff7339561e36a70477cd566908c69e527dec1c0b8a30823fafc17a787a8
|