Created
March 29, 2012 12:49
-
-
Save ngcrawford/2237170 to your computer and use it in GitHub Desktop.
Template for multiprocessing large files line by line
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# encoding: utf-8 | |
import multiprocessing | |
from textwrap import dedent | |
from itertools import izip_longest | |
def process_chunk(d): | |
"""Replace this with your own function | |
that processes data one line at a | |
time""" | |
d = d.strip() + ' processed' | |
return d | |
def grouper(n, iterable, padvalue=None): | |
"""grouper(3, 'abcdefg', 'x') --> | |
('a','b','c'), ('d','e','f'), ('g','x','x')""" | |
return izip_longest(*[iter(iterable)]*n, fillvalue=padvalue) | |
if __name__ == '__main__': | |
# test data | |
test_data = """\ | |
1 some test garbage | |
2 some test garbage | |
3 some test garbage | |
4 some test garbage | |
5 some test garbage | |
6 some test garbage | |
7 some test garbage | |
8 some test garbage | |
9 some test garbage | |
10 some test garbage | |
11 some test garbage | |
12 some test garbage | |
13 some test garbage | |
14 some test garbage | |
15 some test garbage | |
16 some test garbage | |
17 some test garbage | |
18 some test garbage | |
19 some test garbage | |
20 some test garbage""" | |
test_data = dedent(test_data) | |
test_data = test_data.split("\n") | |
# Create pool (p) | |
p = multiprocessing.Pool(4) | |
# Use 'grouper' to split test data into | |
# groups you can process without using a | |
# ton of RAM. You'll probably want to | |
# increase the chunk size considerably | |
# to something like 1000 lines per core. | |
# The idea is that you replace 'test_data' | |
# with a file-handle | |
# e.g., testdata = open(file.txt,'rU') | |
# And, you'd write to a file instead of | |
# printing to the stout | |
for chunk in grouper(10, test_data): | |
results = p.map(process_chunk, chunk) | |
for r in results: | |
print r # replace with outfile.write() |
kinda surprised it created 9 years ago lol
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It was so useful for me! Thanks for sharing!!!