Repository: kafka
Updated Branches:
refs/heads/trunk 179d06985 -> fb22685fa
MINOR: Fixed incomplete sentence in introduction docs
Author: Jakub Dziworski <jakub.dziworski@gmail.com>
Reviewers: Guozhang Wang <wangguoz@gmail.com>, Jason Gustafson <jason@confluent.io>
Closes #1994 from JakubDziworski/doc_fix
Project: http://git-wip-us.apache.org/repos/asf/kafka/repo
Commit: http://git-wip-us.apache.org/repos/asf/kafka/commit/fb22685f
Tree: http://git-wip-us.apache.org/repos/asf/kafka/tree/fb22685f
Diff: http://git-wip-us.apache.org/repos/asf/kafka/diff/fb22685f
Branch: refs/heads/trunk
Commit: fb22685fa9e2df7793605ea6f41181ad51c76686
Parents: 179d069
Author: Jakub Dziworski <jakub.dziworski@gmail.com>
Authored: Mon Oct 10 09:26:37 2016 -0700
Committer: Jason Gustafson <jason@confluent.io>
Committed: Mon Oct 10 09:26:37 2016 -0700
----------------------------------------------------------------------
docs/introduction.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------
http://git-wip-us.apache.org/repos/asf/kafka/blob/fb22685f/docs/introduction.html
----------------------------------------------------------------------
diff --git a/docs/introduction.html b/docs/introduction.html
index 147210f..fb05f68 100644
--- a/docs/introduction.html
+++ b/docs/introduction.html
@@ -47,7 +47,7 @@ Kafka has four core APIs:
<li>The <a href="/documentation.html#producerapi">Producer API</a>
allows an application to publish a stream records to one or more Kafka topics.
<li>The <a href="/documentation.html#consumerapi">Consumer API</a>
allows an application to subscribe to one or more topics and process the stream of records
produced to them.
<li>The <a href="/documentation.html#streams">Streams API</a> allows an
application to act as a <i>stream processor</i>, consuming an input stream from
one or more topics and producing an output stream to one or more output topics, effectively
transforming the input streams to output streams.
- <li>The <a href="/documentation.html#connect">Connector API</a> allows
building and running reusable producers or consumers that connect Kafka topics to existing
applications or data systems. For example, a connector to a relational database might capture
every change to
+ <li>The <a href="/documentation.html#connect">Connector API</a> allows
building and running reusable producers or consumers that connect Kafka topics to existing
applications or data systems. For example, a connector to a relational database might capture
every change to a table.
</ul>
<p>
In Kafka the communication between the clients and the servers is done with a simple, high-performance,
language agnostic <a href="https://kafka.apache.org/protocol.html">TCP protocol</a>.
This protocol is versioned and maintains backwards compatibility with older version. We provide
a Java client for Kafka, but clients are available in <a href="https://cwiki.apache.org/confluence/display/KAFKA/Clients">many
languages</a>.
|