-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #58 from oracle/57-docs-topic-name-uppercase
Add topic name requirement format
- Loading branch information
Showing
3 changed files
with
75 additions
and
33 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,25 @@ | ||
# OKafka Consumer example properties | ||
|
||
#Properties to connect to Oracle Database | ||
#Option 1: Connect to Oracle database using plaintext | ||
bootstrap.servers=<server address:server port> | ||
oracle.service.name=<oracle database service> | ||
oracle.net.tns_admin=<location of ojdbc.properties file> | ||
|
||
|
||
#Option 2: Connect to Oracle Database deployed in Oracle Autonomous Cloud using Wallet | ||
#security.protocol=SSL | ||
#oracle.net.tns_admin=<location of Oracle Wallet, tnanames.ora and ojdbc.properties file> | ||
#tns.alias=<tns alias> | ||
|
||
# Application specific OKafka consumer properties | ||
topic.name=<Oracle Database TxEventQ Topic, use uppercase> | ||
group.id=<Oracle Database TxEventQ Subscriber> | ||
|
||
enable.auto.commit=true | ||
max.poll.records=1000 | ||
default.api.timeout.ms=180000 | ||
|
||
key.deserializer=org.apache.kafka.common.serialization.StringDeserializer | ||
value.deserializer=org.apache.kafka.common.serialization.StringDeserializer | ||
|
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