Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id C383E200C25 for ; Fri, 10 Feb 2017 04:13:36 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id C1E3F160B50; Fri, 10 Feb 2017 03:13:36 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 7BB8D160B64 for ; Fri, 10 Feb 2017 04:13:34 +0100 (CET) Received: (qmail 82574 invoked by uid 500); 10 Feb 2017 03:13:33 -0000 Mailing-List: contact commits-help@kafka.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@kafka.apache.org Delivered-To: mailing list commits@kafka.apache.org Received: (qmail 82558 invoked by uid 99); 10 Feb 2017 03:13:33 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 10 Feb 2017 03:13:33 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 44754DFC9D; Fri, 10 Feb 2017 03:13:33 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: ewencp@apache.org To: commits@kafka.apache.org Date: Fri, 10 Feb 2017 03:13:34 -0000 Message-Id: <701f3d3621a442c89f3a3f66f19456f7@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [2/2] kafka git commit: MINOR: add architecture section and configure / execution for streams archived-at: Fri, 10 Feb 2017 03:13:36 -0000 MINOR: add architecture section and configure / execution for streams 1. Added an architecture section. 2. Added a configuration / execution sub-section to developer guide. Minor tweaks and a bunch of missing fixes from `kafka-site` repo. Author: Guozhang Wang Reviewers: Matthias J. Sax , Derrick Or , Ewen Cheslack-Postava Closes #2488 from guozhangwang/KMinor-streams-docs-second-pass Project: http://git-wip-us.apache.org/repos/asf/kafka/repo Commit: http://git-wip-us.apache.org/repos/asf/kafka/commit/a15fcea7 Tree: http://git-wip-us.apache.org/repos/asf/kafka/tree/a15fcea7 Diff: http://git-wip-us.apache.org/repos/asf/kafka/diff/a15fcea7 Branch: refs/heads/trunk Commit: a15fcea799a843c1b4888fffbb2d382ee2e2ee36 Parents: b5dd39d Author: Guozhang Wang Authored: Thu Feb 9 19:12:50 2017 -0800 Committer: Ewen Cheslack-Postava Committed: Thu Feb 9 19:13:23 2017 -0800 ---------------------------------------------------------------------- docs/documentation.html | 144 +----- docs/documentation/streams.html | 19 + docs/images/streams-architecture-overview.jpg | Bin 0 -> 420929 bytes docs/images/streams-architecture-states.jpg | Bin 0 -> 147338 bytes docs/images/streams-architecture-tasks.jpg | Bin 0 -> 130435 bytes docs/images/streams-architecture-threads.jpg | Bin 0 -> 153622 bytes docs/images/streams-architecture-topology.jpg | Bin 0 -> 182199 bytes docs/introduction.html | 17 +- docs/js/templateData.js | 4 +- docs/migration.html | 4 +- docs/protocol.html | 8 +- docs/quickstart.html | 12 +- docs/streams.html | 544 ++++++++++++++++----- docs/toc.html | 154 ++++++ docs/upgrade.html | 2 +- docs/uses.html | 2 +- 16 files changed, 630 insertions(+), 280 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/kafka/blob/a15fcea7/docs/documentation.html ---------------------------------------------------------------------- diff --git a/docs/documentation.html b/docs/documentation.html index 6269984..f9ab673 100644 --- a/docs/documentation.html +++ b/docs/documentation.html @@ -20,6 +20,7 @@ +
@@ -27,134 +28,8 @@

Documentation

Kafka 0.10.2 Documentation

Prior releases: 0.7.x, 0.8.0, 0.8.1.X, 0.8.2.X, 0.9.0.X, 0.10.0.X, 0.10.1.X. - - - + +

1. Getting Started

1.1 Introduction

@@ -194,8 +69,15 @@

8. Kafka Connect

-

9. Kafka Streams

- +

9. Kafka Streams

+

+ Kafka Streams is a client library for processing and analyzing data stored in Kafka and either write the resulting data back to Kafka or send the final output to an external system. It builds upon important stream processing concepts such as properly distinguishing between event time and processing time, windowing support, and simple yet efficient management of application state. +

+

+ Kafka Streams has a low barrier to entry: You can quickly write and run a small-scale proof-of-concept on a single machine; and you only need to run additional instances of your application on multiple machines to scale up to high-volume production workloads. Kafka Streams transparently handles the load balancing of multiple instances of the same application by leveraging Kafka's parallelism model. +

+ +

Learn More about Kafka Streams read this Section.

- + http://git-wip-us.apache.org/repos/asf/kafka/blob/a15fcea7/docs/documentation/streams.html ---------------------------------------------------------------------- diff --git a/docs/documentation/streams.html b/docs/documentation/streams.html new file mode 100644 index 0000000..d8d2bb2 --- /dev/null +++ b/docs/documentation/streams.html @@ -0,0 +1,19 @@ + + + + http://git-wip-us.apache.org/repos/asf/kafka/blob/a15fcea7/docs/images/streams-architecture-overview.jpg ---------------------------------------------------------------------- diff --git a/docs/images/streams-architecture-overview.jpg b/docs/images/streams-architecture-overview.jpg new file mode 100644 index 0000000..9222079 Binary files /dev/null and b/docs/images/streams-architecture-overview.jpg differ http://git-wip-us.apache.org/repos/asf/kafka/blob/a15fcea7/docs/images/streams-architecture-states.jpg ---------------------------------------------------------------------- diff --git a/docs/images/streams-architecture-states.jpg b/docs/images/streams-architecture-states.jpg new file mode 100644 index 0000000..fde12db Binary files /dev/null and b/docs/images/streams-architecture-states.jpg differ http://git-wip-us.apache.org/repos/asf/kafka/blob/a15fcea7/docs/images/streams-architecture-tasks.jpg ---------------------------------------------------------------------- diff --git a/docs/images/streams-architecture-tasks.jpg b/docs/images/streams-architecture-tasks.jpg new file mode 100644 index 0000000..2e957f9 Binary files /dev/null and b/docs/images/streams-architecture-tasks.jpg differ http://git-wip-us.apache.org/repos/asf/kafka/blob/a15fcea7/docs/images/streams-architecture-threads.jpg ---------------------------------------------------------------------- diff --git a/docs/images/streams-architecture-threads.jpg b/docs/images/streams-architecture-threads.jpg new file mode 100644 index 0000000..d5f10db Binary files /dev/null and b/docs/images/streams-architecture-threads.jpg differ http://git-wip-us.apache.org/repos/asf/kafka/blob/a15fcea7/docs/images/streams-architecture-topology.jpg ---------------------------------------------------------------------- diff --git a/docs/images/streams-architecture-topology.jpg b/docs/images/streams-architecture-topology.jpg new file mode 100644 index 0000000..f42e8cd Binary files /dev/null and b/docs/images/streams-architecture-topology.jpg differ http://git-wip-us.apache.org/repos/asf/kafka/blob/a15fcea7/docs/introduction.html ---------------------------------------------------------------------- diff --git a/docs/introduction.html b/docs/introduction.html index 7ff62f9..7672a51 100644 --- a/docs/introduction.html +++ b/docs/introduction.html @@ -18,7 +18,7 @@ - - -
- -
-
-
-
- - - +
\ No newline at end of file http://git-wip-us.apache.org/repos/asf/kafka/blob/a15fcea7/docs/js/templateData.js ---------------------------------------------------------------------- diff --git a/docs/js/templateData.js b/docs/js/templateData.js index fbb9e4e..b4aedf5 100644 --- a/docs/js/templateData.js +++ b/docs/js/templateData.js @@ -17,6 +17,6 @@ limitations under the License. // Define variables for doc templates var context={ - "version": "0101" - "dotVersion": "0.10.1" + "version": "0102", + "dotVersion": "0.10.2" }; \ No newline at end of file http://git-wip-us.apache.org/repos/asf/kafka/blob/a15fcea7/docs/migration.html ---------------------------------------------------------------------- diff --git a/docs/migration.html b/docs/migration.html index db5fe60..08a6271 100644 --- a/docs/migration.html +++ b/docs/migration.html @@ -15,7 +15,7 @@ limitations under the License. --> - +

Migrating from 0.7.x to 0.8

0.8 is our first (and hopefully last) release with a non-backwards-compatible wire protocol, ZooKeeper layout, and on-disk data format. This was a chance for us to clean up a lot of cruft and start fresh. This means performing a no-downtime upgrade is more painful than normal—you cannot just swap in the new code in-place. @@ -31,4 +31,4 @@
  • Drink. - + http://git-wip-us.apache.org/repos/asf/kafka/blob/a15fcea7/docs/protocol.html ---------------------------------------------------------------------- diff --git a/docs/protocol.html b/docs/protocol.html index 5285f2e..4042223 100644 --- a/docs/protocol.html +++ b/docs/protocol.html @@ -15,10 +15,10 @@ limitations under the License. --> - - + +
    - +

    Kafka protocol guide

    @@ -227,4 +227,4 @@ Size => int32 $(function() { $('.b-nav__project').addClass('selected'); }); - + http://git-wip-us.apache.org/repos/asf/kafka/blob/a15fcea7/docs/quickstart.html ---------------------------------------------------------------------- diff --git a/docs/quickstart.html b/docs/quickstart.html index 2080cc4..bfc9af3 100644 --- a/docs/quickstart.html +++ b/docs/quickstart.html @@ -15,6 +15,9 @@ limitations under the License. --> + + + + +
    \ No newline at end of file http://git-wip-us.apache.org/repos/asf/kafka/blob/a15fcea7/docs/streams.html ---------------------------------------------------------------------- diff --git a/docs/streams.html b/docs/streams.html index 3e9334b..19af2b3 100644 --- a/docs/streams.html +++ b/docs/streams.html @@ -1,23 +1,23 @@ - + -
    +