Reading:
Server Performance Optimisation Made Easy

Image

Server Performance Optimisation Made Easy

Efficiency vs. Value

Did you know that in software development, a budget spent on server performance optimisation is an investment that will definitely pay off?

In the endless pursuit of new features, we often forget to simply have a look around and look at the product as a whole, at how much the infrastructure meets our expectations and intentions. I’m not talking about whether or not we have the resources to implement these changes, but rather about the picture in our minds of what a perfect project should look like, about an ideal that we would like to approach. This ideal is a comprehensive concept:

And all these components become particularly important when you begin to notice a decline in your product’s performance (web solution, SaaS, server, etc.), when your server is running slow.

But is it the time to upgrade your server’s configuration or to optimise your software? What gives you the best ROI?

From $500 a month we went to only $48, following our optimisation. But how did we get there?

What causes poor performance?

As much as we’d love to state the opposite, there is no universal answer to this. Sometimes the way the solution’s architecture is designed prevents any scalability at all, while in other cases simple upgrade of the hardware will be the most economically feasible option.

The example we’re showing below is quite common though. While investigating a server crash for the client, our support team found confirmation of an old hypothesis that had been troubling us for quite some time: suboptimally written SQL queries run very slowly on large amounts of data, with a heavy CPU load on the server. This resulted in a completely unresponsive web interface until the entire queue of SQL queries was no longer being processed.

Common symptoms: in an existing SaaS accessing large amounts of data causes heavy CPU load on the server, which makes some parts of the UI unresponsive.

How to improve performance: some quick wins

As a quick workaround, we used the so-called delayed execution principle, in which resource-hungry legacy functionality is run in the background and the requestor is later notified as soon as the results are ready.

For a while, both the customer and users were left satisfied, as although this did not strictly solve the company’s performance problems, they were given important features which allowed them to generate more income. In fact, because performance improvements demand dedicated development time and customers will by and large hesitate to put feature development on hold, it was actually a respectable trade-off. Moreover, it allowed us to sufficiently ameliorate any performance issues on the surface level. We kept a close watch on their increasing scale to make sure we could keep them under control.

How to improve a slow server response time

So in the end, how did we solve those underlying problems? Well, over time, a plan was concocted to combat our customer’s legacy issues. The plan required comprehensive refactoring to be performed over multiple levels (with layers ranging from ETL to UI and front-end), and we began to take it step by step. You don’t have to try to eat a whole elephant at once, after all.

Server Performance Optimisation: repay your technical debt

Next, the implementation of these practical steps was as follows: first, we spread refactoring tasks across all of our sprints. This was done in small quantities only, so as to never affect our velocity or upset the customer with a lack of business value. The problems in the code were likewise fixed slowly but surely, and though the victories seemed meager at the time, this was only until we compared the system’s performance before and after our intervention.

Test thoroughly after making changes

One of the ideas that significantly improved our lives was to employ containerisation when deploying our customer’s service. This enabled us to verify that our backup policy would work well with the brand new architecture, and that — should disaster strike the customer’s main server — we could deploy the service from scratch in the shortest possible amount of time. Moving on, we also planned trials for the updated deployment process that would prepare us for the possibility of loss of access to the current server. Having developed a detailed plan from account registration with a new hosting provider to a change in DNS, we successfully overhauled this part of the business continuity action plan.

However, our analysis of the server’s resources showed that when utilising the optimised version of the system — in the same conditions as the live production environment — the latest version of the application consumed noticeably fewer resources.

What are the benefits of refactoring code for server performance optimisation?

The most important benefit for the customer is that the system works stably and quickly, and key features are now processed in real time. By gradually adding refactoring and optimisation tasks to our sprints, we were able to significantly improve the performance of the system while still delivering new functionality.

The second thing that made our customer incredibly happy was the new cost of utilising the server.

So, how much does it cost to have your own server?

It’s simples: always compare

Because part of our deployment process required testing with another provider — to ensure that our software solution could be quickly set up wherever — we were able to compare a variety of different offers and packages. What immediately caught our attention was a specific vendor offering basic 24/7 support that was no different to our customer’s current provider. Another serendipitous discovery was in the hardware configuration of the server.

Assess the impact

We quickly realised that we would no longer be spending big on powerful production and staging CPU-optimised servers, as the updated setup not only displayed better performance but called for a much more modest configuration where the use of vCPU would suffice. In numbers, we went from $500 a month ($350 for the production server + $150 for the staging environment) prior to our optimisation to only $48 (or $30 + $18) a month thereafter. The difference in price, as you can see, is roughly 10 times — which the customer couldn’t help but marvel at.

Is technical debt bad for backend optimisation?

Well, if it in any way impacts your solution’s performance, the short answer is yes.

Once again, we are convinced that in any software project, having an action plan and following it is the first step to achieving quality results. An important attribute of this concept is the promotion of taking small steps. Even with tight deadlines and a beckoning backlog, it never hurts to try to put them into practice, as there is no place for technical problems or accumulating technical debt.

What else is used for web app optimisation?

When it comes to web applications in general, the toolkit of measures, which help to optimise their performance, extends beyond hardware upgrade or software changes.

The most typical instruments used by web developers are:

  • CDN and Caching
  • Prefetching and prerendering
  • Indexes on the DB level
  • Reduced amount of HTTP requests

So that’s it for our server performance optimisation analysis!

Is Your Product Fast Enough?

At SPG, we're capable of solving various performance and optimisation tasks for complex software solutions.

Contact Us

Related Stories

Article_How_To_Build_a_Scalable_Mobile_App_Infrastructure_
March 16, 2021

How To Build a Scalable Mobile App Infrastructure

When looking to build a scalable mobile app infrastructure, there a number of important things that you should always bear in mind.

Cloud infrastructure costs go bad illustration
What Affects a Project Schedule A Load Balancing Story
April 3, 2024

What Affects a Project Schedule: A Load Balancing Story

When assessing the scope of a new project, we always do our best to estimate the required level of effort as accurately as we possibly can. After all, two of the three sides of the iron triangle of project management depend on it: the time and the budget.