-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Added Oracle Database requirements and instructions - Added an example configuration file.
- Loading branch information
Thorsten Hake
committed
Feb 10, 2020
1 parent
233e8cd
commit cbe3c79
Showing
3 changed files
with
65 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name=logminer-kafka-connect | ||
connector.class=com.github.thake.logminer.kafka.connect.LogminerSourceConnector | ||
start.scn=0 | ||
db.name=chosen-alias-name, | ||
db.sid=XE, | ||
db.hostname=127.0.0.1 | ||
db.port=1521 | ||
db.user=dbUser | ||
db.user.password=dbPassword | ||
db.fetch.size=10000 | ||
batch.size=1000 | ||
poll.interval.ms=500 | ||
table.whitelist=MYSCHEMA.TABLE_NAME, OTHERSCHEMA |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters