Open Ryan-Gordon1 opened 3 years ago
Hi, I haven't actually played with the Kafka feed for a while, so can't rule out that something might have rotted. But, the openwhisk-package-kafka code should be installed by the install-packages job when you deployed using the helm chart.
its possible it is deployed, but is not configured correctly. I'd suggest first making sure the package/actions are there. Then trying to look to see if the actions are running and perhaps failing. Also look at the logs of the kafkaprovider pod and see if it is reporting any errors.
I have been successfully able to deploy this project with kind and trigger actions. My goal was to get a kafka feed setup to trigger an action via a rule but no matter what I do it seems like my kafka feed does not pick up the messages. It appears as if it successfully creates the trigger and a response is recevied it looks like from the logs but messages don't propagate. Is it possible I am missing stuff from here : https://github.com/apache/openwhisk-package-kafka
wsk trigger create MyKafkaTrigger0 -f /whisk.system/messaging/kafkaFeed -p brokers "[\"10.1.0.182:9092\"]" -p topic mytopic -p isJSONData true
and
wsk action invoke whisk.system/messaging/kafkaProduce -p brokers "[\"10.1.0.182:9092\"]" -p topic mytopic -p value "This is the content of my message" --blocking
where 10.1.0.182 is the ip of the already deployed kafka pod
I have been successfully able to deploy this project with kind and trigger actions. My goal was to get a kafka feed setup to trigger an action via a rule but no matter what I do it seems like my kafka feed does not pick up the messages. It appears as if it successfully creates the trigger and a response is recevied it looks like from the logs but messages don't propagate. Is it possible I am missing stuff from here : https://github.com/apache/openwhisk-package-kafka