Eu instalei o hadoop-1.0.3 e executei um programa de amostra wordcount com sucesso no meu 14.04 seguindo este link .
Eu tentei escrever programas em python seguindo aqui .
Eu copiei o seguinte código,
#!/usr/bin/env python
import sys
# input comes from STDIN (standard input)
for line in sys.stdin:
# remove leading and trailing whitespace
line = line.strip()
# split the line into words
words = line.split()
# increase counters
for word in words:
# write the results to STDOUT (standard output);
# what we output here will be the input for the
# Reduce step, i.e. the input for reducer.py
#
# tab-delimited; the trivial word count is 1
print '%s\t%s' % (word, 1)
cole em um editor de texto e salve o arquivo como
/home/hadoopuser/mapper.py
Nota: Meu nome de usuário do hadoop é hadoopuser
E com permissão,
hadoopuser@arul-PC:~$ sudo chmod +X /home/hadoopuser/mapper.py
Além de salvar o código a seguir em /home/hadoopuser/reducer.py
#!/usr/bin/env python
from operator import itemgetter
import sys
current_word = None
current_count = 0
word = None
# input comes from STDIN
for line in sys.stdin:
# remove leading and trailing whitespace
line = line.strip()
# parse the input we got from mapper.py
word, count = line.split('\t', 1)
# convert count (currently a string) to int
try:
count = int(count)
except ValueError:
# count was not a number, so silently
# ignore/discard this line
continue
# this IF-switch only works because Hadoop sorts map output
# by key (here: word) before it is passed to the reducer
if current_word == word:
current_count += count
else:
if current_word:
# write result to STDOUT
print '%s\t%s' % (current_word, current_count)
current_count = count
current_word = word
# do not forget to output the last word if needed!
if current_word == word:
print '%s\t%s' % (current_word, current_count)
E assim, dada permissão para executar,
hadoopuser@arul-PC:~$ sudo chmod +X /home/hadoopuser/reducer.py
Quando tentei,
hadoopuser@arul-PC:~$ echo "AAA ACC ABC AAA AAA ADD arul " | /home/hadoopuser/mapper.py
Recebi resposta como
-su: /home/hadoopuser/mapper.py: Permission denied
Eu também tentei com sudo
estou recebendo a mesma resposta. Por favor me dê uma solução.