PostgreSQL Source Code  git master
pgstat_io.c File Reference
#include "postgres.h"
#include "executor/instrument.h"
#include "storage/bufmgr.h"
#include "utils/pgstat_internal.h"
Include dependency graph for pgstat_io.c:

Go to the source code of this file.

Data Structures

struct  PgStat_PendingIO
 

Typedefs

typedef struct PgStat_PendingIO PgStat_PendingIO
 

Functions

bool pgstat_bktype_io_stats_valid (PgStat_BktypeIO *backend_io, BackendType bktype)
 
void pgstat_count_io_op (IOObject io_object, IOContext io_context, IOOp io_op)
 
void pgstat_count_io_op_n (IOObject io_object, IOContext io_context, IOOp io_op, uint32 cnt)
 
instr_time pgstat_prepare_io_time (bool track_io_guc)
 
void pgstat_count_io_op_time (IOObject io_object, IOContext io_context, IOOp io_op, instr_time start_time, uint32 cnt)
 
PgStat_IOpgstat_fetch_stat_io (void)
 
bool pgstat_flush_io (bool nowait)
 
const char * pgstat_get_io_context_name (IOContext io_context)
 
const char * pgstat_get_io_object_name (IOObject io_object)
 
void pgstat_io_reset_all_cb (TimestampTz ts)
 
void pgstat_io_snapshot_cb (void)
 
bool pgstat_tracks_io_bktype (BackendType bktype)
 
bool pgstat_tracks_io_object (BackendType bktype, IOObject io_object, IOContext io_context)
 
bool pgstat_tracks_io_op (BackendType bktype, IOObject io_object, IOContext io_context, IOOp io_op)
 

Variables

static PgStat_PendingIO PendingIOStats
 
bool have_iostats = false
 

Typedef Documentation

◆ PgStat_PendingIO

Function Documentation

◆ pgstat_bktype_io_stats_valid()

bool pgstat_bktype_io_stats_valid ( PgStat_BktypeIO backend_io,
BackendType  bktype 
)

Definition at line 46 of file pgstat_io.c.

48 {
49  for (int io_object = 0; io_object < IOOBJECT_NUM_TYPES; io_object++)
50  {
51  for (int io_context = 0; io_context < IOCONTEXT_NUM_TYPES; io_context++)
52  {
53  for (int io_op = 0; io_op < IOOP_NUM_TYPES; io_op++)
54  {
55  /* we do track it */
56  if (pgstat_tracks_io_op(bktype, io_object, io_context, io_op))
57  {
58  /* ensure that if IO times are non-zero, counts are > 0 */
59  if (backend_io->times[io_object][io_context][io_op] != 0 &&
60  backend_io->counts[io_object][io_context][io_op] <= 0)
61  return false;
62 
63  continue;
64  }
65 
66  /* we don't track it, and it is not 0 */
67  if (backend_io->counts[io_object][io_context][io_op] != 0)
68  return false;
69  }
70  }
71  }
72 
73  return true;
74 }
#define IOOP_NUM_TYPES
Definition: pgstat.h:308
#define IOCONTEXT_NUM_TYPES
Definition: pgstat.h:294
#define IOOBJECT_NUM_TYPES
Definition: pgstat.h:284
bool pgstat_tracks_io_op(BackendType bktype, IOObject io_object, IOContext io_context, IOOp io_op)
Definition: pgstat_io.c:424
PgStat_Counter times[IOOBJECT_NUM_TYPES][IOCONTEXT_NUM_TYPES][IOOP_NUM_TYPES]
Definition: pgstat.h:313
PgStat_Counter counts[IOOBJECT_NUM_TYPES][IOCONTEXT_NUM_TYPES][IOOP_NUM_TYPES]
Definition: pgstat.h:312

References PgStat_BktypeIO::counts, IOCONTEXT_NUM_TYPES, IOOBJECT_NUM_TYPES, IOOP_NUM_TYPES, pgstat_tracks_io_op(), and PgStat_BktypeIO::times.

Referenced by pg_stat_get_io(), and pgstat_flush_io().

◆ pgstat_count_io_op()

void pgstat_count_io_op ( IOObject  io_object,
IOContext  io_context,
IOOp  io_op 
)

Definition at line 77 of file pgstat_io.c.

78 {
79  pgstat_count_io_op_n(io_object, io_context, io_op, 1);
80 }
void pgstat_count_io_op_n(IOObject io_object, IOContext io_context, IOOp io_op, uint32 cnt)
Definition: pgstat_io.c:83

References pgstat_count_io_op_n().

Referenced by GetLocalVictimBuffer(), GetVictimBuffer(), and PinBufferForBlock().

◆ pgstat_count_io_op_n()

void pgstat_count_io_op_n ( IOObject  io_object,
IOContext  io_context,
IOOp  io_op,
uint32  cnt 
)

Definition at line 83 of file pgstat_io.c.

84 {
85  Assert((unsigned int) io_object < IOOBJECT_NUM_TYPES);
86  Assert((unsigned int) io_context < IOCONTEXT_NUM_TYPES);
87  Assert((unsigned int) io_op < IOOP_NUM_TYPES);
88  Assert(pgstat_tracks_io_op(MyBackendType, io_object, io_context, io_op));
89 
90  PendingIOStats.counts[io_object][io_context][io_op] += cnt;
91 
92  have_iostats = true;
93 }
#define Assert(condition)
Definition: c.h:858
BackendType MyBackendType
Definition: miscinit.c:63
static PgStat_PendingIO PendingIOStats
Definition: pgstat_io.c:31
bool have_iostats
Definition: pgstat_io.c:32
PgStat_Counter counts[IOOBJECT_NUM_TYPES][IOCONTEXT_NUM_TYPES][IOOP_NUM_TYPES]
Definition: pgstat_io.c:26

References Assert, PgStat_PendingIO::counts, have_iostats, IOCONTEXT_NUM_TYPES, IOOBJECT_NUM_TYPES, IOOP_NUM_TYPES, MyBackendType, PendingIOStats, and pgstat_tracks_io_op().

Referenced by pgstat_count_io_op(), and pgstat_count_io_op_time().

◆ pgstat_count_io_op_time()

void pgstat_count_io_op_time ( IOObject  io_object,
IOContext  io_context,
IOOp  io_op,
instr_time  start_time,
uint32  cnt 
)

Definition at line 122 of file pgstat_io.c.

124 {
125  if (track_io_timing)
126  {
127  instr_time io_time;
128 
129  INSTR_TIME_SET_CURRENT(io_time);
131 
132  if (io_op == IOOP_WRITE || io_op == IOOP_EXTEND)
133  {
135  if (io_object == IOOBJECT_RELATION)
137  else if (io_object == IOOBJECT_TEMP_RELATION)
139  }
140  else if (io_op == IOOP_READ)
141  {
143  if (io_object == IOOBJECT_RELATION)
145  else if (io_object == IOOBJECT_TEMP_RELATION)
147  }
148 
149  INSTR_TIME_ADD(PendingIOStats.pending_times[io_object][io_context][io_op],
150  io_time);
151  }
152 
153  pgstat_count_io_op_n(io_object, io_context, io_op, cnt);
154 }
bool track_io_timing
Definition: bufmgr.c:142
#define INSTR_TIME_SET_CURRENT(t)
Definition: instr_time.h:122
#define INSTR_TIME_ADD(x, y)
Definition: instr_time.h:178
#define INSTR_TIME_SUBTRACT(x, y)
Definition: instr_time.h:181
#define INSTR_TIME_GET_MICROSEC(t)
Definition: instr_time.h:194
BufferUsage pgBufferUsage
Definition: instrument.c:20
static time_t start_time
Definition: pg_ctl.c:94
#define pgstat_count_buffer_read_time(n)
Definition: pgstat.h:552
@ IOOBJECT_RELATION
Definition: pgstat.h:280
@ IOOBJECT_TEMP_RELATION
Definition: pgstat.h:281
#define pgstat_count_buffer_write_time(n)
Definition: pgstat.h:554
@ IOOP_EXTEND
Definition: pgstat.h:299
@ IOOP_READ
Definition: pgstat.h:302
@ IOOP_WRITE
Definition: pgstat.h:304
instr_time local_blk_read_time
Definition: instrument.h:38
instr_time shared_blk_read_time
Definition: instrument.h:36
instr_time shared_blk_write_time
Definition: instrument.h:37
instr_time local_blk_write_time
Definition: instrument.h:39
instr_time pending_times[IOOBJECT_NUM_TYPES][IOCONTEXT_NUM_TYPES][IOOP_NUM_TYPES]
Definition: pgstat_io.c:27

References INSTR_TIME_ADD, INSTR_TIME_GET_MICROSEC, INSTR_TIME_SET_CURRENT, INSTR_TIME_SUBTRACT, IOOBJECT_RELATION, IOOBJECT_TEMP_RELATION, IOOP_EXTEND, IOOP_READ, IOOP_WRITE, BufferUsage::local_blk_read_time, BufferUsage::local_blk_write_time, PgStat_PendingIO::pending_times, PendingIOStats, pgBufferUsage, pgstat_count_buffer_read_time, pgstat_count_buffer_write_time, pgstat_count_io_op_n(), BufferUsage::shared_blk_read_time, BufferUsage::shared_blk_write_time, start_time, and track_io_timing.

Referenced by ExtendBufferedRelLocal(), ExtendBufferedRelShared(), FlushBuffer(), FlushRelationBuffers(), GetLocalVictimBuffer(), IssuePendingWritebacks(), mdsyncfiletag(), register_dirty_segment(), and WaitReadBuffers().

◆ pgstat_fetch_stat_io()

PgStat_IO* pgstat_fetch_stat_io ( void  )

Definition at line 157 of file pgstat_io.c.

158 {
160 
161  return &pgStatLocal.snapshot.io;
162 }
void pgstat_snapshot_fixed(PgStat_Kind kind)
Definition: pgstat.c:938
PgStat_LocalState pgStatLocal
Definition: pgstat.c:193
@ PGSTAT_KIND_IO
Definition: pgstat.h:51
PgStat_Snapshot snapshot

References PgStat_Snapshot::io, PGSTAT_KIND_IO, pgstat_snapshot_fixed(), pgStatLocal, and PgStat_LocalState::snapshot.

Referenced by pg_stat_get_io().

◆ pgstat_flush_io()

bool pgstat_flush_io ( bool  nowait)

Definition at line 173 of file pgstat_io.c.

174 {
175  LWLock *bktype_lock;
176  PgStat_BktypeIO *bktype_shstats;
177 
178  if (!have_iostats)
179  return false;
180 
181  bktype_lock = &pgStatLocal.shmem->io.locks[MyBackendType];
182  bktype_shstats =
184 
185  if (!nowait)
186  LWLockAcquire(bktype_lock, LW_EXCLUSIVE);
187  else if (!LWLockConditionalAcquire(bktype_lock, LW_EXCLUSIVE))
188  return true;
189 
190  for (int io_object = 0; io_object < IOOBJECT_NUM_TYPES; io_object++)
191  {
192  for (int io_context = 0; io_context < IOCONTEXT_NUM_TYPES; io_context++)
193  {
194  for (int io_op = 0; io_op < IOOP_NUM_TYPES; io_op++)
195  {
196  instr_time time;
197 
198  bktype_shstats->counts[io_object][io_context][io_op] +=
199  PendingIOStats.counts[io_object][io_context][io_op];
200 
201  time = PendingIOStats.pending_times[io_object][io_context][io_op];
202 
203  bktype_shstats->times[io_object][io_context][io_op] +=
205  }
206  }
207  }
208 
210 
211  LWLockRelease(bktype_lock);
212 
213  memset(&PendingIOStats, 0, sizeof(PendingIOStats));
214 
215  have_iostats = false;
216 
217  return false;
218 }
bool LWLockAcquire(LWLock *lock, LWLockMode mode)
Definition: lwlock.c:1170
void LWLockRelease(LWLock *lock)
Definition: lwlock.c:1783
bool LWLockConditionalAcquire(LWLock *lock, LWLockMode mode)
Definition: lwlock.c:1341
@ LW_EXCLUSIVE
Definition: lwlock.h:114
bool pgstat_bktype_io_stats_valid(PgStat_BktypeIO *backend_io, BackendType bktype)
Definition: pgstat_io.c:46
Definition: lwlock.h:42
LWLock locks[BACKEND_NUM_TYPES]
PgStat_BktypeIO stats[BACKEND_NUM_TYPES]
Definition: pgstat.h:319
PgStat_ShmemControl * shmem
PgStatShared_IO io

References Assert, PgStat_PendingIO::counts, PgStat_BktypeIO::counts, have_iostats, INSTR_TIME_GET_MICROSEC, PgStat_ShmemControl::io, IOCONTEXT_NUM_TYPES, IOOBJECT_NUM_TYPES, IOOP_NUM_TYPES, PgStatShared_IO::locks, LW_EXCLUSIVE, LWLockAcquire(), LWLockConditionalAcquire(), LWLockRelease(), MyBackendType, PgStat_PendingIO::pending_times, PendingIOStats, pgstat_bktype_io_stats_valid(), pgStatLocal, PgStat_LocalState::shmem, PgStat_IO::stats, PgStatShared_IO::stats, and PgStat_BktypeIO::times.

Referenced by pgstat_report_analyze(), pgstat_report_bgwriter(), pgstat_report_checkpointer(), pgstat_report_stat(), pgstat_report_vacuum(), and pgstat_report_wal().

◆ pgstat_get_io_context_name()

const char* pgstat_get_io_context_name ( IOContext  io_context)

Definition at line 221 of file pgstat_io.c.

222 {
223  switch (io_context)
224  {
225  case IOCONTEXT_BULKREAD:
226  return "bulkread";
227  case IOCONTEXT_BULKWRITE:
228  return "bulkwrite";
229  case IOCONTEXT_NORMAL:
230  return "normal";
231  case IOCONTEXT_VACUUM:
232  return "vacuum";
233  }
234 
235  elog(ERROR, "unrecognized IOContext value: %d", io_context);
236  pg_unreachable();
237 }
#define pg_unreachable()
Definition: c.h:296
#define ERROR
Definition: elog.h:39
#define elog(elevel,...)
Definition: elog.h:224
@ IOCONTEXT_NORMAL
Definition: pgstat.h:290
@ IOCONTEXT_VACUUM
Definition: pgstat.h:291
@ IOCONTEXT_BULKREAD
Definition: pgstat.h:288
@ IOCONTEXT_BULKWRITE
Definition: pgstat.h:289

References elog, ERROR, IOCONTEXT_BULKREAD, IOCONTEXT_BULKWRITE, IOCONTEXT_NORMAL, IOCONTEXT_VACUUM, and pg_unreachable.

Referenced by pg_stat_get_io().

◆ pgstat_get_io_object_name()

const char* pgstat_get_io_object_name ( IOObject  io_object)

Definition at line 240 of file pgstat_io.c.

241 {
242  switch (io_object)
243  {
244  case IOOBJECT_RELATION:
245  return "relation";
247  return "temp relation";
248  }
249 
250  elog(ERROR, "unrecognized IOObject value: %d", io_object);
251  pg_unreachable();
252 }

References elog, ERROR, IOOBJECT_RELATION, IOOBJECT_TEMP_RELATION, and pg_unreachable.

Referenced by pg_stat_get_io().

◆ pgstat_io_reset_all_cb()

void pgstat_io_reset_all_cb ( TimestampTz  ts)

Definition at line 255 of file pgstat_io.c.

256 {
257  for (int i = 0; i < BACKEND_NUM_TYPES; i++)
258  {
259  LWLock *bktype_lock = &pgStatLocal.shmem->io.locks[i];
260  PgStat_BktypeIO *bktype_shstats = &pgStatLocal.shmem->io.stats.stats[i];
261 
262  LWLockAcquire(bktype_lock, LW_EXCLUSIVE);
263 
264  /*
265  * Use the lock in the first BackendType's PgStat_BktypeIO to protect
266  * the reset timestamp as well.
267  */
268  if (i == 0)
270 
271  memset(bktype_shstats, 0, sizeof(*bktype_shstats));
272  LWLockRelease(bktype_lock);
273  }
274 }
int i
Definition: isn.c:73
#define BACKEND_NUM_TYPES
Definition: miscadmin.h:370
TimestampTz stat_reset_timestamp
Definition: pgstat.h:318

References BACKEND_NUM_TYPES, i, PgStat_ShmemControl::io, PgStatShared_IO::locks, LW_EXCLUSIVE, LWLockAcquire(), LWLockRelease(), pgStatLocal, PgStat_LocalState::shmem, PgStat_IO::stat_reset_timestamp, PgStat_IO::stats, and PgStatShared_IO::stats.

◆ pgstat_io_snapshot_cb()

void pgstat_io_snapshot_cb ( void  )

Definition at line 277 of file pgstat_io.c.

278 {
279  for (int i = 0; i < BACKEND_NUM_TYPES; i++)
280  {
281  LWLock *bktype_lock = &pgStatLocal.shmem->io.locks[i];
282  PgStat_BktypeIO *bktype_shstats = &pgStatLocal.shmem->io.stats.stats[i];
283  PgStat_BktypeIO *bktype_snap = &pgStatLocal.snapshot.io.stats[i];
284 
285  LWLockAcquire(bktype_lock, LW_SHARED);
286 
287  /*
288  * Use the lock in the first BackendType's PgStat_BktypeIO to protect
289  * the reset timestamp as well.
290  */
291  if (i == 0)
294 
295  /* using struct assignment due to better type safety */
296  *bktype_snap = *bktype_shstats;
297  LWLockRelease(bktype_lock);
298  }
299 }
@ LW_SHARED
Definition: lwlock.h:115

References BACKEND_NUM_TYPES, i, PgStat_ShmemControl::io, PgStat_Snapshot::io, PgStatShared_IO::locks, LW_SHARED, LWLockAcquire(), LWLockRelease(), pgStatLocal, PgStat_LocalState::shmem, PgStat_LocalState::snapshot, PgStat_IO::stat_reset_timestamp, PgStat_IO::stats, and PgStatShared_IO::stats.

◆ pgstat_prepare_io_time()

instr_time pgstat_prepare_io_time ( bool  track_io_guc)

Definition at line 100 of file pgstat_io.c.

101 {
102  instr_time io_start;
103 
104  if (track_io_guc)
105  INSTR_TIME_SET_CURRENT(io_start);
106  else
107  {
108  /*
109  * There is no need to set io_start when an IO timing GUC is disabled,
110  * still initialize it to zero to avoid compiler warnings.
111  */
112  INSTR_TIME_SET_ZERO(io_start);
113  }
114 
115  return io_start;
116 }
#define INSTR_TIME_SET_ZERO(t)
Definition: instr_time.h:172

References INSTR_TIME_SET_CURRENT, and INSTR_TIME_SET_ZERO.

Referenced by ExtendBufferedRelLocal(), ExtendBufferedRelShared(), FlushBuffer(), FlushRelationBuffers(), GetLocalVictimBuffer(), IssuePendingWritebacks(), mdsyncfiletag(), register_dirty_segment(), and WaitReadBuffers().

◆ pgstat_tracks_io_bktype()

bool pgstat_tracks_io_bktype ( BackendType  bktype)

Definition at line 319 of file pgstat_io.c.

320 {
321  /*
322  * List every type so that new backend types trigger a warning about
323  * needing to adjust this switch.
324  */
325  switch (bktype)
326  {
327  case B_INVALID:
328  case B_ARCHIVER:
329  case B_LOGGER:
330  case B_WAL_RECEIVER:
331  case B_WAL_WRITER:
332  case B_WAL_SUMMARIZER:
333  return false;
334 
335  case B_AUTOVAC_LAUNCHER:
336  case B_AUTOVAC_WORKER:
337  case B_BACKEND:
338  case B_BG_WORKER:
339  case B_BG_WRITER:
340  case B_CHECKPOINTER:
341  case B_SLOTSYNC_WORKER:
343  case B_STARTUP:
344  case B_WAL_SENDER:
345  return true;
346  }
347 
348  return false;
349 }
@ B_WAL_SUMMARIZER
Definition: miscadmin.h:360
@ B_WAL_WRITER
Definition: miscadmin.h:361
@ B_WAL_RECEIVER
Definition: miscadmin.h:359
@ B_CHECKPOINTER
Definition: miscadmin.h:357
@ B_WAL_SENDER
Definition: miscadmin.h:342
@ B_LOGGER
Definition: miscadmin.h:367
@ B_STARTUP
Definition: miscadmin.h:358
@ B_BG_WORKER
Definition: miscadmin.h:341
@ B_INVALID
Definition: miscadmin.h:335
@ B_STANDALONE_BACKEND
Definition: miscadmin.h:345
@ B_BG_WRITER
Definition: miscadmin.h:356
@ B_BACKEND
Definition: miscadmin.h:338
@ B_ARCHIVER
Definition: miscadmin.h:355
@ B_AUTOVAC_LAUNCHER
Definition: miscadmin.h:339
@ B_SLOTSYNC_WORKER
Definition: miscadmin.h:343
@ B_AUTOVAC_WORKER
Definition: miscadmin.h:340

References B_ARCHIVER, B_AUTOVAC_LAUNCHER, B_AUTOVAC_WORKER, B_BACKEND, B_BG_WORKER, B_BG_WRITER, B_CHECKPOINTER, B_INVALID, B_LOGGER, B_SLOTSYNC_WORKER, B_STANDALONE_BACKEND, B_STARTUP, B_WAL_RECEIVER, B_WAL_SENDER, B_WAL_SUMMARIZER, and B_WAL_WRITER.

Referenced by pg_stat_get_io(), and pgstat_tracks_io_object().

◆ pgstat_tracks_io_object()

bool pgstat_tracks_io_object ( BackendType  bktype,
IOObject  io_object,
IOContext  io_context 
)

Definition at line 359 of file pgstat_io.c.

361 {
362  bool no_temp_rel;
363 
364  /*
365  * Some BackendTypes should never track IO statistics.
366  */
367  if (!pgstat_tracks_io_bktype(bktype))
368  return false;
369 
370  /*
371  * Currently, IO on temporary relations can only occur in the
372  * IOCONTEXT_NORMAL IOContext.
373  */
374  if (io_context != IOCONTEXT_NORMAL &&
375  io_object == IOOBJECT_TEMP_RELATION)
376  return false;
377 
378  /*
379  * In core Postgres, only regular backends and WAL Sender processes
380  * executing queries will use local buffers and operate on temporary
381  * relations. Parallel workers will not use local buffers (see
382  * InitLocalBuffers()); however, extensions leveraging background workers
383  * have no such limitation, so track IO on IOOBJECT_TEMP_RELATION for
384  * BackendType B_BG_WORKER.
385  */
386  no_temp_rel = bktype == B_AUTOVAC_LAUNCHER || bktype == B_BG_WRITER ||
387  bktype == B_CHECKPOINTER || bktype == B_AUTOVAC_WORKER ||
388  bktype == B_STANDALONE_BACKEND || bktype == B_STARTUP;
389 
390  if (no_temp_rel && io_context == IOCONTEXT_NORMAL &&
391  io_object == IOOBJECT_TEMP_RELATION)
392  return false;
393 
394  /*
395  * Some BackendTypes do not currently perform any IO in certain
396  * IOContexts, and, while it may not be inherently incorrect for them to
397  * do so, excluding those rows from the view makes the view easier to use.
398  */
399  if ((bktype == B_CHECKPOINTER || bktype == B_BG_WRITER) &&
400  (io_context == IOCONTEXT_BULKREAD ||
401  io_context == IOCONTEXT_BULKWRITE ||
402  io_context == IOCONTEXT_VACUUM))
403  return false;
404 
405  if (bktype == B_AUTOVAC_LAUNCHER && io_context == IOCONTEXT_VACUUM)
406  return false;
407 
408  if ((bktype == B_AUTOVAC_WORKER || bktype == B_AUTOVAC_LAUNCHER) &&
409  io_context == IOCONTEXT_BULKWRITE)
410  return false;
411 
412  return true;
413 }
bool pgstat_tracks_io_bktype(BackendType bktype)
Definition: pgstat_io.c:319

References B_AUTOVAC_LAUNCHER, B_AUTOVAC_WORKER, B_BG_WRITER, B_CHECKPOINTER, B_STANDALONE_BACKEND, B_STARTUP, IOCONTEXT_BULKREAD, IOCONTEXT_BULKWRITE, IOCONTEXT_NORMAL, IOCONTEXT_VACUUM, IOOBJECT_TEMP_RELATION, and pgstat_tracks_io_bktype().

Referenced by pg_stat_get_io(), and pgstat_tracks_io_op().

◆ pgstat_tracks_io_op()

bool pgstat_tracks_io_op ( BackendType  bktype,
IOObject  io_object,
IOContext  io_context,
IOOp  io_op 
)

Definition at line 424 of file pgstat_io.c.

426 {
427  bool strategy_io_context;
428 
429  /* if (io_context, io_object) will never collect stats, we're done */
430  if (!pgstat_tracks_io_object(bktype, io_object, io_context))
431  return false;
432 
433  /*
434  * Some BackendTypes will not do certain IOOps.
435  */
436  if ((bktype == B_BG_WRITER || bktype == B_CHECKPOINTER) &&
437  (io_op == IOOP_READ || io_op == IOOP_EVICT || io_op == IOOP_HIT))
438  return false;
439 
440  if ((bktype == B_AUTOVAC_LAUNCHER || bktype == B_BG_WRITER ||
441  bktype == B_CHECKPOINTER) && io_op == IOOP_EXTEND)
442  return false;
443 
444  /*
445  * Temporary tables are not logged and thus do not require fsync'ing.
446  * Writeback is not requested for temporary tables.
447  */
448  if (io_object == IOOBJECT_TEMP_RELATION &&
449  (io_op == IOOP_FSYNC || io_op == IOOP_WRITEBACK))
450  return false;
451 
452  /*
453  * Some IOOps are not valid in certain IOContexts and some IOOps are only
454  * valid in certain contexts.
455  */
456  if (io_context == IOCONTEXT_BULKREAD && io_op == IOOP_EXTEND)
457  return false;
458 
459  strategy_io_context = io_context == IOCONTEXT_BULKREAD ||
460  io_context == IOCONTEXT_BULKWRITE || io_context == IOCONTEXT_VACUUM;
461 
462  /*
463  * IOOP_REUSE is only relevant when a BufferAccessStrategy is in use.
464  */
465  if (!strategy_io_context && io_op == IOOP_REUSE)
466  return false;
467 
468  /*
469  * IOOP_FSYNC IOOps done by a backend using a BufferAccessStrategy are
470  * counted in the IOCONTEXT_NORMAL IOContext. See comment in
471  * register_dirty_segment() for more details.
472  */
473  if (strategy_io_context && io_op == IOOP_FSYNC)
474  return false;
475 
476 
477  return true;
478 }
@ IOOP_FSYNC
Definition: pgstat.h:300
@ IOOP_WRITEBACK
Definition: pgstat.h:305
@ IOOP_HIT
Definition: pgstat.h:301
@ IOOP_EVICT
Definition: pgstat.h:298
@ IOOP_REUSE
Definition: pgstat.h:303
bool pgstat_tracks_io_object(BackendType bktype, IOObject io_object, IOContext io_context)
Definition: pgstat_io.c:359

References B_AUTOVAC_LAUNCHER, B_BG_WRITER, B_CHECKPOINTER, IOCONTEXT_BULKREAD, IOCONTEXT_BULKWRITE, IOCONTEXT_VACUUM, IOOBJECT_TEMP_RELATION, IOOP_EVICT, IOOP_EXTEND, IOOP_FSYNC, IOOP_HIT, IOOP_READ, IOOP_REUSE, IOOP_WRITEBACK, and pgstat_tracks_io_object().

Referenced by pg_stat_get_io(), pgstat_bktype_io_stats_valid(), and pgstat_count_io_op_n().

Variable Documentation

◆ have_iostats

bool have_iostats = false

Definition at line 32 of file pgstat_io.c.

Referenced by pgstat_count_io_op_n(), pgstat_flush_io(), and pgstat_report_stat().

◆ PendingIOStats

PgStat_PendingIO PendingIOStats
static

Definition at line 31 of file pgstat_io.c.

Referenced by pgstat_count_io_op_n(), pgstat_count_io_op_time(), and pgstat_flush_io().