Thanks for your support.
Here is the pastbin: http://pastebin.com/VM41hK9X
And here is the config file:
hadoop@node3:~/hadoop-1.0.3$ cat conf/mapred-site.xml
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
<!-- Put site-specific property overrides in this file. -->
<configuration>
<property>
<name>mapred.job.tracker</name>
<value>localhost:9001</value>
</property>
<property>
<name>dfs.datanode.max.xcievers</name>
<value>4096</value>
</property>
<property>
<name>mapreduce.tasktracker.map.tasks.maximum</name>
<value>6</value>
<description>The maximum number of map tasks that will be run
simultaneously by a task tracker.
</description>
</property>
<property>
<name>mapreduce.tasktracker.reduce.tasks.maximum</name>
<value>6</value>
<description>The maximum number of reduce tasks that will be run
simultaneously by a task tracker.
</description>
</property>
</configuration>
JM
2012/10/11, Jean-Daniel Cryans <[email protected]>:
> On Thu, Oct 11, 2012 at 1:53 PM, Jean-Marc Spaggiari
> <[email protected]> wrote:
>> 2 tasks at the same time, for a total of 25 tasks at the end.
>
> This really sounds like the local job runner.
>
>>
>> Maybe as you are saying, I'm not facing the good jobtracker? I'm
>> running the command line on the master server.
>
> What I said is that you haven't configured HBase to know about your
> job tracker. The fact that they are on the same machine isn't enough.
>
> Although, you are indeed passing by the bin/hadoop command in the row
> counter case... is your job tracker even running? Can we see a full
> log of what happens after you start your job? Use pastebin.com or such
> please.
>
> J-D
>