Return-Path: Delivered-To: apmail-hadoop-mapreduce-dev-archive@minotaur.apache.org Received: (qmail 85260 invoked from network); 20 Nov 2009 21:14:05 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 20 Nov 2009 21:14:05 -0000 Received: (qmail 18814 invoked by uid 500); 20 Nov 2009 21:14:04 -0000 Delivered-To: apmail-hadoop-mapreduce-dev-archive@hadoop.apache.org Received: (qmail 18491 invoked by uid 500); 20 Nov 2009 21:14:03 -0000 Mailing-List: contact mapreduce-dev-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: mapreduce-dev@hadoop.apache.org Delivered-To: mailing list mapreduce-dev@hadoop.apache.org Received: (qmail 18476 invoked by uid 99); 20 Nov 2009 21:14:03 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 20 Nov 2009 21:14:03 +0000 X-ASF-Spam-Status: No, hits=-10.5 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_HI X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 20 Nov 2009 21:14:00 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 9D614234C495 for ; Fri, 20 Nov 2009 13:13:40 -0800 (PST) Message-ID: <386076736.1258751620643.JavaMail.jira@brutus> Date: Fri, 20 Nov 2009 21:13:40 +0000 (UTC) From: "Dmytro Molkov (JIRA)" To: mapreduce-dev@hadoop.apache.org Subject: [jira] Created: (MAPREDUCE-1227) Allow JobTracker to pause task scheduling MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 Allow JobTracker to pause task scheduling ----------------------------------------- Key: MAPREDUCE-1227 URL: https://issues.apache.org/jira/browse/MAPREDUCE-1227 Project: Hadoop Map/Reduce Issue Type: New Feature Affects Versions: 0.22.0 Reporter: Dmytro Molkov We want to have an ability to pause task scheduling in JobTracker. The idea is: make job tracker still accept new jobs, but delay their running and do not schedule any new tasks from the currently running jobs. It will help for example restarting the DFS cluster without affecting jobs: pause execution, restart the DFS, running tasks will fail, but will not be scheduled until the execution is resumed, so the job does not fail. In general it should help fix non MR problems (DFS, network, etc.) while not failing running jobs and keep accepting new ones. What do people think of the general idea? -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.