亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

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

普定县| 金湖县| 永登县| 吕梁市| 启东市| 钟祥市| 岐山县| 湾仔区| 广安市| 怀化市| 象州县| 崇阳县| 修水县| 南汇区| 同心县| 从化市| 绥棱县| 开远市| 义马市| 航空| 肥城市| 上饶市| 兰州市| 萨嘎县| 突泉县| 荆门市| 宜兰市| 锡林浩特市| 南江县| 龙江县| 咸阳市| 当涂县| 九寨沟县| 天等县| 茶陵县| 平邑县| 静安区| 临朐县| 大关县| 德钦县| 嘉义市|