Reputation: 519
Suppose we have an API endpoint that will receive 100 Million requests a year and suppose our application needs to have at least 95% of those requests handled with less than 30ms. Is there a model to calculate what will be the load for the performance test that can make these tests check if the current system can meet those requirements?
With load, I mean, for instance: in the test, we need to do x
parallel requests and have q
% of them with less than t
ms.
Upvotes: 0
Views: 28
Reputation: 168147
The "model" depends on your application usage patterns, i.e.
/health
or /status
will be very fast and some wildcard search or bulk edit operation will be much longerIn general 100 million requests / year is not that big amount,
So you can use any load testing tool which supports:
Upvotes: 0