npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

parallel-limiter

v1.0.5

Published

Limit parallel Node.js async calls with low performance overhead

Downloads

138

Readme

Parallel Limiter

A simple solution to limit parallel Node.js async calls with low performance overhead.

Quick Start

To parallel-limit a call to an async function or Promise asyncFunction(...) replace with:

limiter.schedule(() => asyncFunction(...params));

See below the two steps in setting up a limiter.

Benchmarks

| Total | Limit | parallel-limit | bottleneck | |----|--------|---------|-------------| | 1,000 | 1,000 | 30% overhead vs no limiter | ~70x more overhead than parallel-limit | | 1,000 | 100 | - | 10x slower than parallel-limit | | 1,000 | 1 | (using faster retry interval) | 1.4x slower than parallel-limit |

Tested using mocked HTTP downloads and real HTTPS server with similar results.

Tests available in the test directory.

These tests show parallel-limiter has up to 70x less overhead than bottleneck and can run up to 10x faster in a typical unit test mocked HTTP request scenario.

Why performance overhead matters

  • Production code may not always hit the rate limits - yet the app run slower
  • Unit tests may run 12-15x faster, e.g. when mocking HTTP connections

Use cases

  • Need to stay within REST API License restrictions, e.g. no more than 10 parallel requests
  • Run your code under AWS Lambda restrictions, e.g. file descriptor and thread limits
  • Avoid hitting Machine memory limits due to multiplying your memory footprint with every parallel call
  • Avoid performance degradation due to CPU overload from too many parallel calls
  • Other scenarios where your app must comply with hardware/platform resource limitations and remote request endpoint rate limits

Prerequisites

You will need to run Node.js 14.x or newer (or Browser equivalent).

How to use

  1. Identify all await calls that should be part of the same limiting criterion
  2. Import the ParallelLimiter class, e.g. from am ES Module:
    import {ParallelLimiter} from 'parallel-limiter';
    This is how to import from a CommonJS module:
    const {ParallelLimiter} = require('parallel-limiter');
  3. Create a limiter passing the parallel call limit (e.g. 100) as follows:
    const limiter = new ParallelLimiter({maxParallel: 100});
  4. Replace every await call that is to be limited by the same limiter:
    const result = await asyncFunction(...params);
    with:
    const result = await limiter.schedule(() => asyncFunction(...params));

Parallel limited Promise.allSettled function

This package also comes with a convenience function allSettledParallelLimited that behaves similar to Promise.allSettled which can be run using a specified parallel limit.

Assuming this Promise.all or Promise.allSettled based code:

const results = Promise.allSettled(task.map(async () => createAPromiseFromTask(task)));

you may add the parallel limiting behavior by importing (from an ES Module):

import {allSettledParallelLimited} from 'parallel-limiter';

or requiring (from a CommonJS modules):

const {allSettledParallelLimited} = require('parallel-limiter');

and changing the Promise.allSettled code to:

const results = allSettledParallelLimited({
   jobs: task,
   jobToPromise: async () => createAPromiseFromTask(task),
   maxParallel: 100,
});

All promises will be run simultaneously without exceeding the number of maxParallel promises (here 100) running at the same time.

Fine tuning

  • In case your code is not fast enough, decrease the retryMs parameter value, e.g. set to 3ms
  • In case your code is using up too much memory, increase the retryMs parameter value, e.g. set to 200ms, e.g.
    const limiter = new ParallelLimiter({maxParallel: 100, retryMs: 3});

Moving to/from bottleneck

package-limiter may be used interchangeably with the bottleneck limiter.schedule() function, allowing you to code against both packages, e.g. if you encounter issues or limitations with one package over the other.

See the test directory for benchmark comparisons and how both packages are used.