MCPcopy Index your code
hub / github.com/blind-oracle/psql-streamer

github.com/blind-oracle/psql-streamer @v1.1.0

Chat with this repo
repository ↗ · DeepWiki ↗ · release v1.1.0 ↗ · + Follow
164 symbols 506 edges 30 files 100 documented · 61%
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

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.

Features

  • You can configure a sink to receive events from several different sources (e.g. several Kafka clusters, PostgreSQL databases)
  • Basic HTTP API
  • Custom sources/sinks can be easily added - they only need to implement a simple interface
  • Requires PostgreSQL 10+

Sources

PostgreSQL

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

Features

  • WAL log position persistence: the service persists each log position update it receives in a BoltDB database.

  • Configurable WAL logs retention on the PostgreSQL side. To allow us to rewind back (in case we need to replay some events) the service implements delayed confirmation of applied logs. This makes PostgreSQL retain the logs for the specified replication slot for some time. See walRetain parameter in the configuration file.

PostgreSQL configuration

  • In postgresql.conf you need to set wal_level = logical to make logical replication possible. You also may need to adjust max_wal_senders and max_replication_slots to match your requirements.
  • Create a publication in PostgreSQL like this: CREATE PUBLICATION pub1 FOR ALL TABLES. This will include in the publication all existing tables and also the ones that will be created in future. If you want only a subset of tables to be replicated - list them specifically. See PostgreSQL documentation for details.
  • Specify the publication name in the psql-streamer.conf

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:

  • Table -> Topic mapping
  • Fallback topic messages with no mapping defined

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:

  • passthrough: simply marshal an event into JSON and send it to Kafka

Stub

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

HTTP API

All requests are GET.

  • /health - no-op just returns 200
  • /status - checks all sinks/sources statuses and outputs them. If something is not OK then it returns 500 instead of 200. Useful for monitoring.
  • /stats - returns statistics from all sinks/sources
  • /debug/[on|off] - toggles debugging mode for all sinks/sources
  • /metrics - Prometheus metrics

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

Event structure

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

Extension points exported contracts — how you extend this code

Sink (Interface)
Sink represent a generic sink that handles events [3 implementers]
sink/sink.go
Source (Interface)
Source represent a generic source that produces events [2 implementers]
source/source.go
Source (Interface)
Source is an interface implementing a source for logs [2 implementers]
common/logger.go
Common (Interface)
Common is a common set of functions embedded by sinks & sources
common/common.go
ProcessEventBatchFunc (FuncType)
ProcessEventBatchFunc processess event batches
sink/sink.go

Core symbols most depended-on inside this repo

Errorf
called by 74
common/logger.go
Close
called by 16
common/common.go
New
called by 10
mux/mux.go
LoggerCreate
called by 10
common/logger.go
Debugf
called by 9
common/logger.go
Logf
called by 8
common/logger.go
Push
called by 7
mux/mux.go
debugf
called by 7
mux/mux.go

Shape

Method 96
Function 39
Struct 17
Interface 9
FuncType 2
TypeAlias 1

Languages

Go100%

Modules by API surface

source/postgres/postgres.go18 symbols
source/kafka/kafka.go16 symbols
sink/kafka/kafka.go16 symbols
mux/mux.go16 symbols
common/logger.go14 symbols
common/error.go14 symbols
db/db.go11 symbols
sink/stub/stub.go10 symbols
common/common.go8 symbols
mux/mux_test.go7 symbols
source/source.go5 symbols
sink/sink.go4 symbols

For agents

$ claude mcp add psql-streamer \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact