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 A9A0A200C86 for ; Wed, 31 May 2017 18:50:17 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id A7E53160BCB; Wed, 31 May 2017 16:50:17 +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 1F5B7160BC2 for ; Wed, 31 May 2017 18:50:16 +0200 (CEST) Received: (qmail 92576 invoked by uid 500); 31 May 2017 16:50:16 -0000 Mailing-List: contact dev-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 dev@kafka.apache.org Received: (qmail 92565 invoked by uid 99); 31 May 2017 16:50:15 -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; Wed, 31 May 2017 16:50:15 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id B69C3DFC2E; Wed, 31 May 2017 16:50:15 +0000 (UTC) From: dguy To: dev@kafka.apache.org Reply-To: dev@kafka.apache.org Message-ID: Subject: [GitHub] kafka pull request #3181: KAFKA-5154: Consumer fetches from revoked partitio... Content-Type: text/plain Date: Wed, 31 May 2017 16:50:15 +0000 (UTC) archived-at: Wed, 31 May 2017 16:50:17 -0000 GitHub user dguy opened a pull request: https://github.com/apache/kafka/pull/3181 KAFKA-5154: Consumer fetches from revoked partitions when SyncGroup fails with disconnection [WIP] Scenario is as follows: 1. Consumer subscribes to topic t1 and begins consuming 2. heartbeat fails as the group is rebalancing 3. ConsumerCoordinator.onJoinGroupPrepare is called 3.1 onPartitionsRevoked is called 4. consumer becomes the group leader 5. sends sync group request 6. sync group is cancelled due to disconnection 7. fetch request is sent for partitions that have previously been revoked You can merge this pull request into a Git repository by running: $ git pull https://github.com/dguy/kafka kafka-5154 Alternatively you can review and apply these changes as the patch at: https://github.com/apache/kafka/pull/3181.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #3181 ---- commit f84737d30acdb8b49e8e0d4e3da8720083e88354 Author: Damian Guy Date: 2017-05-31T16:40:50Z just a test for discussion ---- --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastructure@apache.org or file a JIRA ticket with INFRA. ---