This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl -i -X PUT -H "Content-Type:application/json" \ | |
http://localhost:8083/connectors/sink-elastic-orders-00/config \ | |
-d '{ | |
"connector.class": "io.confluent.connect.elasticsearch.ElasticsearchSinkConnector", | |
"topics": "orders", | |
"connection.url": "http://elasticsearch:9200", | |
"type.name": "type.name=kafkaconnect", | |
"key.ignore": "true", | |
"schema.ignore": "false", | |
"errors.tolerance":"all", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
openapi: 3.0.1 | |
info: | |
title: REST Proxy API | |
description: >- | |
The Confluent REST Proxy provides a RESTful interface to a Kafka cluster, making it easy to produce and consume messages, view the state of the cluster, and perform administrative actions without using the native Kafka protocol or clients. | |
<p>Some example use cases are</p> | |
<ul> | |
<li>Reporting data to Kafka from any frontend app built in any language not supported by official Confluent clients</li> | |
<li>Ingesting messages into a stream processing framework that doesn’t yet support Kafka</li> | |
<li>Scripting administrative actions</li> |