Changed parameter name for shared cache status report interval to
authorJan Wieck
Sun, 16 Nov 2003 16:41:01 +0000 (16:41 +0000)
committerJan Wieck
Sun, 16 Nov 2003 16:41:01 +0000 (16:41 +0000)
    debug_shared_buffers = 

as per previous discussion.

Jan

src/backend/storage/buffer/freelist.c
src/backend/utils/misc/guc.c
src/backend/utils/misc/postgresql.conf.sample

index 6007249c26d57b9dbb06a6c2fa97795d4003c872..12d67b1342461ef593bc374d1d3892626dbfd722 100644 (file)
@@ -8,7 +8,7 @@
  *
  *
  * IDENTIFICATION
- *   $Header: /cvsroot/pgsql/src/backend/storage/buffer/freelist.c,v 1.34 2003/11/13 14:57:15 wieck Exp $
+ *   $Header: /cvsroot/pgsql/src/backend/storage/buffer/freelist.c,v 1.35 2003/11/16 16:41:00 wieck Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -87,7 +87,7 @@ static int        strategy_cdb_found;
 static int     strategy_cdb_replace;
 static int     strategy_get_from;
 
-int                BufferStrategyStatInterval = 0;
+int                DebugSharedBuffers = 0;
 
 static bool                strategy_hint_vacuum;
 static TransactionId   strategy_vacuum_xid;
@@ -184,10 +184,10 @@ StrategyBufferLookup(BufferTag *tagPtr, bool recheck)
    BufferStrategyCDB  *cdb;
    time_t              now;
 
-   if (BufferStrategyStatInterval > 0)
+   if (DebugSharedBuffers > 0)
    {
        time(&now);
-       if (StrategyControl->stat_report + BufferStrategyStatInterval < now)
+       if (StrategyControl->stat_report + DebugSharedBuffers < now)
        {
            long    all_hit, b1_hit, t1_hit, t2_hit, b2_hit;
            ErrorContextCallback    *errcxtold;
index 52d96a82f7507fe18856b009a9eeafa1222c60f2..bd8db1bb85b964ae115c12e7fb9ffcb71337a31d 100644 (file)
@@ -10,7 +10,7 @@
  * Written by Peter Eisentraut .
  *
  * IDENTIFICATION
- *   $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.169 2003/11/13 14:57:15 wieck Exp $
+ *   $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.170 2003/11/16 16:41:01 wieck Exp $
  *
  *--------------------------------------------------------------------
  */
@@ -73,7 +73,7 @@ extern int    CheckPointTimeout;
 extern int CommitDelay;
 extern int CommitSiblings;
 extern char *preload_libraries_string;
-extern int BufferStrategyStatInterval;
+extern int DebugSharedBuffers;
 
 #ifdef HAVE_SYSLOG
 extern char *Syslog_facility;
@@ -1192,11 +1192,11 @@ static struct config_int ConfigureNamesInt[] =
    },
 
    {
-       {"buffer_strategy_status_interval", PGC_POSTMASTER, RESOURCES_MEM,
-           gettext_noop("Interval to report buffer strategy status in seconds"),
+       {"debug_shared_buffers", PGC_POSTMASTER, RESOURCES_MEM,
+           gettext_noop("Interval to report shared buffer status in seconds"),
            NULL
        },
-       &BufferStrategyStatInterval,
+       &DebugSharedBuffers,
        0, 0, 600, NULL, NULL
    },
 
index 15c73e6692e5afae71580f099abf27f22adf9bf0..64e94edab965e0a7034f786a4be536e1278ecee8 100644 (file)
@@ -58,7 +58,7 @@
 #shared_buffers = 1000     # min 16, at least max_connections*2, 8KB each
 #sort_mem = 1024       # min 64, size in KB
 #vacuum_mem = 8192     # min 1024, size in KB
-#buffer_strategy_status_interval = 0   # 0-600 seconds
+#debug_shared_buffers = 0  # 0-600 seconds
 
 # - Free Space Map -