Performance Testing AWS Deployments

Performance Testing AWS DeploymentsShreyas ChaudhariBlockedUnblockFollowFollowingMay 2Janjira Fort, Murud, Maharashtra, India.

Built in the 15th Century.

The overall architecture of our product is like this photo above.

GoalsNinety-nine percent of the page-load times for the users accessing the applications should be less than or equal to two seconds.

Users are based out of continents — North America (New York), Europe (London), Asia (Singapore).

‘n’ Concurrent users should be able to use the application without any page-load lags.

ArchitectureComponents1.

CRM — Researchers enter the data.

2.

Microsoft SQL Server — two databasesa.

CRMDBb.

UserIdentityDB3.

Scooper — Component that picks up data from the CRMDB and puts it in the Event store.

4.

Subscriber — Components that are listening to the Event Store, who pick up the data from the Event Store and push it into MongoDB and Elastic Search.

5.

Middle Tier — Services that pull the data from MongoDB and the Elastic Search and send it to the Front End in the form of REST APIs.

6.

Front End — Data entered by the Researchers to be displayed.

Architecture1.

Researchers enter the data in the CRM.

2.

Data is thereby stored in Microsoft SQL Server Database — CRMDB.

3.

A dedicated table is created in the CRMDB mentioned in Step 2, wherein the data entered in the original schema of the CRMDB is stored in the format for Event Sourcing.

4.

Scooper/Batch Scooper does the job of picking up the data from the Dedicated table from CRMDB in Step 3 and pushes it to the Event Store.

5.

Subscribers pick up the data in the Event Store and push it to MongoDB and Elastic Search.

6.

On the other end, there is a Service-oriented architecture, in which each of the services fetches the data from the Elastic Search and provides the data to the front end in the form of REST APIs.

7.

Front end is a single-page application that consumes the data sent by REST APIs and renders the page.

8.

There is a dedicated Identity server, which manages the identity of the user across all the applications the user has access to as a part of the subscription.

The database that holds details related to the user identity is present in the Microsoft SQL Server Database mentioned in Step 2.

Technology Stack1.

Scooper/Subscriber/Services — .

NET Core2.

Event Store3.

MongoDB4.

Elastic Search5.

Amazon Elastic Search Service6.

ReactJS7.

Amazon EC28.

TeamCityTest Environment ConfigurationThe configuration of the production-like environment that we used for running our performance tests was as in the table below.

Details about each of the Instance types can be found here.

AWS EC2 Instances ConfigurationPerformance Testing ToolsJMeterBlazeMeterSelenium Web DriverPerformance Test TypesLoad Test — It is conducted for validating the performance characteristics of the system when subjected to workload/load volume that is anticipated during the production load.

Conducting this type of test before releasing the system to the market gives confidence and mitigates the risk of losing business due to performance issues.

Spike Test — It is conducted to find out the stability of the system when it is loaded in bursts of very small time, releasing the load quickly.

Endurance Test — It is conducted to find out whether the system is capable of handling expected load without any deterioration of response time/throughput when run for a longer time.

Conducting this type of test before releasing to the market gives the confidence on availability and stability of the system.

Page Load Test — It is conducted to compute the page load times from the end user experience—when the desired number of concurrent users generates a specific amount of load.

StrategyReplicating the load for ‘n’ concurrent users is the first task, especially in the scenarios wherein the number of concurrent users will be on the higher side.

There are two approaches for achieving this:Replicating the end-user behaviour by having automated UI tests that perform operations on the application as the real world user would do.

Using a browser automation library like Selenium Web Driver for writing UI automation, which in turn will mimic the end-user behaviour is an option.

This can be Selenium Grid setup, which will drive user flows on multiple machines.

Second approach is wherein load can be generated on the server for the ‘n-1’ concurrent users using REST APIs.

Then have just one user to execute the UI test flows and thereby compute the page load times.

There may be pros and cons for taking up either of these approaches.

However, we opted for the latter.

JMeter Test — REST APIsLet’s take the example of all the REST API calls made when a specific page loads, as in the snapshot below.

JMeter script for the the corresponding page will be as in the snapshot below.

It consists of all the REST APIs chained together when a specific page loads.

The JMX file in the snapshot above is one-to-one mapping for every API call made in the network tab for the corresponding page load.

Multiple such JMX files were created, which consist of REST APIs chained when the specific pages loaded.

Selenium Web Driver — Page Load TestThe UI test would navigate to the specific page in the application; note the timestamp before clicking on the page, then click on the link, and then note the timestamp when the page load is completed.

This script used to wait for the entire page to be loaded— left to right and top to bottom.

The overall performance test setup was as in the snapshot below:The performance test setup consisted of the BlazeMeter REST API tests mimicking the behaviour of ‘n-1’ users.

The users were equally distributed among London, New York, and Singapore.

At the same time, there were AWS EC2 instances spawned in the same three locations.

There was a Selenium Web Driver test executed on each of the EC2 instances, which would help to compute the page load times.

The Selenium Web Driver tests would perform the following steps:Launch the application URL and login.

Navigate to the page on which the link to be clicked is present.

Note the timestamp (T1).

Click on the link.

Note the timestamp (T2).

Actual Page Load Time = T2 — T1.

BlazeMeter Endurance TestIn order to track the performance of the AWS infrastructure, the following parameters were noted on the AWS console.

Elastic Search — Cluster StatusElastic Search — Search RateElastic Search — HTTP_Requests_By_Response_CodesElastic Search — Indexing LatencyElastic Search — Master CPU UtilisationElastic Search — Master JVM Memory PressureElastic Search — Data Maximum CPU UtilisationElastic Search — Data Maximum JVM Memory PressureMongoDB — CPU UtilisationPublic API— CPU UtilisationUsing the above setup, we were able to performance tune our AWS deployments, uncover the performance leaks, and better optimize our infrastructure.

.

. More details

Leave a Reply