mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-14 17:02:56 +00:00
## Problem We need to test the logical replication with some external consumers. ## Summary of changes A test of the logical replication with Debezium as a consumer was added. --------- Co-authored-by: Alexander Bayandin <alexander@neon.tech>
22 lines
566 B
Markdown
22 lines
566 B
Markdown
# Logical replication tests
|
|
|
|
## Clickhouse
|
|
|
|
```bash
|
|
export BENCHMARK_CONNSTR=postgres://user:pass@ep-abc-xyz-123.us-east-2.aws.neon.build/neondb
|
|
|
|
docker compose -f clickhouse/docker-compose.yml up -d
|
|
pytest -m remote_cluster -k test_clickhouse
|
|
docker compose -f clickhouse/docker-compose.yml down
|
|
```
|
|
|
|
## Debezium
|
|
|
|
```bash
|
|
export BENCHMARK_CONNSTR=postgres://user:pass@ep-abc-xyz-123.us-east-2.aws.neon.build/neondb
|
|
|
|
docker compose -f debezium/docker-compose.yml up -d
|
|
pytest -m remote_cluster -k test_debezium
|
|
docker compose -f debezium/docker-compose.yml down
|
|
|
|
``` |