Questions tagged [load-balancing]

The term load balancing is used to describe technology that is used to evenly distribute work across multiple nodes within a network.

Load balancing is a computer networking method for distributing workloads across multiple computers or a computer cluster, network links, central processing units, disk drives, or other resources. Successful load balancing optimizes resource use, maximizes throughput, minimizes response time, and avoids overload. Using multiple components with load balancing instead of a single component may increase reliability through redundancy. Load balancing is usually provided by dedicated software or hardware, such as a multilayer switch or a Domain Name System server Process.

5217 questions
2
votes
1 answer

AWS load balancing based on query string

I have two servers behind a AWS ELB. The request sent to the ELB looks like: Http: //URL?server_id=xxx where xxx specifies the server the client request should be distributed to. So is it possible for AWS ELB to do load balancing based on query…
sheny35
  • 181
  • 3
  • 9
2
votes
1 answer

Saving Tomcat 7 session in MSSQL database

We're trying to put our Spring application to Tomcat 7 cluster. We have MSSQL2008R2 database and want to use it for saving Tomcat session. We added context.xml to META-INF directory with additional Tomcat settings:
SERGE
  • 41
  • 3
2
votes
1 answer

do multiple web dynos make sense in a real-time socket.io node.js app?

i'm developing a node.js backend for a real-time chat app on heroku. As i'm looking at dynos and ways to scale the node.js backend, i can see the advantage that dynos could have on http servers because each dyno can be independent from other dynos…
Alex
  • 10,869
  • 28
  • 93
  • 165
2
votes
2 answers

Access X-Forwarded-Proto in lighttpd Configiuration

I’ve got a lighttpd server behind an AWS load balancer. The ELB handles all the SSL stuff for me and forwards the requests to lighttpd over HTTP on port 80, setting the X-Forwarded-Proto header along the way. As I only want to have one specific page…
Ventzi Zhechev
  • 487
  • 1
  • 4
  • 12
2
votes
1 answer

load balancing elasticsearch nodes for document / index writes and updates?

I am architecting a medium sized elasticsearch cluster (~20 nodes) with the three distinct node types Elasticsearch allows (master, data, and client) I am working on setting up load balancers to receive new documents and document updates for the…
Manchego
  • 755
  • 1
  • 6
  • 14
2
votes
1 answer

Load balancing in JBoss with mod_cluster

Got a general question about load balancing setup in JBoss (7.1.1.Final). I'm trying to setup a clustered JBoss instance with a master and slave node and I'm using the demo app here (https://docs.jboss.org/author/display/AS72/AS7+Cluster+Howto) to…
ssloan
  • 2,226
  • 4
  • 26
  • 40
2
votes
2 answers

MySQL replication - Should I handle load balancing from my client code (PHP)?

In a MySQL master-slave replication enviroment if I have 4 slave servers how can I execute load balanced select queries? Should I write a PHP class to dealing with the 4 slaves or it is possible to address queries to MySQL's own load balancer…
2
votes
1 answer

Java EE form login with load balancer transforming https to http

I have a problem and I believe it boils down to a misfit with our load-balancer, webserver(ihs), https configuration and Java EE form security with j_security_check. I understand that when a client tries to hit a secure page, the server (websphere)…
dr jerry
  • 9,768
  • 24
  • 79
  • 122
2
votes
1 answer

Mininet ~ Load Balacing

I have to work on Mininet, Python, SDN and my objective is to do a simple task: create a network with some switches connected randomly (so the topology is not important), every one with a host connected. In the network I have to do load balancing…
gatb27
  • 31
  • 5
2
votes
2 answers

Windows/.NET Load Distribution & Balancing

Is there a vetted Windows-friendly, or even .NET-native, load-distributing/load-balancing utility out there along the lines of HA Proxy? We have a .NET stack product, and the one piece that we step out of the stack is for load-balancing. We need…
andrewbadera
  • 1,372
  • 9
  • 19
2
votes
2 answers

Google compute engine load balancing not routing properly

I am new to Google compute engine and I am try to setup network load balancing having 2 VMs for serving web pages. For ex, I have 2 VMs - app1 and app2 - both having apache server and serves simple web page. Both VMs are running with Red Hat…
Saravanan S
  • 1,021
  • 1
  • 10
  • 24
2
votes
2 answers

What are the alternate solution(s) for Load-balancing in MySQL database server

Are there any better choices other than using MySQL-proxy to perform Load-balancing in actual database servers? MySQL-proxy is in its alpha edition. So I think this solution is not enough tested.
2
votes
1 answer

Testing specific Azure Web Site Instance

I have an Azure Web Site configured to use multiple (2) instances: I have a service bus that should pass messages (ie Cache Evict) between the instances. I need to test this mechanism. In a conventional (on premise) system I would point a browser…
2
votes
0 answers

What is the best way for communication between cluster nodes

I have an application written in a combination of ASP/VB6/VBScript and ASP.NET/C# that consists of a website part, SOAP-like webservice part and a queue processing part processing incoming files in a hotfolder. We are used to running under load…
Tom
  • 21
  • 1
2
votes
1 answer

Biztalk Server 2009 - Failover Clustering and Network Load Balancing (NLB)

We are planning a Biztalk 2009 set up in which we have 2 Biztalk Application Servers and 2 DB Servers (DB servers being in an Active/Passive Cluster). All servers are running Windows Server 2008 R2. As part of our application, we will have incoming…