Skip to content
This repository was archived by the owner on Feb 4, 2022. It is now read-only.

Adds load balancing to connection pool #419

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 22 additions & 9 deletions lib/connection/pool.js
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,6 @@ var Pool = function(topology, options) {

// Number of consecutive timeouts caught
this.numberOfConsecutiveTimeouts = 0;
// Current pool Index
this.connectionIndex = 0;

// event handlers
const pool = this;
Expand Down Expand Up @@ -1069,15 +1067,30 @@ function _execute(self) {
break;
}

var connection = null;
const connections = self.availableConnections.filter(conn => conn.workItems.length === 0);
// Load balance our pool connections, sending next workItem to connection with least number of already-pending workItems
var tmpConn = null;
var workItemsLen = 0;
var min = Number.POSITIVE_INFINITY;
var connections = [];

for (var i = 0; i < self.availableConnections.length; i++) {
tmpConn = self.availableConnections[i];
workItemsLen = tmpConn.workItems.length;

if (workItemsLen < min) {
min = workItemsLen;
connections = [tmpConn];
} else if (workItemsLen === min) {
connections.push(tmpConn);
}
}

// No connection found that has no work on it, just pick one for pipelining
if (connections.length === 0) {
connection =
self.availableConnections[self.connectionIndex++ % self.availableConnections.length];
var connection = null;
if (connections.length === 1) {
connection = connections[0];
} else {
connection = connections[self.connectionIndex++ % connections.length];
// We have multiple connections with an equal low-number of workItems, pick a random one
connection = connections[Math.floor(Math.random() * connections.length)];
}

// Is the connection connected
Expand Down