Good performance is an asset, and poor performance is a liability for any business website, web app, and mobile app. And to serve the goal of an organization and business, performance plays a vital role.

Faster performance directly relates to customer experience. If the experience is bad, it could affect bounce rates, user satisfaction, search engine ranking, conversion, and revenue.

Slow performance has shown some dangerous results - like site abandonment with some visitors leaving to never return. Observing this as a burning topic among developers and businesses, we decided to come up with a blog that answers major queries about improving Node.js performance.

This blog post carries essential tips shared by Node.js experts to help you improve Node.js performance by scaling your Node.js servers. Regardless of the poor performance, following these proven tips will enable your servers to handle excessive traffic, provide a better user experience, and enhance the performance of your existing Node.js web apps and apps.

Improve-node-js-performance-at-scale-main-image

But before you jump on to the tips, you should first know if the app performs well or poorly. The best practice is to first identify the performance and then apply the tips to fix the performance.

There is no one reason for all Node.js apps' poor performance. To help you identify the reason behind it, experts first follow a standard workflow process. This helps in analyzing and making an informed decision. Follow a step-by-step process and ask questions like;

  • Is it fast enough? If it is fast enough, stop digging into the reason still. You are good to stay with it.

  • Identify the nature of the problem Hunt for the type of problem causing slow performance.

  • Select tools based on a problem Every problem has a unique solution. Once you identify the problem and area, there are different tools to solve different problems. Pick the tool that is made to solve your problem.

  • Measure Measure the severity of the problem using the tool.

  • Identify the location of the problem Problem is not the whole coding structure, but one or more than one location. Recognize the specific location of the problem.

  • Make the slower parts faster Once you are ready with the problem area, tool, and severity, it's time to make the slower parts faster. You can do that by applying the below-mentioned solutions.

  • Measure again Once you have fixed the issue, measure the web app again and see if everything is fine.

  • Go back to step 0 If there is something still, start with zero again. The new problem has a new solution. Keep observing.

However, below are the best practices you can use to improve Node.js performance and scale servers to provide uninterrupted services for a better user experience.

Monitor & Measure Your Application Performance

Before you start improving your application performance, the first step you should take is to monitor and measure its current performance status. This measuring process will help detect the flaws, inefficiencies, and areas where the real problem is.

When done with the measuring, you will need to make the right strategy based on the type of problem you found to get the desired result. To identify the current level of application performance, you would require to run different types of tests like:

Stress testing

It is designed and developed to test the ability of the machine, network, device, or code program. It checks how well a system performs outside of normal working conditions. The main purpose of this testing is to study the system's potential, how much it can tolerate before failing, and how it recovers after failing.

Load testing

It is a process of assessing the application's load, simulating the real-workload, and measuring the response and usage of the application. Furthermore, you can also test the app's potential of how much burden it can bear at the most before leading to failure.

Spike testing

This helps to evaluate your application's behavior when it experiences a massive yet unexpected rise or drop in load.

Scalability testing

It is used to test the load to measure the application's ability during a sudden spike or fall with massive user request loads.

Volume testing

A test performed to figure out the performance or behavior of the application under a huge amount of data.

When you are done performing any one or all of the above testing, you will get several important metrics like Average latency, response times, error rates, requests per second, throughput, CPU and memory usage, concurrent users, etc.

The next step is to re-run the test though you have implemented a specific optimization. This re-testing will help you verify if your changes had the required result you anticipated on the system or app’s performance.

It is also important to keep track of your app’s or system's performance. To do that, you should do (APM) Application Performance Monitoring and maintain the track to observe the performance. There are different monitoring tools and solutions available for APM, we suggest NewRelic and AppSignal.

Both are easy to use. You can easily integrate them into the application. Once it is installed, you simply have to run the command mentioned below.

npm install newrelic

// OR

npx @appsignal/cli install

This will automatically give you track of several performance metrics like response times, throughput, error logs, system availability, host metrics, etc.

Improve-node-js-performance-at-scale-image-01 Improve-node-js-performance-at-scale-image-02 Improve-node-js-performance-at-scale-image-03 Improve-node-js-performance-at-scale-image-04

Caching Helps to Reduce Latency Time

To improve web application performance, Caching the data is one of the most important strategies. The primary aim of caching the data is to increase the speed of data retrieval by:

  • Spending less time on computing operations

  • Doing I/O operations

This means retrieving data from a network or database.

Cache, also known as “short-term computer memory” is a high-speed data storage layer that stores a subset of data. It prevents the frequent request to retrieve data from the primary data storage location and responds to it from the stored data. This saves time, gives a faster response to the query, and delivers a better user experience.

The majority of the requests are common and frequent which does not change often. If your app receives a request for unchanged data, we can store it and use it to respond to the same query in the future. Caching is the ideal option to respond to the same type of request. It will certainly improve the performance and enhance the performance of those requests.

Furthermore, it also helps us to prevent server resources from getting stuck or plunge down unnecessarily for all such redundant computation calls of data.

This was all about the request responded to by the internal server. Now, what about the 3rd party API queries? These are the other classic applicants for caching. Caching will help us in fetching the data from external systems, storing it and safely reusing it for future requests.

In this case, we can store API requests in “Caching Layer” to avoid the additional network request and costs associated with such API calls.

There are a couple of ways to do Caching in an Application,

  1. In-Process Caching Solution
  2. Distributed Caching Solution

In-Process Caching

Store our actively used data in memory, from where we can retrieve it more quickly, Example: node-cache

Install: npm install node-cache --save

Improve-node-js-performance-at-scale-image-05

The drawback with an in-process cache solution is that it's tied to an application process and not perfectly suitable for distributed workflows, especially when caching the mutable objects [an object whose state can be improved after it is created].

Distributed Caching Solution

You can use a distributed caching solution such as Redis or Memcached.

These both solutions run independently on an application. Plus, these are more practical when scaling up the application on multiple servers.

Suggestion

Choose In-Process Caching Solution if your project is a simple small application or a small-scale project.

When you have a plan to resize your application in the future, you can always select Redis as a Distributed Caching Solution.

Improve-node-js-performance-at-scale-image-06 Improve-node-js-performance-at-scale-image-07

I/O Operations with Timeouts

Timeouts are the easiest way to apply while building Node.js applications to prevent unwanted delays from happening. Assume, you own a server that is probably interacting with other external services and which again may be dependent and calling other services.

It seems you don’t have control over your servers. In this case, if any of the services is slow or unresponsive it will drive a slow or bad user experience.

As you don’t have full control over the servers, you cannot guarantee that your dependencies will respond as quickly as they usually do regardless of you not running into these issues. And this is why the timeout concept is important.

Let’s understand this even deeper. A timeout is a wait limit for a user fixed by the developer at the backend and it is set on a request. The reason behind this is, to tell and prepare the client about how long they should wait for a response.

After the request is raised by the client and if not responded to in a predefined time, the connection will automatically get aborted. This prevents the app from getting hanged infinitely.

Reference Example, HTTP requests in Node.js.

Note: By default, Axios call does not set any timeout, so you have to set a request timeout to prevent this by adding:

Improve-node-js-performance-at-scale-image-08

Here, Timeout of 2000ms (2s) is set as the default timeout for all HTTP requests made through axios.

Improve-node-js-performance-at-scale-image-09

Note: Axios timeout value is a read timeout, which is different from a connection timeout. The read timeout is faster and the connection timeout is much lower compared to it.

Read more: Best practices our Node.js developers follow to deliver a flawless app

Stop serving static resources and assets with Node.js

In order to get the best possible performance of your Node.js servers, ensure you never use them as static resources from the server itself such as JavaScript, CSS, or application’s image files, etc. Node.js is not designed with this mindset. So, when serving the assets from the main application consumes precious resources and impacts important business calculations.

Move the task of serving static files to a web server like Nginx. It usually performs optimizations that do not make sense to Node.js. This test shows that Nginx is two times faster at delivering static assets the same as Node.js delivers (using Express static middleware).

Another way to stop serving the static resources is to display static files by setting up a CDN proxy like Amazon CloudFront to cache your static content and serve it to the end-user as close as possible. This activity will prevent Node.js from serving the static resources and allow it to handle only the dynamic requests.

Automate Load Balancer: Scale across Multiple Machines

Splitting the load enhances the life, longevity, and capacity of bearing the massive weight. The funda is clear, the more the audience, the more the space required to manage them.

Improve-node-js-performance-at-scale-image-10

Here also, to scale the performance of the Node.js application, you just have to distribute the traffic to multiple machines. When you divide the traffic into multiple machines, you ensure your users an uninterrupted service.

Read more: What makes Node.js fast? Top 5 use cases for Node.js

Another smart move you can make is by making and pointing multiple load balancers to the same set of servers and requests to provide a fast response to each request and avoid any failure.

NodeJS express an example for load balancing:

Improve-node-js-performance-at-scale-image-11

If load balancing works then you can get the console output look like:

Improve-node-js-performance-at-scale-image-12

Improve Throughput by Cluster

Clustering is to segregate groups with similar traits and assign them into clusters. In your Node.js application, the cluster is used to divide the server horizontally on a single machine by making a separate single port for workers that run concurrently.

It is a simple and common technique to lower downtime, outages, non-responsiveness, and slowdowns by distributing the connections across all the separate clusters so that the CPU cores are utilized to their full potential.

The primary reason for clustering into your Node.js application is it runs on a single thread and cannot take the benefit of multi-core systems properly.

Yes, one thing you can do is, cluster your Node.js server through the cluster module in the standard library.

Code reference from Standard Cluster module:

Improve-node-js-performance-at-scale-image-13

When you run this program, connections sent to port 3000 will be shared between the worker processes. Which will result:

Improve-node-js-performance-at-scale-image-14

By using the PM2 process manager, you get the best option for robust management of Node.js clustering. PM2 allows you to take care of spawning workers, distributing the incoming load between the workers, and stopping or restarting workers. In addition, this also helps us to monitor and tweak the performance of worker processes.

Improve-node-js-performance-at-scale-image-15

Additional tips to better your Node.js app’s performance

You now know the major tips you can use to improvise the performance. But, the tips do not end here. Below we have mentioned some key micro-optimization steps you can consider to improve your Node.js app’s performance at a greater scale.

  • The best always assures the best. When you are in the process of improvising your app’s performance, always use the latest version of Node.js.

  • Dependency usually kills. It steals your creativity, power, and time. Always pay close attention to your dependencies and attempt to omit them by choosing the most performant libraries where possible.

  • Build a basic understanding and coding skills within you so that when you are in trouble and have no time, you can write the code yourself and fix it in real-time. This activity of avoiding the dependencies will help you improve your Node.js app’s performance.

Example: Max use of Build-in Methods and Libraries like, lodash, Node-cache

  • One thing you need to ensure that independent I/O operations should use asynchronous primitives like:
  1. Callbacks
  2. Promises
  3. Async/Await

Using these primitives improve downstream latency and also ensures a seamless operation flow.

Example: List out all independent query calls before you start any implementation and place Parallel query calls by using Promise.all for all such individual independent queries.

This step of listing our independent query calls and using Promise.all will reduce time of each individual connection and query calls from the list upto the one, which usually takes a max time for query response.

Example: Push Individual query calls in an array

Improve-node-js-performance-at-scale-image-16
  • Use Node.js streams for optimal memory efficiency and reduced latency when working with large pieces of data.

  • Ensure Batch Processing for Analytics, Reports or Download / Export sheets

Improve-node-js-performance-at-scale-image-17
  • DB Connections: Ensure DB Connections with Master-Slave Replication. DB connectors must use Secondary Preferred Read Replica OR Master-Slave Replication for DB connections where-ever you want LISTING PURPOSE QUERY CALLS.
Improve-node-js-performance-at-scale-image-18

For MongoDB:

Improve-node-js-performance-at-scale-image-19

For MySql:

Improve-node-js-performance-at-scale-image-20
  • In order to save your database queries from becoming a gridlock, you should practice optimization on a regular cadence and scale them appropriately.

  • Avoid conducting Aggregation queries or Multi Joins.

The best practice is to handle the cases like, Aggregate, Avg, Max etc. is simply to select queries and find alternate ways to solve it.

Example: Instead of using Avg and Max queries, we can collect such results by simple Select query.

Improve-node-js-performance-at-scale-image-21
  • Always use pre-defined Projections for query calls - with any sql or noSql databases, MongoDB and MySql etc.
  • This means, you need to perform the queries for the required columns only. The db query then will run for the required columns and no unwanted columns are fetched.
  • Subqueries should be avoided. If and when required, based on the situation, we can perform smart conditional logics, functions.
  • You have the option to utilize proper indexes for faster search results.
  • Omit query calls in loop. Ignore adding query calls in any loop.
  • You can select a smart conditional approach with a single call and connection. For example, you can prepare an array and use an IN query to collect all data in a single call and connection.

These are a few additional tips for your Node.js app performance optimization and improvisation that you can take care of during the development phase. Not all phases are weak.

Hence, optimize those that you detect needs optimization. Once you identify the hotspots of the application, you work to optimize should start then and that too on a specific area only.

Note: Hotspots may change over time, so you need to keep testing the app. You can keep an eye on any new changes by using tools like NewRelic, AppSignal to track such changes.

Ending Note

In this blog, we discussed a lot about how you or your Node.js developer can conduct a performance test before you jump on directly to improve Node.js performance. This performance test helps to identify the reason behind the poor performance. And also the specific area of your Node.js application that requires treatment.

We’ve also covered several tips with coding examples to give you a clear understanding of how you or your node.js developer can apply the same to scale your Node.js application.

Moreover, with the 6 major tips we discussed above, we have also tried to add value by inserting additional tips intending to give you all that we know to improve your Node.js app performance. This blog not just talks about performance improvement but also how you should do it, the standard process, and the best practice to apply.

All the tips are practically applied in our in-house environment. If you find any issues while running any of them, you can always reach us, and we’ll be happy to help.

Improve-node-js-performance-at-scale-cta-01
author-profile

Rajesh Yadav

Experienced Team Lead with in-depth expertise in developing a powerful and robust backend for enterprise-grade software and web apps. Also, highly skilled in Python, Yii, Node.js, XMPP, and AngularJS.

Related Post