Categorygithub.com/tmc/pqstream
modulepackage
0.0.0-20191018194042-c9027a0afa15
Repository: https://github.com/tmc/pqstream.git
Documentation: pkg.go.dev

# README

pqstream

pqstream is a program that streams changes out of a postgres database with the intent of populating other systems and enabling stream processing of data sets.

ci status go report card coverage

installation

$ go get -u github.com/tmc/pqstream/cmd/{pqs,pqsd}

basic usage

create an example database:

$ createdb dbname
# echo "create table notes (id serial, created_at timestamp, note text)" | psql dbname

connect the agent:

$ pqsd -connect postgresql://user:pass@host/dbname

connect the cli:

$ pqs

at this point you will see streams of database operations rendered to stdout:

(in a psql shell):

dbname=# insert into notes values (default, default, 'here is a sample note');
INSERT 0 1
dbname=# insert into notes values (default, default, 'here is a sample note');
INSERT 0 1
dbname=# update notes set note = 'here is an updated note' where id=1;
UPDATE 1
dbname=# delete from notes where id = 1;
DELETE 1
dbname=#

our client should now show our operations:

$ pqs
{"schema":"public","table":"notes","op":"INSERT","id":"1","payload":{"created_at":null,"id":1,"note":"here is a sample note"}}
{"schema":"public","table":"notes","op":"INSERT","id":"2","payload":{"created_at":null,"id":2,"note":"here is a sample note"}}
{"schema":"public","table":"notes","op":"UPDATE","id":"1","payload":{"created_at":null,"id":1,"note":"here is an updated note"},"changes":{"note":"here is a sample note"}}
{"schema":"public","table":"notes","op":"DELETE","id":"1","payload":{"created_at":null,"id":1,"note":"here is an updated note"}}

field redaction

If there's a need to prevent sensitive fields (i.e. PII) from being exported the redactions flag can be used with pqsd:

$ pqsd -connect postgresql://user:pass@host/dbname -redactions='{"public":{"users":["first_name","last_name","email"]}}'

The redactions is encoded in JSON and conforms to the following layout:

'{"schema":{"table":["field1","field2"]}}'`

# Packages

No description provided by the author
No description provided by the author
No description provided by the author
Package pqs is a generated protocol buffer package.

# Functions

DecodeRedactions returns a FieldRedactions map decoded from redactions specified in json format.
NewServer prepares a new pqstream server.
WithContext allows supplying a custom context.
WithFieldRedactions controls which fields are redacted from the feed.
WithLogger allows attaching a custom logger.
WithTableRegexp controls which tables are managed.

# Structs

Server implements PQStreamServer and manages both client connections and database event monitoring.

# Type aliases

FieldRedactions describes how redaction fields are specified.
ServerOption allows customization of a new server.