Node.js   发布时间:2022-04-24  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了Node.js支持跨服务器的多个负载平衡?大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
我很好奇node.js中的水平scalling
是否可以在机架空间云服务器等多个虚拟服务器上进行负载均衡?
我读到了关于集群插件但我认为它仅适用于具有多核cpu的单个服务器.

解决方法

尝试roundrobin.js为 node-http-proxy

var httpProxy = require('http-proxy');
//
// A simple round-robin load balancing strategy.
//
// First,list the servers you want to use in your rotation.
//
var addresses = [
  {
    host: 'ws1.0.0.0',port: 80
  },{
    host: 'ws2.0.0.0',port: 80
  }
];

httpProxy.createServer(function (req,res,proxy) {
  //
  // On each request,get the first LOCATIOn from the list...
  //
  var target = addresses.shift();

  //
  // ...then proxy to the server whose 'turn' it is...
  //
  proxy.proxyrequest(req,target);

  //
  // ...and then the server you just used becomes the last item in the list.
  //
  addresses.push(target);
});

// Rinse; repeat; enjoy.

大佬总结

以上是大佬教程为你收集整理的Node.js支持跨服务器的多个负载平衡?全部内容,希望文章能够帮你解决Node.js支持跨服务器的多个负载平衡?所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。