sync_response
Returns the final message payload back to the input origin of the message, where it is dealt with according to that specific input type.
For most inputs this mechanism is ignored entirely, in which case the sync response is dropped without penalty. It is therefore safe to use this output even when combining input types that might not have support for sync responses. An example of an input able to utilize this is the http_server
.
It is safe to combine this output with others using broker types. For example, with the http_server
input we could send the payload to a Kafka topic and also send a modified payload back with:
Using the above example and posting the message ‘hello world’ to the endpoint /post
Redpanda Connect would send it unchanged to the topic foo_topic
and also respond with ‘HELLO WORLD’.
For more information please read synchronous responses.