Step 4: Connect Your Clients
This page describes how to connect your Kafka clients to Superstream
Last updated
Was this helpful?
This page describes how to connect your Kafka clients to Superstream
Last updated
Was this helpful?
Superstream client is a supplement for your existing Kafka library.
Identical to your existing Kafka SDKs
Easy to replace
You control your Kafka Clients: batch, linger, compression, data format
Enforce governance
Runtime client configuration updates
Transparent client migration between topics and clusters
Zero additional computing resources are needed
superstream.metadata
topic has been createdAs described in the page, a topic named superstream.metadata
has to be created with the following permissions: Read, Create, and Write.
Please set the following environment variables for each connected client
Within each lib repo made by Superstream, under the "Releases" section, you will find the equivalent version to the existing "stable" library according to the major release.
For example, if you are currently using Apache Kafka 3.1.0, then you would use the latest release of 3.x.x by Superstream.
Python
Access to a JFrog Artifactory instance.
GitHub account and access to a repository with releases.
Log in to your JFrog Artifactory.
Navigate to Admin > Repositories > Repositories.
Click on 'Add Repositories' and select 'Local Repository'.
Choose 'Maven' as the package type.
Enter the repository key and other configuration details.
Save the repository settings.
Navigate to the 'Releases' section of the desired GitHub repository.
Select the release that contains the needed kafka-clients-yourversion.tar.gz
file.
Download the artifact
Right-click on the kafka-clients-yourversion.tar.gz
link and copy the URL.
Use curl
or wget
to download the file from the terminal.
Deploy via the JFrog UI
Navigate to the Artifactory repository where you want to deploy the artifact.
Click on 'Deploy' and select the kafka-clients-yourversion.tar.gz
file from your local system.
Specify the target path within the repository if required.
Click 'Deploy' to upload the artifact.
Q: I am using Kafka Connect. How can I ensure Superstream identifies it when declaring a topic inactive?
To enable secured client connections to the Superstream Engine, ensure that skipLocalAuthentication
is turned off. Detailed instructions can be found .
A: To enable Superstream to detect a source or sink that is activated for a specific period and then removed, the connector must be configured with a group.id
. This configuration will "leave a trace" in the form of a zombie consumer group. You can find an example of this from Confluent .