Serving with asyncio, multiprocessing, and batching
Project description
mpservice
Utilities for Python concurrency, including
-
Serving with multiprocessing to make full use of multiple cores, and batching to take advantage of vectorized computation if some components of the service have that capability.
One use case is machine learning model serving, although the code is generic and not restricted to this particular use case.
-
Stream processing, i.e. processing a long, possibly infinite stream of input data, with multiple operators in the pipeline. A main use case is that one or more of the operators is I/O bound (think: calling an external service), hence can benefit from concurrency. Both sync and async interfaces are provided.
The serving and streaming utilities can be combined because a mpservice.mpserver.MPServer
instance, while doing heavy-lifting in other processes, acts as an
I/O bound operator in the main process. Indeed, mpservice.mpserver.MPServer
provides methods stream
and async_stream
for using the server to process data streams.
The package also contains some other related utilities.
To install, do pip install mpservice
.
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
Hashes for mpservice-0.9.4-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | bc59181689f88c6153c6e54eca82ddf62768eea751077acb53aca7a18efa1618 |
|
MD5 | dc18f17bbc91e922d104c8ebf688f348 |
|
BLAKE2b-256 | b7813cb3728641a8e07af9b31901c698bf90f9b62d97c749c5132f724d7d08d9 |