Scaling up – running multiple Notes instances

Now that we’ve got ourselves a running application, you’ll have played around a bit and created, read, updated, and deleted many notes.

Suppose for a moment that this isn’t a toy application, but one that is interesting enough to draw millions of users a day. Serving a high load typically means adding servers, load balancers, and many other things. A core part of this is to have multiple instances of the application running at the same time to spread the load.

Let’s see what happens when you run multiple instances of the Notes application at the same time.

The first thing is to make sure the instances are on different ports. In app.mjs, you’ll see that setting the PORT environment variable controls the port being used. If the PORT variable is not set, it defaults to http://localhost:3000, or what we’ve been using all along.

Let’s open up package.json and add the following lines to the scripts section:

“scripts”: {

“start”: “cross-env DEBUG=notes:* node ./app.mjs”,

“server1”: “cross-env DEBUG=notes:* PORT=3001 node ./app.mjs”,

“server2”: “cross-env DEBUG=notes:* PORT=3002 node ./app.mjs”

},

The server1 script runs on PORT 3001, while the server2 script runs on PORT 3002. Isn’t it nice to have all of this documented in one place?

Then, in one command window, run the following:

$ npm run server1

> notes@0.0.0 server1 /Users/David/chap05/notes

> cross-env DEBUG=notes:* PORT=3001 node ./bin/www

notes:server Listening on port 3001 +0ms

In another command window, run the following:

$ npm run server2

> notes@0.0.0 server2 /Users/David/chap05/notes

> cross-env DEBUG=notes:* PORT=3002 node ./bin/www

notes:server Listening on port 3002 +0ms

This gives us two instances of the Notes application. Use two browser windows to visit http://localhost:3001 and http://localhost:3002. Enter a couple of notes, and you might see something like this:

After editing and adding some notes, your two browser windows could look as in the preceding screenshot. The two instances do not share the same data pool; each is instead running in its own process and memory space. You add a note to one and it does not show on the other screen.

Additionally, because the model code does not persist data anywhere, the notes are not saved. You might have written the greatest Node.js programming book of all time, but as soon as the application server restarts, it’s gone.

Typically, you run multiple instances of an application to scale performance. That’s the old throw more servers at it trick. For this to work, the data, of course, must be shared, and each instance must access the same data source. Typically, this involves a database, and when it comes to user identity information, it might even entail armed guards.

All that means databases, more data models, unit testing, security implementation, a deployment strategy, and much more. Hold on—we’ll get to all of that soon!

Source: Herron David (2020), Node.js Web Development: Server-side web development made easy with Node 14 using practical examples, Packt Publishing.

Leave a Reply

Your email address will not be published. Required fields are marked *