Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re^3: What's causing the busy wait when using AnyEvent::HTTP

by basiliscos (Pilgrim)
on Apr 11, 2014 at 15:41 UTC ( [id://1081992]=note: print w/replies, xml ) Need Help??


in reply to Re^2: What's causing the busy wait when using AnyEvent::HTTP
in thread What's causing the busy wait when using AnyEvent::HTTP

Thank you for warm tone of your reply and flattering assumptions about my knowledge.

Actually, I have written some kind of proxy, which uses AE::HTTP for backend querying. There I've met the limitation HTTP::MAX_PER_HOST = 4

You request can't be cancelled inside callback, because it is invoked only after http call (successful or unsuccessful).

I think, I do understand well what is load testing and how AE works. It works in single process CPU thread, that means, that it gets some performance boost only during I/O wait operations via processing or enqueueing other requests. So, might reach the limit of parallel requests much earlier, then you'll get 1000 simultaneously running http requests, due to limitations of the single core CPU. So, perl / AE scheduler might be just overloaded in doing http requests, processing results, and switching between contexts.

It may be better to gradually rise the number of simultaneous http requests. According to that metrics: https://github.com/Mons/AnyEvent-HTTP-Server-II AE::HTTPD (written in similar manner as AE::HTTP), serves only about 560 rps (on single CPU core, as I understand). That explains well, that doing 1000 dummy requests, will load your CPU to 100%.

I can advice you to use ab from apache-tools package for simple load testing, because it is written in C, and aimed for loading.

  • Comment on Re^3: What's causing the busy wait when using AnyEvent::HTTP

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1081992]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (2)
As of 2024-04-25 22:56 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found