From commits-return-10056-archive-asf-public=cust-asf.ponee.io@kafka.apache.org Mon Jul 23 22:49:35 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 6EB71180647 for ; Mon, 23 Jul 2018 22:49:34 +0200 (CEST) Received: (qmail 94713 invoked by uid 500); 23 Jul 2018 20:49:32 -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 94689 invoked by uid 99); 23 Jul 2018 20:49:32 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 23 Jul 2018 20:49:32 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 9D2E181E47; Mon, 23 Jul 2018 20:49:31 +0000 (UTC) Date: Mon, 23 Jul 2018 20:49:31 +0000 To: "commits@kafka.apache.org" Subject: [kafka-site] branch asf-site updated: MINOR: Removing duplicate word from streams develope-guide (#155) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <153237897158.4640.9692086890666867436@gitbox.apache.org> From: guozhang@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: kafka-site X-Git-Refname: refs/heads/asf-site X-Git-Reftype: branch X-Git-Oldrev: c2783792970ed8944db025270a5e433f51fa9001 X-Git-Newrev: af64281f1ff9a04b2b4d40b0936dd7ad45cd6dbf X-Git-Rev: af64281f1ff9a04b2b4d40b0936dd7ad45cd6dbf X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. guozhang pushed a commit to branch asf-site in repository https://gitbox.apache.org/repos/asf/kafka-site.git The following commit(s) were added to refs/heads/asf-site by this push: new af64281 MINOR: Removing duplicate word from streams develope-guide (#155) af64281 is described below commit af64281f1ff9a04b2b4d40b0936dd7ad45cd6dbf Author: bibin sebastian AuthorDate: Tue Jul 24 02:19:29 2018 +0530 MINOR: Removing duplicate word from streams develope-guide (#155) Reviewers: Guozhang Wang --- 11/streams/developer-guide/write-streams.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/11/streams/developer-guide/write-streams.html b/11/streams/developer-guide/write-streams.html index 98c85d6..87dd4e1 100644 --- a/11/streams/developer-guide/write-streams.html +++ b/11/streams/developer-guide/write-streams.html @@ -44,7 +44,7 @@

You can define the processor topology with the Kafka Streams APIs:

Kafka Streams DSL
-
A high-level API that provides provides the most common data transformation operations such as map, filter, join, and aggregations out of the box. The DSL is the recommended starting point for developers new to Kafka Streams, and [...] +
A high-level API that provides the most common data transformation operations such as map, filter, join, and aggregations out of the box. The DSL is the recommended starting point for developers new to Kafka Streams, and should co [...]
Processor API
A low-level API that lets you add and connect processors as well as interact directly with state stores. The Processor API provides you with even more flexibility than the DSL but at the expense of requiring more manual work on the side of the application developer (e.g., more lines of code).