A Kafka Connect sink connector for writing records from Kafka to HTTP endpoints.
The connector has a single configuration property over and above what is provided with Kafka Connect. Configurations for this connector are collapsed into a json value in this property.
This sink connector supports the following options as part of its json configuration:
The examples within this document show JSON content for the connect.http.config property. We have spaced these out onto multiple lines.
connect.http.config
{ "method":"Put", "endpoint":"http://myaddress.example.com", "content":"Your HTTP Message Body Goes Here!" }
The Lenses HTTP sink comes with multiple options for content templating of the HTTP request.
If you do not wish any part of the key, value, headers or other data to form a part of the message, you can use static templating:
When you are confident you will be generating a single HTTP request per Kafka message, then you can use the simpler templating.
In your configuration, in the template property of the Json, you can define template substitutions like the following example:
(please note the XML is only an example, your template can consist of any text format that can be submitted in a http request)
{ "method":"Put", "endpoint":"http://myaddress.example.com", "content":"<product><id>{{value.name}}</id></product>" }
To collapse multiple messages into a single HTTP request you can use the multiple messaging template. This is automatic if the template has a messages tag. See the below example:
messages
<messages> {{#message}} <message> <topic>{{topic}}</topic> <employee>{{value.employeeId}}</employee> <order>{{value.orderNo}}</order> <groupDomain>{{value.groupDomain}}</groupDomain> </message> {{/message}} </messages>
Again, this is an XML example but your message body can consist of anything including plain text, json or yaml.
In your connector configuration json string this will look like this:
{ "method":"Put", "endpoint":"http://myaddress.example.com", "content":"<messages>{{#message}}<message><topic>{{topic}}</topic><employee>{{value.employeeId}}</employee><order>{{value.orderNo}}</order><groupDomain>{{value.groupDomain}}</groupDomain></message>{{/message}}</messages>" }
The final result will be HTTP requests with bodies like this:
<messages> <message> <topic>myTopic</topic> <employee>Abcd1234</employee> <order>10</order> <groupDomain>myExampleGroup.uk</groupDomain> </message> <message> <topic>myTopic</topic> <employee>Efgh5678</employee> <order>11</order> <groupDomain>myExampleGroup.uk</groupDomain> </message> </messages>
When using simple and multiple message templating, the following are available:
URL including protocol (eg. http://lenses.io). Template variables can be used.
http://lenses.io
The URL is also a Content Template so can contain substitutions from the message key/value/headers etc. If you are batching multiple kafka messages into a single request, then the first message will be used for the substitution of the URL.
Currently, the HTTP Sink supports either no authentication or BASIC HTTP authentication.
By default, no authentication is set.
BASIC auth can be configured by providing a configuration like this:
{ "method":"Put", "endpoint":"http://myaddress.example.com", "content":"My content template", "authentication":{"username":"user","password":"pass","type":"BasicAuthentication"} }
To customise the headers sent with your HTTP request you can supply a Headers List.
Each header key and value is also a Content Template so can contain substitutions from the message key/value/headers etc. If you are batching multiple kafka messages into a single request, then the first message will be used for the substitution of the headers.
Example:
{ "method":"Put", "endpoint":"http://myaddress.example.com", "content":"My content template", "headers":[["Content-Type","text/plain"], ["X-User","{{header.kafkauser}}"], ["Product", "{{value.product.id}}"]] }
{ "trustStorePath": "/path/to/truststore", "trustStorePass": "truststorePassword", "keyStorePath": "/path/to/keystore", "keyStorePass": "keystorePassword", "useClientCert": true, "keyStoreType": "PKCS12", "trustStoreType": "PKCS12" }
{ "method":"Put", "endpoint":"http://myaddress.example.com", "content":"My content template", "headers":[["Content-Type","text/plain"], ["X-User","{{header.kafkauser}}"], ["Product", "{{value.product.id}}"]], "ssl": {"trustStorePath":"/path/to/truststore","trustStorePass":"truststorePassword","keyStorePath":"/path/to/keystore","keyStorePass":"keystorePassword","useClientCert":true,"keyStoreType":"PKCS12","trustStoreType":"PKCS12"} }
JKS
useClientCert
false
The connector offers three distinct flush options for data management:
It’s worth noting that the interval flush is a continuous process that acts as a fail-safe mechanism, ensuring that files are periodically flushed, even if the other flush options are not configured or haven’t reached their thresholds.
Consider a scenario where the flush size is set to 10MB, and only 9.8MB of data has been written to the file, with no new Kafka messages arriving for an extended period of 6 hours. To prevent undue delays, the interval flush guarantees that the file is flushed after the specified time interval has elapsed. This ensures the timely management of data even in situations where other flush conditions are not met.
The flush options are configured using the batchCount, batchSize and timeInterval fields in the Batch Configuration object. The settings are optional and if not specified the defaults are:
batchCount
batchSize
timeInterval
{"batchCount":50000,"batchSize":500000000,"timeInterval":3600}
Some configuration examples follow on how to apply this connector to different message types.
These include converters, which are required to instruct Kafka Connect on how to read the source content.
In this case the converters are irrelevant as we are not using the message content to populate our message template.
connector.class=io.lenses.streamreactor.connect.http.sink.HttpSinkConnector topics=mytopic tasks.max=1 connect.http.config={"method":"Post","endpoint":"https://my-endpoint.example.com","content":"My Static Content Template","batch":{"batchCount":1}}
The HTTP request body contains the value of the message, which is retained as a string value via the StringConverter.
connector.class=io.lenses.streamreactor.connect.http.sink.HttpSinkConnector topics=mytopic tasks.max=1 connect.http.config={"method":"Post","endpoint":"https://my-endpoint.example.com","content":"{{value}}","batch":{"batchCount":1}} key.converter=org.apache.kafka.connect.storage.StringConverter value.converter=org.apache.kafka.connect.storage.StringConverter
Specific fields from the JSON message are substituted into the HTTP request body alongside some static content.
connector.class=io.lenses.streamreactor.connect.http.sink.HttpSinkConnector topics=mytopic tasks.max=1 key.converter=org.apache.kafka.connect.storage.StringConverter value.converter=org.apache.kafka.connect.json.JsonConverter connect.http.config={"method":"Post","endpoint":"https://my-endpoint.example.com","content":"product: {{value.product}},"batch":{"batchSize":1}} value.converter.schemas.enable=false
The entirety of the message value is substituted into a placeholder in the message body. The message is treated as a string via the StringConverter.
connector.class=io.lenses.streamreactor.connect.http.sink.HttpSinkConnector topics=mytopic tasks.max=1 key.converter=org.apache.kafka.connect.storage.StringConverter value.converter=org.apache.kafka.connect.storage.StringConverter connect.http.config={"method":"Post","endpoint":"https://my-endpoint.example.com","content":"whole product message: {{value}}","batch":{"timeInterval":5}}
Fields from the AVRO message are substituted into the message body in the following example:
connector.class=io.lenses.streamreactor.connect.http.sink.HttpSinkConnector topics=mytopic tasks.max=1 connect.http.config={"method":"Post","endpoint":"https://my-endpoint.example.com","content":"product: {{value.product}}"} key.converter=org.apache.kafka.connect.storage.StringConverter value.converter=io.confluent.connect.avro.AvroConverter value.converter.schemas.enable=true value.converter.schema.registry.url=http://schema-registry:8081
On this page