myrocks 的事务

myrocks 支持两种事务 一种是Rdb_writebatch_impl 另一种 是 Rdb_transaction_impl


前一种 将 将 一次batch 作为一次事务提交,而后一种 是 rocksdb 内置的事务了

而myrocks对事务的选择,可以从源码里看出 如果跳过 tx_api 并且是 在主从同步 使用 Rdb_writebatch_impl ,或者 在 master 跳过 tx_api 时,没有主从同步 ,也是用Rdb_writebatch_impl

Rdb_writebatch_impl 这种事务 缺少很多机制,没有Rdb_transaction_impl 健全,比如锁,batch 就没有

static Rdb_transaction *get_or_create_tx(THD *const thd) {
  Rdb_transaction *&tx = get_tx_from_thd(thd);
  // TODO: this is called too many times.. O(#rows)
  if (tx == nullptr) {
    if ((rpl_skip_tx_api && thd->rli_slave) ||
        (THDVAR(thd, master_skip_tx_api) && !thd->rli_slave))
    {
      tx = new Rdb_writebatch_impl(thd);
    }
    else
    {
      tx = new Rdb_transaction_impl(thd);
    }
    tx->set_params(THDVAR(thd, lock_wait_timeout), THDVAR(thd, max_row_locks));
    tx->start_tx();
  } else {
    tx->set_params(THDVAR(thd, lock_wait_timeout), THDVAR(thd, max_row_locks));
    if (!tx->is_tx_started()) {
      tx->start_tx();
    }
  }

  return tx;
}



猜你喜欢

转载自blog.csdn.net/qq948993066/article/details/78285458