Last active
January 27, 2020 13:08
-
-
Save wrunk/b689be4b59270c32441c to your computer and use it in GitHub Desktop.
Python multiprocessing pool with queues
This file contains 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
from multiprocessing.pool import ThreadPool as Pool | |
from multiprocessing import Queue as PQueue | |
import Queue | |
my_dict = { | |
'url1': 'url2', | |
'url3': 'url4', | |
} | |
my_q = PQueue() | |
def test_p(uq): | |
q, url = uq[0], uq[1] | |
q.put(url, False) | |
def main(): | |
global my_dict | |
global my_q | |
print "Going to process (%d)" % len(my_dict.keys() + my_dict.values()) | |
p = Pool(processes=8) | |
print p.map(test_p, [(my_q, url) for url in my_dict.keys() + my_dict.values()]) | |
its = [] | |
while True: | |
# If we go more than 30 seconds without something, die | |
try: | |
print "Waiting for item from queue for up to 5 seconds" | |
i = my_q.get(True, 5) | |
print "found %s from the queue !!" % i | |
its.append(i) | |
except Queue.Empty: | |
print "Caught queue empty exception, done" | |
break | |
print "processed %d items, completion successful" % len(its) | |
p.close() | |
p.join() | |
if __name__ == '__main__': | |
main() | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Very nice. Thanks.