GithubHelp home page GithubHelp logo

Client set max connection about http-client HOT 2 CLOSED

amphp avatar amphp commented on August 22, 2024
Client set max connection

from http-client.

Comments (2)

rdlowrey avatar rdlowrey commented on August 22, 2024

Well, the first order of business is that this setting only limits the number of connections on a per-host basis -- it doesn't limit all connections. Are you observing this behavior for a single host? I.E. if you you request www.google.com many times at once do you see the same thing?

This configuration basically exists to prevent me from getting IP bans from hammering the same hosts with tons of connections at once. When making many concurrent requests to the same host our connections are "checked-in" and "checked-out" with individual requests queued until a connection to the host in question is available.

Second, a new read watcher is created inside the Client class each time a socket connection is checked out. This is expected. The alternative would be to map a single watcher to each socket, but this approach would require the underlying socket lib (Acesync) to notify the client class each time an idle connection was closed.

If you wish to verify that new connections aren't being created in excess of the OP_HOST_CONNECTION_LIMIT you can add some basic print debugging here.

from http-client.

rdlowrey avatar rdlowrey commented on August 22, 2024

I'm closing this for now. Please let me know if you still believe this is an issue.

from http-client.

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.