Return-Path: Delivered-To: apmail-hadoop-common-user-archive@www.apache.org Received: (qmail 2066 invoked from network); 27 Sep 2009 01:38:07 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 27 Sep 2009 01:38:07 -0000 Received: (qmail 99214 invoked by uid 500); 27 Sep 2009 01:38:05 -0000 Delivered-To: apmail-hadoop-common-user-archive@hadoop.apache.org Received: (qmail 99117 invoked by uid 500); 27 Sep 2009 01:38:04 -0000 Mailing-List: contact common-user-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: common-user@hadoop.apache.org Delivered-To: mailing list common-user@hadoop.apache.org Received: (qmail 99107 invoked by uid 99); 27 Sep 2009 01:38:04 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 27 Sep 2009 01:38:04 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of vliaskov@gmail.com designates 209.85.212.186 as permitted sender) Received: from [209.85.212.186] (HELO mail-vw0-f186.google.com) (209.85.212.186) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 27 Sep 2009 01:37:55 +0000 Received: by vws16 with SMTP id 16so2403748vws.2 for ; Sat, 26 Sep 2009 18:37:34 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type; bh=EN9HbXcg/oDH27XKAQnWgWmQB1gYkfyFza/j86+HhXc=; b=tiNaUSOwXEf4f9p+S1/+wQvhdvfuaMVg2iXDjUZ23urYGzQBs8l8ouP6ntl1UVTORg Dx33Svi9E2Ix1Nf7W2MCBFGC59QOfnwwIf2g4/AXK4GKCygW2HaQcdRHuy38cRiiuIGb C/O8XFGcs8JiFqtsAXJGsykbWMd1tC2giDN3k= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=DcN+TSHWnuXbYE+SkrvWlzFoLoQw2FpHZ88vYjoEV/zmYub04fZWL9AJcT1AfR318v tN4k+MtQDNeOjL2EQzzM90JTzCWHRXknmBr34SI6bu3aDdGX3XZkKaug6U4IQOPPdj2X zT5HUCfQwHOb226OIV5kie+p3qBA1Kc2NLvak= MIME-Version: 1.0 Received: by 10.220.69.227 with SMTP id a35mr3313517vcj.29.1254015454172; Sat, 26 Sep 2009 18:37:34 -0700 (PDT) Date: Sat, 26 Sep 2009 20:37:34 -0500 Message-ID: Subject: default job scheduler behaviour From: Vasilis Liaskovitis To: common-user@hadoop.apache.org Content-Type: text/plain; charset=ISO-8859-1 X-Virus-Checked: Checked by ClamAV on apache.org Hi, given a single cluster running with the default job scheduler: Is only one job executing on the cluster, regardless of how many task map/reduce slots it can keep busy? In other words, If a job does not use all task slots, would the default scheduler consider scheduling map/reduce from other jobs that have already been submitted to the system? I am using an 8-node cluster to run some test jobs based on gridmix (the synthetic benchmark found in the hadoop distribution under src/banchmarks/gridmix). The gridmix workload submits many different jobs in parallel - 5 different kinds of jobs of varying sizes for each kind: small, medium, large. While running, I am noticing that at any time only one job is making progress - at least according to the jobtracker web ui. I think this is happening even for small-size jobs, which don't take up all slots of the cluster's tasktrackers/nodes. If the default scheduler is not capable of scheduling tasks for multiple jobs, would I have to use the capacity scheduler? Or something else? thanks for any help, - Vasilis