noodles_ftw
noodles_ftw

Reputation: 1313

How many Meteor apps can you run on 1 server?

I'm currently running 4 Meteor apps (and planning to host much more) on 1 server with the following specs:

Which is running great. But I wonder how far I can go? All the Meteor apps I host have about 200 - 300 visitors each per month and are portfolio websites.

Would I be able to run 100 Meteor apps on this server? 200? 300? 10?

Upvotes: 0

Views: 88

Answers (1)

Robert
Robert

Reputation: 190

On my server, a simple meteor app takes 350-400mb of ram. Yeah... i know that's not a lot of information but maybe it could help.

For me the limitation is mostly RAM usage.

For CPU i haven't noticed almost anything. Depends what computation's are done on the server.

About visitors, NodeJS is made this way so it can handle 10k simultaneous clients on a web server. node.js concurrency

Meteor also need some RAM for each client that is subscribed to some DB collection.

I would suggest you this : (400mb * apps.length) / 32gb = x

Hope it helped.

Upvotes: 1

Related Questions