-
Notifications
You must be signed in to change notification settings - Fork 80
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Why not load-balancing the static resources as well? #33
Comments
Interesting question 👍 |
NodeJs is not a load balancing static content. So do meteor. That's why we don't do. Cluster is main for DDP load balancing. For static But if your app is using a lot of static resources, you should use a CDN to Hope this answers your question.
|
I use Amazon S3 |
So HotCode pushes of Our app is not an website, so the initial load of the static resources is not an issue. |
They are pushed once to your server when you deploy but then served to your clients via the meteor internal HTTP server (based on Node), not DDP. |
Yes. your meteor app is work just like it is. On Mon, Mar 23, 2015 at 2:41 PM boustanihani [email protected]
|
So, how can we make use all the CPUS, rather than just one? (when downloading a hot-code-push) |
I'm using meteor-cluster + meteor-up I wanted to ask if this is way has no conflicts? I will have no issues in adding clusters or scaling etc? I love your packages and just decided to use static landing page separated from meteor app and enable cloudflare for static content. My mup server is on port 3333
This setup is hopefully trouble free meteor-up with meteor-cluster meteor app? Thanks! |
Think of a hot code push update. You have 1000 clients to be updated, but only use one server/core!!
The text was updated successfully, but these errors were encountered: