Questions tagged [requests-per-second]

17 questions
18
votes
3 answers

Erlang (or elixir) performance (requests per second) is slow vs jruby?

Being a rubyist, I decided to take on erlang for high performance, reliable backend. The setup is quite simple: get a post request, write stuff to redis, return statistics. All json. this is also why I care so much about requests per second. Tools…
orotemo
  • 263
  • 1
  • 3
  • 8
7
votes
2 answers

Java based high volume transaction web application

I have next to no experience dealing with high volume transactional websites and recently came across this interesting question. I am interested in knowing where the bottlenecks in a Java web application would occur under high load (thousands of…
JMM
  • 3,922
  • 6
  • 39
  • 46
5
votes
1 answer

How to intrepret values of the ASP.NET Requests/sec performance counter?

If I monitor ASP.NET Requests/sec performance counter every N seconds, how should I interpret the values? Is it number of requests processed during sample interval divided by N? or is it current requests/sec regardless the sample interval?
Peter
  • 51
  • 1
4
votes
3 answers

How do I performance test my ASP.NET MVC website?

I'm wanting to find out how many requests/sec my asp.net mvc site (and asp.net mvc api) can handle. I've googled for some help and stumbled on this great slide show which talks about exactly the things i'm after. They also use a product called…
Pure.Krome
  • 84,693
  • 113
  • 396
  • 647
2
votes
5 answers

100 simultaneous requests on a servlet

I would like to test a sevlet that I 've made with simultaneous requests (100 or 1000 or more). I was searching about it and I found JMeter but I am not quite sure if it does what I want. Do you know how I could do something like that. Do you know…
x_maras
  • 2,177
  • 1
  • 25
  • 34
2
votes
1 answer

How to increase Requests/second with a constant execution time for Asp.NET?

I have a web application which is suffering because of low requests/sec under moderate traffic. The average request execution time is around 200ms per page. To simulate the environment, I created a super simple test page in an Asp.NET 4.0 web…
1
vote
0 answers

How can i display data on my react table each second by adding new row per second using react and react hooks?

I am trying to get json data each second to add as a new row in my react table. In the console it seems data is coming up each second but in the UI none of the data is popping up. Couldn't figure out why any of that table row in not being displayed.…
1
vote
2 answers

How to increment a String value by 1 each second JS

I have a value var x = "2". How can I increment x each second so that one second from when I defined x, x will equal to 3? My code is shown bellow:
1
vote
0 answers

WMI query for Counter of type RateOfCountsPerSecond32 shows raw value instead of persecond value

I have created some custom performance counters form my application to record TotalRequest (numberOfItems32) received and Request received per second (rateOfCountsPerSecond32). These 2 counters works fine and displays proper values in the perfmon.…
VinothNair
  • 614
  • 1
  • 7
  • 24
1
vote
0 answers

How to have continuous connection with MYSQL?

I have an application in JSP, using MYSQL database and Apache 6.0 server. Interfaces : Admin and Client Requirement : Admin should get all the client names who are logged in. There is one text-box, if admin enters any message in text-box and clicks…
Zee
  • 41
  • 2
  • 8
0
votes
0 answers

How to have a maximum RPS metric in CloudWatch without losing the precision?

I’m working on a graph in CloudWatch which will show the maximum requests per second(RPS) at any given time at the past and we would like to have it without the loss of precigion with a time after aggreration happened. By without a loss I mean that…
0
votes
1 answer

How to measure http(s) requests sent per second sent by my executable?

I have a C++ executable which makes use of cURL to make HTTP(s) requests to an external server. Is there a good way for me to determine the requests sent per second? Any way or tool will be helpful.
Test
  • 564
  • 3
  • 12
0
votes
1 answer

Locust - how to delay collection of RPS data until all threads have started

Scenario locust test with gradual spawn-rate, chart looks like a 45-degree angle. I would like to know the RPS of the system while all threads are running. The out-of-the-box RPS value from locust will include RPS values from the beginning of the…
Guy
  • 666
  • 1
  • 10
  • 34
0
votes
2 answers

Apache2: server-status reported value for "requests/sec" is wrong. What am I doing wrong?

I am running Apache2 on Linux (Ubuntu 9.10). I am trying to monitor the load on my server using mod_status. There are 2 things that puzzle me (see cut-and-paste below): The CPU load is reported as a ridiculously small number, whereas, "uptime"…
David Jones
  • 2,139
  • 2
  • 19
  • 20
0
votes
1 answer

Optimizing POSTs-per-second in Turbogears2

In a web game built on Turbogears v2.1.5, logged-in users POST a 16-byte message periodically. The server CPU reaches 100% when the POST rate is 60 POSTs-per-second. (For testing, we have removed all work such as updating the DB with each post--…
1
2