-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathreducer.py
48 lines (37 loc) · 1.14 KB
/
reducer.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# -*- coding: utf-8 -*-
"""reducer.ipynb
Automatically generated by Colaboratory.
Original file is located at
https://colab.research.google.com/drive/1YzJ-vUsO5VYCyMrfPMow3s2IdxXkyQ0i
"""
from operator import itemgetter
import sys
current_word = None
current_count = 0
word = None
# input comes from STDIN
for line in sys.stdin:
# remove leading and trailing whitespace
line = line.strip()
line=line.lower()
# parse the input we got from mapper.py
word, count = line.split('\t', 1)
try:
count = int(count)
except ValueError:
#count was not a number, so silently
#ignore/discard this line
continue
# this IF-switch only works because Hadoop sorts map output
# by key (here: word) before it is passed to the reducer
if current_word == word:
current_count += count
else:
if current_word:
# write result to STDOUT
print ('%s\t%s' % (current_word, current_count))
current_count = count
current_word = word
# do not forget to output the last word if needed!
if current_word == word:
print( '%s\t%s' % (current_word, current_count))