mysql的讀寫分離(基礎篇)

來源:互聯網
上載者:User

MySQL Proxy最強大的一項功能是實現“讀寫分離(Read/Write Splitting)”。基本的原理是讓主要資料庫處理事務性查詢,而從資料庫處理SELECT查詢。資料庫複寫被用來把事務性查詢導致的變更同步到叢集中的從資料庫。

 

 

  Jan Kneschke在《MySQL Proxy learns R/W Splitting》中詳細的介紹了這種技巧以及串連池問題:

  為了實現讀寫分離我們需要串連池。我們僅在已開啟了到一個後端的一條經過認證的串連的情況下,才切換到該後端。MySQL協議首先進行握手。當進入到查詢/返回結果的階段再認證新串連就太晚了。我們必須保證擁有足夠的開啟的串連才能保持運作正常。

  實現讀寫分離的LUA指令碼:

  -- 讀寫分離

  --

  -- 發送所有的非事務性Select到一個從資料庫

  if is_in_transaction == 0 and

  packet:byte() == proxy.COM_QUERY and

  packet:sub(2, 7) == "SELECT" then

  local max_conns = -1

  local max_conns_ndx = 0

  for i = 1, #proxy.servers do

  local s = proxy.servers[i]

  -- 需要選擇一個擁有空閑串連的從資料庫

  if s.type == proxy.BACKEND_TYPE_RO and

  s.idling_connections > 0 then

  if max_conns == -1 or

  s.connected_clients < max_conns then

  max_conns = s.connected_clients

  max_conns_ndx = i

  end

  end

  end

  -- 至此,我們找到了一個擁有空閑串連的從資料庫

  if max_conns_ndx > 0 then

  proxy.connection.backend_ndx = max_conns_ndx

  end

  else

  -- 發送到主要資料庫

  end

  return proxy.PROXY_SEND_QUERY

  注釋:此技巧還可以用來實現其他的資料分布策略,例如分區(Sharding)。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.