This is an automated email from the ASF dual-hosted git repository.
guozhang pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/kafka.git
The following commit(s) were added to refs/heads/trunk by this push:
new d2aca95 MINOR: Fix incorrect expression for KTable in stream doc.
(#4718)
d2aca95 is described below
commit d2aca95aeb7e15bebb7726987586b7f5cadbe0ef
Author: huxi <[email protected]>
AuthorDate: Fri Mar 16 02:34:33 2018 +0800
MINOR: Fix incorrect expression for KTable in stream doc. (#4718)
In dsi-api.html, when reading from Kafka to a KTable, the doc says "In the
case of a KStream.." where `Kstream` here is not correct. They should be
`KTable`.
Reviewers: Guozhang Wang <[email protected]>
---
docs/streams/developer-guide/dsl-api.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/streams/developer-guide/dsl-api.html
b/docs/streams/developer-guide/dsl-api.html
index f8fa8c9..0a1de95 100644
--- a/docs/streams/developer-guide/dsl-api.html
+++ b/docs/streams/developer-guide/dsl-api.html
@@ -154,7 +154,7 @@
interpreted as a changelog stream, where records with
the same key are interpreted as UPSERT aka INSERT/UPDATE
(when the record value is not <code class="docutils
literal"><span class="pre">null</span></code>) or as DELETE (when the value is
<code class="docutils literal"><span class="pre">null</span></code>) for that
key.
<a class="reference external"
href="../../../javadoc/org/apache/kafka/streams/StreamsBuilder.html#table-java.lang.String(java.lang.String)">(details)</a></p>
- <p>In the case of a KStream, the local KStream
instance of every application instance will
+ <p>In the case of a KTable, the local KTable instance
of every application instance will
be populated with data from only <strong>a
subset</strong> of the partitions of the input topic. Collectively, across
all application instances, all input topic
partitions are read and processed.</p>
<p>You must provide a name for the table (more
precisely, for the internal
--
To stop receiving notification emails like this one, please contact
[email protected].