Skip to content

Commit 8fb14cb

Browse files
committed
Manual merge 4.1.0-post into 4.1.1-post
2 parents 013c0ba + 263fad8 commit 8fb14cb

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

pom.xml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@
4444
<hamcrest.version>1.3</hamcrest.version>
4545
<mockito.version>2.13.0</mockito.version>
4646
<jest.version>2.4.0</jest.version>
47+
<kafka.connect.maven.plugin.version>0.11.1</kafka.connect.maven.plugin.version>
4748
<confluent.maven.repo>http://packages.confluent.io/maven/</confluent.maven.repo>
4849
</properties>
4950

@@ -126,7 +127,7 @@
126127
<plugins>
127128
<plugin>
128129
<groupId>io.confluent</groupId>
129-
<version>0.10.0</version>
130+
<version>${kafka.connect.maven.plugin.version}</version>
130131
<artifactId>kafka-connect-maven-plugin</artifactId>
131132
<executions>
132133
<execution>
@@ -135,13 +136,13 @@
135136
</goals>
136137
<configuration>
137138
<title>Kafka Connect Elasticsearch</title>
138-
<documentationUrl>https://docs.confluent.io/current/connect/connect-elasticsearch/docs/elasticsearch_connector.html</documentationUrl>
139+
<documentationUrl>https://docs.confluent.io/${project.version}/connect/connect-elasticsearch/docs/index.html</documentationUrl>
139140
<description>
140141
The Elasticsearch connector allows moving data from Kafka to Elasticsearch. It writes data from a topic in Kafka to an index in Elasticsearch and all data for a topic have the same type.
141142

142143
Elasticsearch is often used for text queries, analytics and as an key-value store (use cases). The connector covers both the analytics and key-value store use cases. For the analytics use case, each message is in Kafka is treated as an event and the connector uses topic+partition+offset as a unique identifier for events, which then converted to unique documents in Elasticsearch. For the key-value store use case, it supports using keys from Kafka messages as document ids in Elasticsearch and provides configurations ensuring that updates to a key are written to Elasticsearch in order. For both use cases, Elasticsearch’s idempotent write semantics guarantees exactly once delivery.
143144

144-
Mapping is the process of defining how a document, and the fields it contains, are stored and indexed. Users can explicitly define mappings for types in indices. When mapping is not explicitly defined, Elasticsearch can determine field names and types from data, however, some types such as timestamp and decimal, may not be correctly inferred. To ensure that the types are correctly inferred, the connector provides a feature to infer mapping from the schemas of Kafka messages.
145+
Mapping is the process of defining how a document, and the fields it contains, are stored and indexed. Users can explicitly define mappings for types in indices. When a mapping is not explicitly defined, Elasticsearch can determine field names and types from data, however, some types such as timestamp and decimal, may not be correctly inferred. To ensure that the types are correctly inferred, the connector provides a feature to infer a mapping from the schemas of Kafka messages.
145146
</description>
146147
<logo>logos/elasticsearch.jpg</logo>
147148

@@ -173,7 +174,7 @@
173174
</tags>
174175

175176
<requirements>
176-
<requirement>Elasticsearch 2.x, 5.x, or 6.x</requirement>
177+
<requirement>Elasticsearch 2.x or 5.x</requirement>
177178
</requirements>
178179

179180
<deliveryGuarantee>

0 commit comments

Comments
 (0)