Skip to content

Commit d64b16d

Browse files
TxEventQ Connectors (#1014)
Signed-off-by: Anders Swanson <[email protected]>
1 parent 384d887 commit d64b16d

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

docs-source/transactional-event-queues/content/getting-started/queue-management.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ grant execute on dbms_teqk to testuser;
3838

3939
#### Permissions for Users of Kafka APIs
4040

41-
If your database user is interacting with Transactional Event Queues via Kafka APIs and the [Kafka Java Client for Oracle Database Transactional Event Queues](https://github.com/oracle/okafka), the following permissions are recommended for users managing topics:
41+
If your database user is interacting with Transactional Event Queues via Kafka APIs and the [Kafka Java Client for Oracle Database Transactional Event Queues](https://github.com/oracle/okafka), the following permissions are recommended for users managing topics and messages:
4242

4343
```sql
4444
grant resource, connect, unlimited tablespace to testuser;

docs-source/transactional-event-queues/content/kafka/developing-with-kafka.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ Or, if you're using Gradle:
2525
implementation "com.oracle.database.messaging:okafka:${okafkaVersion}"
2626
```
2727

28+
The database user should have appropriate permissions to create topics, produce and consume messages. See the [Kafka permissions](../getting-started/queue-management.md#permissions-for-users-of-kafka-apis) section for recommended database permissions.
29+
2830
### Authenticating to Oracle Database
2931

3032
To authenticate to Oracle Database with the Kafka clients, configure a Java `Properties` object with Oracle Database-specific properties for service name, wallet location, and more.

docs-source/transactional-event-queues/content/kafka/kafka-connectors.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,10 @@ title = "Kafka Connectors"
44
weight = 3
55
+++
66

7-
This section provides examples using Kafka connectors to connect Oracle Database Transactional Event Queues with other data and messaging systems, like Apache Kafka.
7+
This section provides examples using Kafka connectors to connect Oracle Database Transactional Event Queues with other data and messaging systems, like [Apache Kafka](https://github.com/oracle/okafka/tree/master/connectors).
8+
9+
## Kafka Connectors
10+
11+
The [Kafka connectors for Oracle Database Transactional Event Queues](https://github.com/oracle/okafka/tree/master/connectors) provide the capability to sync message data to/from Kafka topics.
12+
13+
The Sink Connector reads from Kafka and publishes messages to Oracle Database Transactional Event Queues. The Source Connector that reads from an Oracle Database Transactional Event Queues topic and publishes messages to a Kafka topic.

0 commit comments

Comments
 (0)