Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 415263b

Browse files
committed
> Occasionally and without warning I get this from my daily vacuum
> cronjob: > NOTICE: RegisterSharedInvalid: SI buffer overflow > NOTICE: InvalidateSharedInvalid: cache state reset > I don't understand what these mean. Should I be concerned about them > and what do they signify? No real need to worry. Those should've been downgraded to DEBUG-level messages a release or two back, but nobody bothered... Tom Lane
1 parent ef71c8f commit 415263b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/backend/storage/ipc/sinval.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $Header: /cvsroot/pgsql/src/backend/storage/ipc/sinval.c,v 1.29 2001/03/23 04:49:54 momjian Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/storage/ipc/sinval.c,v 1.30 2001/05/07 17:20:19 momjian Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -91,7 +91,7 @@ RegisterSharedInvalid(int cacheId, /* XXX */
9191
insertOK = SIInsertDataEntry(shmInvalBuffer, &newInvalid);
9292
SpinRelease(SInvalLock);
9393
if (!insertOK)
94-
elog(NOTICE, "RegisterSharedInvalid: SI buffer overflow");
94+
elog(DEBUG, "RegisterSharedInvalid: SI buffer overflow");
9595
}
9696

9797
/*
@@ -116,7 +116,7 @@ void
116116
if (getResult < 0)
117117
{
118118
/* got a reset message */
119-
elog(NOTICE, "InvalidateSharedInvalid: cache state reset");
119+
elog(DEBUG, "InvalidateSharedInvalid: cache state reset");
120120
resetFunction();
121121
}
122122
else

0 commit comments

Comments
 (0)