@shutterstock/p-map-iterable
provides several classes that allow processing results of p-map
-style mapper functions by iterating the results as they are completed, with back pressure to limit the number of items that are processed ahead of the consumer.
A common use case for @shutterstock/p-map-iterable
is as a "prefetcher" that will fetch, for example, AWS S3 files in an AWS Lambda function. By prefetching large files the consumer is able to use 100% of the paid-for Lambda CPU time for the JS thread, rather than waiting idle while the next file is fetched. The backpressure (set by maxUnread
) prevents the prefetcher from consuming unlimited memory or disk space by racing ahead of the consumer.
These classes will typically be helpful in batch or queue consumers, not as much in request/response services.
IterableMapper
to fetch up to 5 of the next files while the current file is being processed, then pause until the current file is processed and the next file is consumedIterableQueueMapper.enqueue()
to write the files back to S3 without waiting for them to finish, unless we get more than, say, 3-4 files being uploaded at once, at which point we can pause until the current file is uploaded before we allow queuing another file for upload.enqueue()
and not consume much CPU while waiting for at least 1 upload to finishThe package is available on npm as @shutterstock/p-map-iterable
npm i @shutterstock/p-map-iterable
import { IterableMapper, IterableQueueMapper, IterableQueueMapperSimple } from '@shutterstock/p-map-iterable';
After installing the package, you might want to look at our API Documentation to learn about all the features available.
p-map-iterable
vs p-map
vs p-queue
These diagrams illustrate the differences in operation betweeen p-map
, p-queue
, and p-map-iterable
.
p-map-iterable
p-map
p-queue
IterableMapper
enqueue
methodIterableQueueMapper
errors
property instead of throwing an AggregateError
Iterable
- May rename this before 1.0.0BlockingQueue
dequeue
blocks until an item is available or until all items have been removed, then returns undefined
enqueue
blocks if the queue is fulldone
signals that no more items will be added to the queueIterableMapper
See p-map docs for a good start in understanding what this does.
The key difference between IterableMapper
and pMap
are that IterableMapper
does not return when the entire mapping is done, rather it exposes an iterable that the caller loops through. This enables results to be processed while the mapping is still happening, while optionally allowing for back pressure to slow or stop the mapping if the caller is not consuming items fast enough. Common use cases include prefetching
items from a remote service - the next set of requests are dispatched asyncronously while the current responses are processed and the prefetch requests will pause when the unread queue fills up.
See examples/iterable-mapper.ts for an example.
Run the example with npm run example:iterable-mapper
IterableQueueMapper
IterableQueueMapper
is similar to IterableMapper
but instead of taking an iterable input it instead adds data via the enqueue
method which will block if maxUnread
will be reached by the current number of mapper
's running in parallel.
See examples/iterable-queue-mapper.ts for an example.
Run the example with npm run example:iterable-queue-mapper
IterableQueueMapperSimple
IterableQueueMapperSimple
is similar to IterableQueueMapper
but instead exposing the results as an iterable it discards the results as soon as they are ready and exposes any errors through the errors
property.
See examples/iterable-queue-mapper-simple.ts for an example.
Run the example with npm run example:iterable-queue-mapper-simple
nvm use
npm i
npm run build
npm run lint
npm run test
Generated using TypeDoc