91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Streaming執行Python版WordCount

發布時間:2020-06-25 21:33:53 來源:網絡 閱讀:2575 作者:白話 欄目:大數據

一:先寫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-cdh6.5.2/share/hadoop/tools/lib/hadoop-streaming-2.6.0-cdh6.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


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

江油市| 肇东市| 泸州市| 鄂尔多斯市| 深圳市| 雷州市| 汾阳市| 阿勒泰市| 会泽县| 泗阳县| 墨脱县| 万安县| 麦盖提县| 富阳市| 新建县| 赤壁市| 海丰县| 陇南市| 中西区| 滦南县| 阿尔山市| 集安市| 金华市| 满洲里市| 兴和县| 互助| 霍城县| 依安县| 林西县| 彭阳县| 五华县| 民县| 高雄市| 哈密市| 浦江县| 甘谷县| 乐昌市| 安多县| 蛟河市| 周口市| 开阳县|