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

hydra-publisher

v1.0.2

Published

[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com)

Downloads

4

Readme

Hydra Async Pool Pulisher

PRs Welcome

Architecture sample

Hydra Async Pool is an open-source project designed to manage and limit asynchronous concurrency in high availability and high resource-demanding environments. This tool is essential for applications that need to restrict the number of simultaneous executions of certain tasks due to rate limits or resource constraints.

Introduction

In high-demand environments, managing the execution of asynchronous concurrent tasks is crucial and hard. Whether dealing with services that impose rate limits, databases with connection limits, or systems with constrained resources, you need a solution that can handle asynchronous concurrency gracefully. Hydra Async Pool provides a robust and flexible way to manage and limit the number of concurrent asynchronous jobs, ensuring your system remains stable and performs optimally.

Features

  • Concurrency Limiting: Define the maximum number of asynchronous concurrent jobs to prevent brake rate limits or resource exhaustion.
  • Redis Integration: Uses Redis for efficient and reliable job queue management.
  • Job States Management: Track and manage job states, including pending, executing, and finished jobs.
  • Real-time Updates: Subscribe to job updates for real-time monitoring and control.
  • Scalability: Designed to scale with your application's needs, making it suitable for both small and large deployments.

Hydra Async Pool

You will need to setup and install the Hydra Async Pool from [here](https://github.com/not-empty/hydra.

instalation

Install the publisher in all your projects that need to publish and finish jobs

npm install hydra-publisher

Publish/Finish

Now just publish and finish jobs as you want to, The Hydra Async Pool will manage the concurrence and assures that you always have your maximum limit respected.

The Hydra Publisher handles the communication between job publishers, worker nodes, and the job manager. By publishing new jobs and reporting finished jobs, the manager can effectively orchestrate job pooling and ensure that concurrency limits are respected

Usage

Publishing

import { HydraPublisher } from 'hydra-publisher';

const publisher = new HydraPublisher({ redisOptions: { url: 'redis://localhost:6379' } });

const jobId = await publisher.addJob({ task: 'exampleTask' });
console.log(`Job added with ID: ${jobId}`);

Finishing

import { HydraPublisher } from 'hydra-publisher';

const publisher = new HydraPublisher({ redisOptions: { url: 'redis://localhost:6379' } });

// After completing the job
await publisher.finishJob(jobId);
console.log(`Job ${jobId} finished`);

By following this setup, the Hydra Async Pool will be able to orchestrate the job pooling, manage concurrency, and ensure efficient job execution across your system.

Not Empty Foundation - Free codes, full minds