How to push messages from apigee to Redpanda/Kafka?

Amr
Bronze 4
Bronze 4

I need to push request and response messages to Redpanda/Kafka. 

How can I do this?

@dchiesa1  appreciate your support

0 1 175
1 REPLY 1

You could utilize the ServiceCalloutPolicy in the PostFlow to make API calls to push the payload to Redpanda. I assume it has API interfaces to push messages (via HTTP) from external sources (in this case it will be Apigee).

You should be omitting the "Response" element , so the request is made and does not wait for response. This way Apigee execution is not impacted (waiting for response from Redpanda).

Thanks.