-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapplication.properties
More file actions
32 lines (28 loc) · 1.07 KB
/
Copy pathapplication.properties
File metadata and controls
32 lines (28 loc) · 1.07 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
# Demo fixture — disposable credentials for local/compose use only.
# Do NOT reuse these values outside this bundled fixture stack.
#
# Local host-run example for:
# MySQL (localhost:3306) -> DBLog -> PostgreSQL (localhost:5432)
dblog.boot-mode=runtime
dblog.runtime.state-path=build/example-state/mysql-to-postgres/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=mysql
dblog.source.id=mysql_local_postgres_example
dblog.source.tables[0]=app.sample_orders
dblog.source.mysql.jdbc-url=jdbc:mysql://127.0.0.1:3306/app
dblog.source.mysql.username=dblog
dblog.source.mysql.password=dblog
dblog.source.mysql.hostname=127.0.0.1
dblog.source.mysql.port=3306
dblog.source.mysql.server-id=223611
dblog.source.mysql.retry-log-connection-loss=true
dblog.source.mysql.reconnect-backoff=PT2S
dblog.target.enabled=true
dblog.target.dialect=POSTGRES
dblog.target.jdbc-url=jdbc:postgresql://127.0.0.1:5432/app
dblog.target.username=dblog
dblog.target.password=dblog
dblog.target.maximum-pool-size=4