cdbfts.c 6.7 KB
Newer Older
1 2 3 4 5
/*-------------------------------------------------------------------------
 *
 * cdbfts.c
 *	  Provides fault tolerance service routines for mpp.
 *
6 7 8 9 10 11
 * Portions Copyright (c) 2003-2008, Greenplum inc
 * Portions Copyright (c) 2012-Present Pivotal Software, Inc.
 *
 *
 * IDENTIFICATION
 *	    src/backend/cdb/cdbfts.c
12 13 14 15 16 17 18
 *
 *-------------------------------------------------------------------------
 */

#include "postgres.h"

#include "miscadmin.h"
19 20
#include "libpq-fe.h"
#include "libpq-int.h"
21 22 23 24
#include "utils/memutils.h"
#include "cdb/cdbvars.h"
#include "cdb/cdbconn.h"
#include "cdb/cdbutil.h"
25
#include "cdb/cdbdisp_query.h"
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
#include "access/xact.h"
#include "cdb/cdbfts.h"
#include "cdb/cdbtm.h"
#include "libpq/libpq-be.h"
#include "commands/dbcommands.h"
#include "storage/proc.h"

#include "executor/spi.h"

#include "postmaster/fts.h"
#include "postmaster/primary_mirror_mode.h"
#include "utils/faultinjection.h"

#include "utils/fmgroids.h"
#include "catalog/pg_authid.h"

/* segment id for the master */
#define MASTER_SEGMENT_ID -1

A
Ashwin Agrawal 已提交
45 46 47 48
FtsProbeInfo *ftsProbeInfo = NULL;	/* Probe process updates this structure */
volatile bool *ftsEnabled;
volatile bool *ftsShutdownMaster;
static LWLockId ftsControlLock;
49

A
Ashwin Agrawal 已提交
50 51
static volatile bool *ftsReadOnlyFlag;
static volatile bool *ftsAdminRequestedRO;
52

A
Ashwin Agrawal 已提交
53 54
static bool local_fts_status_initialized = false;
static uint64 local_fts_statusVersion;
55 56 57 58 59 60 61 62

/*
 * get fts share memory size
 */
int
FtsShmemSize(void)
{
	/*
A
Ashwin Agrawal 已提交
63
	 * this shared memory block doesn't even need to *exist* on the QEs!
64 65 66 67 68 69 70 71 72 73 74 75 76
	 */
	if ((Gp_role != GP_ROLE_DISPATCH) && (Gp_role != GP_ROLE_UTILITY))
		return 0;

	return MAXALIGN(sizeof(FtsControlBlock));
}

void
FtsShmemInit(void)
{
	bool		found;
	FtsControlBlock *shared;

A
Ashwin Agrawal 已提交
77
	shared = (FtsControlBlock *) ShmemInitStruct("Fault Tolerance manager", FtsShmemSize(), &found);
78 79 80 81 82 83 84 85 86 87 88
	if (!shared)
		elog(FATAL, "FTS: could not initialize fault tolerance manager share memory");

	/* Initialize locks and shared memory area */

	ftsEnabled = &shared->ftsEnabled;
	ftsShutdownMaster = &shared->ftsShutdownMaster;
	ftsControlLock = shared->ControlLock;

	ftsReadOnlyFlag = &shared->ftsReadOnlyFlag; /* global RO state */

A
Ashwin Agrawal 已提交
89 90 91
	ftsAdminRequestedRO = &shared->ftsAdminRequestedRO; /* Admin request --
														 * guc-controlled RO
														 * state */
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108

	ftsProbeInfo = &shared->fts_probe_info;

	if (!IsUnderPostmaster)
	{
		shared->ControlLock = LWLockAssign();
		ftsControlLock = shared->ControlLock;

		/* initialize */
		shared->ftsReadOnlyFlag = gp_set_read_only;
		shared->ftsAdminRequestedRO = gp_set_read_only;

		shared->fts_probe_info.fts_probePid = 0;
		shared->fts_probe_info.fts_pauseProbes = false;
		shared->fts_probe_info.fts_discardResults = false;
		shared->fts_probe_info.fts_statusVersion = 0;

A
Ashwin Agrawal 已提交
109
		shared->ftsEnabled = true;	/* ??? */
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
		shared->ftsShutdownMaster = false;
	}
}

void
ftsLock(void)
{
	LWLockAcquire(ftsControlLock, LW_EXCLUSIVE);
}

void
ftsUnlock(void)
{
	LWLockRelease(ftsControlLock);
}

void
FtsNotifyProber(void)
{
129 130 131 132
	Assert(Gp_role == GP_ROLE_DISPATCH);

	if (ftsProbeInfo->fts_probePid == 0)
		return;
A
Ashwin Agrawal 已提交
133

134
	/*
A
Ashwin Agrawal 已提交
135 136 137
	 * This is a full-scan request. We set the request-flag == to the bitmap
	 * version flag. When the version has been bumped, we know that the
	 * request has been filled.
138 139 140 141
	 */
	ftsProbeInfo->fts_probeScanRequested = ftsProbeInfo->fts_statusVersion;

	/* signal fts-probe */
142
	kill(ftsProbeInfo->fts_probePid, SIGINT);
143 144 145 146

	/* sit and spin */
	while (ftsProbeInfo->fts_probeScanRequested == ftsProbeInfo->fts_statusVersion)
	{
147
		pg_usleep(50000);
148 149 150 151 152 153 154 155 156

		CHECK_FOR_INTERRUPTS();
	}
}


/*
 * Check if master needs to shut down
 */
A
Ashwin Agrawal 已提交
157 158
bool
FtsMasterShutdownRequested()
159 160 161 162 163 164 165 166
{
	return *ftsShutdownMaster;
}


/*
 * Set flag indicating that master needs to shut down
 */
A
Ashwin Agrawal 已提交
167 168
void
FtsRequestMasterShutdown()
169 170 171 172 173
{
#ifdef USE_ASSERT_CHECKING
	Assert(!*ftsShutdownMaster);

	PrimaryMirrorMode pm_mode;
A
Ashwin Agrawal 已提交
174

175 176
	getPrimaryMirrorStatusCodes(&pm_mode, NULL, NULL, NULL);
	Assert(pm_mode == PMModeMaster);
A
Ashwin Agrawal 已提交
177
#endif							/* USE_ASSERT_CHECKING */
178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217

	*ftsShutdownMaster = true;
}


/*
 * Test-Connection: This is called from the threaded context inside the
 * dispatcher: ONLY CALL THREADSAFE FUNCTIONS -- elog() is NOT threadsafe.
 */
bool
FtsTestConnection(CdbComponentDatabaseInfo *failedDBInfo, bool fullScan)
{
	/* master is always reported as alive */
	if (failedDBInfo->segindex == MASTER_SEGMENT_ID)
	{
		return true;
	}

	if (!fullScan)
	{
		return FTS_STATUS_ISALIVE(failedDBInfo->dbid, ftsProbeInfo->fts_status);
	}

	FtsNotifyProber();

	return FTS_STATUS_ISALIVE(failedDBInfo->dbid, ftsProbeInfo->fts_status);
}

/*
 * Re-Configure the system: if someone has noticed that the status
 * version has been updated, they call this to verify that they've got
 * the right configuration.
 *
 * NOTE: This *always* destroys gangs. And also attempts to inform the
 * fault-prober to do a full scan.
 */
void
FtsReConfigureMPP(bool create_new_gangs)
{
	/* need to scan to pick up the latest view */
G
Gang Xiong 已提交
218
	FtsNotifyProber();
219 220 221
	local_fts_statusVersion = ftsProbeInfo->fts_statusVersion;

	ereport(LOG, (errmsg_internal("FTS: reconfiguration is in progress"),
A
Ashwin Agrawal 已提交
222
				  errSendAlert(true)));
223
	DisconnectAndDestroyAllGangs(true);
224 225 226 227 228 229

	/* Caller should throw an error. */
	return;
}

void
A
Ashwin Agrawal 已提交
230
FtsHandleNetFailure(SegmentDatabaseDescriptor **segDB, int numOfFailed)
231 232 233 234 235 236
{
	elog(LOG, "FtsHandleNetFailure: numOfFailed %d", numOfFailed);

	FtsReConfigureMPP(true);

	ereport(ERROR, (errmsg_internal("MPP detected %d segment failures, system is reconnected", numOfFailed),
A
Ashwin Agrawal 已提交
237
					errSendAlert(true)));
238 239 240
}

/*
G
Gang Xiong 已提交
241 242 243
 * Check if any segment DB is down.
 *
 * returns true if any segment DB is down.
244 245
 */
bool
A
Ashwin Agrawal 已提交
246
FtsTestSegmentDBIsDown(SegmentDatabaseDescriptor *segdbDesc, int size)
247
{
A
Ashwin Agrawal 已提交
248 249
	int			i = 0;
	bool		forceRescan = true;
250

G
Gang Xiong 已提交
251
	Assert(isFTSEnabled());
252 253 254 255 256

	for (i = 0; i < size; i++)
	{
		CdbComponentDatabaseInfo *segInfo = segdbDesc[i].segment_database_info;

G
Gang Xiong 已提交
257 258 259
		elog(DEBUG2, "FtsTestSegmentDBIsDown: looking for real fault on segment dbid %d", segInfo->dbid);

		if (!FtsTestConnection(segInfo, forceRescan))
260
		{
G
Gang Xiong 已提交
261
			ereport(LOG, (errmsg_internal("FTS: found fault with segment dbid %d. "
A
Ashwin Agrawal 已提交
262
										  "Reconfiguration is in progress", segInfo->dbid)));
G
Gang Xiong 已提交
263
			return true;
264 265
		}

G
Gang Xiong 已提交
266 267
		/* only force the rescan on the first call. */
		forceRescan = false;
268 269 270 271 272
	}

	return false;
}

G
Gang Xiong 已提交
273

274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305
void
FtsCondSetTxnReadOnly(bool *XactFlag)
{
	if (!isFTSEnabled())
		return;

	if (*ftsReadOnlyFlag && Gp_role != GP_ROLE_UTILITY)
		*XactFlag = true;
}

bool
verifyFtsSyncCount(void)
{
	if (ftsProbeInfo->fts_probePid == 0)
		return true;

	if (!local_fts_status_initialized)
	{
		local_fts_status_initialized = true;
		local_fts_statusVersion = ftsProbeInfo->fts_statusVersion;

		return true;
	}

	return (local_fts_statusVersion == ftsProbeInfo->fts_statusVersion);
}

bool
isFtsReadOnlySet(void)
{
	return *ftsReadOnlyFlag;
}
G
Gang Xiong 已提交
306

A
Ashwin Agrawal 已提交
307 308
uint64
getFtsVersion(void)
G
Gang Xiong 已提交
309 310 311
{
	return ftsProbeInfo->fts_statusVersion;
}