Skip to main content

Postgres to Elasticsearch/OpenSearch sync

Project description

PostgreSQL to Elasticsearch/OpenSearch sync

Requirements

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 = logical

    max_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 schema

Example spec

.. code-block::

[
    {
        "database": "[database name]",
        "index": "[Elasticsearch or OpenSearch 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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pgsync-kaboom-2.5.0.tar.gz (110.0 kB view details)

Uploaded Source

Built Distribution

pgsync_kaboom-2.5.0-py3-none-any.whl (57.9 kB view details)

Uploaded Python 3

File details

Details for the file pgsync-kaboom-2.5.0.tar.gz.

File metadata

  • Download URL: pgsync-kaboom-2.5.0.tar.gz
  • Upload date:
  • Size: 110.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.6

File hashes

Hashes for pgsync-kaboom-2.5.0.tar.gz
Algorithm Hash digest
SHA256 cb1326ba1b9b7dbce69920a426dd6c70489f737edc4708f92bf45ad9f3343fb7
MD5 7c4f5762c8a66a52860c32d3a49115b3
BLAKE2b-256 fd7f8b3c27793381567802db72c4da0c99c93884905da9a4ade5a50d3734a3f3

See more details on using hashes here.

File details

Details for the file pgsync_kaboom-2.5.0-py3-none-any.whl.

File metadata

File hashes

Hashes for pgsync_kaboom-2.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 6760fa7b6abf3006e02ecf689e18e98d3f06767dca1c60e28ea732c60a701ade
MD5 bea1af3e414f5b01f7ccb398d333a77d
BLAKE2b-256 fb60d0229c30c79f27555eca78bdd5300c29ce4891740a1efb034bd6bd4a3cfd

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page