Difference between revisions of "PostgreSQL Index Locking"

From wikieduonline
Jump to navigation Jump to search
 
(8 intermediate revisions by the same user not shown)
Line 2: Line 2:
 
* https://www.postgresql.org/docs/current/index-locking.html
 
* https://www.postgresql.org/docs/current/index-locking.html
  
 +
Index access methods must handle concurrent updates of the index by multiple processes. The core PostgreSQL system obtains [[AccessShareLock]] on the index during an [[index scan]], and [[RowExclusiveLock]] when updating the index (including plain [[VACUUM]])
  
  
{{VACUUM}}
+
2023-07-10 09:59:58 UTC [519304]: LOG: process 519114 still waiting for AccessShareLock on relation 1054128 of database 16111 after 9499.033 ms
 +
 
 +
 
 +
2023-07-10 10:01:39 UTC [520415]: LOG: skipping [[vacuum]] of "your_test" --- [[lock not available]]
 +
 
 +
== Related ==
 +
[[AccessShareLock]]
 +
 
 +
== See also ==
 +
* {{VACUUM}}
 +
* {{CREATE INDEX}}
 +
* {{Locking}}
 +
 
 +
[[Category: PostgreSQL]]

Latest revision as of 10:32, 11 July 2023

Index locking

Index access methods must handle concurrent updates of the index by multiple processes. The core PostgreSQL system obtains AccessShareLock on the index during an index scan, and RowExclusiveLock when updating the index (including plain VACUUM)


2023-07-10 09:59:58 UTC [519304]: LOG: process 519114 still waiting for AccessShareLock on relation 1054128 of database 16111 after 9499.033 ms


2023-07-10 10:01:39 UTC [520415]: LOG: skipping vacuum of "your_test" --- lock not available

Related[edit]

AccessShareLock

See also[edit]

Advertising: