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 "miscadmin.h"
34 #include "access/transam.h"
35 #include "access/xact.h"
36 #include "catalog/namespace.h"
37 #include "commands/vacuum.h"
38 #include "executor/executor.h"
39 #include "nodes/nodes.h"
40 #include "nodes/parsenodes.h"
41 #include "storage/bufmgr.h"
42 #include "utils/builtins.h"
43 #include "utils/hsearch.h"
44 #include "utils/memutils.h"
45 #include "utils/lsyscache.h"
46 #include "utils/guc.h"
47 #if PG_VERSION_NUM >= 90200
48 #include "catalog/pg_class.h"
49 #include "nodes/primnodes.h"
50 #include "tcop/utility.h"
51 #include "utils/rel.h"
52 #include "utils/relcache.h"
53 #include "utils/timestamp.h"
54 #if PG_VERSION_NUM >= 90500
55 #include "nodes/makefuncs.h"
56 #if PG_VERSION_NUM >= 100000
57 #include "utils/varlena.h"
58 #include "utils/regproc.h"
59 #if PG_VERSION_NUM >= 130000
60 #include "common/hashfn.h"
66 #ifdef PG_MODULE_MAGIC
70 static bool online_analyze_enable = true;
71 static bool online_analyze_local_tracking = false;
72 static bool online_analyze_verbose = true;
73 static double online_analyze_scale_factor = 0.1;
74 static int online_analyze_threshold = 50;
75 static int online_analyze_capacity_threshold = 100000;
76 static double online_analyze_min_interval = 10000;
77 static int online_analyze_lower_limit = 0;
79 static ExecutorEnd_hook_type oldExecutorEndHook = NULL;
80 #if PG_VERSION_NUM >= 90200
81 static ProcessUtility_hook_type oldProcessUtilityHook = NULL;
84 #if PG_VERSION_NUM >= 120000
85 #define VACOPT_NOWAIT VACOPT_SKIP_LOCKED
90 CK_SELECT = CMD_SELECT,
91 CK_UPDATE = CMD_UPDATE,
92 CK_INSERT = CMD_INSERT,
93 CK_DELETE = CMD_DELETE,
105 OATT_PERSISTENT = 0x01,
106 OATT_TEMPORARY = 0x02,
108 } OnlineAnalyzeTableType;
110 static const struct config_enum_entry online_analyze_table_type_options[] =
112 {"all", OATT_ALL, false},
113 {"persistent", OATT_PERSISTENT, false},
114 {"temporary", OATT_TEMPORARY, false},
115 {"none", OATT_NONE, false},
119 static int online_analyze_table_type = (int)OATT_ALL;
121 typedef struct TableList {
128 static TableList excludeTables = {0, NULL, NULL, false};
129 static TableList includeTables = {0, NULL, NULL, false};
131 typedef struct OnlineAnalyzeTableStat {
134 PgStat_Counter n_tuples;
135 PgStat_Counter changes_since_analyze;
136 TimestampTz autovac_analyze_timestamp;
137 TimestampTz analyze_timestamp;
138 } OnlineAnalyzeTableStat;
140 static MemoryContext onlineAnalyzeMemoryContext = NULL;
141 static HTAB *relstats = NULL;
143 static void relstatsInit(void);
145 #if PG_VERSION_NUM < 100000
147 oid_cmp(const void *a, const void *b)
149 if (*(Oid*)a == *(Oid*)b)
151 return (*(Oid*)a > *(Oid*)b) ? 1 : -1;
156 tableListAssign(const char * newval, bool doit, TableList *tbl)
165 rawname = pstrdup(newval);
167 if (!SplitIdentifierString(rawname, ',', &namelist))
171 * follow work could be done only in normal processing because of
172 * accsess to system catalog
174 if (MyBackendId == InvalidBackendId || !IsUnderPostmaster ||
175 !IsTransactionState())
177 includeTables.inited = false;
178 excludeTables.inited = false;
184 nOids = list_length(namelist);
185 newOids = malloc(sizeof(Oid) * (nOids+1));
187 elog(ERROR,"could not allocate %d bytes",
188 (int)(sizeof(Oid) * (nOids+1)));
193 char *curname = (char *) lfirst(l);
194 #if PG_VERSION_NUM >= 90200
195 Oid relOid = RangeVarGetRelid(makeRangeVarFromNameList(
196 stringToQualifiedNameList(curname)), NoLock, true);
198 Oid relOid = RangeVarGetRelid(makeRangeVarFromNameList(
199 stringToQualifiedNameList(curname)), true);
202 if (relOid == InvalidOid)
204 #if PG_VERSION_NUM >= 90100
207 elog(WARNING,"'%s' does not exist", curname);
210 else if ( get_rel_relkind(relOid) != RELKIND_RELATION )
212 #if PG_VERSION_NUM >= 90100
215 elog(WARNING,"'%s' is not an table", curname);
220 newOids[i++] = relOid;
229 tbl->tables = newOids;
230 if (tbl->nTables > 1)
231 qsort(tbl->tables, tbl->nTables, sizeof(tbl->tables[0]), oid_cmp);
247 #if PG_VERSION_NUM >= 90100
249 excludeTablesCheck(char **newval, void **extra, GucSource source)
253 val = (char*)tableListAssign(*newval, false, &excludeTables);
265 excludeTablesAssign(const char *newval, void *extra)
267 tableListAssign(newval, true, &excludeTables);
271 includeTablesCheck(char **newval, void **extra, GucSource source)
275 val = (char*)tableListAssign(*newval, false, &includeTables);
287 includeTablesAssign(const char *newval, void *extra)
289 tableListAssign(newval, true, &includeTables);
292 #else /* PG_VERSION_NUM < 90100 */
295 excludeTablesAssign(const char * newval, bool doit, GucSource source)
297 return tableListAssign(newval, doit, &excludeTables);
301 includeTablesAssign(const char * newval, bool doit, GucSource source)
303 return tableListAssign(newval, doit, &includeTables);
311 TableList *tl[] = {&includeTables, &excludeTables};
314 if (MyBackendId == InvalidBackendId || !IsUnderPostmaster ||
315 !IsTransactionState())
316 return; /* we aren't in connected state */
318 for(i=0; i<lengthof(tl); i++)
320 TableList *tbl = tl[i];
322 if (tbl->inited == false)
323 tableListAssign(tbl->tableStr, true, tbl);
329 tableListShow(TableList *tbl)
337 len = 1 /* \0 */ + tbl->nTables * (2 * NAMEDATALEN + 2 /* ', ' */ + 1 /* . */);
338 ptr = val = palloc(len);
340 for(i=0; i<tbl->nTables; i++)
342 char *relname = get_rel_name(tbl->tables[i]);
343 Oid nspOid = get_rel_namespace(tbl->tables[i]);
344 char *nspname = get_namespace_name(nspOid);
346 if ( relname == NULL || nspOid == InvalidOid || nspname == NULL )
349 ptr += snprintf(ptr, len - (ptr - val), "%s%s.%s",
358 excludeTablesShow(void)
360 return tableListShow(&excludeTables);
364 includeTablesShow(void)
366 return tableListShow(&includeTables);
370 matchOid(TableList *tbl, Oid oid)
372 Oid *StopLow = tbl->tables,
373 *StopHigh = tbl->tables + tbl->nTables,
376 /* Loop invariant: StopLow <= val < StopHigh */
377 while (StopLow < StopHigh)
379 StopMiddle = StopLow + ((StopHigh - StopLow) >> 1);
381 if (*StopMiddle == oid)
383 else if (*StopMiddle < oid)
384 StopLow = StopMiddle + 1;
386 StopHigh = StopMiddle;
392 #if PG_VERSION_NUM >= 90500
394 makeRangeVarFromOid(Oid relOid)
397 get_namespace_name(get_rel_namespace(relOid)),
398 get_rel_name(relOid),
406 makeAnalyze(Oid relOid, CmdKind operation, int64 naffected)
408 TimestampTz now = GetCurrentTimestamp();
410 OnlineAnalyzeTableType reltype;
413 OnlineAnalyzeTableStat *rstat,
415 PgStat_StatTabEntry *tabentry = NULL;
417 if (relOid == InvalidOid)
421 /* return if there is no changes */
423 else if (naffected < 0)
424 /* number if affected rows is unknown */
427 rel = RelationIdGetRelation(relOid);
428 if (rel->rd_rel->relkind != RELKIND_RELATION)
435 #if PG_VERSION_NUM >= 90100
436 (rel->rd_rel->relpersistence == RELPERSISTENCE_TEMP)
438 (rel->rd_istemp || rel->rd_islocaltemp)
440 ? OATT_TEMPORARY : OATT_PERSISTENT;
445 * includeTables overwrites excludeTables
447 switch(online_analyze_table_type)
450 if (get_rel_relkind(relOid) != RELKIND_RELATION ||
451 (matchOid(&excludeTables, relOid) == true &&
452 matchOid(&includeTables, relOid) == false))
456 if (get_rel_relkind(relOid) != RELKIND_RELATION ||
457 matchOid(&includeTables, relOid) == false)
461 case OATT_PERSISTENT:
464 * skip analyze if relation's type doesn't not match
465 * online_analyze_table_type
467 if ((online_analyze_table_type & reltype) == 0 ||
468 matchOid(&excludeTables, relOid) == true)
470 if (matchOid(&includeTables, relOid) == false)
477 * Do not store data about persistent table in local memory because we
478 * could not track changes of them: they could be changed by another
479 * backends. So always get a pgstat table entry.
481 if (reltype == OATT_TEMPORARY)
482 rstat = hash_search(relstats, &relOid, HASH_ENTER, &found);
484 rstat = &dummyrstat; /* found == false for following if */
488 MemSet(rstat, 0, sizeof(*rstat));
489 rstat->tableid = relOid;
493 if (operation == CK_VACUUM)
495 /* force reread because vacuum could change n_tuples */
496 rstat->rereadStat = true;
499 else if (operation == CK_ANALYZE)
502 rstat->changes_since_analyze = 0;
503 rstat->analyze_timestamp = now;
505 rstat->rereadStat = true;
509 Assert(rstat->tableid == relOid);
512 /* do not reread data if it was a truncation */
513 operation != CK_TRUNCATE && operation != CK_FASTTRUNCATE &&
514 /* read for persistent table and for temp teble if it allowed */
515 (reltype == OATT_PERSISTENT || online_analyze_local_tracking == false) &&
516 /* read only for new table or we know that it's needed */
517 (newTable == true || rstat->rereadStat == true)
520 rstat->rereadStat = false;
522 tabentry = pgstat_fetch_stat_tabentry(relOid);
526 rstat->n_tuples = tabentry->n_dead_tuples + tabentry->n_live_tuples;
527 rstat->changes_since_analyze =
528 #if PG_VERSION_NUM >= 90000
529 tabentry->changes_since_analyze;
531 tabentry->n_live_tuples + tabentry->n_dead_tuples -
532 tabentry->last_anl_tuples;
534 rstat->autovac_analyze_timestamp =
535 tabentry->autovac_analyze_timestamp;
536 rstat->analyze_timestamp = tabentry->analyze_timestamp;
541 /* force analyze after truncate, fasttruncate already did analyze */
542 operation == CK_TRUNCATE || (
543 /* do not analyze too often, if both stamps are exceeded the go */
544 TimestampDifferenceExceeds(rstat->analyze_timestamp, now, online_analyze_min_interval) &&
545 TimestampDifferenceExceeds(rstat->autovac_analyze_timestamp, now, online_analyze_min_interval) &&
546 /* do not analyze too small tables */
547 rstat->n_tuples + rstat->changes_since_analyze + naffected > online_analyze_lower_limit &&
548 /* be in sync with relation_needs_vacanalyze */
549 ((double)(rstat->changes_since_analyze + naffected)) >=
550 online_analyze_scale_factor * ((double)rstat->n_tuples) +
551 (double)online_analyze_threshold))
553 #if PG_VERSION_NUM < 90500
556 VacuumParams vacstmt;
558 TimestampTz startStamp, endStamp;
562 /* ATX is not compatible with online_analyze */
563 if (getNestLevelATX() != 0)
567 memset(&startStamp, 0, sizeof(startStamp)); /* keep compiler quiet */
569 memset(&vacstmt, 0, sizeof(vacstmt));
571 vacstmt.freeze_min_age = -1;
572 vacstmt.freeze_table_age = -1; /* ??? */
574 #if PG_VERSION_NUM < 90500
575 vacstmt.type = T_VacuumStmt;
576 vacstmt.relation = NULL;
577 vacstmt.va_cols = NIL;
578 #if PG_VERSION_NUM >= 90000
579 vacstmt.options = VACOPT_ANALYZE;
580 if (online_analyze_verbose)
581 vacstmt.options |= VACOPT_VERBOSE;
583 vacstmt.vacuum = vacstmt.full = false;
584 vacstmt.analyze = true;
585 vacstmt.verbose = online_analyze_verbose;
588 vacstmt.multixact_freeze_min_age = -1;
589 vacstmt.multixact_freeze_table_age = -1;
590 vacstmt.log_min_duration = -1;
594 if (online_analyze_verbose)
595 startStamp = GetCurrentTimestamp();
597 flags = VACOPT_ANALYZE | VACOPT_NOWAIT |
598 ((online_analyze_verbose) ? VACOPT_VERBOSE : 0);
600 #if PG_VERSION_NUM >= 120000
601 vacstmt.options = flags;
604 #if PG_VERSION_NUM < 90500
606 #if PG_VERSION_NUM >= 90018
609 , GetAccessStrategy(BAS_VACUUM)
610 #if (PG_VERSION_NUM >= 90000) && (PG_VERSION_NUM < 90004)
614 makeRangeVarFromOid(relOid),
615 #if PG_VERSION_NUM < 120000
618 &vacstmt, NULL, true, GetAccessStrategy(BAS_VACUUM)
622 /* Make changes visible to subsequent calls */
623 CommandCounterIncrement();
625 if (online_analyze_verbose)
630 endStamp = GetCurrentTimestamp();
631 TimestampDifference(startStamp, endStamp, &secs, µsecs);
632 elog(INFO, "analyze \"%s\" took %.02f seconds",
633 get_rel_name(relOid),
634 ((double)secs) + ((double)microsecs)/1.0e6);
637 rstat->autovac_analyze_timestamp = now;
638 rstat->changes_since_analyze = 0;
645 rstat->n_tuples += naffected;
648 rstat->rereadStat = (reltype == OATT_PERSISTENT);
651 case CK_FASTTRUNCATE:
652 rstat->rereadStat = false;
659 /* update last analyze timestamp in local memory of backend */
662 tabentry->analyze_timestamp = now;
663 tabentry->changes_since_analyze = 0;
666 /* force reload stat for new table */
668 pgstat_clear_snapshot();
673 #if PG_VERSION_NUM >= 90000
675 tabentry->changes_since_analyze += naffected;
681 rstat->changes_since_analyze += naffected;
682 rstat->n_tuples += naffected;
685 rstat->changes_since_analyze += 2 * naffected;
686 rstat->n_tuples += naffected;
689 rstat->changes_since_analyze += naffected;
692 case CK_FASTTRUNCATE:
693 rstat->changes_since_analyze = 0;
701 /* Reset local cache if we are over limit */
702 if (hash_get_num_entries(relstats) > online_analyze_capacity_threshold)
707 isFastTruncateCall(QueryDesc *queryDesc)
714 queryDesc->plannedstmt &&
715 queryDesc->operation == CMD_SELECT &&
716 queryDesc->plannedstmt->planTree &&
717 queryDesc->plannedstmt->planTree->targetlist &&
718 list_length(queryDesc->plannedstmt->planTree->targetlist) == 1
722 te = linitial(queryDesc->plannedstmt->planTree->targetlist);
724 if (!IsA(te, TargetEntry))
727 fe = (FuncExpr*)te->expr;
730 fe && IsA(fe, FuncExpr) &&
731 fe->funcid >= FirstNormalObjectId &&
732 fe->funcretset == false &&
733 fe->funcresulttype == VOIDOID &&
734 fe->funcvariadic == false &&
735 list_length(fe->args) == 1
739 constval = linitial(fe->args);
742 IsA(constval,Const) &&
743 constval->consttype == TEXTOID &&
744 strcmp(get_func_name(fe->funcid), "fasttruncate") == 0
752 extern PGDLLIMPORT void onlineAnalyzeHooker(QueryDesc *queryDesc);
754 onlineAnalyzeHooker(QueryDesc *queryDesc)
756 int64 naffected = -1;
759 if (queryDesc->estate)
760 naffected = queryDesc->estate->es_processed;
764 #if PG_VERSION_NUM >= 90200
765 if (online_analyze_enable &&
766 (constval = isFastTruncateCall(queryDesc)) != NULL)
768 Datum tblnamed = constval->constvalue;
769 char *tblname = text_to_cstring(DatumGetTextP(tblnamed));
771 makeRangeVarFromNameList(stringToQualifiedNameList(tblname));
773 makeAnalyze(RangeVarGetRelid(tblvar,
776 CK_FASTTRUNCATE, -1);
780 if (online_analyze_enable && queryDesc->plannedstmt &&
781 (queryDesc->operation == CMD_INSERT ||
782 queryDesc->operation == CMD_UPDATE ||
783 queryDesc->operation == CMD_DELETE
784 #if PG_VERSION_NUM < 90200
785 || (queryDesc->operation == CMD_SELECT &&
786 queryDesc->plannedstmt->intoClause)
790 #if PG_VERSION_NUM < 90200
791 if (queryDesc->operation == CMD_SELECT)
793 Oid relOid = RangeVarGetRelid(queryDesc->plannedstmt->intoClause->rel, true);
795 makeAnalyze(relOid, queryDesc->operation, naffected);
799 if (queryDesc->plannedstmt->resultRelations &&
800 queryDesc->plannedstmt->rtable)
804 foreach(l, queryDesc->plannedstmt->resultRelations)
806 int n = lfirst_int(l);
807 RangeTblEntry *rte = list_nth(queryDesc->plannedstmt->rtable, n-1);
809 if (rte->rtekind == RTE_RELATION)
810 makeAnalyze(rte->relid, (CmdKind)queryDesc->operation, naffected);
815 if (oldExecutorEndHook)
816 oldExecutorEndHook(queryDesc);
818 standard_ExecutorEnd(queryDesc);
821 static List *toremove = NIL;
824 * removeTable called on transaction end, see call RegisterXactCallback() below
827 removeTable(XactEvent event, void *arg)
833 case XACT_EVENT_COMMIT:
835 case XACT_EVENT_ABORT:
841 foreach(cell, toremove)
843 Oid relOid = lfirst_oid(cell);
845 hash_search(relstats, &relOid, HASH_REMOVE, NULL);
851 #if PG_VERSION_NUM >= 120000
853 parse_vacuum_opt(VacuumStmt *vacstmt)
855 int options = vacstmt->is_vacuumcmd ? VACOPT_VACUUM : VACOPT_ANALYZE;
858 foreach(lc, vacstmt->options)
860 DefElem *opt = (DefElem *) lfirst(lc);
862 /* Parse common options for VACUUM and ANALYZE */
863 if (strcmp(opt->defname, "verbose") == 0)
864 options |= VACOPT_VERBOSE;
865 else if (strcmp(opt->defname, "skip_locked") == 0)
866 options |= VACOPT_SKIP_LOCKED;
867 else if (strcmp(opt->defname, "analyze") == 0)
868 options |= VACOPT_ANALYZE;
869 else if (strcmp(opt->defname, "freeze") == 0)
870 options |= VACOPT_FREEZE;
871 else if (strcmp(opt->defname, "full") == 0)
872 options |= VACOPT_FULL;
873 else if (strcmp(opt->defname, "disable_page_skipping") == 0)
874 options |= VACOPT_DISABLE_PAGE_SKIPPING;
882 #if PG_VERSION_NUM >= 90200
884 onlineAnalyzeHookerUtility(
885 #if PG_VERSION_NUM >= 100000
890 const char *queryString,
891 #if PG_VERSION_NUM >= 140000
894 #if PG_VERSION_NUM >= 90300
895 ProcessUtilityContext context, ParamListInfo params,
896 #if PG_VERSION_NUM >= 100000
897 QueryEnvironment *queryEnv,
900 ParamListInfo params, bool isTopLevel,
903 #if PG_VERSION_NUM >= 130000
904 QueryCompletion *completionTag
909 List *tblnames = NIL;
910 CmdKind op = CK_INSERT;
911 #if PG_VERSION_NUM >= 100000
912 Node *parsetree = NULL;
914 if (pstmt->commandType == CMD_UTILITY)
915 parsetree = pstmt->utilityStmt;
920 if (parsetree && online_analyze_enable)
922 if (IsA(parsetree, CreateTableAsStmt) &&
923 ((CreateTableAsStmt*)parsetree)->into)
926 list_make1((RangeVar*)copyObject(((CreateTableAsStmt*)parsetree)->into->rel));
929 else if (IsA(parsetree, TruncateStmt))
931 tblnames = list_copy(((TruncateStmt*)parsetree)->relations);
934 else if (IsA(parsetree, DropStmt) &&
935 ((DropStmt*)parsetree)->removeType == OBJECT_TABLE)
939 foreach(cell, ((DropStmt*)parsetree)->objects)
941 List *relname = (List *) lfirst(cell);
942 RangeVar *rel = makeRangeVarFromNameList(relname);
943 Oid relOid = RangeVarGetRelid(rel, NoLock, true);
945 if (OidIsValid(relOid))
949 ctx = MemoryContextSwitchTo(TopTransactionContext);
950 toremove = lappend_oid(toremove, relOid);
951 MemoryContextSwitchTo(ctx);
955 else if (IsA(parsetree, VacuumStmt))
957 VacuumStmt *vac = (VacuumStmt*)parsetree;
959 #if PG_VERSION_NUM >= 120000
960 parse_vacuum_opt(vac)
967 #if PG_VERSION_NUM >= 110000
968 tblnames = vac->rels;
971 tblnames = list_make1(vac->relation);
974 if (options & (VACOPT_VACUUM | VACOPT_FULL | VACOPT_FREEZE))
976 /* optionally with analyze */
979 /* drop all collected stat */
983 else if (options & VACOPT_ANALYZE)
987 /* should reset all counters */
991 OnlineAnalyzeTableStat *rstat;
992 TimestampTz now = GetCurrentTimestamp();
994 hash_seq_init(&hs, relstats);
996 while((rstat = hash_seq_search(&hs)) != NULL)
998 rstat->changes_since_analyze = 0;
999 rstat->analyze_timestamp = now;
1008 #if PG_VERSION_NUM >= 100000
1009 #define parsetree pstmt
1012 if (oldProcessUtilityHook)
1013 oldProcessUtilityHook(parsetree, queryString,
1014 #if PG_VERSION_NUM >= 140000
1017 #if PG_VERSION_NUM >= 90300
1019 #if PG_VERSION_NUM >= 100000
1025 dest, completionTag);
1027 standard_ProcessUtility(parsetree, queryString,
1028 #if PG_VERSION_NUM >= 140000
1031 #if PG_VERSION_NUM >= 90300
1033 #if PG_VERSION_NUM >= 100000
1039 dest, completionTag);
1041 #if PG_VERSION_NUM >= 100000
1048 foreach(l, tblnames)
1051 #if PG_VERSION_NUM >= 110000
1052 (IsA(lfirst(l), VacuumRelation)) ?
1053 ((VacuumRelation*)lfirst(l))->relation :
1055 (RangeVar*)lfirst(l);
1058 Assert(IsA(tblname, RangeVar));
1060 tblOid = RangeVarGetRelid(tblname, NoLock, true);
1061 makeAnalyze(tblOid, op, -1);
1074 MemSet(&hash_ctl, 0, sizeof(hash_ctl));
1076 hash_ctl.hash = oid_hash;
1077 flags |= HASH_FUNCTION;
1079 if (onlineAnalyzeMemoryContext)
1081 Assert(relstats != NULL);
1082 MemoryContextReset(onlineAnalyzeMemoryContext);
1086 Assert(relstats == NULL);
1088 #if PG_VERSION_NUM < 90600
1089 onlineAnalyzeMemoryContext =
1090 AllocSetContextCreate(CacheMemoryContext,
1091 "online_analyze storage context",
1092 ALLOCSET_DEFAULT_MINSIZE,
1093 ALLOCSET_DEFAULT_INITSIZE,
1094 ALLOCSET_DEFAULT_MAXSIZE
1097 onlineAnalyzeMemoryContext =
1098 AllocSetContextCreate(CacheMemoryContext,
1099 "online_analyze storage context", ALLOCSET_DEFAULT_SIZES);
1103 hash_ctl.hcxt = onlineAnalyzeMemoryContext;
1104 flags |= HASH_CONTEXT;
1106 hash_ctl.keysize = sizeof(Oid);
1108 hash_ctl.entrysize = sizeof(OnlineAnalyzeTableStat);
1111 relstats = hash_create("online_analyze storage", 1024, &hash_ctl, flags);
1114 void _PG_init(void);
1120 oldExecutorEndHook = ExecutorEnd_hook;
1122 ExecutorEnd_hook = onlineAnalyzeHooker;
1124 #if PG_VERSION_NUM >= 90200
1125 oldProcessUtilityHook = ProcessUtility_hook;
1127 ProcessUtility_hook = onlineAnalyzeHookerUtility;
1131 DefineCustomBoolVariable(
1132 "online_analyze.enable",
1133 "Enable on-line analyze",
1134 "Enables analyze of table directly after insert/update/delete/select into",
1135 &online_analyze_enable,
1136 #if PG_VERSION_NUM >= 80400
1137 online_analyze_enable,
1140 #if PG_VERSION_NUM >= 80400
1142 #if PG_VERSION_NUM >= 90100
1150 DefineCustomBoolVariable(
1151 "online_analyze.local_tracking",
1152 "Per backend tracking",
1153 "Per backend tracking for temp tables (do not use system statistic)",
1154 &online_analyze_local_tracking,
1155 #if PG_VERSION_NUM >= 80400
1156 online_analyze_local_tracking,
1159 #if PG_VERSION_NUM >= 80400
1161 #if PG_VERSION_NUM >= 90100
1169 DefineCustomBoolVariable(
1170 "online_analyze.verbose",
1171 "Verbosity of on-line analyze",
1172 "Make ANALYZE VERBOSE after table's changes",
1173 &online_analyze_verbose,
1174 #if PG_VERSION_NUM >= 80400
1175 online_analyze_verbose,
1178 #if PG_VERSION_NUM >= 80400
1180 #if PG_VERSION_NUM >= 90100
1188 DefineCustomRealVariable(
1189 "online_analyze.scale_factor",
1190 "fraction of table size to start on-line analyze",
1191 "fraction of table size to start on-line analyze",
1192 &online_analyze_scale_factor,
1193 #if PG_VERSION_NUM >= 80400
1194 online_analyze_scale_factor,
1199 #if PG_VERSION_NUM >= 80400
1201 #if PG_VERSION_NUM >= 90100
1209 DefineCustomIntVariable(
1210 "online_analyze.threshold",
1211 "min number of row updates before on-line analyze",
1212 "min number of row updates before on-line analyze",
1213 &online_analyze_threshold,
1214 #if PG_VERSION_NUM >= 80400
1215 online_analyze_threshold,
1220 #if PG_VERSION_NUM >= 80400
1222 #if PG_VERSION_NUM >= 90100
1230 DefineCustomIntVariable(
1231 "online_analyze.capacity_threshold",
1232 "Max local cache table capacity",
1233 "Max local cache table capacity",
1234 &online_analyze_capacity_threshold,
1235 #if PG_VERSION_NUM >= 80400
1236 online_analyze_capacity_threshold,
1241 #if PG_VERSION_NUM >= 80400
1243 #if PG_VERSION_NUM >= 90100
1251 DefineCustomRealVariable(
1252 "online_analyze.min_interval",
1253 "minimum time interval between analyze call (in milliseconds)",
1254 "minimum time interval between analyze call (in milliseconds)",
1255 &online_analyze_min_interval,
1256 #if PG_VERSION_NUM >= 80400
1257 online_analyze_min_interval,
1262 #if PG_VERSION_NUM >= 80400
1264 #if PG_VERSION_NUM >= 90100
1272 DefineCustomEnumVariable(
1273 "online_analyze.table_type",
1274 "Type(s) of table for online analyze: all(default), persistent, temporary, none",
1276 &online_analyze_table_type,
1277 #if PG_VERSION_NUM >= 80400
1278 online_analyze_table_type,
1280 online_analyze_table_type_options,
1282 #if PG_VERSION_NUM >= 80400
1284 #if PG_VERSION_NUM >= 90100
1292 DefineCustomStringVariable(
1293 "online_analyze.exclude_tables",
1294 "List of tables which will not online analyze",
1296 &excludeTables.tableStr,
1297 #if PG_VERSION_NUM >= 80400
1302 #if PG_VERSION_NUM >= 90100
1304 excludeTablesAssign,
1306 excludeTablesAssign,
1311 DefineCustomStringVariable(
1312 "online_analyze.include_tables",
1313 "List of tables which will online analyze",
1315 &includeTables.tableStr,
1316 #if PG_VERSION_NUM >= 80400
1321 #if PG_VERSION_NUM >= 90100
1323 includeTablesAssign,
1325 includeTablesAssign,
1330 DefineCustomIntVariable(
1331 "online_analyze.lower_limit",
1332 "min number of rows in table to analyze",
1333 "min number of rows in table to analyze",
1334 &online_analyze_lower_limit,
1335 #if PG_VERSION_NUM >= 80400
1336 online_analyze_lower_limit,
1341 #if PG_VERSION_NUM >= 80400
1343 #if PG_VERSION_NUM >= 90100
1351 RegisterXactCallback(removeTable, NULL);
1354 void _PG_fini(void);
1358 ExecutorEnd_hook = oldExecutorEndHook;
1359 #if PG_VERSION_NUM >= 90200
1360 ProcessUtility_hook = oldProcessUtilityHook;
1363 if (excludeTables.tables)
1364 free(excludeTables.tables);
1365 if (includeTables.tables)
1366 free(includeTables.tables);
1368 excludeTables.tables = includeTables.tables = NULL;
1369 excludeTables.nTables = includeTables.nTables = 0;