mvcc.sgml
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:14k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1.  <chapter id="mvcc">
  2.   <title>Multi-Version Concurrency Control</title>
  3.   <abstract>
  4.    <para>
  5.     Multi-Version Concurrency Control
  6.     (MVCC)
  7.     is an advanced technique for improving database performance in a
  8.     multi-user environment. 
  9.     <ulink url="mailto:vadim@krs.ru">Vadim Mikheev</ulink> provided
  10.     the implementation for <productname>Postgres</productname>.
  11.    </para>
  12.   </abstract>
  13.   <sect1>
  14.    <title>Introduction</title>
  15.    <para>
  16.     Unlike most other database systems which use locks for concurrency control,
  17.     <productname>Postgres</productname>
  18.     maintains data consistency by using a multiversion model. 
  19.     This means that while querying a database each transaction sees
  20.     a snapshot of data (a <firstterm>database version</firstterm>)
  21.     as it was some
  22.     time ago, regardless of the current state of the underlying data.
  23.     This protects the transaction from viewing inconsistent data that
  24.     could be caused by (other) concurrent transaction updates on the same
  25.     data rows, providing <firstterm>transaction isolation</firstterm>
  26.     for each database session.
  27.    </para>
  28.    <para>
  29.     The main difference between multiversion and lock models is that
  30.     in MVCC locks acquired for querying (reading) data don't conflict
  31.     with locks acquired for writing data and so reading never blocks
  32.     writing and writing never blocks reading.
  33.    </para>
  34.   </sect1>
  35.   <sect1>
  36.    <title>Transaction Isolation</title>
  37.    <para>
  38.     The <acronym>ANSI</acronym>/<acronym>ISO</acronym> <acronym>SQL</acronym>
  39.     standard defines four levels of transaction
  40.     isolation in terms of three phenomena that must be prevented 
  41.     between concurrent transactions.
  42.     These undesirable phenomena are:
  43.     <variablelist>
  44.      <varlistentry>
  45.       <term>
  46.        dirty reads
  47.       </term>
  48.      <listitem>
  49.       <para>
  50. A transaction reads data written by concurrent uncommitted transaction.
  51.        </para>
  52.       </listitem>
  53.      </varlistentry>
  54.      <varlistentry>
  55.       <term>
  56.        non-repeatable reads
  57.       </term>
  58.      <listitem>
  59.       <para>
  60. A transaction re-reads data it has previously read and finds that data
  61. has been modified by another committed transaction.
  62.        </para>
  63.       </listitem>
  64.      </varlistentry>
  65.      <varlistentry>
  66.       <term>
  67.        phantom read
  68.       </term>
  69.      <listitem>
  70.       <para>
  71. A transaction re-executes a query returning a set of rows that satisfy a
  72. search condition and finds that additional rows satisfying the condition
  73. has been inserted by another committed transaction.
  74.        </para>
  75.       </listitem>
  76.      </varlistentry>
  77.     </variablelist>
  78.    </para>
  79.    <para>
  80.     The four isolation levels and the corresponding behaviors are described below.
  81.     <table tocentry="1">
  82.      <title><productname>Postgres</productname> Isolation Levels</title>
  83.      <titleabbrev>Isolation Levels</titleabbrev>
  84.      <tgroup cols="4">
  85.       <thead>
  86.        <row>
  87. <entry>
  88. </entry>
  89. <entry>
  90.  Dirty Read
  91. </entry>
  92. <entry>
  93.  Non-Repeatable Read
  94. </entry>
  95. <entry>
  96.  Phantom Read
  97. </entry>
  98.        </row>
  99.       </thead>
  100.       <tbody>
  101.        <row>
  102. <entry>
  103.  Read uncommitted
  104. </entry>
  105. <entry>
  106.  Possible
  107. </entry>
  108. <entry>
  109.  Possible
  110. </entry>
  111. <entry>
  112.  Possible
  113. </entry>
  114.        </row>
  115.        <row>
  116. <entry>
  117.  Read committed
  118. </entry>
  119. <entry>
  120.  Not possible
  121. </entry>
  122. <entry>
  123.  Possible
  124. </entry>
  125. <entry>
  126.  Possible
  127. </entry>
  128.        </row>
  129.        <row>
  130. <entry>
  131.  Repeatable read
  132. </entry>
  133. <entry>
  134.  Not possible
  135. </entry>
  136. <entry>
  137.  Not possible
  138. </entry>
  139. <entry>
  140.  Possible
  141. </entry>
  142.        </row>
  143.        <row>
  144. <entry>
  145.  Serializable
  146. </entry>
  147. <entry>
  148.  Not possible
  149. </entry>
  150. <entry>
  151.  Not possible
  152. </entry>
  153. <entry>
  154.  Not possible
  155. </entry>
  156.        </row>
  157.       </tbody>
  158.      </tgroup>
  159.     </table>
  160.     <productname>Postgres</productname>
  161.     offers the read committed and serializable isolation levels.
  162.    </para>
  163.   </sect1>
  164.   <sect1>
  165.    <title>Read Committed Isolation Level</title>
  166.    <para>
  167.     <firstterm>Read Committed</firstterm>
  168.     is the default isolation level in <productname>Postgres</productname>. 
  169.     When a transaction runs on this isolation level, a query sees only
  170.     data committed before the query began and never sees either dirty data or
  171.     concurrent transaction changes committed during query execution.
  172.    </para>
  173.    <para>
  174.     If a row returned by a query while executing an
  175.     <command>UPDATE</command> statement
  176.     (or <command>DELETE</command>
  177.     or <command>SELECT FOR UPDATE</command>)
  178.     is being updated by a
  179.     concurrent uncommitted transaction then the second transaction
  180.     that tries to update this row will wait for the other transaction to
  181.     commit or rollback. In the case of rollback, the waiting transaction
  182.     can proceed to change the row. In the case of commit (and if the
  183.     row still exists; i.e. was not deleted by the other transaction), the
  184.     query will be re-executed for this row to check that new row
  185.     version satisfies query search condition. If the new row version
  186.     satisfies the query search condition then row will be
  187.     updated (or deleted or marked for update).
  188.    </para>
  189.    <para>
  190.     Note that the results of execution of <command>SELECT</command>
  191.     or <command>INSERT</command> (with a query) 
  192.     statements will not be affected by concurrent transactions.
  193.    </para>
  194.   </sect1>
  195.   <sect1>
  196.    <title>Serializable Isolation Level</title>
  197.    <para>
  198.     <firstterm>Serializable</firstterm> provides the highest transaction isolation.
  199.     When a transaction is on the serializable level,
  200.     a query sees only data
  201.     committed before the transaction began and never see either dirty data
  202.     or concurrent transaction changes committed during transaction
  203.     execution. So, this level emulates serial transaction execution,
  204.     as if transactions would be executed one after another, serially,
  205.     rather than concurrently.
  206.    </para>
  207.    <para>
  208.     If a row returned by query while executing a
  209.     <command>UPDATE</command>
  210.     (or <command>DELETE</command> or <command>SELECT FOR UPDATE</command>)
  211.     statement is being updated by
  212.     a concurrent uncommitted transaction then the second transaction
  213.     that tries to update this row will wait for the other transaction to
  214.     commit or rollback. In the case of rollback, the waiting transaction
  215.     can proceed to change the row. In the case of a concurrent
  216.     transaction commit, a serializable transaction will be rolled back
  217.     with the message
  218.     <programlisting>
  219. ERROR:  Can't serialize access due to concurrent update
  220.     </programlisting>
  221.     because a serializable transaction cannot modify rows changed by
  222.     other transactions after the serializable transaction began.
  223.    </para>
  224.    <note>
  225.     <para>
  226.      Note that results of execution of <command>SELECT</command>
  227.      or <command>INSERT</command> (with a query) 
  228.      will not be affected by concurrent transactions.
  229.     </para>
  230.    </note>
  231.   </sect1>
  232.   <sect1>
  233.    <title>Locking and Tables</title>
  234.    <para>
  235.     <productname>Postgres</productname>
  236.     provides various lock modes to control concurrent
  237.     access to data in tables. Some of these lock modes are acquired by
  238.     <productname>Postgres</productname>
  239.     automatically before statement execution, while others are
  240.     provided to be used by applications. All lock modes (except for
  241.     AccessShareLock) acquired in a transaction are held for the duration
  242.     of the transaction.
  243.    </para>
  244.    <para>
  245.     In addition to locks, short-term share/exclusive latches are used
  246.     to control read/write access to table pages in shared buffer pool.
  247.     Latches are released immediately after a tuple is fetched or updated.
  248.    </para>
  249.    <sect2>
  250.     <title>Table-level locks</title>
  251.     <para>
  252.      <variablelist>
  253.       <varlistentry>
  254.        <term>
  255. AccessShareLock
  256.        </term>
  257.        <listitem>
  258. <para>
  259.  An internal lock mode acquiring automatically over tables
  260.  being queried. <productname>Postgres</productname>
  261.  releases these locks after statement is
  262.  done.
  263. </para>
  264. <para>
  265.  Conflicts with AccessExclusiveLock only.
  266. </para>
  267.        </listitem>
  268.       </varlistentry>
  269.       <varlistentry>
  270.        <term>
  271. RowShareLock
  272.        </term>
  273.        <listitem>
  274. <para>
  275.  Acquired by <command>SELECT FOR UPDATE</command>
  276.  and <command>LOCK TABLE</command>
  277.  for <option>IN ROW SHARE MODE</option> statements.
  278. </para>
  279. <para>
  280.  Conflicts with ExclusiveLock and AccessExclusiveLock modes.
  281. </para>
  282.        </listitem>
  283.       </varlistentry>
  284.       <varlistentry>
  285.        <term>
  286. RowExclusiveLock
  287.        </term>
  288.        <listitem>
  289. <para>
  290.  Acquired by <command>UPDATE</command>, <command>DELETE</command>,
  291.  <command>INSERT</command> and <command>LOCK TABLE</command>
  292.  for <option>IN ROW EXCLUSIVE MODE</option> statements.
  293. </para>
  294. <para>
  295.  Conflicts with ShareLock, ShareRowExclusiveLock, ExclusiveLock and
  296.  AccessExclusiveLock modes.
  297. </para>
  298.        </listitem>
  299.       </varlistentry>
  300.       <varlistentry>
  301.        <term>
  302. ShareLock
  303.        </term>
  304.        <listitem>
  305. <para>
  306.  Acquired by <command>CREATE INDEX</command>
  307.  and <command>LOCK TABLE</command> table
  308.  for <option>IN SHARE MODE</option>
  309.  statements.
  310. </para>
  311. <para>
  312.  Conflicts with RowExclusiveLock, ShareRowExclusiveLock,
  313.  ExclusiveLock and AccessExclusiveLock modes.
  314. </para>
  315.        </listitem>
  316.       </varlistentry>
  317.       <varlistentry>
  318.        <term>
  319. ShareRowExclusiveLock
  320.        </term>
  321.        <listitem>
  322. <para>
  323.  Acquired by <command>LOCK TABLE</command> for
  324.  <option>IN SHARE ROW EXCLUSIVE MODE</option> statements.
  325. </para>
  326. <para>
  327.  Conflicts with RowExclusiveLock, ShareLock, ShareRowExclusiveLock,
  328.  ExclusiveLock and AccessExclusiveLock modes.
  329. </para>
  330.        </listitem>
  331.       </varlistentry>
  332.       <varlistentry>
  333.        <term>
  334. ExclusiveLock
  335.        </term>
  336.        <listitem>
  337. <para>
  338.  Acquired by <command>LOCK TABLE</command> table 
  339.  for <option>IN EXCLUSIVE MODE</option> statements.
  340. </para>
  341. <para>
  342.  Conflicts with RowShareLock, RowExclusiveLock, ShareLock,
  343.  ShareRowExclusiveLock, ExclusiveLock and AccessExclusiveLock
  344.  modes.
  345. </para>
  346.        </listitem>
  347.       </varlistentry>
  348.       <varlistentry>
  349.        <term>
  350. AccessExclusiveLock
  351.        </term>
  352.        <listitem>
  353. <para>
  354.  Acquired by <command>ALTER TABLE</command>,
  355.  <command>DROP TABLE</command>,
  356.  <command>VACUUM</command> and <command>LOCK TABLE</command>
  357.  statements.
  358. </para>
  359. <para>
  360.  Conflicts with RowShareLock, RowExclusiveLock, ShareLock,
  361.  ShareRowExclusiveLock, ExclusiveLock and AccessExclusiveLock
  362.  modes.
  363.  <note>
  364.   <para>
  365.    Only AccessExclusiveLock blocks <command>SELECT</command> (without
  366.    <option>FOR UPDATE</option>) statement.
  367.   </para>
  368.  </note>
  369. </para>
  370.        </listitem>
  371.       </varlistentry>
  372.      </variablelist>
  373.     </para>
  374.    </sect2>
  375.    <sect2>
  376.     <title>Row-level locks</title>
  377.     <para>
  378.      These locks are acquired when internal
  379.      fields of a row are being updated (or deleted or marked for update).
  380.      <productname>Postgres</productname>
  381.      doesn't remember any information about modified rows in memory and
  382.      so has no limit to the number of rows locked without lock escalation.
  383.     </para>
  384.     <para>
  385.      However, take into account that <command>SELECT FOR UPDATE</command> will modify
  386.      selected rows to mark them and so will results in disk writes.
  387.     </para>
  388.     <para>
  389.      Row-level locks don't affect data querying. They are used to block
  390.      writers to <emphasis>the same row</emphasis> only.
  391.     </para>
  392.    </sect2>
  393.   </sect1>
  394.   <sect1>
  395.    <title>Locking and Indices</title>
  396.    <para>
  397.     Though <productname>Postgres</productname>
  398.     provides unblocking read/write access to table
  399.     data, unblocked read/write access is not provided for every
  400.     index access methods implemented
  401.     in <productname>Postgres</productname>.
  402.    </para>
  403.    <para>
  404.     The various index types are handled as follows:
  405.     <variablelist>
  406.      <varlistentry>
  407.       <term>
  408.        GiST and R-Tree indices
  409.       </term>
  410.       <listitem>
  411.        <para>
  412. Share/exclusive index-level locks are used for read/write access.
  413. Locks are released after statement is done.
  414.        </para>
  415.       </listitem>
  416.      </varlistentry>
  417.      <varlistentry>
  418.       <term>
  419.        Hash indices
  420.       </term>
  421.       <listitem>
  422.        <para>
  423. Share/exclusive page-level locks are used for read/write access.
  424. Locks are released after page is processed.
  425.        </para>
  426.        <para>
  427. Page-level locks produces better concurrency than index-level ones
  428. but are subject to deadlocks.
  429.        </para>
  430.       </listitem>
  431.      </varlistentry>
  432.      <varlistentry>
  433.       <term>
  434.        Btree
  435.       </term>
  436.       <listitem>
  437.        <para>
  438. Short-term share/exclusive page-level latches are used for
  439. read/write access. Latches are released immediately after the index
  440. tuple is inserted/fetched.
  441.        </para>
  442.        <para>
  443. Btree indices provide the highest concurrency without deadlock
  444. conditions.
  445.        </para>
  446.       </listitem>
  447.      </varlistentry>
  448.     </variablelist>
  449.    </para>
  450.   </sect1>
  451.   <sect1>
  452.    <title>Data consistency checks at the application level</title>
  453.    <para>
  454.     Because readers in <productname>Postgres</productname>
  455.     don't lock data, regardless of
  456.     transaction isolation level, data read by one transaction can be
  457.     overwritten by another. In the other words, if a row is returned
  458.     by <command>SELECT</command> it doesn't mean that this row really
  459.     exists at the time it is returned (i.e. sometime after the
  460.     statement or transaction began) nor
  461.     that the row is protected from deletion or update by concurrent
  462.     transactions before the current transaction does a commit or rollback. 
  463.    </para>
  464.    <para>
  465.     To ensure the actual existance of a row and protect it against
  466.     concurrent updates one must use <command>SELECT FOR UPDATE</command> or
  467.     an appropriate <command>LOCK TABLE</command> statement.
  468.     This should be taken into account when porting applications using
  469.     serializable mode to <productname>Postgres</productname> from other environments.
  470.     <note>
  471.      <para>
  472.       Before version 6.5 <productname>Postgres</productname>
  473.       used read-locks and so the
  474.       above consideration is also the case
  475.       when upgrading to 6.5 (or higher) from previous
  476.       <productname>Postgres</productname> versions.
  477.      </para>
  478.     </note>
  479.    </para>
  480.   </sect1>
  481.  </chapter>
  482. <!-- Keep this comment at the end of the file
  483. Local variables:
  484. mode: sgml
  485. sgml-omittag:nil
  486. sgml-shorttag:t
  487. sgml-minimize-attributes:nil
  488. sgml-always-quote-attributes:t
  489. sgml-indent-step:1
  490. sgml-indent-data:t
  491. sgml-parent-document:nil
  492. sgml-default-dtd-file:"./reference.ced"
  493. sgml-exposed-tags:nil
  494. sgml-local-catalogs:"/usr/lib/sgml/catalog"
  495. sgml-local-ecat-files:nil
  496. End:
  497. -->