2 * Copyright (c) 2011 Teodor Sigaev <teodor@sigaev.ru>
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. Neither the name of the author nor the names of any co-contributors
14 * may be used to endorse or promote products derived from this software
15 * without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY CONTRIBUTORS ``AS IS'' AND ANY EXPRESS
18 * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL CONTRIBUTORS BE LIABLE FOR ANY
21 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
23 * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
25 * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
26 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
27 * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 #include "access/transam.h"
34 #include "access/xact.h"
35 #include "catalog/namespace.h"
36 #include "commands/vacuum.h"
37 #include "executor/executor.h"
38 #include "nodes/nodes.h"
39 #include "nodes/parsenodes.h"
40 #include "storage/bufmgr.h"
41 #include "utils/builtins.h"
42 #include "utils/hsearch.h"
43 #include "utils/memutils.h"
44 #include "utils/lsyscache.h"
45 #include "utils/guc.h"
46 #if PG_VERSION_NUM >= 90200
47 #include "catalog/pg_class.h"
48 #include "nodes/primnodes.h"
49 #include "tcop/utility.h"
50 #include "utils/rel.h"
51 #include "utils/relcache.h"
52 #include "utils/timestamp.h"
53 #if PG_VERSION_NUM >= 90500
54 #include "nodes/makefuncs.h"
55 #if PG_VERSION_NUM >= 100000
56 #include "utils/varlena.h"
57 #include "utils/regproc.h"
62 #ifdef PG_MODULE_MAGIC
66 static bool online_analyze_enable = true;
67 static bool online_analyze_local_tracking = false;
68 static bool online_analyze_verbose = true;
69 static double online_analyze_scale_factor = 0.1;
70 static int online_analyze_threshold = 50;
71 static int online_analyze_capacity_threshold = 100000;
72 static double online_analyze_min_interval = 10000;
73 static int online_analyze_lower_limit = 0;
75 static ExecutorEnd_hook_type oldExecutorEndHook = NULL;
76 #if PG_VERSION_NUM >= 90200
77 static ProcessUtility_hook_type oldProcessUtilityHook = NULL;
82 CK_SELECT = CMD_SELECT,
83 CK_UPDATE = CMD_UPDATE,
84 CK_INSERT = CMD_INSERT,
85 CK_DELETE = CMD_DELETE,
97 OATT_PERSISTENT = 0x01,
98 OATT_TEMPORARY = 0x02,
100 } OnlineAnalyzeTableType;
102 static const struct config_enum_entry online_analyze_table_type_options[] =
104 {"all", OATT_ALL, false},
105 {"persistent", OATT_PERSISTENT, false},
106 {"temporary", OATT_TEMPORARY, false},
107 {"none", OATT_NONE, false},
111 static int online_analyze_table_type = (int)OATT_ALL;
113 typedef struct TableList {
119 static TableList excludeTables = {0, NULL, NULL};
120 static TableList includeTables = {0, NULL, NULL};
122 typedef struct OnlineAnalyzeTableStat {
125 PgStat_Counter n_tuples;
126 PgStat_Counter changes_since_analyze;
127 TimestampTz autovac_analyze_timestamp;
128 TimestampTz analyze_timestamp;
129 } OnlineAnalyzeTableStat;
131 static MemoryContext onlineAnalyzeMemoryContext = NULL;
132 static HTAB *relstats = NULL;
134 static void relstatsInit(void);
136 #if PG_VERSION_NUM < 100000
138 oid_cmp(const void *a, const void *b)
140 if (*(Oid*)a == *(Oid*)b)
142 return (*(Oid*)a > *(Oid*)b) ? 1 : -1;
147 tableListAssign(const char * newval, bool doit, TableList *tbl)
156 rawname = pstrdup(newval);
158 if (!SplitIdentifierString(rawname, ',', &namelist))
163 nOids = list_length(namelist);
164 newOids = malloc(sizeof(Oid) * (nOids+1));
166 elog(ERROR,"could not allocate %d bytes",
167 (int)(sizeof(Oid) * (nOids+1)));
172 char *curname = (char *) lfirst(l);
173 #if PG_VERSION_NUM >= 90200
174 Oid relOid = RangeVarGetRelid(makeRangeVarFromNameList(
175 stringToQualifiedNameList(curname)), NoLock, true);
177 Oid relOid = RangeVarGetRelid(makeRangeVarFromNameList(
178 stringToQualifiedNameList(curname)), true);
181 if (relOid == InvalidOid)
183 #if PG_VERSION_NUM >= 90100
186 elog(WARNING,"'%s' does not exist", curname);
189 else if ( get_rel_relkind(relOid) != RELKIND_RELATION )
191 #if PG_VERSION_NUM >= 90100
194 elog(WARNING,"'%s' is not an table", curname);
199 newOids[i++] = relOid;
208 tbl->tables = newOids;
209 if (tbl->nTables > 1)
210 qsort(tbl->tables, tbl->nTables, sizeof(tbl->tables[0]), oid_cmp);
226 #if PG_VERSION_NUM >= 90100
228 excludeTablesCheck(char **newval, void **extra, GucSource source)
232 val = (char*)tableListAssign(*newval, false, &excludeTables);
244 excludeTablesAssign(const char *newval, void *extra)
246 tableListAssign(newval, true, &excludeTables);
250 includeTablesCheck(char **newval, void **extra, GucSource source)
254 val = (char*)tableListAssign(*newval, false, &includeTables);
266 includeTablesAssign(const char *newval, void *extra)
268 tableListAssign(newval, true, &excludeTables);
271 #else /* PG_VERSION_NUM < 90100 */
274 excludeTablesAssign(const char * newval, bool doit, GucSource source)
276 return tableListAssign(newval, doit, &excludeTables);
280 includeTablesAssign(const char * newval, bool doit, GucSource source)
282 return tableListAssign(newval, doit, &includeTables);
288 tableListShow(TableList *tbl)
294 len = 1 /* \0 */ + tbl->nTables * (2 * NAMEDATALEN + 2 /* ', ' */ + 1 /* . */);
295 ptr = val = palloc(len);
297 for(i=0; i<tbl->nTables; i++)
299 char *relname = get_rel_name(tbl->tables[i]);
300 Oid nspOid = get_rel_namespace(tbl->tables[i]);
301 char *nspname = get_namespace_name(nspOid);
303 if ( relname == NULL || nspOid == InvalidOid || nspname == NULL )
306 ptr += snprintf(ptr, len - (ptr - val), "%s%s.%s",
315 excludeTablesShow(void)
317 return tableListShow(&excludeTables);
321 includeTablesShow(void)
323 return tableListShow(&includeTables);
327 matchOid(TableList *tbl, Oid oid)
329 Oid *StopLow = tbl->tables,
330 *StopHigh = tbl->tables + tbl->nTables,
333 /* Loop invariant: StopLow <= val < StopHigh */
334 while (StopLow < StopHigh)
336 StopMiddle = StopLow + ((StopHigh - StopLow) >> 1);
338 if (*StopMiddle == oid)
340 else if (*StopMiddle < oid)
341 StopLow = StopMiddle + 1;
343 StopHigh = StopMiddle;
349 #if PG_VERSION_NUM >= 90500
351 makeRangeVarFromOid(Oid relOid)
354 get_namespace_name(get_rel_namespace(relOid)),
355 get_rel_name(relOid),
363 makeAnalyze(Oid relOid, CmdKind operation, int64 naffected)
365 TimestampTz now = GetCurrentTimestamp();
367 OnlineAnalyzeTableType reltype;
370 OnlineAnalyzeTableStat *rstat,
372 PgStat_StatTabEntry *tabentry = NULL;
374 if (relOid == InvalidOid)
378 /* return if there is no changes */
380 else if (naffected < 0)
381 /* number if affected rows is unknown */
384 rel = RelationIdGetRelation(relOid);
385 if (rel->rd_rel->relkind != RELKIND_RELATION)
392 #if PG_VERSION_NUM >= 90100
393 (rel->rd_rel->relpersistence == RELPERSISTENCE_TEMP)
395 (rel->rd_istemp || rel->rd_islocaltemp)
397 ? OATT_TEMPORARY : OATT_PERSISTENT;
402 * includeTables overwrites excludeTables
404 switch(online_analyze_table_type)
407 if (get_rel_relkind(relOid) != RELKIND_RELATION ||
408 (matchOid(&excludeTables, relOid) == true &&
409 matchOid(&includeTables, relOid) == false))
413 if (get_rel_relkind(relOid) != RELKIND_RELATION ||
414 matchOid(&includeTables, relOid) == false)
418 case OATT_PERSISTENT:
421 * skip analyze if relation's type doesn't not match
422 * online_analyze_table_type
424 if ((online_analyze_table_type & reltype) == 0 ||
425 matchOid(&excludeTables, relOid) == true)
427 if (matchOid(&includeTables, relOid) == false)
434 * Do not store data about persistent table in local memory because we
435 * could not track changes of them: they could be changed by another
436 * backends. So always get a pgstat table entry.
438 if (reltype == OATT_TEMPORARY)
439 rstat = hash_search(relstats, &relOid, HASH_ENTER, &found);
441 rstat = &dummyrstat; /* found == false for following if */
445 MemSet(rstat, 0, sizeof(*rstat));
446 rstat->tableid = relOid;
449 else if (operation == CK_VACUUM)
451 /* force reread becouse vacuum could change n_tuples */
452 rstat->rereadStat = true;
455 else if (operation == CK_ANALYZE)
458 rstat->changes_since_analyze = 0;
459 rstat->analyze_timestamp = now;
463 Assert(rstat->tableid == relOid);
466 /* do not reread data if it was a truncation */
467 operation != CK_TRUNCATE && operation != CK_FASTTRUNCATE &&
468 /* read for persistent table and for temp teble if it allowed */
469 (reltype == OATT_PERSISTENT || online_analyze_local_tracking == false) &&
470 /* read only for new table or we know that it's needed */
471 (newTable == true || rstat->rereadStat == true)
474 rstat->rereadStat = false;
476 tabentry = pgstat_fetch_stat_tabentry(relOid);
480 rstat->n_tuples = tabentry->n_dead_tuples + tabentry->n_live_tuples;
481 rstat->changes_since_analyze =
482 #if PG_VERSION_NUM >= 90000
483 tabentry->changes_since_analyze;
485 tabentry->n_live_tuples + tabentry->n_dead_tuples -
486 tabentry->last_anl_tuples;
488 rstat->autovac_analyze_timestamp =
489 tabentry->autovac_analyze_timestamp;
490 rstat->analyze_timestamp = tabentry->analyze_timestamp;
495 /* force analyze after truncate, fasttruncate already did analyze */
496 operation == CK_TRUNCATE || (
497 /* do not analyze too often, if both stamps are exceeded the go */
498 TimestampDifferenceExceeds(rstat->analyze_timestamp, now, online_analyze_min_interval) &&
499 TimestampDifferenceExceeds(rstat->autovac_analyze_timestamp, now, online_analyze_min_interval) &&
500 /* do not analyze too small tables */
501 rstat->n_tuples + rstat->changes_since_analyze + naffected > online_analyze_lower_limit &&
502 /* be in sync with relation_needs_vacanalyze */
503 ((double)(rstat->changes_since_analyze + naffected)) >=
504 online_analyze_scale_factor * ((double)rstat->n_tuples) +
505 (double)online_analyze_threshold))
507 #if PG_VERSION_NUM < 90500
510 VacuumParams vacstmt;
512 TimestampTz startStamp, endStamp;
515 memset(&startStamp, 0, sizeof(startStamp)); /* keep compiler quiet */
517 memset(&vacstmt, 0, sizeof(vacstmt));
519 vacstmt.freeze_min_age = -1;
520 vacstmt.freeze_table_age = -1; /* ??? */
522 #if PG_VERSION_NUM < 90500
523 vacstmt.type = T_VacuumStmt;
524 vacstmt.relation = NULL;
525 vacstmt.va_cols = NIL;
526 #if PG_VERSION_NUM >= 90000
527 vacstmt.options = VACOPT_ANALYZE;
528 if (online_analyze_verbose)
529 vacstmt.options |= VACOPT_VERBOSE;
531 vacstmt.vacuum = vacstmt.full = false;
532 vacstmt.analyze = true;
533 vacstmt.verbose = online_analyze_verbose;
536 vacstmt.multixact_freeze_min_age = -1;
537 vacstmt.multixact_freeze_table_age = -1;
538 vacstmt.log_min_duration = -1;
541 if (online_analyze_verbose)
542 startStamp = GetCurrentTimestamp();
545 #if PG_VERSION_NUM < 90500
547 #if PG_VERSION_NUM >= 90018
550 , GetAccessStrategy(BAS_VACUUM)
551 #if (PG_VERSION_NUM >= 90000) && (PG_VERSION_NUM < 90004)
555 makeRangeVarFromOid(relOid),
556 VACOPT_ANALYZE | ((online_analyze_verbose) ? VACOPT_VERBOSE : 0),
557 &vacstmt, NULL, true, GetAccessStrategy(BAS_VACUUM)
561 if (online_analyze_verbose)
566 endStamp = GetCurrentTimestamp();
567 TimestampDifference(startStamp, endStamp, &secs, µsecs);
568 elog(INFO, "analyze \"%s\" took %.02f seconds",
569 get_rel_name(relOid),
570 ((double)secs) + ((double)microsecs)/1.0e6);
573 rstat->autovac_analyze_timestamp = now;
574 rstat->changes_since_analyze = 0;
581 rstat->n_tuples += naffected;
583 rstat->rereadStat = (reltype == OATT_PERSISTENT);
586 case CK_FASTTRUNCATE:
587 rstat->rereadStat = false;
594 /* update last analyze timestamp in local memory of backend */
597 tabentry->analyze_timestamp = now;
598 tabentry->changes_since_analyze = 0;
601 /* force reload stat for new table */
603 pgstat_clear_snapshot();
608 #if PG_VERSION_NUM >= 90000
610 tabentry->changes_since_analyze += naffected;
616 rstat->changes_since_analyze += naffected;
617 rstat->n_tuples += naffected;
620 rstat->changes_since_analyze += 2 * naffected;
621 rstat->n_tuples += naffected;
623 rstat->changes_since_analyze += naffected;
626 case CK_FASTTRUNCATE:
627 rstat->changes_since_analyze = 0;
635 /* Reset local cache if we are over limit */
636 if (hash_get_num_entries(relstats) > online_analyze_capacity_threshold)
641 isFastTruncateCall(QueryDesc *queryDesc)
648 queryDesc->plannedstmt &&
649 queryDesc->operation == CMD_SELECT &&
650 queryDesc->plannedstmt->planTree &&
651 queryDesc->plannedstmt->planTree->targetlist &&
652 list_length(queryDesc->plannedstmt->planTree->targetlist) == 1
656 te = linitial(queryDesc->plannedstmt->planTree->targetlist);
658 if (!IsA(te, TargetEntry))
661 fe = (FuncExpr*)te->expr;
664 fe && IsA(fe, FuncExpr) &&
665 fe->funcid >= FirstNormalObjectId &&
666 fe->funcretset == false &&
667 fe->funcresulttype == VOIDOID &&
668 fe->funcvariadic == false &&
669 list_length(fe->args) == 1
673 constval = linitial(fe->args);
676 IsA(constval,Const) &&
677 constval->consttype == TEXTOID &&
678 strcmp(get_func_name(fe->funcid), "fasttruncate") == 0
686 extern PGDLLIMPORT void onlineAnalyzeHooker(QueryDesc *queryDesc);
688 onlineAnalyzeHooker(QueryDesc *queryDesc)
690 int64 naffected = -1;
693 if (queryDesc->estate)
694 naffected = queryDesc->estate->es_processed;
696 #if PG_VERSION_NUM >= 90200
697 if (online_analyze_enable &&
698 (constval = isFastTruncateCall(queryDesc)) != NULL)
700 Datum tblnamed = constval->constvalue;
701 char *tblname = text_to_cstring(DatumGetTextP(tblnamed));
703 makeRangeVarFromNameList(stringToQualifiedNameList(tblname));
705 makeAnalyze(RangeVarGetRelid(tblvar,
708 CK_FASTTRUNCATE, -1);
712 if (online_analyze_enable && queryDesc->plannedstmt &&
713 (queryDesc->operation == CMD_INSERT ||
714 queryDesc->operation == CMD_UPDATE ||
715 queryDesc->operation == CMD_DELETE
716 #if PG_VERSION_NUM < 90200
717 || (queryDesc->operation == CMD_SELECT &&
718 queryDesc->plannedstmt->intoClause)
722 #if PG_VERSION_NUM < 90200
723 if (queryDesc->operation == CMD_SELECT)
725 Oid relOid = RangeVarGetRelid(queryDesc->plannedstmt->intoClause->rel, true);
727 makeAnalyze(relOid, queryDesc->operation, naffected);
731 if (queryDesc->plannedstmt->resultRelations &&
732 queryDesc->plannedstmt->rtable)
736 foreach(l, queryDesc->plannedstmt->resultRelations)
738 int n = lfirst_int(l);
739 RangeTblEntry *rte = list_nth(queryDesc->plannedstmt->rtable, n-1);
741 if (rte->rtekind == RTE_RELATION)
742 makeAnalyze(rte->relid, (CmdKind)queryDesc->operation, naffected);
747 if (oldExecutorEndHook)
748 oldExecutorEndHook(queryDesc);
750 standard_ExecutorEnd(queryDesc);
753 static List *toremove = NIL;
756 * removeTable called on transaction end, see call RegisterXactCallback() below
759 removeTable(XactEvent event, void *arg)
765 case XACT_EVENT_COMMIT:
767 case XACT_EVENT_ABORT:
773 foreach(cell, toremove)
775 Oid relOid = lfirst_oid(cell);
777 hash_search(relstats, &relOid, HASH_REMOVE, NULL);
784 #if PG_VERSION_NUM >= 90200
786 onlineAnalyzeHookerUtility(
787 #if PG_VERSION_NUM >= 100000
792 const char *queryString,
793 #if PG_VERSION_NUM >= 90300
794 ProcessUtilityContext context, ParamListInfo params,
795 #if PG_VERSION_NUM >= 100000
796 QueryEnvironment *queryEnv,
799 ParamListInfo params, bool isTopLevel,
801 DestReceiver *dest, char *completionTag) {
802 List *tblnames = NIL;
803 CmdKind op = CK_INSERT;
804 #if PG_VERSION_NUM >= 100000
805 Node *parsetree = NULL;
807 if (pstmt->commandType == CMD_UTILITY)
808 parsetree = pstmt->utilityStmt;
811 if (parsetree && online_analyze_enable)
813 if (IsA(parsetree, CreateTableAsStmt) &&
814 ((CreateTableAsStmt*)parsetree)->into)
817 list_make1((RangeVar*)copyObject(((CreateTableAsStmt*)parsetree)->into->rel));
820 else if (IsA(parsetree, TruncateStmt))
822 tblnames = list_copy(((TruncateStmt*)parsetree)->relations);
825 else if (IsA(parsetree, DropStmt) &&
826 ((DropStmt*)parsetree)->removeType == OBJECT_TABLE)
830 foreach(cell, ((DropStmt*)parsetree)->objects)
832 List *relname = (List *) lfirst(cell);
833 RangeVar *rel = makeRangeVarFromNameList(relname);
834 Oid relOid = RangeVarGetRelid(rel, NoLock, true);
836 if (OidIsValid(relOid))
840 ctx = MemoryContextSwitchTo(TopTransactionContext);
841 toremove = lappend_oid(toremove, relOid);
842 MemoryContextSwitchTo(ctx);
846 else if (IsA(parsetree, VacuumStmt))
848 VacuumStmt *vac = (VacuumStmt*)parsetree;
850 tblnames = list_make1(vac->relation);
852 if (vac->options & (VACOPT_VACUUM | VACOPT_FULL | VACOPT_FREEZE))
853 /* optionally with analyze */
855 else if (vac->options & VACOPT_ANALYZE)
862 #if PG_VERSION_NUM >= 100000
863 #define parsetree pstmt
866 if (oldProcessUtilityHook)
867 oldProcessUtilityHook(parsetree, queryString,
868 #if PG_VERSION_NUM >= 90300
870 #if PG_VERSION_NUM >= 100000
876 dest, completionTag);
878 standard_ProcessUtility(parsetree, queryString,
879 #if PG_VERSION_NUM >= 90300
881 #if PG_VERSION_NUM >= 100000
887 dest, completionTag);
889 #if PG_VERSION_NUM >= 100000
898 RangeVar *tblname = (RangeVar*)lfirst(l);
899 Oid tblOid = RangeVarGetRelid(tblname, NoLock, true);
901 makeAnalyze(tblOid, op, -1);
913 MemSet(&hash_ctl, 0, sizeof(hash_ctl));
915 hash_ctl.hash = oid_hash;
916 flags |= HASH_FUNCTION;
918 if (onlineAnalyzeMemoryContext)
920 Assert(relstats != NULL);
921 MemoryContextReset(onlineAnalyzeMemoryContext);
925 Assert(relstats == NULL);
926 onlineAnalyzeMemoryContext =
927 AllocSetContextCreate(CacheMemoryContext,
928 "online_analyze storage context",
929 #if PG_VERSION_NUM < 90600
930 ALLOCSET_DEFAULT_MINSIZE,
931 ALLOCSET_DEFAULT_INITSIZE,
932 ALLOCSET_DEFAULT_MAXSIZE
934 ALLOCSET_DEFAULT_SIZES
939 hash_ctl.hcxt = onlineAnalyzeMemoryContext;
940 flags |= HASH_CONTEXT;
942 hash_ctl.keysize = sizeof(Oid);
944 hash_ctl.entrysize = sizeof(OnlineAnalyzeTableStat);
947 relstats = hash_create("online_analyze storage", 1024, &hash_ctl, flags);
956 oldExecutorEndHook = ExecutorEnd_hook;
958 ExecutorEnd_hook = onlineAnalyzeHooker;
960 #if PG_VERSION_NUM >= 90200
961 oldProcessUtilityHook = ProcessUtility_hook;
963 ProcessUtility_hook = onlineAnalyzeHookerUtility;
967 DefineCustomBoolVariable(
968 "online_analyze.enable",
969 "Enable on-line analyze",
970 "Enables analyze of table directly after insert/update/delete/select into",
971 &online_analyze_enable,
972 #if PG_VERSION_NUM >= 80400
973 online_analyze_enable,
976 #if PG_VERSION_NUM >= 80400
978 #if PG_VERSION_NUM >= 90100
986 DefineCustomBoolVariable(
987 "online_analyze.local_tracking",
988 "Per backend tracking",
989 "Per backend tracking for temp tables (do not use system statistic)",
990 &online_analyze_local_tracking,
991 #if PG_VERSION_NUM >= 80400
992 online_analyze_local_tracking,
995 #if PG_VERSION_NUM >= 80400
997 #if PG_VERSION_NUM >= 90100
1005 DefineCustomBoolVariable(
1006 "online_analyze.verbose",
1007 "Verbosity of on-line analyze",
1008 "Make ANALYZE VERBOSE after table's changes",
1009 &online_analyze_verbose,
1010 #if PG_VERSION_NUM >= 80400
1011 online_analyze_verbose,
1014 #if PG_VERSION_NUM >= 80400
1016 #if PG_VERSION_NUM >= 90100
1024 DefineCustomRealVariable(
1025 "online_analyze.scale_factor",
1026 "fraction of table size to start on-line analyze",
1027 "fraction of table size to start on-line analyze",
1028 &online_analyze_scale_factor,
1029 #if PG_VERSION_NUM >= 80400
1030 online_analyze_scale_factor,
1035 #if PG_VERSION_NUM >= 80400
1037 #if PG_VERSION_NUM >= 90100
1045 DefineCustomIntVariable(
1046 "online_analyze.threshold",
1047 "min number of row updates before on-line analyze",
1048 "min number of row updates before on-line analyze",
1049 &online_analyze_threshold,
1050 #if PG_VERSION_NUM >= 80400
1051 online_analyze_threshold,
1056 #if PG_VERSION_NUM >= 80400
1058 #if PG_VERSION_NUM >= 90100
1066 DefineCustomIntVariable(
1067 "online_analyze.capacity_threshold",
1068 "Max local cache table capacity",
1069 "Max local cache table capacity",
1070 &online_analyze_capacity_threshold,
1071 #if PG_VERSION_NUM >= 80400
1072 online_analyze_capacity_threshold,
1077 #if PG_VERSION_NUM >= 80400
1079 #if PG_VERSION_NUM >= 90100
1087 DefineCustomRealVariable(
1088 "online_analyze.min_interval",
1089 "minimum time interval between analyze call (in milliseconds)",
1090 "minimum time interval between analyze call (in milliseconds)",
1091 &online_analyze_min_interval,
1092 #if PG_VERSION_NUM >= 80400
1093 online_analyze_min_interval,
1098 #if PG_VERSION_NUM >= 80400
1100 #if PG_VERSION_NUM >= 90100
1108 DefineCustomEnumVariable(
1109 "online_analyze.table_type",
1110 "Type(s) of table for online analyze: all(default), persistent, temporary, none",
1112 &online_analyze_table_type,
1113 #if PG_VERSION_NUM >= 80400
1114 online_analyze_table_type,
1116 online_analyze_table_type_options,
1118 #if PG_VERSION_NUM >= 80400
1120 #if PG_VERSION_NUM >= 90100
1128 DefineCustomStringVariable(
1129 "online_analyze.exclude_tables",
1130 "List of tables which will not online analyze",
1132 &excludeTables.tableStr,
1133 #if PG_VERSION_NUM >= 80400
1138 #if PG_VERSION_NUM >= 90100
1140 excludeTablesAssign,
1142 excludeTablesAssign,
1147 DefineCustomStringVariable(
1148 "online_analyze.include_tables",
1149 "List of tables which will online analyze",
1151 &includeTables.tableStr,
1152 #if PG_VERSION_NUM >= 80400
1157 #if PG_VERSION_NUM >= 90100
1159 includeTablesAssign,
1161 includeTablesAssign,
1166 DefineCustomIntVariable(
1167 "online_analyze.lower_limit",
1168 "min number of rows in table to analyze",
1169 "min number of rows in table to analyze",
1170 &online_analyze_lower_limit,
1171 #if PG_VERSION_NUM >= 80400
1172 online_analyze_lower_limit,
1177 #if PG_VERSION_NUM >= 80400
1179 #if PG_VERSION_NUM >= 90100
1187 RegisterXactCallback(removeTable, NULL);
1190 void _PG_fini(void);
1194 ExecutorEnd_hook = oldExecutorEndHook;
1195 #if PG_VERSION_NUM >= 90200
1196 ProcessUtility_hook = oldProcessUtilityHook;
1199 if (excludeTables.tables)
1200 free(excludeTables.tables);
1201 if (includeTables.tables)
1202 free(includeTables.tables);
1204 excludeTables.tables = includeTables.tables = NULL;
1205 excludeTables.nTables = includeTables.nTables = 0;