中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

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

临武县| 赫章县| 屯昌县| 佛山市| 赤壁市| 广南县| 玛多县| 赫章县| 沂水县| 漳州市| 无极县| 高要市| 灵丘县| 岳池县| 富锦市| 江永县| 阿克| 枣庄市| 张北县| 安仁县| 鄂托克旗| 南乐县| 乃东县| 温泉县| 石河子市| 巨鹿县| 卓资县| 招远市| 阳西县| 泾阳县| 合作市| 丘北县| 南漳县| 丰城市| 乌拉特后旗| 新兴县| 巩义市| 张家港市| 仁化县| 洛阳市| 额敏县|