提交 415263b2 编写于 作者: B Bruce Momjian

> 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
上级 ef71c8fc
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/storage/ipc/sinval.c,v 1.29 2001/03/23 04:49:54 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/storage/ipc/sinval.c,v 1.30 2001/05/07 17:20:19 momjian Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -91,7 +91,7 @@ RegisterSharedInvalid(int cacheId, /* XXX */ ...@@ -91,7 +91,7 @@ RegisterSharedInvalid(int cacheId, /* XXX */
insertOK = SIInsertDataEntry(shmInvalBuffer, &newInvalid); insertOK = SIInsertDataEntry(shmInvalBuffer, &newInvalid);
SpinRelease(SInvalLock); SpinRelease(SInvalLock);
if (!insertOK) if (!insertOK)
elog(NOTICE, "RegisterSharedInvalid: SI buffer overflow"); elog(DEBUG, "RegisterSharedInvalid: SI buffer overflow");
} }
/* /*
...@@ -116,7 +116,7 @@ void ...@@ -116,7 +116,7 @@ void
if (getResult < 0) if (getResult < 0)
{ {
/* got a reset message */ /* got a reset message */
elog(NOTICE, "InvalidateSharedInvalid: cache state reset"); elog(DEBUG, "InvalidateSharedInvalid: cache state reset");
resetFunction(); resetFunction();
} }
else else
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册