Return-Path: X-Original-To: apmail-flink-issues-archive@minotaur.apache.org Delivered-To: apmail-flink-issues-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 16EE7188C8 for ; Thu, 17 Dec 2015 15:51:47 +0000 (UTC) Received: (qmail 36048 invoked by uid 500); 17 Dec 2015 15:51:47 -0000 Delivered-To: apmail-flink-issues-archive@flink.apache.org Received: (qmail 36016 invoked by uid 500); 17 Dec 2015 15:51:47 -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 35999 invoked by uid 99); 17 Dec 2015 15:51:46 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 17 Dec 2015 15:51:46 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id B34B72C1F6E for ; Thu, 17 Dec 2015 15:51:46 +0000 (UTC) Date: Thu, 17 Dec 2015 15:51:46 +0000 (UTC) From: "Ufuk Celebi (JIRA)" To: issues@flink.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Created] (FLINK-3182) TaskManagersHandler can block web frontend MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 Ufuk Celebi created FLINK-3182: ---------------------------------- Summary: TaskManagersHandler can block web frontend Key: FLINK-3182 URL: https://issues.apache.org/jira/browse/FLINK-3182 Project: Flink Issue Type: Bug Components: Webfrontend Affects Versions: 0.10.1 Reporter: Ufuk Celebi In {{TaskManagersHandler}}: {code} Future future = jobManager.ask( new JobManagerMessages.RequestTaskManagerInstance(instanceID), timeout); TaskManagerInstance instance = (TaskManagerInstance) Await.result( future, timeout); {code} The default timeout is 10 seconds. Depending on the number of event loop threads and requests this can block the web server. -- This message was sent by Atlassian JIRA (v6.3.4#6332)