Home

Awesome

PSQL-Streamer

Go Report Card Coverage Status Build Status

This service receives the database events from PostgreSQL using logical replication protocol and feeds them to sinks based on the configuration file settings. Also can receive the events from Kafka generated by e.g. another psql-streamer instance.

Event example

{
  "Host": "db1",
  "Database": "test",
  "Table": "test",
  "Action": "insert",
  "WALPosition": 418152976,
  "Timestamp": "2018-07-03T16:04:27.263625156+02:00",
  "Columns": {
    "a": 369223,
    "b": "a"
  }
}

Features

Sources

PostgreSQL

Receive database events from PostgreSQL using logical replication protocol and transform them into a common event format.

Features

PostgreSQL configuration

Kafka

Receive events which were generated by e.g. another psql-streamer instance from one or more Kafka topics. Expects messages in a JSON format conforming to a predefined structure (see Event structure below).

Features

Kafka source works in batching mode with confirmation: if all events in a batch from Kafka are ACKed by sinks then we commit the whole batch or don't commit anything. The batch elements are sent concurrently using goroutines, so it should not be made very large. If several topics are specified then they're worked on in separate goroutines which should provide more parallelism.

Sinks

Kafka

Send events into a Kafka topic based on several configurable rules like:

Kafka sink handlers

Incoming events are processed by one or more handlers that generate Kafka messages. They can be used to enrich Events with additional data or encode them in different format.

Currently there's only one handler:

Stub

Stub sink is a discard/noop sink that can be used for testing.

HTTP API

All requests are GET.

Configuration

See psql-streamer.toml for detailed instructions.

Download

Get RPM or DEB packages from Releases page

Build

psql-streamer is written in Go, so you need to install it first.

Then you can run make build to build a binary.

If you want to build RPM/DEB packages then you need to install FPM and then run make rpm or make deb