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 8D6D6200BBF for ; Mon, 14 Nov 2016 08:00:01 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 8C431160B05; Mon, 14 Nov 2016 07:00:01 +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 B1778160B1C for ; Mon, 14 Nov 2016 08:00:00 +0100 (CET) Received: (qmail 87118 invoked by uid 500); 14 Nov 2016 06:59:59 -0000 Mailing-List: contact issues-help@flink.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flink.apache.org Delivered-To: mailing list issues@flink.apache.org Received: (qmail 86882 invoked by uid 99); 14 Nov 2016 06:59:59 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 14 Nov 2016 06:59:59 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id 55C5B2C4C74 for ; Mon, 14 Nov 2016 06:59:59 +0000 (UTC) Date: Mon, 14 Nov 2016 06:59:59 +0000 (UTC) From: "ASF GitHub Bot (JIRA)" To: issues@flink.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (FLINK-5048) Kafka Consumer (0.9/0.10) threading model leads problematic cancellation behavior MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Mon, 14 Nov 2016 07:00:01 -0000 [ https://issues.apache.org/jira/browse/FLINK-5048?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15662978#comment-15662978 ] ASF GitHub Bot commented on FLINK-5048: --------------------------------------- Github user tzulitai commented on a diff in the pull request: https://github.com/apache/flink/pull/2789#discussion_r87734223 --- Diff: flink-streaming-connectors/flink-connector-kafka-0.10/src/main/java/org/apache/flink/streaming/connectors/kafka/internal/KafkaConsumerCallBridge010.java --- @@ -0,0 +1,40 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.flink.streaming.connectors.kafka.internal; + +import org.apache.kafka.clients.consumer.KafkaConsumer; +import org.apache.kafka.common.TopicPartition; + +import java.util.List; + +/** + * The ConsumerCallBridge simply calls the {@link KafkaConsumer#assign(java.util.Collection)} method. + * + * This indirection is necessary, because Kafka broke binary compatibility between 0.9 and 0.10, + * changing {@code assign(List)} to {@code assign(Collection)}. + * + * Because of that, we need to two versions whose compiled code goes against different method signatures. --- End diff -- nit: we need "to" two versions <-- redundant "to". > Kafka Consumer (0.9/0.10) threading model leads problematic cancellation behavior > --------------------------------------------------------------------------------- > > Key: FLINK-5048 > URL: https://issues.apache.org/jira/browse/FLINK-5048 > Project: Flink > Issue Type: Bug > Components: Kafka Connector > Affects Versions: 1.1.3 > Reporter: Stephan Ewen > Assignee: Stephan Ewen > Fix For: 1.2.0 > > > The {{FLinkKafkaConsumer}} (0.9 / 0.10) spawns a separate thread that operates the KafkaConsumer. That thread is shielded from interrupts, because the Kafka Consumer has not been handling thread interrupts well. > Since that thread is also the thread that emits records, it may block in the network stack (backpressure) or in chained operators. The later case leads to situations where cancellations get very slow unless that thread would be interrupted (which it cannot be). > I propose to change the thread model as follows: > - A spawned consumer thread pull from the KafkaConsumer and pushes its pulled batch of records into a blocking queue (size one) > - The main thread of the task will pull the record batches from the blocking queue and emit the records. > This allows actually for some additional I/O overlay while limiting the additional memory consumption - only two batches are ever held, one being fetched and one being emitted. -- This message was sent by Atlassian JIRA (v6.3.4#6332)