PostgreSQL Source Code git master
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
tsm_system_time.c
Go to the documentation of this file.
1/*-------------------------------------------------------------------------
2 *
3 * tsm_system_time.c
4 * support routines for SYSTEM_TIME tablesample method
5 *
6 * The desire here is to produce a random sample with as many rows as possible
7 * in no more than the specified amount of time. We use a block-sampling
8 * approach. To ensure that the whole relation will be visited if necessary,
9 * we start at a randomly chosen block and then advance with a stride that
10 * is randomly chosen but is relatively prime to the relation's nblocks.
11 *
12 * Because of the time dependence, this method is necessarily unrepeatable.
13 * However, we do what we can to reduce surprising behavior by selecting
14 * the sampling pattern just once per query, much as in tsm_system_rows.
15 *
16 * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
17 * Portions Copyright (c) 1994, Regents of the University of California
18 *
19 * IDENTIFICATION
20 * contrib/tsm_system_time/tsm_system_time.c
21 *
22 *-------------------------------------------------------------------------
23 */
24
25#include "postgres.h"
26
27#include <math.h>
28
29#include "access/tsmapi.h"
30#include "catalog/pg_type.h"
31#include "miscadmin.h"
32#include "optimizer/optimizer.h"
33#include "utils/sampling.h"
34#include "utils/spccache.h"
35
37 .name = "tsm_system_time",
38 .version = PG_VERSION
39);
40
42
43
44/* Private state */
45typedef struct
46{
47 uint32 seed; /* random seed */
48 double millis; /* time limit for sampling */
49 instr_time start_time; /* scan start time */
50 OffsetNumber lt; /* last tuple returned from current block */
51 BlockNumber doneblocks; /* number of already-scanned blocks */
52 BlockNumber lb; /* last block visited */
53 /* these three values are not changed during a rescan: */
54 BlockNumber nblocks; /* number of blocks in relation */
55 BlockNumber firstblock; /* first block to sample from */
56 BlockNumber step; /* step size, or 0 if not set yet */
58
60 RelOptInfo *baserel,
61 List *paramexprs,
62 BlockNumber *pages,
63 double *tuples);
65 int eflags);
67 Datum *params,
68 int nparams,
69 uint32 seed);
72 BlockNumber blockno,
73 OffsetNumber maxoffset);
75
76
77/*
78 * Create a TsmRoutine descriptor for the SYSTEM_TIME method.
79 */
82{
84
85 tsm->parameterTypes = list_make1_oid(FLOAT8OID);
86
87 /* See notes at head of file */
88 tsm->repeatable_across_queries = false;
89 tsm->repeatable_across_scans = false;
90
96 tsm->EndSampleScan = NULL;
97
99}
100
101/*
102 * Sample size estimation.
103 */
104static void
106 RelOptInfo *baserel,
107 List *paramexprs,
108 BlockNumber *pages,
109 double *tuples)
110{
111 Node *limitnode;
112 double millis;
113 double spc_random_page_cost;
114 double npages;
115 double ntuples;
116
117 /* Try to extract an estimate for the limit time spec */
118 limitnode = (Node *) linitial(paramexprs);
119 limitnode = estimate_expression_value(root, limitnode);
120
121 if (IsA(limitnode, Const) &&
122 !((Const *) limitnode)->constisnull)
123 {
124 millis = DatumGetFloat8(((Const *) limitnode)->constvalue);
125 if (millis < 0 || isnan(millis))
126 {
127 /* Default millis if the value is bogus */
128 millis = 1000;
129 }
130 }
131 else
132 {
133 /* Default millis if we didn't obtain a non-null Const */
134 millis = 1000;
135 }
136
137 /* Get the planner's idea of cost per page read */
139 &spc_random_page_cost,
140 NULL);
141
142 /*
143 * Estimate the number of pages we can read by assuming that the cost
144 * figure is expressed in milliseconds. This is completely, unmistakably
145 * bogus, but we have to do something to produce an estimate and there's
146 * no better answer.
147 */
148 if (spc_random_page_cost > 0)
149 npages = millis / spc_random_page_cost;
150 else
151 npages = millis; /* even more bogus, but whatcha gonna do? */
152
153 /* Clamp to sane value */
154 npages = clamp_row_est(Min((double) baserel->pages, npages));
155
156 if (baserel->tuples > 0 && baserel->pages > 0)
157 {
158 /* Estimate number of tuples returned based on tuple density */
159 double density = baserel->tuples / (double) baserel->pages;
160
161 ntuples = npages * density;
162 }
163 else
164 {
165 /* For lack of data, assume one tuple per page */
166 ntuples = npages;
167 }
168
169 /* Clamp to the estimated relation size */
170 ntuples = clamp_row_est(Min(baserel->tuples, ntuples));
171
172 *pages = npages;
173 *tuples = ntuples;
174}
175
176/*
177 * Initialize during executor setup.
178 */
179static void
181{
182 node->tsm_state = palloc0(sizeof(SystemTimeSamplerData));
183 /* Note the above leaves tsm_state->step equal to zero */
184}
185
186/*
187 * Examine parameters and prepare for a sample scan.
188 */
189static void
191 Datum *params,
192 int nparams,
193 uint32 seed)
194{
196 double millis = DatumGetFloat8(params[0]);
197
198 if (millis < 0 || isnan(millis))
200 (errcode(ERRCODE_INVALID_TABLESAMPLE_ARGUMENT),
201 errmsg("sample collection time must not be negative")));
202
203 sampler->seed = seed;
204 sampler->millis = millis;
205 sampler->lt = InvalidOffsetNumber;
206 sampler->doneblocks = 0;
207 /* start_time, lb will be initialized during first NextSampleBlock call */
208 /* we intentionally do not change nblocks/firstblock/step here */
209}
210
211/*
212 * Select next block to sample.
213 *
214 * Uses linear probing algorithm for picking next block.
215 */
216static BlockNumber
218{
220 instr_time cur_time;
221
222 /* First call within scan? */
223 if (sampler->doneblocks == 0)
224 {
225 /* First scan within query? */
226 if (sampler->step == 0)
227 {
228 /* Initialize now that we have scan descriptor */
229 pg_prng_state randstate;
230
231 /* If relation is empty, there's nothing to scan */
232 if (nblocks == 0)
233 return InvalidBlockNumber;
234
235 /* We only need an RNG during this setup step */
236 sampler_random_init_state(sampler->seed, &randstate);
237
238 /* Compute nblocks/firstblock/step only once per query */
239 sampler->nblocks = nblocks;
240
241 /* Choose random starting block within the relation */
242 /* (Actually this is the predecessor of the first block visited) */
243 sampler->firstblock = sampler_random_fract(&randstate) *
244 sampler->nblocks;
245
246 /* Find relative prime as step size for linear probing */
247 sampler->step = random_relative_prime(sampler->nblocks, &randstate);
248 }
249
250 /* Reinitialize lb and start_time */
251 sampler->lb = sampler->firstblock;
253 }
254
255 /* If we've read all blocks in relation, we're done */
256 if (++sampler->doneblocks > sampler->nblocks)
257 return InvalidBlockNumber;
258
259 /* If we've used up all the allotted time, we're done */
260 INSTR_TIME_SET_CURRENT(cur_time);
261 INSTR_TIME_SUBTRACT(cur_time, sampler->start_time);
262 if (INSTR_TIME_GET_MILLISEC(cur_time) >= sampler->millis)
263 return InvalidBlockNumber;
264
265 /*
266 * It's probably impossible for scan->rs_nblocks to decrease between scans
267 * within a query; but just in case, loop until we select a block number
268 * less than scan->rs_nblocks. We don't care if scan->rs_nblocks has
269 * increased since the first scan.
270 */
271 do
272 {
273 /* Advance lb, using uint64 arithmetic to forestall overflow */
274 sampler->lb = ((uint64) sampler->lb + sampler->step) % sampler->nblocks;
275 } while (sampler->lb >= nblocks);
276
277 return sampler->lb;
278}
279
280/*
281 * Select next sampled tuple in current block.
282 *
283 * In block sampling, we just want to sample all the tuples in each selected
284 * block.
285 *
286 * When we reach end of the block, return InvalidOffsetNumber which tells
287 * SampleScan to go to next block.
288 */
289static OffsetNumber
291 BlockNumber blockno,
292 OffsetNumber maxoffset)
293{
295 OffsetNumber tupoffset = sampler->lt;
296
297 /* Advance to next possible offset on page */
298 if (tupoffset == InvalidOffsetNumber)
299 tupoffset = FirstOffsetNumber;
300 else
301 tupoffset++;
302
303 /* Done? */
304 if (tupoffset > maxoffset)
305 tupoffset = InvalidOffsetNumber;
306
307 sampler->lt = tupoffset;
308
309 return tupoffset;
310}
311
312/*
313 * Compute greatest common divisor of two uint32's.
314 */
315static uint32
317{
318 uint32 c;
319
320 while (a != 0)
321 {
322 c = a;
323 a = b % a;
324 b = c;
325 }
326
327 return b;
328}
329
330/*
331 * Pick a random value less than and relatively prime to n, if possible
332 * (else return 1).
333 */
334static uint32
336{
337 uint32 r;
338
339 /* Safety check to avoid infinite loop or zero result for small n. */
340 if (n <= 1)
341 return 1;
342
343 /*
344 * This should only take 2 or 3 iterations as the probability of 2 numbers
345 * being relatively prime is ~61%; but just in case, we'll include a
346 * CHECK_FOR_INTERRUPTS in the loop.
347 */
348 do
349 {
351 r = (uint32) (sampler_random_fract(randstate) * n);
352 } while (r == 0 || gcd(r, n) > 1);
353
354 return r;
355}
uint32 BlockNumber
Definition: block.h:31
#define InvalidBlockNumber
Definition: block.h:33
#define Min(x, y)
Definition: c.h:975
uint64_t uint64
Definition: c.h:503
uint32_t uint32
Definition: c.h:502
Node * estimate_expression_value(PlannerInfo *root, Node *node)
Definition: clauses.c:2397
double clamp_row_est(double nrows)
Definition: costsize.c:213
int errcode(int sqlerrcode)
Definition: elog.c:854
int errmsg(const char *fmt,...)
Definition: elog.c:1071
#define ERROR
Definition: elog.h:39
#define ereport(elevel,...)
Definition: elog.h:149
#define PG_RETURN_POINTER(x)
Definition: fmgr.h:361
#define PG_FUNCTION_ARGS
Definition: fmgr.h:193
#define INSTR_TIME_SET_CURRENT(t)
Definition: instr_time.h:122
#define INSTR_TIME_SUBTRACT(x, y)
Definition: instr_time.h:181
#define INSTR_TIME_GET_MILLISEC(t)
Definition: instr_time.h:191
int b
Definition: isn.c:74
int a
Definition: isn.c:73
if(TABLE==NULL||TABLE_index==NULL)
Definition: isn.c:81
void * palloc0(Size size)
Definition: mcxt.c:1970
#define CHECK_FOR_INTERRUPTS()
Definition: miscadmin.h:123
#define IsA(nodeptr, _type_)
Definition: nodes.h:164
#define makeNode(_type_)
Definition: nodes.h:161
#define InvalidOffsetNumber
Definition: off.h:26
uint16 OffsetNumber
Definition: off.h:24
#define FirstOffsetNumber
Definition: off.h:27
#define list_make1_oid(x1)
Definition: pg_list.h:242
#define linitial(l)
Definition: pg_list.h:178
uintptr_t Datum
Definition: postgres.h:69
static float8 DatumGetFloat8(Datum X)
Definition: postgres.h:499
char * c
tree ctl root
Definition: radixtree.h:1857
double sampler_random_fract(pg_prng_state *randstate)
Definition: sampling.c:241
void sampler_random_init_state(uint32 seed, pg_prng_state *randstate)
Definition: sampling.c:234
void get_tablespace_page_costs(Oid spcid, double *spc_random_page_cost, double *spc_seq_page_cost)
Definition: spccache.c:182
Definition: pg_list.h:54
Definition: nodes.h:135
Cardinality tuples
Definition: pathnodes.h:976
BlockNumber pages
Definition: pathnodes.h:975
Oid reltablespace
Definition: pathnodes.h:947
void * tsm_state
Definition: execnodes.h:1642
NextSampleTuple_function NextSampleTuple
Definition: tsmapi.h:74
bool repeatable_across_scans
Definition: tsmapi.h:65
EndSampleScan_function EndSampleScan
Definition: tsmapi.h:75
SampleScanGetSampleSize_function SampleScanGetSampleSize
Definition: tsmapi.h:68
BeginSampleScan_function BeginSampleScan
Definition: tsmapi.h:72
NextSampleBlock_function NextSampleBlock
Definition: tsmapi.h:73
InitSampleScan_function InitSampleScan
Definition: tsmapi.h:71
List * parameterTypes
Definition: tsmapi.h:61
bool repeatable_across_queries
Definition: tsmapi.h:64
Datum tsm_system_time_handler(PG_FUNCTION_ARGS)
static void system_time_samplescangetsamplesize(PlannerInfo *root, RelOptInfo *baserel, List *paramexprs, BlockNumber *pages, double *tuples)
static uint32 random_relative_prime(uint32 n, pg_prng_state *randstate)
PG_FUNCTION_INFO_V1(tsm_system_time_handler)
PG_MODULE_MAGIC_EXT(.name="tsm_system_time",.version=PG_VERSION)
static void system_time_beginsamplescan(SampleScanState *node, Datum *params, int nparams, uint32 seed)
static uint32 gcd(uint32 a, uint32 b)
static void system_time_initsamplescan(SampleScanState *node, int eflags)
static OffsetNumber system_time_nextsampletuple(SampleScanState *node, BlockNumber blockno, OffsetNumber maxoffset)
static BlockNumber system_time_nextsampleblock(SampleScanState *node, BlockNumber nblocks)
const char * name