This topic describes how to configure Apache Kafka for API compatibility with Oracle Cloud Infrastructure Streaming. When your producers use Kafka APIs to interact with Streaming, the decision of which partition to publish a unique message to is handled client-side by Kafka.
For bootstrap servers, use your region endpoint on port 9092. For example:
Copy
streaming.us-phoenix-1.oci.oraclecloud.com:9092
Authentication 🔗
Authentication with the Kafka protocol uses auth tokens and the SASL/PLAIN mechanism.
You can generate tokens in the Console user details
page. See Working with Auth Tokens for more information.
Tip
Create a dedicated group/user and grant that group the permission to
manage streams in the appropriate compartment or tenancy. The policy in Let streaming admins manage streaming resources lets the specified group do everything with streaming and related Streaming service resources. You then can generate
an auth token for the user you created and use it in your Kafka client
configuration.
Add the following Oracle Cloud Infrastructure SDK for Java
dependency:
Copy
<dependency>
<groupId>com.oracle.oci.sdk</groupId>
<artifactId>oci-apisdk-java-sdk-addons-sasl</artifactId>
<optional>false</optional>
<version>1.13.1</version> <!-- that's the minimum version to use -->
</dependency>