logo       

Slightly reduce BufMgrLock contention: msg#00614

Subject: Slightly reduce BufMgrLock contention
This patch prevents btbulkdelete() from calling WriteNoReleaseBuffer()
several times for the same buffer.  Thus it saves a few
LWLockAquire(BufMgrLock, LW_EXCLUSIVE) and LWLockRelease(BufMgrLock)
calls.

Maybe we do not need a BufMgrLock at all, because we have a super
exclusive lock on the buffer?  I was not sure and decided to stay on
the safe side ...

Servus
 Manfred
diff -ruN ../base/src/backend/access/nbtree/nbtree.c 
src/backend/access/nbtree/nbtree.c
--- ../base/src/backend/access/nbtree/nbtree.c  2002-06-21 02:12:14.000000000 
+0200
+++ src/backend/access/nbtree/nbtree.c  2002-08-30 11:44:35.000000000 +0200
@@ -615,6 +615,7 @@
        {
                Buffer          buf;
                BlockNumber lockedBlock = InvalidBlockNumber;
+               bool            dirty = false;
 
                /* we have the buffer pinned and locked */
                buf = so->btso_curbuf;
@@ -662,14 +663,19 @@
                                        LockBuffer(buf, BUFFER_LOCK_UNLOCK);
                                        LockBufferForCleanup(buf);
                                        lockedBlock = blkno;
+                                       dirty = false;
                                }
                                else
                                {
                                        /* Okay to delete the item from the 
page */
                                        _bt_itemdel(rel, buf, current);
 
-                                       /* Mark buffer dirty, but keep the lock 
and pin */
-                                       WriteNoReleaseBuffer(buf);
+                                       if (!dirty)
+                                       {
+                                               /* Mark buffer dirty, but keep 
the lock and pin */
+                                               WriteNoReleaseBuffer(buf);
+                                               dirty = true;
+                                       }
 
                                        tuples_removed += 1;
                                }
---------------------------(end of broadcast)---------------------------
TIP 5: Have you checked our extensive FAQ?

http://www.postgresql.org/users-lounge/docs/faq.html
<Prev in Thread] Current Thread [Next in Thread>
Google Custom Search

Recently Viewed:
linux.arklinux....    user-groups.lin...    kde.usability/2...    ietf.ipp/2002-0...    mail.spam.spamc...    os.netbsd.devel...    audio.cd-record...    text.unicode.de...    php.documentati...    games.fps.halfl...    window-managers...    suse.oracle.gen...    bug-tracking.gn...    video.dvdrip.us...    xfree86.cvs/200...    java.netbeans.m...    network.argus/2...    culture.sf.kill...    debian.ports.al...    freebsd.questio...    qplus.devel/200...    handhelds.palm....   
Home | blog view | USPTO Patent Archive | advertise | OSDir is an inevitable website. super tiny logo

Free Magazines

Cisco News
Receive a free quarterly e-newsletter with exclusive articles on how Cisco IT uses its own products and solutions to enable the business.
subscribe

Systems Management News, the newspaper for IT systems administration and data center managers! Each issue of Systems Management News is chock-full of news and analysis to help you understand what's happening in your field.
subscribe

The Enterprise Newsweekly eWeek is the essential technology information source for builders of e-business.
subscribe

Oracle Magazine Oracle Magazine contains technology strategy articles, sample code, tips, Oracle and partner news, how to articles for developers and DBAs, and more. Oracle (NASDAQ: ORCL) is the world's largest enterprise software company.
subscribe

Total Telecom Total Telecom is "The Economist of the communications industry".
subscribe