Return-Path: X-Original-To: apmail-hadoop-mapreduce-issues-archive@minotaur.apache.org Delivered-To: apmail-hadoop-mapreduce-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 15E5BF514 for ; Thu, 9 May 2013 23:01:19 +0000 (UTC) Received: (qmail 22342 invoked by uid 500); 9 May 2013 23:01:17 -0000 Delivered-To: apmail-hadoop-mapreduce-issues-archive@hadoop.apache.org Received: (qmail 22249 invoked by uid 500); 9 May 2013 23:01:17 -0000 Mailing-List: contact mapreduce-issues-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: mapreduce-issues@hadoop.apache.org Delivered-To: mailing list mapreduce-issues@hadoop.apache.org Received: (qmail 21970 invoked by uid 99); 9 May 2013 23:01:17 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 09 May 2013 23:01:17 +0000 Date: Thu, 9 May 2013 23:01:17 +0000 (UTC) From: "Xi Fang (JIRA)" To: mapreduce-issues@hadoop.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Work started] (MAPREDUCE-5224) JobTracker should allow the system directory to be in non-default FS MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/MAPREDUCE-5224?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Work on MAPREDUCE-5224 started by Xi Fang. > JobTracker should allow the system directory to be in non-default FS > -------------------------------------------------------------------- > > Key: MAPREDUCE-5224 > URL: https://issues.apache.org/jira/browse/MAPREDUCE-5224 > Project: Hadoop Map/Reduce > Issue Type: Bug > Components: jobtracker > Reporter: Xi Fang > Assignee: Xi Fang > Priority: Minor > Fix For: 1-win > > > JobTracker today expects the system directory to be in the default file system > if (fs == null) { > fs = mrOwner.doAs(new PrivilegedExceptionAction() { > public FileSystem run() throws IOException { > return FileSystem.get(conf); > }}); > } > ... > public String getSystemDir() { > Path sysDir = new Path(conf.get("mapred.system.dir", "/tmp/hadoop/mapred/system")); > return fs.makeQualified(sysDir).toString(); > } > In Cloud like Azure the default file system is set as ASV (Windows Azure Blob Storage), but we would still like the system directory to be in DFS. We should change JobTracker to allow that. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators For more information on JIRA, see: http://www.atlassian.com/software/jira