mirror of https://github.com/citusdata/citus.git
602 lines
14 KiB
C
602 lines
14 KiB
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* remote_commands.c
|
|
* Helpers to make it easier to execute command on remote nodes.
|
|
*
|
|
* Copyright (c) 2016, Citus Data, Inc.
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
|
|
#include "postgres.h"
|
|
#include "pgstat.h"
|
|
|
|
#include "libpq-fe.h"
|
|
|
|
#include "distributed/connection_management.h"
|
|
#include "distributed/remote_commands.h"
|
|
#include "lib/stringinfo.h"
|
|
#include "miscadmin.h"
|
|
#include "storage/latch.h"
|
|
|
|
|
|
/* GUC, determining whether statements sent to remote nodes are logged */
|
|
bool LogRemoteCommands = false;
|
|
|
|
static bool FinishConnectionIO(MultiConnection *connection, bool raiseInterrupts);
|
|
|
|
/* simple helpers */
|
|
|
|
/*
|
|
* IsResponseOK checks whether the result is a successful one.
|
|
*/
|
|
bool
|
|
IsResponseOK(PGresult *result)
|
|
{
|
|
ExecStatusType resultStatus = PQresultStatus(result);
|
|
|
|
if (resultStatus == PGRES_SINGLE_TUPLE || resultStatus == PGRES_TUPLES_OK ||
|
|
resultStatus == PGRES_COMMAND_OK)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
|
|
/*
|
|
* ForgetResults clears a connection from pending activity.
|
|
*
|
|
* XXX: In the future it might be a good idea to use use PQcancel() if results
|
|
* would require network IO.
|
|
*/
|
|
void
|
|
ForgetResults(MultiConnection *connection)
|
|
{
|
|
while (true)
|
|
{
|
|
PGresult *result = NULL;
|
|
const bool dontRaiseErrors = false;
|
|
|
|
result = GetRemoteCommandResult(connection, dontRaiseErrors);
|
|
if (result == NULL)
|
|
{
|
|
break;
|
|
}
|
|
if (PQresultStatus(result) == PGRES_COPY_IN)
|
|
{
|
|
PQputCopyEnd(connection->pgConn, NULL);
|
|
|
|
/* TODO: mark transaction as failed, once we can. */
|
|
}
|
|
PQclear(result);
|
|
}
|
|
}
|
|
|
|
|
|
/*
|
|
* SqlStateMatchesCategory returns true if the given sql state (which may be
|
|
* NULL if unknown) is in the given error category. Note that we use
|
|
* ERRCODE_TO_CATEGORY macro to determine error category of the sql state and
|
|
* expect the caller to use the same macro for the error category.
|
|
*/
|
|
bool
|
|
SqlStateMatchesCategory(char *sqlStateString, int category)
|
|
{
|
|
bool sqlStateMatchesCategory = false;
|
|
int sqlState = 0;
|
|
int sqlStateCategory = 0;
|
|
|
|
if (sqlStateString == NULL)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
sqlState = MAKE_SQLSTATE(sqlStateString[0], sqlStateString[1], sqlStateString[2],
|
|
sqlStateString[3], sqlStateString[4]);
|
|
|
|
sqlStateCategory = ERRCODE_TO_CATEGORY(sqlState);
|
|
if (sqlStateCategory == category)
|
|
{
|
|
sqlStateMatchesCategory = true;
|
|
}
|
|
|
|
return sqlStateMatchesCategory;
|
|
}
|
|
|
|
|
|
/* report errors & warnings */
|
|
|
|
/*
|
|
* Report libpq failure that's not associated with a result.
|
|
*/
|
|
void
|
|
ReportConnectionError(MultiConnection *connection, int elevel)
|
|
{
|
|
char *nodeName = connection->hostname;
|
|
int nodePort = connection->port;
|
|
|
|
ereport(elevel, (errmsg("connection error: %s:%d", nodeName, nodePort),
|
|
errdetail("%s", PQerrorMessage(connection->pgConn))));
|
|
}
|
|
|
|
|
|
/*
|
|
* ReportResultError reports libpq failure associated with a result.
|
|
*/
|
|
void
|
|
ReportResultError(MultiConnection *connection, PGresult *result, int elevel)
|
|
{
|
|
/* we release PQresult when throwing an error because the caller can't */
|
|
PG_TRY();
|
|
{
|
|
char *sqlStateString = PQresultErrorField(result, PG_DIAG_SQLSTATE);
|
|
char *messagePrimary = PQresultErrorField(result, PG_DIAG_MESSAGE_PRIMARY);
|
|
char *messageDetail = PQresultErrorField(result, PG_DIAG_MESSAGE_DETAIL);
|
|
char *messageHint = PQresultErrorField(result, PG_DIAG_MESSAGE_HINT);
|
|
char *messageContext = PQresultErrorField(result, PG_DIAG_CONTEXT);
|
|
|
|
char *nodeName = connection->hostname;
|
|
int nodePort = connection->port;
|
|
int sqlState = ERRCODE_INTERNAL_ERROR;
|
|
|
|
if (sqlStateString != NULL)
|
|
{
|
|
sqlState = MAKE_SQLSTATE(sqlStateString[0],
|
|
sqlStateString[1],
|
|
sqlStateString[2],
|
|
sqlStateString[3],
|
|
sqlStateString[4]);
|
|
}
|
|
|
|
/*
|
|
* If the PGresult did not contain a message, the connection may provide a
|
|
* suitable top level one. At worst, this is an empty string.
|
|
*/
|
|
if (messagePrimary == NULL)
|
|
{
|
|
char *lastNewlineIndex = NULL;
|
|
|
|
messagePrimary = PQerrorMessage(connection->pgConn);
|
|
lastNewlineIndex = strrchr(messagePrimary, '\n');
|
|
|
|
/* trim trailing newline, if any */
|
|
if (lastNewlineIndex != NULL)
|
|
{
|
|
*lastNewlineIndex = '\0';
|
|
}
|
|
}
|
|
|
|
ereport(elevel, (errcode(sqlState), errmsg("%s", messagePrimary),
|
|
messageDetail ? errdetail("%s", messageDetail) : 0,
|
|
messageHint ? errhint("%s", messageHint) : 0,
|
|
messageContext ? errcontext("%s", messageContext) : 0,
|
|
errcontext("while executing command on %s:%d",
|
|
nodeName, nodePort)));
|
|
}
|
|
PG_CATCH();
|
|
{
|
|
PQclear(result);
|
|
PG_RE_THROW();
|
|
}
|
|
PG_END_TRY();
|
|
}
|
|
|
|
|
|
/*
|
|
* LogRemoteCommand logs commands send to remote nodes if
|
|
* citus.log_remote_commands wants us to do so.
|
|
*/
|
|
void
|
|
LogRemoteCommand(MultiConnection *connection, const char *command)
|
|
{
|
|
if (!LogRemoteCommands)
|
|
{
|
|
return;
|
|
}
|
|
|
|
ereport(LOG, (errmsg("issuing %s", command),
|
|
errdetail("on server %s:%d", connection->hostname, connection->port)));
|
|
}
|
|
|
|
|
|
/* wrappers around libpq functions, with command logging support */
|
|
|
|
|
|
/*
|
|
* ExecuteCriticalRemoteCommand executes a remote command that is critical
|
|
* to the transaction. If the command fails then the transaction aborts.
|
|
*/
|
|
void
|
|
ExecuteCriticalRemoteCommand(MultiConnection *connection, const char *command)
|
|
{
|
|
int querySent = 0;
|
|
PGresult *result = NULL;
|
|
bool raiseInterrupts = true;
|
|
|
|
querySent = SendRemoteCommand(connection, command);
|
|
if (querySent == 0)
|
|
{
|
|
ReportConnectionError(connection, ERROR);
|
|
}
|
|
|
|
result = GetRemoteCommandResult(connection, raiseInterrupts);
|
|
if (!IsResponseOK(result))
|
|
{
|
|
ReportResultError(connection, result, ERROR);
|
|
}
|
|
|
|
PQclear(result);
|
|
ForgetResults(connection);
|
|
}
|
|
|
|
|
|
/*
|
|
* ExecuteOptionalRemoteCommand executes a remote command. If the command fails a WARNING
|
|
* is emitted but execution continues.
|
|
*
|
|
* could return 0, QUERY_SEND_FAILED, or RESPONSE_NOT_OKAY
|
|
* result is only set if there was no error
|
|
*/
|
|
int
|
|
ExecuteOptionalRemoteCommand(MultiConnection *connection, const char *command,
|
|
PGresult **result)
|
|
{
|
|
int querySent = 0;
|
|
PGresult *localResult = NULL;
|
|
bool raiseInterrupts = true;
|
|
|
|
querySent = SendRemoteCommand(connection, command);
|
|
if (querySent == 0)
|
|
{
|
|
ReportConnectionError(connection, WARNING);
|
|
return QUERY_SEND_FAILED;
|
|
}
|
|
|
|
localResult = GetRemoteCommandResult(connection, raiseInterrupts);
|
|
if (!IsResponseOK(localResult))
|
|
{
|
|
ReportResultError(connection, localResult, WARNING);
|
|
PQclear(localResult);
|
|
ForgetResults(connection);
|
|
return RESPONSE_NOT_OKAY;
|
|
}
|
|
|
|
*result = localResult;
|
|
return 0;
|
|
}
|
|
|
|
|
|
/*
|
|
* SendRemoteCommand is a PQsendQuery wrapper that logs remote commands, and
|
|
* accepts a MultiConnection instead of a plain PGconn. It makes sure it can
|
|
* send commands asynchronously without blocking (at the potential expense of
|
|
* an additional memory allocation).
|
|
*/
|
|
int
|
|
SendRemoteCommandParams(MultiConnection *connection, const char *command,
|
|
int parameterCount, const Oid *parameterTypes,
|
|
const char *const *parameterValues)
|
|
{
|
|
PGconn *pgConn = connection->pgConn;
|
|
bool wasNonblocking = false;
|
|
int rc = 0;
|
|
|
|
LogRemoteCommand(connection, command);
|
|
|
|
/*
|
|
* Don't try to send command if connection is entirely gone
|
|
* (PQisnonblocking() would crash).
|
|
*/
|
|
if (!pgConn)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
wasNonblocking = PQisnonblocking(pgConn);
|
|
|
|
/* make sure not to block anywhere */
|
|
if (!wasNonblocking)
|
|
{
|
|
PQsetnonblocking(pgConn, true);
|
|
}
|
|
|
|
rc = PQsendQueryParams(pgConn, command, parameterCount, parameterTypes,
|
|
parameterValues, NULL, NULL, 0);
|
|
|
|
/* reset nonblocking connection to its original state */
|
|
if (!wasNonblocking)
|
|
{
|
|
PQsetnonblocking(pgConn, false);
|
|
}
|
|
|
|
return rc;
|
|
}
|
|
|
|
|
|
/*
|
|
* SendRemoteCommand is a PQsendQuery wrapper that logs remote commands, and
|
|
* accepts a MultiConnection instead of a plain PGconn. It makes sure it can
|
|
* send commands asynchronously without blocking (at the potential expense of
|
|
* an additional memory allocation).
|
|
*/
|
|
int
|
|
SendRemoteCommand(MultiConnection *connection, const char *command)
|
|
{
|
|
return SendRemoteCommandParams(connection, command, 0, NULL, NULL);
|
|
}
|
|
|
|
|
|
/*
|
|
* ReadFirstColumnAsText reads the first column of result tuples from the given
|
|
* PGresult struct and returns them in a StringInfo list.
|
|
*/
|
|
List *
|
|
ReadFirstColumnAsText(PGresult *queryResult)
|
|
{
|
|
List *resultRowList = NIL;
|
|
const int columnIndex = 0;
|
|
int64 rowIndex = 0;
|
|
int64 rowCount = 0;
|
|
|
|
ExecStatusType status = PQresultStatus(queryResult);
|
|
if (status == PGRES_TUPLES_OK)
|
|
{
|
|
rowCount = PQntuples(queryResult);
|
|
}
|
|
|
|
for (rowIndex = 0; rowIndex < rowCount; rowIndex++)
|
|
{
|
|
char *rowValue = PQgetvalue(queryResult, rowIndex, columnIndex);
|
|
|
|
StringInfo rowValueString = makeStringInfo();
|
|
appendStringInfoString(rowValueString, rowValue);
|
|
|
|
resultRowList = lappend(resultRowList, rowValueString);
|
|
}
|
|
|
|
return resultRowList;
|
|
}
|
|
|
|
|
|
/*
|
|
* GetRemoteCommandResult is a wrapper around PQgetResult() that handles interrupts.
|
|
*
|
|
* If raiseInterrupts is true and an interrupt arrives, e.g. the query is
|
|
* being cancelled, CHECK_FOR_INTERRUPTS() will be called, which then throws
|
|
* an error.
|
|
*
|
|
* If raiseInterrupts is false and an interrupt arrives that'd otherwise raise
|
|
* an error, GetRemoteCommandResult returns NULL, and the transaction is
|
|
* marked as having failed. While that's not a perfect way to signal failure,
|
|
* callers will usually treat that as an error, and it's easy to use.
|
|
*
|
|
* Handling of interrupts is important to allow queries being cancelled while
|
|
* waiting on remote nodes. In a distributed deadlock scenario cancelling
|
|
* might be the only way to resolve the deadlock.
|
|
*/
|
|
PGresult *
|
|
GetRemoteCommandResult(MultiConnection *connection, bool raiseInterrupts)
|
|
{
|
|
PGconn *pgConn = connection->pgConn;
|
|
bool wasNonblocking = false;
|
|
PGresult *result = NULL;
|
|
|
|
/*
|
|
* Short circuit tests around the more expensive parts of this
|
|
* routine. This'd also trigger a return in the, unlikely, case of a
|
|
* failed/nonexistant connection.
|
|
*/
|
|
if (!PQisBusy(pgConn))
|
|
{
|
|
return PQgetResult(connection->pgConn);
|
|
}
|
|
|
|
wasNonblocking = PQisnonblocking(pgConn);
|
|
|
|
/* make sure not to block anywhere */
|
|
PQsetnonblocking(pgConn, true);
|
|
|
|
if (!FinishConnectionIO(connection, raiseInterrupts))
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
/* no IO should be necessary to get result */
|
|
Assert(!PQisBusy(pgConn));
|
|
|
|
result = PQgetResult(connection->pgConn);
|
|
|
|
PQsetnonblocking(pgConn, wasNonblocking);
|
|
|
|
return result;
|
|
}
|
|
|
|
|
|
/*
|
|
* PutRemoteCopyData is a wrapper around PQputCopyData() that handles
|
|
* interrupts.
|
|
*
|
|
* Returns false if PQputCopyData() failed, true otherwise.
|
|
*/
|
|
bool
|
|
PutRemoteCopyData(MultiConnection *connection, const char *buffer, int nbytes)
|
|
{
|
|
PGconn *pgConn = connection->pgConn;
|
|
bool wasNonblocking = false;
|
|
int copyState = 0;
|
|
bool success = false;
|
|
|
|
if (PQstatus(pgConn) != CONNECTION_OK)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
wasNonblocking = PQisnonblocking(pgConn);
|
|
|
|
PQsetnonblocking(pgConn, true);
|
|
|
|
copyState = PQputCopyData(pgConn, buffer, nbytes);
|
|
|
|
if (copyState == 1)
|
|
{
|
|
/* successful */
|
|
success = true;
|
|
}
|
|
else if (copyState == -1)
|
|
{
|
|
success = false;
|
|
}
|
|
else
|
|
{
|
|
bool allowInterrupts = true;
|
|
success = FinishConnectionIO(connection, allowInterrupts);
|
|
}
|
|
|
|
PQsetnonblocking(pgConn, wasNonblocking);
|
|
return success;
|
|
}
|
|
|
|
|
|
/*
|
|
* PutRemoteCopyEnd is a wrapper around PQputCopyEnd() that handles
|
|
* interrupts.
|
|
*
|
|
* Returns false if PQputCopyEnd() failed, true otherwise.
|
|
*/
|
|
bool
|
|
PutRemoteCopyEnd(MultiConnection *connection, const char *errormsg)
|
|
{
|
|
PGconn *pgConn = connection->pgConn;
|
|
bool wasNonblocking = false;
|
|
int copyState = 0;
|
|
bool success = false;
|
|
|
|
if (PQstatus(pgConn) != CONNECTION_OK)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
wasNonblocking = PQisnonblocking(pgConn);
|
|
|
|
PQsetnonblocking(pgConn, true);
|
|
|
|
copyState = PQputCopyEnd(pgConn, errormsg);
|
|
|
|
if (copyState == 1)
|
|
{
|
|
/* successful */
|
|
success = true;
|
|
}
|
|
else if (copyState == -1)
|
|
{
|
|
success = false;
|
|
}
|
|
else
|
|
{
|
|
bool allowInterrupts = true;
|
|
success = FinishConnectionIO(connection, allowInterrupts);
|
|
}
|
|
|
|
PQsetnonblocking(pgConn, wasNonblocking);
|
|
return success;
|
|
}
|
|
|
|
|
|
/*
|
|
* FinishConnectionIO performs pending IO for the connection, while accepting
|
|
* interrupts.
|
|
*
|
|
* See GetRemoteCommandResult() for documentation of interrupt handling
|
|
* behaviour.
|
|
*
|
|
* Returns true if IO was successfully completed, false otherwise.
|
|
*/
|
|
static bool
|
|
FinishConnectionIO(MultiConnection *connection, bool raiseInterrupts)
|
|
{
|
|
PGconn *pgConn = connection->pgConn;
|
|
int socket = PQsocket(pgConn);
|
|
|
|
Assert(pgConn);
|
|
Assert(PQisnonblocking(pgConn));
|
|
|
|
if (raiseInterrupts)
|
|
{
|
|
CHECK_FOR_INTERRUPTS();
|
|
}
|
|
|
|
/* perform the necessary IO */
|
|
while (true)
|
|
{
|
|
int sendStatus = 0;
|
|
int rc = 0;
|
|
int waitFlags = WL_POSTMASTER_DEATH | WL_LATCH_SET;
|
|
|
|
/* try to send all pending data */
|
|
sendStatus = PQflush(pgConn);
|
|
|
|
/* if sending failed, there's nothing more we can do */
|
|
if (sendStatus == -1)
|
|
{
|
|
return false;
|
|
}
|
|
else if (sendStatus == 1)
|
|
{
|
|
waitFlags |= WL_SOCKET_WRITEABLE;
|
|
}
|
|
|
|
/* if reading fails, there's not much we can do */
|
|
if (PQconsumeInput(pgConn) == 0)
|
|
{
|
|
return false;
|
|
}
|
|
if (PQisBusy(pgConn))
|
|
{
|
|
waitFlags |= WL_SOCKET_READABLE;
|
|
}
|
|
|
|
if ((waitFlags & (WL_SOCKET_READABLE | WL_SOCKET_WRITEABLE)) == 0)
|
|
{
|
|
/* no IO necessary anymore, we're done */
|
|
return true;
|
|
}
|
|
|
|
#if (PG_VERSION_NUM >= 100000)
|
|
rc = WaitLatchOrSocket(MyLatch, waitFlags, socket, 0, PG_WAIT_EXTENSION);
|
|
#else
|
|
rc = WaitLatchOrSocket(MyLatch, waitFlags, socket, 0);
|
|
#endif
|
|
|
|
if (rc & WL_POSTMASTER_DEATH)
|
|
{
|
|
ereport(ERROR, (errmsg("postmaster was shut down, exiting")));
|
|
}
|
|
|
|
if (rc & WL_LATCH_SET)
|
|
{
|
|
ResetLatch(MyLatch);
|
|
|
|
/* if allowed raise errors */
|
|
if (raiseInterrupts)
|
|
{
|
|
CHECK_FOR_INTERRUPTS();
|
|
}
|
|
|
|
/*
|
|
* If raising errors allowed, or called within in a section with
|
|
* interrupts held, return instead, and mark the transaction as
|
|
* failed.
|
|
*/
|
|
if (InterruptHoldoffCount > 0 && (QueryCancelPending || ProcDiePending))
|
|
{
|
|
connection->remoteTransaction.transactionFailed = true;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|