diff options
author | Bruce Momjian <bruce@momjian.us> | 2001-05-07 17:20:19 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2001-05-07 17:20:19 +0000 |
commit | 415263b2d26613f7231bad39fe78169127eff660 (patch) | |
tree | 3de8df1569b860eb5c322dca973b86d0c6c2f6e9 /src | |
parent | ef71c8fccf9ff26f79aa83be738c78261914ccd7 (diff) | |
download | postgresql-415263b2d26613f7231bad39fe78169127eff660.tar.gz postgresql-415263b2d26613f7231bad39fe78169127eff660.zip |
> 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
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/storage/ipc/sinval.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/storage/ipc/sinval.c b/src/backend/storage/ipc/sinval.c index fe6dc8141bc..6b46345c717 100644 --- a/src/backend/storage/ipc/sinval.c +++ b/src/backend/storage/ipc/sinval.c @@ -8,7 +8,7 @@ * * * 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 */ insertOK = SIInsertDataEntry(shmInvalBuffer, &newInvalid); SpinRelease(SInvalLock); if (!insertOK) - elog(NOTICE, "RegisterSharedInvalid: SI buffer overflow"); + elog(DEBUG, "RegisterSharedInvalid: SI buffer overflow"); } /* @@ -116,7 +116,7 @@ void if (getResult < 0) { /* got a reset message */ - elog(NOTICE, "InvalidateSharedInvalid: cache state reset"); + elog(DEBUG, "InvalidateSharedInvalid: cache state reset"); resetFunction(); } else |