Appfog loadbalancing with node.js
NickName:jrajp2184 Ask DateTime:2013-06-23T17:49:47

Appfog loadbalancing with node.js

Will Appfog load balancer forward multiple outstanding requests to the same node.js instance or does it allow only one outstanding request per instance? I couldn't find information on this on Appfog website.

Since one of the advantages of node.js is that a node.js instance can concurrently process multiple requests (with I/O associated with requests being asynchronously processed), if a load balancer only allows one outstanding request per node.js instance, I believe that we are not fully utilizing the power of node.js - am I right?

Copyright Notice:Content Author:「jrajp2184」,Reproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/17259528/appfog-loadbalancing-with-node-js

More about “Appfog loadbalancing with node.js” related questions

Appfog loadbalancing with node.js

Will Appfog load balancer forward multiple outstanding requests to the same node.js instance or does it allow only one outstanding request per instance? I couldn't find information on this on Appfog

Show Detail

run node.js on AppFog?

I uploaded my files to AppFog and I went to the site I just created. But it seems that the site loads only index.html. My node.js file named server.js, maybe I should name it something else? Help?

Show Detail

run node.js on AppFog?

I uploaded my files to AppFog and I went to the site I just created. But it seems that the site loads only index.html. My node.js file named server.js, maybe I should name it something else? Help?

Show Detail

Node.JS application on AppFog responding with 503 Service Unavailable

I'm developing a Node.JS app. When running on localhost everything works fine. After I've deployed it to AppFog, I randomly get 503 Service Unavailable responses either for static resources (served

Show Detail

appfog is unable to install node.js application

I can't get my node.js application to work on appfog. I create a new application on their website. Then in my application directory i run: af login <-- Works and then: af update myapplication...

Show Detail

Node.js TCP Socket Server on AppFog

Given the following simple TCP socket server running on AppFog that echoes back whatever the client sends. var net = require('net'); var server = net.createServer(function (socket) { socket.wri...

Show Detail

Node.js TCP Socket Server on the Cloud [Heroku/AppFog]

Is is possible to run a Node.js TCP Socket oriented application on the Cloud, more specifically on Heroku or AppFog. It's not going to be a web application, but a server for access with a client p...

Show Detail

on AppFog, how to see the console logs on the terminal (node.js)

I would like to be able to see the console logs in my terminal from my node.js App on AppFog. it it very hard to debug without it. I saw something called tunnelling in the documentaion, is this ...

Show Detail

simple proxy server that works on a node.js host like appfog

We'd like to surf the internet through a node.js proxy on appfog. We tried this code: proxy2a.js: var http = require('http'); var port = process.env.VCAP_APP_PORT || 8080; console.log ('the

Show Detail

Running PHP workers on AppFog

I searched and searched and searched but didn't find any resources on that. Is there any way to run a worker in a PHP app on AppFog? I've only found instructions for running Ruby, Node.js and Pyt...

Show Detail