Skip to main content

Thin MapReduce-like layer on top of the Python multiprocessing library.

Project description

Thin MapReduce-like layer on top of the Python multiprocessing library.

PyPI version and link.

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

Examples

Word-Document Index

Suppose we have some functions that we can use to build an index of randomly generated words:

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:

start = timer()
pool = mr4mp.pool()
pool.mapreduce(index, merge, range(100))
print("Finished in " + str(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 we had instead explicitly specified 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).

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mr4mp-0.0.4.0.tar.gz (2.3 kB view details)

Uploaded Source

File details

Details for the file mr4mp-0.0.4.0.tar.gz.

File metadata

  • Download URL: mr4mp-0.0.4.0.tar.gz
  • Upload date:
  • Size: 2.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for mr4mp-0.0.4.0.tar.gz
Algorithm Hash digest
SHA256 33429d37b75a22318d60fd0d2a00f1b6a4b7bcf46a7861cf57a072db217fee88
MD5 de29885218b1b3d005793df8c68df00e
BLAKE2b-256 ebd8c75084757d21c89b89b33768df1819e07557a21e52a4c20e6b96e7a0c4b7

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page