Randomize the choice of the initial ROUNDROBIN node
authorTomas Vondra <[email protected]>
Sun, 11 Jun 2017 13:30:59 +0000 (15:30 +0200)
committerTomas Vondra <[email protected]>
Sat, 17 Jun 2017 21:28:49 +0000 (23:28 +0200)
With roundrobin node, the initial node was always set to the first node
in the list. That works fine when inserting many rows at once (e.g. with
INSERT SELECT), but with single-row inserts this puts all data on the
first node, resulting in unbalanced distribution.

This randomizes the choice of the initial node, so that with single-row
inserts the ROUNDROBIN behaves a bit like RANDOM distribution.

This also removes unnecessary srand() call from RelationBuildLocator(),
located after a call to rand().

src/backend/pgxc/locator/locator.c

index 2c8aa676aea857fbd04f802a0943b263c0e91b7a..4c7772f07dab2687417e9d543dbb5c44b3294528 100644 (file)
@@ -577,7 +577,6 @@ RelationBuildLocator(Relation rel)
                 */
                offset = compute_modulo(abs(rand()), list_length(relationLocInfo->rl_nodeList));
 
-               srand(time(NULL));
                relationLocInfo->roundRobinNode = relationLocInfo->rl_nodeList->head; /* initialize */
                for (j = 0; j < offset && relationLocInfo->roundRobinNode->next != NULL; j++)
                        relationLocInfo->roundRobinNode = relationLocInfo->roundRobinNode->next;
@@ -907,7 +906,8 @@ createLocator(char locatorType, RelationAccessType accessType,
                                                Assert(false);
                                                break;
                                }
-                               locator->roundRobinNode = -1;
+                               /* randomize choice of the initial node */
+                               locator->roundRobinNode = (abs(rand()) % locator->nodeCount) - 1;
                        }
                        else
                        {