Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ rack and is unable to do so as there is only a single rack named
python Example
--------------
```python
#!/usr/bin/python
#!/usr/bin/python3
# this script makes assumptions about the physical environment.
# 1) each rack is its own layer 3 network with a /24 subnet, which
# could be typical where each rack has its own
Expand Down Expand Up @@ -94,9 +94,9 @@ for ip in sys.argv: # loop over lis
address = '{0}/{1}'.format(ip, netmask) # format address string so it looks like 'ip/netmask' to make netaddr work
try:
network_address = netaddr.IPNetwork(address).network # calculate and print network address
print "/{0}".format(network_address)
print("/{0}".format(network_address))
except:
print "/rack-unknown" # print catch-all value if unable to calculate network address
print("/rack-unknown") # print catch-all value if unable to calculate network address
```

bash Example
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -416,27 +416,28 @@ To use Aggregate, simply specify "-reducer aggregate":
-output myOutputDir \
-mapper myAggregatorForKeyCount.py \
-reducer aggregate \
-file myAggregatorForKeyCount.py \
-file myAggregatorForKeyCount.py

The python program myAggregatorForKeyCount.py looks like:

#!/usr/bin/python
#!/usr/bin/python3

import sys;
import sys

def generateLongCountToken(id):
return "LongValueSum:" + id + "\t" + "1"

def main(argv):
line = sys.stdin.readline();
line = sys.stdin.readline()
try:
while line:
line = line[:-1];
fields = line.split("\t");
print generateLongCountToken(fields[0]);
line = sys.stdin.readline();
line = line[:-1]
fields = line.split("\t")
print(generateLongCountToken(fields[0]))
line = sys.stdin.readline()
except "end of file":
return None

if __name__ == "__main__":
main(sys.argv)

Expand Down