Skip to main content

Load Testing

Meaning of Load Testing is to provide constantly or steadily  load for a software to check that how software is responding in increasing load without significant performance degradation. Load Testing is put load over the system to check the response. We increase the limit until the threshold limit. In Load Testing we determine the system limit in normal load and peak load limit of the system. If we increase the load then peak to check system response this will called the Stress Testing.
A Load test enable you to measure response times, throughput rates and resource utilization levels and to identify out application's breaking point.

So in Load Testing we check the threshold limit of the system that the how much load a system to bear. Load Testing is the non functionality Testing.

Load Testing is needed where multiple users accessing the same function concurrently so in here we need to verify that how much user can access same function concurrently and set the threshold so that if more then threshold user access the same function, we can put some condition so that we can save the data lost.

In Load Testing we check that if number of user increased then how our system using the Network, CPU , Memory and what is the response time of the system.

In Load Testing, we can generate a virtual environment to match with real environment to check that how our system will behave in real environment.

Load Testing can be performed in two ways.
  • Endurance Testing: Also called Soak Testing. In this testing, we provide the continues significant load for significant time to test the application. Suppose you are testing a function in 1 hour and then you testing the same function for 3 hours so when more time then there may be chance of Memory Leaks issue. 
  • Volume Testing: In this type of Testing, We put the huge load for the limited time to check the behavior of the Application. Suppose you want the Volume Test then you need to increase the size of the database so that it can accept the heavy load so in this testing we check the performance of database with increasing volume.

Example of Load Testing
  • Downloading a series of large file from Internet
  • Running multiple application on Computer or Server simultaneously
  • Assigning many jobs to printer in a queue
  • Subjecting to a server with large amount of email traffic
  • Reading and writing the data from a file simultaneously. 


Comments

Popular posts from this blog

How to Put Load on a Script in JMeter

In last post we discussed about how to record a test script and Firefox settings to run the script. In this post we will discuss about how the Thread Group will work, how can we put n number of users to perform load testing, In JMeter by using Thread Group, we can create virtual users. Thread Group is a set of thread which work in same scenario. There are multiple thread group are available which is use to configure how the virtual users interest with the application, How much load maintain and till how much time load maintain.

How to take the Screenshot in Selenium WebDriver?

If we want to take the screenshot then we have to convert our WebDriver object into the screenshot object. we need to change the behavior of the drive to take the screenshot . We can do it by casting

JMeter Overview Description

In this article we will go through the multiple section of JMeter and describe the tool information. we will discuss about every component of JMeter tool in this Article so that you can hands on while working on script on JMeter about these components.