How can I create a Source in RisingWave Cloud based on my own Kafka cluster running on an EC2 instance?
I have my Kafka Cluster running on an Amazon EC2 instance, and I want to create a Source in RisingWave Cloud to consume data from it. I have set the configurations of my EC2 instance to allow access from all IPs and ports, but I am facing issues with the connection. How can I create a Source in RisingWave Cloud based on my own Kafka cluster?
Fahad Ullah Shah
Asked on Aug 03, 2023
-
Ensure that the
advertised.listeners
in the Kafka cluster is set to the public IP address of the EC2 instance. -
Use the public IP address of the EC2 instance for the RisingWave source connection.
-
Check the reachability of the port 9092 from the public internet using tools like
netcat
ortelnet
. -
Verify that incoming traffic on port 9092 is allowed in the security settings of your cloud instance.
-
If the port is reachable and configured correctly, try creating the Source in RisingWave Cloud using the web console or directly running the
CREATE SOURCE
statement.