Giter VIP home page Giter VIP logo

Comments (2)

mcollina avatar mcollina commented on June 16, 2024 1

I think you are hitting some kind of DDoS protection or kernel limit. Limiting the maximum number of sockets per hosts work:

import { fetch, Agent, setGlobalDispatcher } from 'undici';

setGlobalDispatcher(new Agent({
  connections: 100
}));
const p = []
for (let i = 0; i < 1000; i++) {
  p.push(fetch('http://example.org/').then(re => console.log(re.status)));
}
await Promise.all(p);

  • keeping an internal record of pending requests, if an identical request is already pending re-use the response across the multiple pending requests
  • keeping a cache of resolved requests and taking advantage of the expiry headers. Note that http://example.org/ has a 1 week expiry

These are not implemented (yet), I would recommend open a different issue to discuss them. They could be a great contribution from a volunteer.

from undici.

metcoder95 avatar metcoder95 commented on June 16, 2024 1

keeping an internal record of pending requests, if an identical request is already pending re-use the response across the multiple pending requests
keeping a cache of resolved requests and taking advantage of the expiry headers. Note that http://example.org/ has a 1 week expiry

This sounds like a good interceptor

from undici.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.