Questions tagged [load-balancing]
The load-balancing tag has no summary.
45 questions
0 votes
2 answers
552 views
Load Balancing of requests coming from a single client
I have a question regarding load balancing of a service. My load balancing requirement is as follows: I will have multiple application servers for a non-http service. Application servers will be ...
2 votes
1 answer
225 views
Granularity of API Gateways to Service Balancers
OSS API Gateways typically come bundled with built-in load-balancing capabilities. We see this with Netflix Zuul and Kong. In a service-oriented architecture, where many microservices are talking to ...
1 vote
0 answers
174 views
Load balancing the load balancers
Currently I have a system where I have installed HAProxy on one machine and my other 3 machines serves the webapps and the fourth machine for the database. Now I need to add another load balancer in ...
1 vote
1 answer
2k views
What performance benefits does a Redis cluster have over having all machines connect to a single Redis node? [closed]
Suppose I have data that easily fits in memory in a redis database. The redis server runs as a single service on a single process on a single machine. Let's say I have a 100 different machines connect ...
1 vote
2 answers
355 views
Alternatives to pessimistic locking in the DBMS for load balancing
A simplified version of my problem looks like this: the database contains two tables: one contains account balances (Accounts) the other contains account withdrawal and deposit requests (Requests) ...
1 vote
1 answer
241 views
How can an anycast IP address handle millions of RPS (requests per second)
So, in terms of systems design: given a highly scalable system being served through a single load-balanced anycast IP address, when that system receives a load in the order of (hundreds of) millions ...
2 votes
4 answers
425 views
Reverse Load Balancer: Out Balancer?
Load balancing in is a common topic, but there isn't as much said about load balancing out. I may have an application that can prepare 1mm requests/s but is unable to send them all out at that speed ...
1 vote
1 answer
90 views
Poll based database operations with a load balanced application
I have a .NET Core application that is hosted as multiple load balanced instances (separate servers, obviously pointing to the same database). I have written a service within the application that ...