├── README.md ├── debezium-jdbc-es └── Dockerfile ├── docker-compose.yaml ├── postgres ├── Dockerfile ├── fake.sql ├── init-db.sh └── setup.sql ├── reqs ├── connections │ ├── es-sink-comments.json │ ├── es-sink-posts.json │ ├── es-sink-users.json │ └── source.json └── mappings │ ├── comments.json │ ├── posts.json │ └── users.json └── start.sh /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzevm/sync-postgresql-with-elasticsearch-example/HEAD/README.md -------------------------------------------------------------------------------- /debezium-jdbc-es/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzevm/sync-postgresql-with-elasticsearch-example/HEAD/debezium-jdbc-es/Dockerfile -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzevm/sync-postgresql-with-elasticsearch-example/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /postgres/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzevm/sync-postgresql-with-elasticsearch-example/HEAD/postgres/Dockerfile -------------------------------------------------------------------------------- /postgres/fake.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzevm/sync-postgresql-with-elasticsearch-example/HEAD/postgres/fake.sql -------------------------------------------------------------------------------- /postgres/init-db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzevm/sync-postgresql-with-elasticsearch-example/HEAD/postgres/init-db.sh -------------------------------------------------------------------------------- /postgres/setup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzevm/sync-postgresql-with-elasticsearch-example/HEAD/postgres/setup.sql -------------------------------------------------------------------------------- /reqs/connections/es-sink-comments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzevm/sync-postgresql-with-elasticsearch-example/HEAD/reqs/connections/es-sink-comments.json -------------------------------------------------------------------------------- /reqs/connections/es-sink-posts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzevm/sync-postgresql-with-elasticsearch-example/HEAD/reqs/connections/es-sink-posts.json -------------------------------------------------------------------------------- /reqs/connections/es-sink-users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzevm/sync-postgresql-with-elasticsearch-example/HEAD/reqs/connections/es-sink-users.json -------------------------------------------------------------------------------- /reqs/connections/source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzevm/sync-postgresql-with-elasticsearch-example/HEAD/reqs/connections/source.json -------------------------------------------------------------------------------- /reqs/mappings/comments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzevm/sync-postgresql-with-elasticsearch-example/HEAD/reqs/mappings/comments.json -------------------------------------------------------------------------------- /reqs/mappings/posts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzevm/sync-postgresql-with-elasticsearch-example/HEAD/reqs/mappings/posts.json -------------------------------------------------------------------------------- /reqs/mappings/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzevm/sync-postgresql-with-elasticsearch-example/HEAD/reqs/mappings/users.json -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yzevm/sync-postgresql-with-elasticsearch-example/HEAD/start.sh --------------------------------------------------------------------------------