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

atlas-concurrent-queue

v1.0.0

Published

Async job queue that limits the number of concurrent jobs.

Downloads

3

Readme

atlas-concurrent-queue

Async job queue that limits the number of concurrent jobs.

Travis


install

npm install --save atlas-concurrent-queue

why

I was writing a totally legal file downloader and I needed to run the downloads in parallel, but not all at once otherwise we'd run into performance and spamming problems.

examples

single queue

Let's assume we have some file downloading API and we're trying to upload the downloaded files to our personal server. The queue's API is dead simple -- you instantiate a queue and then push jobs onto it:

const ConcurrentQueue = require("atlas-concurrent-queue");
const downloadFile = require("./my-file-downloader");
const uploadFile = require("./my-file-uploader");
const urls = require("./url-list");
const destinationUrl = require("./dest-url")

const concurrency = 10
const queue = new ConcurrentQueue(concurrency);

// urls.length === 2000
for (let i = urls.length; i--;){
  queue.push(done => {
    downloadFile(urls[i], contents => {
      done();
      uploadFile(`${destinatonUrl}?index=${i}`, contents, () => {
        // no-op, don't care about result of write
      })
    })
  })
}

In the example above, we have 2000 download jobs, but no more than 10 are running at any given time. This helps keep us under the radar and prevents us from overloading our system. You might notice that we called done() before we started uploading the files to our server. This means that the uploading isn't actually limited in concurrency; we could easily have more than 10 uploads being attempted at once if our personal server is weak. This could be fixed by calling done in the uploadFile callback, but then we run into potential problems if the download server and upload server operate at different speeds.

multiple queues

The example above can run into problems because we aren't pacing the upload jobs, so let's fix it by adding a second queue:

...
const downloadConcurrency = 10;
const uploadConcurrency = 5;
const downloadQueue = new ConcurrentQueue(downloadConcurrency);
const uploadQueue = new ConcurrentQueue(uploadConcurrency);

// urls.length === 2000
for (let i = urls.length; i--;){
  downloadQueue.push(downloadDone => {
    downloadFile(urls[i], contents => {
      downloadDone();
      uploadQueue.push(uploadDone => {
        uploadFile(`${destinatonUrl}?index=${i}`, contents, uploadDone)        
      })
    })
  })
}

Now, we won't be running more than 5 upload jobs at any given time, in addition to limiting the concurrency of the download jobs.

todo

dynamic concurrency

It might be interesting to implement a dynamic concurrency that can react to changes in bandwidth. For example, we might want to run only N downloads at a given time based on network factors.

capturing errors and data

Should this be implemented? See caveats below.

caveats

capturing errors and data

There's no way to capture errors or results through the done callback. I wanted this queue to do as little work as possible. If you need to capture errors or results, do it at the scope you're writing your jobs in.

done callback

Don't forget to wrap your async functions with a done callback acceptor, because that's how the queue knows when to spin up the next job in the line.

streams

You might have noticed we aren't using streams in the examples above. This is for simplicity. With tasks like this, it's better to use streams to limit your memory usage.