MVCC原理探究及びMySQLソースコード実現分析

55683 ワード

MVCC原理探究及びMySQLソースコード実現分析
データベースのマルチバージョン読み込みシーン
MVCC実現原理
DB_経由ROLL_PT遡及データ履歴バージョンの検索
read viewで行レコードが表示されるか否かを判断する
MVCCはどんな問題を解決しましたか.
MySQLコード解析
InnoDB非表示フィールドソース分析
InnoDB判定トランザクション可視性ソース分析
MVCC原理探究及びMySQLソースコード実現分析
データベースのマルチバージョン読み込みシーン
session 1
session 2
select a from test; return a = 10
 
start transaction;
 
update test set a = 20;
 
 
start transaction;
 
select a from test; return ?
commit;
 
 
select a from test; return ?
上記のデータベースの日常的な操作の例を見てみましょう.
  • session 1は記録を修正し、提出しなかった.それと同時に、session 2はこのレコードをクエリーし、このときにレコードを返すのはいくらですか?
  • セッション1がコミットされた後、セッション2がクエリーされたのはいくらですか?

  • MySQLは複数の独立性レベルをサポートしているため、この問題はsession 2のトランザクション独立性レベルを見る必要があります.状況は次のとおりです.
  • 独立性レベルがREAD-UNCOMMITTEDの場合:session 1 commit前後session 2を見てもわかるのは修正後の結果a=20
  • 独立性レベルがREAD-COMMITTEDの場合:session 1 commitの前に表示されたものはa=10であり、commitの後に表示されたものはa=20
  • である
  • 独立性レベルがREPEATABLE-READ、SERIALIZABLEの場合:session 1 commit前後session 2を見てもわかるのは修正後の結果a=10
  • 独立性レベルにかかわらず、データベース内のACIDを捨てて、InnoDBのデータはすべてB-treeに格納されていることがよく知られています.修正されたデータは実際のB-treeリーフノードに格納されるかどうか、session 2はどのようにして検索した結果を10にしますか.20列ではありません.
    MVCC実現原理
    これらの現象はデータベースでよく見られますが、データベースがどのように実現されているのか、深く研究している人は多くありません.実は原理はとても簡単で、データベースはUNDOとMVCCを通じて実現しました.
    DB_経由ROLL_PT遡及データ履歴バージョンの検索
  • まずInnoDB各行データにDB_が1つあるROLL_PTのロールバックポインタは、その行の修正前の前の履歴バージョンを指す新しいデータが挿入された場合、記録上の対応するロールバックセグメントポインタはNULL
  • である.
    レコードを更新すると、元のレコードはundoテーブルスペースに入れられ、DB_を通過します.ROLL_PTはこの記録を指す.session 2クエリが返す未修正データはこのundoから返される.MySQLは、レコード上のロールバック・セグメント・ポインタおよびトランザクションIDに基づいてレコードが表示されているかどうかを判断し、表示されていない場合はDB_ROLL_PTは遡及検索を継続する.
    read viewで行レコードが表示されるか否かを判断する
    具体的な判断の流れは以下の通りである.
  • RR独立性レベルでは、各トランザクションが開始されると、現在のシステム内のすべてのアクティブなトランザクションが1つのリストにコピーされます(read view)
  • RC独立性レベルでは、各文が開始されると、現在のシステム内のすべてのアクティブなトランザクションが1つのリストにコピーされ、次の論理に従ってトランザクションの可視性が判断されます. 

  • MVCCはどんな問題を解決しましたか.
  • MVCCにより、データベースの読み取りによってデータがロックされず、selectによってロックされず、データベースの同時処理能力が向上する
  • MVCCを利用して、データベースはRC、RRなどの独立性レベルを実現することができ、ユーザーは現在のデータの前の1つまたは前のいくつかの履歴バージョンを表示することができる.ACIDにおけるI-アイソレーションが保証されている.

  • MySQLコード解析
    前にMVCCとは何か、そしてそれがどのような問題を解決したのかを紹介した.次に、MySQLのソースコードで、この論理をどのように実現しているのかを見てみましょう.
    InnoDB非表示フィールドソース分析
    InnoDBテーブルにはmysqlのデフォルトで追加された3つの非表示フィールドが格納されます.コードから次のように表示できます.
     
      
    1. dict_table_add_system_columns(
    2. /*==========================*/
    3. dict_table_t* table, /*!< in/out: table */
    4. mem_heap_t* heap) /*!< in: temporary heap */
    5. {
    6. ut_ad(table);
    7. ut_ad(table->n_def == (table->n_cols - table->get_n_sys_cols()));
    8. ut_ad(table->magic_n == DICT_TABLE_MAGIC_N);
    9. ut_ad(!table->cached);
    10. /* NOTE: the system columns MUST be added in the following order
    11. (so that they can be indexed by the numerical value of DATA_ROW_ID,
    12. etc.) and as the last columns of the table memory object.
    13. The clustered index will not always physically contain all system
    14. columns.
    15. Intrinsic table don't need DB_ROLL_PTR as UNDO logging is turned off
    16. for these tables. */
    17. dict_mem_table_add_col(table, heap, "DB_ROW_ID", DATA_SYS,
    18. DATA_ROW_ID | DATA_NOT_NULL,
    19. DATA_ROW_ID_LEN);
    20. #if (DATA_ITT_N_SYS_COLS != 2)
    21. #error "DATA_ITT_N_SYS_COLS != 2"
    22. #endif
    23. #if DATA_ROW_ID != 0
    24. #error "DATA_ROW_ID != 0"
    25. #endif
    26. dict_mem_table_add_col(table, heap, "DB_TRX_ID", DATA_SYS,
    27. DATA_TRX_ID | DATA_NOT_NULL,
    28. DATA_TRX_ID_LEN);
    29. #if DATA_TRX_ID != 1
    30. #error "DATA_TRX_ID != 1"
    31. #endif
    32. if (!table->is_intrinsic()) {
    33. dict_mem_table_add_col(table, heap, "DB_ROLL_PTR", DATA_SYS,
    34. DATA_ROLL_PTR | DATA_NOT_NULL,
    35. DATA_ROLL_PTR_LEN);
    36. #if DATA_ROLL_PTR != 2
    37. #error "DATA_ROLL_PTR != 2"
    38. #endif
    39. /* This check reminds that if a new system column is added to
    40. the program, it should be dealt with here */
    41. #if DATA_N_SYS_COLS != 3
    42. #error "DATA_N_SYS_COLS != 3"
    43. #endif
    44. }
    45. }
    • DB_ROW_ID: MySQL 6 row id
    • DB_TRX_ID: ID
    • DB_ROLL_PTR:

    InnoDB

    mysql ID , ID 。

     
      
    1. dhy@10.16.70.190:3306 12:25:47 [dhy]>select * from dhytest;
    2. +------+
    3. | id |
    4. +------+
    5. | 10 |
    6. +------+
    7. 1 row in set (7.99 sec)

    :

     
      
    1. dhy@10.10.80.199:3306 15:28:24 [dhy]>update dhytest set id = 20;
    2. Query OK, 3 rows affected (40.71 sec)
    3. Rows matched: 3 Changed: 3 Warnings: 0

     
      
    1. dhy@10.16.70.190:3306 12:38:33 [dhy]>select * from dhytest;

    mysql ,

    ReadView,Read View , Read View ID ID

     
      
    1. /** The read should not see any transaction with trx id >= this
    2. value. In other words, this is the "high water mark". */
    3. trx_id_t m_low_limit_id;
    4. /** The read should see all trx ids which are strictly
    5. smaller (
    6. low water mark". */
    7. trx_id_t m_up_limit_id;
    8. /** trx id of creating transaction, set to TRX_ID_MAX for free
    9. views. */
    10. trx_id_t m_creator_trx_id;

    , :

     
      
    1. row_search_mvcc->lock_clust_rec_cons_read_sees
    2. bool
    3. lock_clust_rec_cons_read_sees(
    4. /*==========================*/
    5. const rec_t* rec, /*!< in: user record which should be read or
    6. passed over by a read cursor */
    7. dict_index_t* index, /*!< in: clustered index */
    8. const ulint* offsets,/*!< in: rec_get_offsets(rec, index) */
    9. ReadView* view) /*!< in: consistent read view */
    10. {
    11. ut_ad(index->is_clustered());
    12. ut_ad(page_rec_is_user_rec(rec));
    13. ut_ad(rec_offs_validate(rec, index, offsets));
    14. /* Temp-tables are not shared across connections and multiple
    15. transactions from different connections cannot simultaneously
    16. operate on same temp-table and so read of temp-table is
    17. always consistent read. */
    18. //
    19. if (srv_read_only_mode || index->table->is_temporary()) {
    20. ut_ad(view == 0 || index->table->is_temporary());
    21. return(true);
    22. }
    23. /* NOTE that we call this function while holding the search
    24. system latch. */
    25. trx_id_t trx_id = row_get_rec_trx_id(rec, index, offsets); // TRX_ID , 。 TRX_ID
    26. return(view->changes_visible(trx_id, index->table->name)); //
    27. }

     
      
    1. bool changes_visible(
    2. trx_id_t id,
    3. const table_name_t& name) const
    4. MY_ATTRIBUTE((warn_unused_result))
    5. {
    6. ut_ad(id > 0);
    7. // ID Read View , 。 select
    8. if (id < m_up_limit_id || id == m_creator_trx_id) {
    9. return(true);
    10. }
    11. check_trx_id_sanity(id, name);
    12. // Read View , ,
    13. if (id >= m_low_limit_id) {
    14. return(false);
    15. } else if (m_ids.empty()) {
    16. return(true);
    17. }
    18. const ids_t::value_type* p = m_ids.data();
    19. return(!std::binary_search(p, p + m_ids.size(), id)); // Read View , Read View , Read View
    20. }

    row_vers_build_for_consistent_read UNDO , 。

    , :

    • READ-COMMITTED 
      Read View,
    • REPEATABLE-READ 
      Read View , Read View , 。


    《 -2016PG - .pdf》