Return-Path: Delivered-To: apmail-hadoop-mapreduce-user-archive@minotaur.apache.org Received: (qmail 36756 invoked from network); 14 Nov 2009 12:04:15 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 14 Nov 2009 12:04:15 -0000 Received: (qmail 27473 invoked by uid 500); 14 Nov 2009 12:04:14 -0000 Delivered-To: apmail-hadoop-mapreduce-user-archive@hadoop.apache.org Received: (qmail 27407 invoked by uid 500); 14 Nov 2009 12:04:14 -0000 Mailing-List: contact mapreduce-user-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: mapreduce-user@hadoop.apache.org Delivered-To: mailing list mapreduce-user@hadoop.apache.org Received: (qmail 27398 invoked by uid 99); 14 Nov 2009 12:04:13 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 14 Nov 2009 12:04:13 +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 mheimel@googlemail.com designates 209.85.220.215 as permitted sender) Received: from [209.85.220.215] (HELO mail-fx0-f215.google.com) (209.85.220.215) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 14 Nov 2009 12:04:03 +0000 Received: by fxm7 with SMTP id 7so4303457fxm.29 for ; Sat, 14 Nov 2009 04:03:42 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type; bh=dB70Lvm7v0GFAILrOIhHU0OovRT+hvUABadE4LW+Ik0=; b=HAzHKbwCU2SAy/HR1ujj2zdZ5A18lCb248DYqc8ZM0LJ/BxRv44VAIdyQdUd4oKASW 0bMnivfn9JdHMG7olJy4B5NtviW5yGVu3RuEFGWA5zKAFnJIxal5VbcK5H3cpqoAmlCu +OsL05Rpo1rkvPQGwLExSiVhFFl1WJ2ue++To= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=Lpzk1C65pdtYs+fmHU0Myy6fXiKh/jMibD5XnN9sY4n9ay6ECl3w/Fdn+rKwvvGaJE b/QlGNcvju1HLG4Wm9ey/WNiFKnhpQu+yV6fpeaq7VGr9ebrFx5jXv6YxLYEN+cd5Sc4 0h2lLp4+fd+mMd/Pbxjtn9e7zqZetS7lR7G5M= MIME-Version: 1.0 Received: by 10.216.86.14 with SMTP id v14mr1749921wee.183.1258200222816; Sat, 14 Nov 2009 04:03:42 -0800 (PST) Date: Sat, 14 Nov 2009 13:03:42 +0100 Message-ID: <5eb9b7ae0911140403g6f27f77fj83b9bc27e856ecf8@mail.gmail.com> Subject: Why doesnt my mapper speak to me :( From: Max Heimel To: mapreduce-user@hadoop.apache.org Content-Type: text/plain; charset=UTF-8 X-Virus-Checked: Checked by ClamAV on apache.org Hey all, I am currenty trying to write a simple map job that dumps a file to the hdfs. I see that hadoop creates 3 instances of my mapper class (I expected 3, so this is fine :) but then things get a bit confusing for me... First the files don't show up in the file system, which is probably due to some misconfiguration ;) So I tried to let the mapper print some debug messages so I see where it actually fails. But: I just don't seem to be able to get any debug messages out of my mapper. I tried using printing to Sysout/Syseerr and (org.apache.log4j.)Logger.getLogger(MyMapper.class), but there never is any of my debug output in any of the logs created by hadoop: The logged sysout/syserr for the mappers are just empty. The log4j log file isn't even created :( Any ideas what I am doing wrong here? Thanks Max