码迷,mamicode.com
首页 > 编程语言 > 详细

Streaming执行Python版WordCount

时间:2017-10-09 21:00:13      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:hadoop   streaming   python   

一:先写map类

import sys
for line in sys.stdin:
line = line.strip( )
words = line.split( )
for word in words:
print(‘%s\t%s‘ % (word, 1))


二:写reduce类

import sys
current_word = None
current_count = 0
word = None
for line in sys.stdin:
line = line.strip()
word, count = line.split(‘\t‘,1)
try:
count = int(count)
except ValueError:
continue
if current_word == word:
current_count += count
else:
if current_word:
print(‘%s\t%s‘ % (current_word,current_count))
current_count = count
current_word = word
if current_word == word:
print(‘%s\t%s‘ % (current_word,current_count))


三:利用hadoop Streaming执行Python的内容。

hadoop jar /home/hadoop/hadoop-2.6.0-cdh5.5.2/share/hadoop/tools/lib/hadoop-streaming-2.6.0-cdh5.5.2.jar  -input /user/hadoop/aa.txt -output /user/hadoop/python_output -mapper "python mapper.py" -reducer "python reducer.py" -file mapper.py -file reducer.py  


说明:

输入和输出路径,本身就是hdfs上的,不需要特殊指定hdfs。

不加黄色部分的引号的话,会报错误:

Error: java.lang.RuntimeException: PipeMapRed.waitOutputThreads(): subprocess failed with code 2

不加粉色部分的内容的话,会报错误:

Error: java.lang.RuntimeException: Error in configuring object


本文出自 “白话” 博客,请务必保留此出处http://feature09.blog.51cto.com/12614993/1970964

Streaming执行Python版WordCount

标签:hadoop   streaming   python   

原文地址:http://feature09.blog.51cto.com/12614993/1970964

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!