Now that we have non-Latin1 SGML detection, restore Latin1 chars
[pgsql.git] / src / backend / utils / misc / sampling.c
blob933db06702ccd9747c2ee56688413b099c1665ea
1 /*-------------------------------------------------------------------------
3 * sampling.c
4 * Relation block sampling routines.
6 * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
7 * Portions Copyright (c) 1994, Regents of the University of California
10 * IDENTIFICATION
11 * src/backend/utils/misc/sampling.c
13 *-------------------------------------------------------------------------
16 #include "postgres.h"
18 #include <math.h>
20 #include "utils/sampling.h"
24 * BlockSampler_Init -- prepare for random sampling of blocknumbers
26 * BlockSampler provides algorithm for block level sampling of a relation
27 * as discussed on pgsql-hackers 2004-04-02 (subject "Large DB")
28 * It selects a random sample of samplesize blocks out of
29 * the nblocks blocks in the table. If the table has less than
30 * samplesize blocks, all blocks are selected.
32 * Since we know the total number of blocks in advance, we can use the
33 * straightforward Algorithm S from Knuth 3.4.2, rather than Vitter's
34 * algorithm.
36 * Returns the number of blocks that BlockSampler_Next will return.
38 BlockNumber
39 BlockSampler_Init(BlockSampler bs, BlockNumber nblocks, int samplesize,
40 uint32 randseed)
42 bs->N = nblocks; /* measured table size */
45 * If we decide to reduce samplesize for tables that have less or not much
46 * more than samplesize blocks, here is the place to do it.
48 bs->n = samplesize;
49 bs->t = 0; /* blocks scanned so far */
50 bs->m = 0; /* blocks selected so far */
52 sampler_random_init_state(randseed, &bs->randstate);
54 return Min(bs->n, bs->N);
57 bool
58 BlockSampler_HasMore(BlockSampler bs)
60 return (bs->t < bs->N) && (bs->m < bs->n);
63 BlockNumber
64 BlockSampler_Next(BlockSampler bs)
66 BlockNumber K = bs->N - bs->t; /* remaining blocks */
67 int k = bs->n - bs->m; /* blocks still to sample */
68 double p; /* probability to skip block */
69 double V; /* random */
71 Assert(BlockSampler_HasMore(bs)); /* hence K > 0 and k > 0 */
73 if ((BlockNumber) k >= K)
75 /* need all the rest */
76 bs->m++;
77 return bs->t++;
80 /*----------
81 * It is not obvious that this code matches Knuth's Algorithm S.
82 * Knuth says to skip the current block with probability 1 - k/K.
83 * If we are to skip, we should advance t (hence decrease K), and
84 * repeat the same probabilistic test for the next block. The naive
85 * implementation thus requires a sampler_random_fract() call for each
86 * block number. But we can reduce this to one sampler_random_fract()
87 * call per selected block, by noting that each time the while-test
88 * succeeds, we can reinterpret V as a uniform random number in the range
89 * 0 to p. Therefore, instead of choosing a new V, we just adjust p to be
90 * the appropriate fraction of its former value, and our next loop
91 * makes the appropriate probabilistic test.
93 * We have initially K > k > 0. If the loop reduces K to equal k,
94 * the next while-test must fail since p will become exactly zero
95 * (we assume there will not be roundoff error in the division).
96 * (Note: Knuth suggests a "<=" loop condition, but we use "<" just
97 * to be doubly sure about roundoff error.) Therefore K cannot become
98 * less than k, which means that we cannot fail to select enough blocks.
99 *----------
101 V = sampler_random_fract(&bs->randstate);
102 p = 1.0 - (double) k / (double) K;
103 while (V < p)
105 /* skip */
106 bs->t++;
107 K--; /* keep K == N - t */
109 /* adjust p to be new cutoff point in reduced range */
110 p *= 1.0 - (double) k / (double) K;
113 /* select */
114 bs->m++;
115 return bs->t++;
119 * These two routines embody Algorithm Z from "Random sampling with a
120 * reservoir" by Jeffrey S. Vitter, in ACM Trans. Math. Softw. 11, 1
121 * (Mar. 1985), Pages 37-57. Vitter describes his algorithm in terms
122 * of the count S of records to skip before processing another record.
123 * It is computed primarily based on t, the number of records already read.
124 * The only extra state needed between calls is W, a random state variable.
126 * reservoir_init_selection_state computes the initial W value.
128 * Given that we've already read t records (t >= n), reservoir_get_next_S
129 * determines the number of records to skip before the next record is
130 * processed.
132 void
133 reservoir_init_selection_state(ReservoirState rs, int n)
136 * Reservoir sampling is not used anywhere where it would need to return
137 * repeatable results so we can initialize it randomly.
139 sampler_random_init_state(pg_prng_uint32(&pg_global_prng_state),
140 &rs->randstate);
142 /* Initial value of W (for use when Algorithm Z is first applied) */
143 rs->W = exp(-log(sampler_random_fract(&rs->randstate)) / n);
146 double
147 reservoir_get_next_S(ReservoirState rs, double t, int n)
149 double S;
151 /* The magic constant here is T from Vitter's paper */
152 if (t <= (22.0 * n))
154 /* Process records using Algorithm X until t is large enough */
155 double V,
156 quot;
158 V = sampler_random_fract(&rs->randstate); /* Generate V */
159 S = 0;
160 t += 1;
161 /* Note: "num" in Vitter's code is always equal to t - n */
162 quot = (t - (double) n) / t;
163 /* Find min S satisfying (4.1) */
164 while (quot > V)
166 S += 1;
167 t += 1;
168 quot *= (t - (double) n) / t;
171 else
173 /* Now apply Algorithm Z */
174 double W = rs->W;
175 double term = t - (double) n + 1;
177 for (;;)
179 double numer,
180 numer_lim,
181 denom;
182 double U,
184 lhs,
185 rhs,
187 tmp;
189 /* Generate U and X */
190 U = sampler_random_fract(&rs->randstate);
191 X = t * (W - 1.0);
192 S = floor(X); /* S is tentatively set to floor(X) */
193 /* Test if U <= h(S)/cg(X) in the manner of (6.3) */
194 tmp = (t + 1) / term;
195 lhs = exp(log(((U * tmp * tmp) * (term + S)) / (t + X)) / n);
196 rhs = (((t + X) / (term + S)) * term) / t;
197 if (lhs <= rhs)
199 W = rhs / lhs;
200 break;
202 /* Test if U <= f(S)/cg(X) */
203 y = (((U * (t + 1)) / term) * (t + S + 1)) / (t + X);
204 if ((double) n < S)
206 denom = t;
207 numer_lim = term + S;
209 else
211 denom = t - (double) n + S;
212 numer_lim = t + 1;
214 for (numer = t + S; numer >= numer_lim; numer -= 1)
216 y *= numer / denom;
217 denom -= 1;
219 W = exp(-log(sampler_random_fract(&rs->randstate)) / n); /* Generate W in advance */
220 if (exp(log(y) / n) <= (t + X) / t)
221 break;
223 rs->W = W;
225 return S;
229 /*----------
230 * Random number generator used by sampling
231 *----------
233 void
234 sampler_random_init_state(uint32 seed, pg_prng_state *randstate)
236 pg_prng_seed(randstate, (uint64) seed);
239 /* Select a random value R uniformly distributed in (0 - 1) */
240 double
241 sampler_random_fract(pg_prng_state *randstate)
243 double res;
245 /* pg_prng_double returns a value in [0.0 - 1.0), so we must reject 0.0 */
248 res = pg_prng_double(randstate);
249 } while (unlikely(res == 0.0));
250 return res;
255 * Backwards-compatible API for block sampling
257 * This code is now deprecated, but since it's still in use by many FDWs,
258 * we should keep it for awhile at least. The functionality is the same as
259 * sampler_random_fract/reservoir_init_selection_state/reservoir_get_next_S,
260 * except that a common random state is used across all callers.
262 static ReservoirStateData oldrs;
263 static bool oldrs_initialized = false;
265 double
266 anl_random_fract(void)
268 /* initialize if first time through */
269 if (unlikely(!oldrs_initialized))
271 sampler_random_init_state(pg_prng_uint32(&pg_global_prng_state),
272 &oldrs.randstate);
273 oldrs_initialized = true;
276 /* and compute a random fraction */
277 return sampler_random_fract(&oldrs.randstate);
280 double
281 anl_init_selection_state(int n)
283 /* initialize if first time through */
284 if (unlikely(!oldrs_initialized))
286 sampler_random_init_state(pg_prng_uint32(&pg_global_prng_state),
287 &oldrs.randstate);
288 oldrs_initialized = true;
291 /* Initial value of W (for use when Algorithm Z is first applied) */
292 return exp(-log(sampler_random_fract(&oldrs.randstate)) / n);
295 double
296 anl_get_next_S(double t, int n, double *stateptr)
298 double result;
300 oldrs.W = *stateptr;
301 result = reservoir_get_next_S(&oldrs, t, n);
302 *stateptr = oldrs.W;
303 return result;