-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapplication.properties
More file actions
33 lines (29 loc) · 1.24 KB
/
Copy pathapplication.properties
File metadata and controls
33 lines (29 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Demo fixture — disposable credentials for local/compose use only.
# Do NOT reuse these values outside this bundled fixture stack.
#
# Local host-run example for:
# PostgreSQL (localhost:5432) -> DBLog -> MySQL (localhost:3306, demo database)
dblog.boot-mode=runtime
dblog.runtime.state-path=build/example-state/postgres-to-mysql/runtime-state
dblog.chunk.size=1
dblog.control-plane.enabled=true
dblog.control-plane.host=127.0.0.1
dblog.control-plane.port=8085
dblog.source.adapter=postgres
dblog.source.id=postgres_local_mysql_example
dblog.source.tables[0]=demo.sample_orders
dblog.source.postgres.jdbc-url=jdbc:postgresql://127.0.0.1:5432/app
dblog.source.postgres.replication-jdbc-url=jdbc:postgresql://127.0.0.1:5432/app
dblog.source.postgres.database-name=app
dblog.source.postgres.username=dblog
dblog.source.postgres.password=dblog
dblog.source.postgres.publication-name=dblog_local_pg_to_mysql_pub
dblog.source.postgres.slot-name=dblog_local_pg_to_mysql_slot
dblog.source.postgres.retry-log-connection-loss=true
dblog.source.postgres.reconnect-backoff=PT2S
dblog.target.enabled=true
dblog.target.dialect=MYSQL
dblog.target.jdbc-url=jdbc:mysql://127.0.0.1:3306/demo
dblog.target.username=dblog
dblog.target.password=dblog
dblog.target.maximum-pool-size=4