Thin MapReduce-like layer that wraps the Python multiprocessing library.
Project description
Thin MapReduce-like layer that wraps the Python multiprocessing library.
Purpose
This package provides a streamlined interface for the built-in Python multiprocessing library. The interface makes it possible to parallelize in a succinct way (sometimes using only one line of code) a data workflow that can be expressed in a MapReduce-like form. More background information about this package’s design and implementation, as well a detailed use case, can be found in a related article.
Package Installation and Usage
The package is available on PyPI:
python -m pip install mr4mp
The library can be imported in the usual way:
import mr4mp
Word-Document Index Example
Suppose we have some functions that we can use to build an index of randomly generated words:
from random import choice from string import ascii_lowercase def word(): # Generate a random 7-letter "word". return ''.join(choice(ascii_lowercase) for _ in range(7)) def index(id): # Build an index mapping some random words to an identifier. return {w:{id} for w in {word() for _ in range(100)}} def merge(i, j): # Merge two index dictionaries i and j. return {k:(i.get(k,set()) | j.get(k,set())) for k in i.keys() | j.keys()}
We can then construct an index in the following way:
from timeit import default_timer start = default_timer() pool = mr4mp.pool() pool.mapreduce(index, merge, range(100)) pool.close() print("Finished in " + str(default_timer()-start) + "s using " + str(len(pool)) + " process(es).")
The above might yield the following output:
Finished in 0.664681524217187s using 2 process(es).
Suppose that we instead explicitly specify that only one process can be used:
pool = mr4mp.pool(1)
After the above modification, we might see the following output from the code block:
Finished in 2.23329004518571s using 1 process(es).
Documentation
The documentation can be generated automatically from the source files using Sphinx:
cd docs python -m pip install -r requirements.txt sphinx-apidoc -f -E --templatedir=_templates -o _source .. ../setup.py && make html
Testing and Conventions
All unit tests are executed and their coverage is measured when using nose (see setup.cfg for configuration details):
python -m pip install nose coverage nosetests
Some unit tests are included in the module itself and can be executed using doctest:
python mr4mp/mr4mp.py -v
Style conventions are enforced using Pylint:
python -m pip install pylint pylint mr4mp
Contributions
In order to contribute to the source code, open an issue or submit a pull request on the GitHub page for this library.
Versioning
Beginning with version 0.1.0, the version number format for this library and the changes to the library associated with version number increments conform with Semantic Versioning 2.0.0.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file mr4mp-2.2.2.tar.gz
.
File metadata
- Download URL: mr4mp-2.2.2.tar.gz
- Upload date:
- Size: 7.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.26.0 setuptools/58.1.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.8.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 29e7636bbc53b2f767713993fbf85cdad3bc9c8de578a33b3a4945de78f9e3ed |
|
MD5 | 3e3a584f6030f858dbdaa1ca8142742e |
|
BLAKE2b-256 | 18d666c7b87890d368acc979fb0e05149ee49e15b90d6274ca5c065456ebd624 |
Provenance
File details
Details for the file mr4mp-2.2.2-py3-none-any.whl
.
File metadata
- Download URL: mr4mp-2.2.2-py3-none-any.whl
- Upload date:
- Size: 6.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.26.0 setuptools/58.1.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.8.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6dc1ac0dd374b6d5b99a800f82ed88fc42252c589e184ac6d1813a14c3268348 |
|
MD5 | fe4cfa3d3c1f01587099515fb0505b50 |
|
BLAKE2b-256 | ffade6a99198c01d21c816e0b9e7c6ac5f23c4d964251de1507dffe1d1bc3dfe |