Streaming執行Python版WordCount

來源:互聯網
上載者:User

標籤:hadoop   streaming   python   

一:先寫map類

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


二:寫reduce類

import syscurrent_word = Nonecurrent_count = 0word = Nonefor line in sys.stdin:line = line.strip()word, count = line.split(‘\t‘,1)try:count = int(count)except ValueError:continueif current_word == word:current_count += countelse:if current_word:print(‘%s\t%s‘ % (current_word,current_count))current_count = countcurrent_word = wordif 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

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.