mirror of https://github.com/citusdata/citus.git
Do not connection re-use for intermediate results
/*
* Colocated intermediate results are just files and not required to use
* the same connections with their co-located shards. So, we are free to
* use any connection we can get.
*
* Also, the current connection re-use logic does not know how to handle
* intermediate results as the intermediate results always truncates the
* existing files. That's why, we use one connection per intermediate
* result.
*/
(cherry picked from commit 5d5a357487
)
pull/4693/head
parent
51560f9644
commit
23951c562e
|
@ -261,7 +261,8 @@ static CopyShardState * GetShardState(uint64 shardId, HTAB *shardStateHash,
|
||||||
copyOutState, bool isCopyToIntermediateFile);
|
copyOutState, bool isCopyToIntermediateFile);
|
||||||
static MultiConnection * CopyGetPlacementConnection(HTAB *connectionStateHash,
|
static MultiConnection * CopyGetPlacementConnection(HTAB *connectionStateHash,
|
||||||
ShardPlacement *placement,
|
ShardPlacement *placement,
|
||||||
bool stopOnFailure);
|
bool stopOnFailure,
|
||||||
|
bool colocatedIntermediateResult);
|
||||||
static bool HasReachedAdaptiveExecutorPoolSize(List *connectionStateHash);
|
static bool HasReachedAdaptiveExecutorPoolSize(List *connectionStateHash);
|
||||||
static MultiConnection * GetLeastUtilisedCopyConnection(List *connectionStateList,
|
static MultiConnection * GetLeastUtilisedCopyConnection(List *connectionStateList,
|
||||||
char *nodeName, int nodePort);
|
char *nodeName, int nodePort);
|
||||||
|
@ -2253,8 +2254,9 @@ CitusCopyDestReceiverStartup(DestReceiver *dest, int operation,
|
||||||
|
|
||||||
/* define the template for the COPY statement that is sent to workers */
|
/* define the template for the COPY statement that is sent to workers */
|
||||||
CopyStmt *copyStatement = makeNode(CopyStmt);
|
CopyStmt *copyStatement = makeNode(CopyStmt);
|
||||||
|
bool colocatedIntermediateResults =
|
||||||
if (copyDest->intermediateResultIdPrefix != NULL)
|
copyDest->intermediateResultIdPrefix != NULL;
|
||||||
|
if (colocatedIntermediateResults)
|
||||||
{
|
{
|
||||||
copyStatement->relation = makeRangeVar(NULL, copyDest->intermediateResultIdPrefix,
|
copyStatement->relation = makeRangeVar(NULL, copyDest->intermediateResultIdPrefix,
|
||||||
-1);
|
-1);
|
||||||
|
@ -2291,13 +2293,21 @@ CitusCopyDestReceiverStartup(DestReceiver *dest, int operation,
|
||||||
RecordRelationAccessIfNonDistTable(tableId, PLACEMENT_ACCESS_DML);
|
RecordRelationAccessIfNonDistTable(tableId, PLACEMENT_ACCESS_DML);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* For all the primary (e.g., writable) nodes, reserve a shared connection.
|
* Colocated intermediate results do not honor citus.max_shared_pool_size,
|
||||||
* We do this upfront because we cannot know which nodes are going to be
|
* so we don't need to reserve any connections. Each result file is sent
|
||||||
* accessed. Since the order of the reservation is important, we need to
|
* over a single connection.
|
||||||
* do it right here. For the details on why the order important, see
|
|
||||||
* the function.
|
|
||||||
*/
|
*/
|
||||||
EnsureConnectionPossibilityForPrimaryNodes();
|
if (!colocatedIntermediateResults)
|
||||||
|
{
|
||||||
|
/*
|
||||||
|
* For all the primary (e.g., writable) nodes, reserve a shared connection.
|
||||||
|
* We do this upfront because we cannot know which nodes are going to be
|
||||||
|
* accessed. Since the order of the reservation is important, we need to
|
||||||
|
* do it right here. For the details on why the order important, see
|
||||||
|
* the function.
|
||||||
|
*/
|
||||||
|
EnsureConnectionPossibilityForPrimaryNodes();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -3438,7 +3448,8 @@ InitializeCopyShardState(CopyShardState *shardState,
|
||||||
}
|
}
|
||||||
|
|
||||||
MultiConnection *connection =
|
MultiConnection *connection =
|
||||||
CopyGetPlacementConnection(connectionStateHash, placement, stopOnFailure);
|
CopyGetPlacementConnection(connectionStateHash, placement, stopOnFailure,
|
||||||
|
isCopyToIntermediateFile);
|
||||||
if (connection == NULL)
|
if (connection == NULL)
|
||||||
{
|
{
|
||||||
failedPlacementCount++;
|
failedPlacementCount++;
|
||||||
|
@ -3534,11 +3545,40 @@ LogLocalCopyExecution(uint64 shardId)
|
||||||
* then it reuses the connection. Otherwise, it requests a connection for placement.
|
* then it reuses the connection. Otherwise, it requests a connection for placement.
|
||||||
*/
|
*/
|
||||||
static MultiConnection *
|
static MultiConnection *
|
||||||
CopyGetPlacementConnection(HTAB *connectionStateHash, ShardPlacement *placement, bool
|
CopyGetPlacementConnection(HTAB *connectionStateHash, ShardPlacement *placement,
|
||||||
stopOnFailure)
|
bool stopOnFailure, bool colocatedIntermediateResult)
|
||||||
{
|
{
|
||||||
uint32 connectionFlags = FOR_DML;
|
if (colocatedIntermediateResult)
|
||||||
char *nodeUser = CurrentUserName();
|
{
|
||||||
|
/*
|
||||||
|
* Colocated intermediate results are just files and not required to use
|
||||||
|
* the same connections with their co-located shards. So, we are free to
|
||||||
|
* use any connection we can get.
|
||||||
|
*
|
||||||
|
* Also, the current connection re-use logic does not know how to handle
|
||||||
|
* intermediate results as the intermediate results always truncates the
|
||||||
|
* existing files. That's why we we use one connection per intermediate
|
||||||
|
* result.
|
||||||
|
*
|
||||||
|
* Also note that we are breaking the guarantees of citus.shared_pool_size
|
||||||
|
* as we cannot rely on optional connections.
|
||||||
|
*/
|
||||||
|
uint32 connectionFlagsForIntermediateResult = 0;
|
||||||
|
MultiConnection *connection =
|
||||||
|
GetNodeConnection(connectionFlagsForIntermediateResult, placement->nodeName,
|
||||||
|
placement->nodePort);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* As noted above, we want each intermediate file to go over
|
||||||
|
* a separate connection.
|
||||||
|
*/
|
||||||
|
ClaimConnectionExclusively(connection);
|
||||||
|
|
||||||
|
/* and, we cannot afford to handle failures when anything goes wrong */
|
||||||
|
MarkRemoteTransactionCritical(connection);
|
||||||
|
|
||||||
|
return connection;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Determine whether the task has to be assigned to a particular connection
|
* Determine whether the task has to be assigned to a particular connection
|
||||||
|
@ -3546,6 +3586,7 @@ CopyGetPlacementConnection(HTAB *connectionStateHash, ShardPlacement *placement,
|
||||||
*/
|
*/
|
||||||
ShardPlacementAccess *placementAccess = CreatePlacementAccess(placement,
|
ShardPlacementAccess *placementAccess = CreatePlacementAccess(placement,
|
||||||
PLACEMENT_ACCESS_DML);
|
PLACEMENT_ACCESS_DML);
|
||||||
|
uint32 connectionFlags = FOR_DML;
|
||||||
MultiConnection *connection =
|
MultiConnection *connection =
|
||||||
GetConnectionIfPlacementAccessedInXact(connectionFlags,
|
GetConnectionIfPlacementAccessedInXact(connectionFlags,
|
||||||
list_make1(placementAccess), NULL);
|
list_make1(placementAccess), NULL);
|
||||||
|
@ -3634,6 +3675,7 @@ CopyGetPlacementConnection(HTAB *connectionStateHash, ShardPlacement *placement,
|
||||||
connectionFlags |= REQUIRE_CLEAN_CONNECTION;
|
connectionFlags |= REQUIRE_CLEAN_CONNECTION;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
char *nodeUser = CurrentUserName();
|
||||||
connection = GetPlacementConnection(connectionFlags, placement, nodeUser);
|
connection = GetPlacementConnection(connectionFlags, placement, nodeUser);
|
||||||
if (connection == NULL)
|
if (connection == NULL)
|
||||||
{
|
{
|
||||||
|
|
|
@ -493,7 +493,7 @@ BEGIN;
|
||||||
(2 rows)
|
(2 rows)
|
||||||
|
|
||||||
ROLLBACK;
|
ROLLBACK;
|
||||||
-- INSERT SELECT with RETURNING/ON CONFLICT clauses should honor shared_pool_size
|
-- INSERT SELECT with RETURNING/ON CONFLICT clauses does not honor shared_pool_size
|
||||||
-- in underlying COPY commands
|
-- in underlying COPY commands
|
||||||
BEGIN;
|
BEGIN;
|
||||||
SELECT pg_sleep(0.1);
|
SELECT pg_sleep(0.1);
|
||||||
|
@ -502,7 +502,9 @@ BEGIN;
|
||||||
|
|
||||||
(1 row)
|
(1 row)
|
||||||
|
|
||||||
INSERT INTO test SELECT i FROM generate_series(0,10) i RETURNING *;
|
-- make sure that we hit at least 4 shards per node, where 20 rows
|
||||||
|
-- is enough
|
||||||
|
INSERT INTO test SELECT i FROM generate_series(0,20) i RETURNING *;
|
||||||
a
|
a
|
||||||
---------------------------------------------------------------------
|
---------------------------------------------------------------------
|
||||||
0
|
0
|
||||||
|
@ -516,10 +518,20 @@ BEGIN;
|
||||||
8
|
8
|
||||||
9
|
9
|
||||||
10
|
10
|
||||||
(11 rows)
|
11
|
||||||
|
12
|
||||||
|
13
|
||||||
|
14
|
||||||
|
15
|
||||||
|
16
|
||||||
|
17
|
||||||
|
18
|
||||||
|
19
|
||||||
|
20
|
||||||
|
(21 rows)
|
||||||
|
|
||||||
SELECT
|
SELECT
|
||||||
connection_count_to_node
|
connection_count_to_node > current_setting('citus.max_shared_pool_size')::int
|
||||||
FROM
|
FROM
|
||||||
citus_remote_connection_stats()
|
citus_remote_connection_stats()
|
||||||
WHERE
|
WHERE
|
||||||
|
@ -527,10 +539,10 @@ BEGIN;
|
||||||
database_name = 'regression'
|
database_name = 'regression'
|
||||||
ORDER BY
|
ORDER BY
|
||||||
hostname, port;
|
hostname, port;
|
||||||
connection_count_to_node
|
?column?
|
||||||
---------------------------------------------------------------------
|
---------------------------------------------------------------------
|
||||||
3
|
t
|
||||||
3
|
t
|
||||||
(2 rows)
|
(2 rows)
|
||||||
|
|
||||||
ROLLBACK;
|
ROLLBACK;
|
||||||
|
|
|
@ -338,14 +338,16 @@ BEGIN;
|
||||||
hostname, port;
|
hostname, port;
|
||||||
ROLLBACK;
|
ROLLBACK;
|
||||||
|
|
||||||
-- INSERT SELECT with RETURNING/ON CONFLICT clauses should honor shared_pool_size
|
-- INSERT SELECT with RETURNING/ON CONFLICT clauses does not honor shared_pool_size
|
||||||
-- in underlying COPY commands
|
-- in underlying COPY commands
|
||||||
BEGIN;
|
BEGIN;
|
||||||
SELECT pg_sleep(0.1);
|
SELECT pg_sleep(0.1);
|
||||||
INSERT INTO test SELECT i FROM generate_series(0,10) i RETURNING *;
|
-- make sure that we hit at least 4 shards per node, where 20 rows
|
||||||
|
-- is enough
|
||||||
|
INSERT INTO test SELECT i FROM generate_series(0,20) i RETURNING *;
|
||||||
|
|
||||||
SELECT
|
SELECT
|
||||||
connection_count_to_node
|
connection_count_to_node > current_setting('citus.max_shared_pool_size')::int
|
||||||
FROM
|
FROM
|
||||||
citus_remote_connection_stats()
|
citus_remote_connection_stats()
|
||||||
WHERE
|
WHERE
|
||||||
|
|
Loading…
Reference in New Issue