redundant storage cluster
play

Redundant Storage Cluster For When It's Just Too Big Bob Burgess - PowerPoint PPT Presentation

Redundant Storage Cluster For When It's Just Too Big Bob Burgess radian 6 Technologies MySQL User Conference 2009 Scope Fundamentals of MySQL Proxy Fundamentals of LuaSQL Description of the Redundant Storage Cluster Architecture


  1. Redundant Storage Cluster For When It's Just Too Big Bob Burgess radian 6 Technologies MySQL User Conference 2009

  2. Scope  Fundamentals of MySQL Proxy  Fundamentals of LuaSQL  Description of the Redundant Storage Cluster ◦ Architecture ◦ Sample code

  3. Scope – NOT  Complete Course on MySQL Proxy  Lua Programming Course  Amazing Lua Tricks  Complete code listing of cluster (Posted online)

  4. The Problem

  5. Growth! Blog Posts – millions per day 12 10 8 6 4 2 0

  6. Current Solution month table month table myisam merge table month table month table . . .  Data over NFS can be unreliable  Separate copy for each DB that could use it (Master / Replicas)

  7. Goals  Single place for all content  Redundancy without complete duplication  Add storage by adding nodes  Survive a server failure

  8. Existing Products  HiveDB ◦ Java/Hibernate-based ◦ No redundancy  Spock Proxy ◦ No redundancy  MySQL Cluster ◦ All indexes in RAM

  9. Cluster Master DB Other DBs Other DBs Other DBs content content (federated) (federated) Load Balancer MySQL MySQL MySQL Lua Lua Lua Proxy Proxy Proxy content 1 content 2 content n ... dir dir dir n 1 2

  10. Component Walk-Through  Federated Engine  Load Balancer  MySQL Proxy  Lua  LuaSQL

  11. Federated Engine  Just a pointer to another table create table sample ( id int primary key, value varchar(100) ) engine=federated connection= 'mysql://user:password@host:9999/schema/sample'

  12. Federated Engine create table sample ( id int primary key, val int, name varchar(50) ) select id,name from sample; SELECT `id`, `val`, `name` FROM `sample`; select id,name from sample where id=2; SELECT `id`, `val`, `name` FROM sample WHERE `id` = '2'; select val,name from sample where val=2; SELECT `id`, `val`, `name` FROM `sample`; select * from sample limit 10; SELECT `id`, `val`, `name` FROM `sample`;

  13. Federated Engine select max(id)from sample; SELECT `id`, `val`, `name` FROM `sample`; select count(*) from sample; SELECT `id`, `val`, `name` FROM `sample`; insert into sample (id,name) values (5,'bob'); INSERT INTO `sample` (`id`, `val`, `name`) VALUES ('5', NULL, 'bob'); insert into sample values (5,10,'bob'); INSERT INTO `sample` (`id`, `val`, `name`) VALUES ('5', '10', 'bob');

  14. Load Balancer Options  MySQL Proxy Load Balancer ◦ For read balancing only ◦ For traditional master/slave architecture  Custom load balancer – MySQL Proxy & Lua script ◦ Still an option, depending on future architecture

  15. Load Balancer Options  Linux Networking – NAT ◦ LB stays involved in session ◦ Limited Scalability ◦ Slower option  Linux Networking – Direct Routing ◦ LB hands off session ◦ Node answers client directly ◦ Much more scalable

  16. MySQL Proxy  Communicates with a MySQL client using MySQL Network Protocol  Provides an API to a script environment ◦ Pass query from client ◦ Return result set to the client  Uses Lua scripting language

  17. MySQL Proxy – Supplied Constants and Methods  global proxy.global.connect_retry=3 proxy.global.conRemote={} proxy.global.MySQLenv=luasql.mysql() proxy.global.conRemote[tonumber(details.nodeId)] = proxy.global.MySQLenv:connect(...)  queries – list of queries going to the server proxy.queries:reset()

  18. MySQL Proxy – Supplied Constants and Methods  response – response from server to client proxy.response.type = proxy.MYSQLD_PACKET_OK proxy.response.resultset = {...}  Constants MYSQL_PACKET_OK MYSQL_PACKET_ERR MYSQL_TYPE_LONG PROXY_SEND_RESULT

  19. MySQL Proxy 3306 MySQL MySQL client server 4040 3306 MySQL MySQL MySQL client Proxy server MySQL Proxy 4040 3306 MySQL MySQL client server Lua LuaSQL

  20. MySQL Proxy MySQL MySQL client server MySQL Proxy Lua read_query( ) read_query_result( )

  21. MySQL Proxy MySQL MySQL client server MySQL Proxy Lua LuaSQL calls

  22. LuaSQL  Connect directly to databases from Lua scripts environment :connect return set :fetch cursor :execute (select) connection :execute (ins/upd/del) return code & error msg

  23. LuaSQL Connection Timeouts  Connection drops after sleeping 10s call the execute method if cursor object is nil: call connect method for the environment call execute again

  24. LuaSQL Connection Timeouts function select_db (node,sql) local reconnects = 0 local cur local err repeat cur, err = proxy.global.conRemote[tonumber(node)]:execute(sql) if cur == nil then print ('Reconnecting select_db. Error='..err) reopen_remote_db (node) end reconnects = reconnects+1 until (cur ~= nil or reconnects==proxy.global.connect_retry) if cur==nil then error("Could not reconnect / No result set in select_db",2) else return cur:fetch() end end

  25. LuaSQL Connection Timeouts function execute_db (node,sql) local reconnects = 0 local LOST_CONNECTION = "MySQL server has gone away" local rc local err repeat rc, err = proxy.global.conRemote[tonumber(node)]:execute(sql) if rc ~= nil then print ("execute_db RC="..rc); end if err~=nil then print ("execute_db error="..err); end if rc == nil and err:find(LOST_CONNECTION) then print ('Reconnecting execute_db. Error='..err) reopen_remote_db (node) end reconnects = reconnects+1 until (rc ~= nil or reconnects==proxy.global.connect_retry or not err:find(LOST_CONNECTION) ) if rc == nil and err:find(LOST_CONNECTION) then error("Could not reconnect in execute_db.",2) else return rc,err end end

  26. System Info Script  Keeps cluster up to date on disk usage  Update Node table on all nodes with disk size & free of this node

  27. Accepting Queries from Client  Query comes in to Proxy, read_query is called  The query appears in read_query 's parameter  First byte of variable indicates the type of query:  proxy.COM_QUERY (Query) proxy.COM_PROCESS_INFO (Process List ) proxy.COM_CONNECT (Connect) proxy.COM_PROCESS_KILL (Kill)

  28. Returning a result set  Two response types ◦ "OK" ◦ Error  Set properties of the "response" object in the "proxy" environment

  29. Returning a result set: Error  Array: ◦ type ◦ errmsg ◦ errcode ◦ sqlstate proxy.response={ type= proxy.MYSQLD_PACKET_ERR, errmsg= "Malformed INSERT statement.", errcode= 1064, sqlstate= "42000" } return proxy.PROXY_SEND_RESULT

  30. Returning a result set: OK  Empty Result Set  Array: ◦ type proxy.response.type=proxy.MYSQLD_PACKET_OK return proxy.PROXY_SEND_RESULT

  31. Returning a result set: OK  Full result set proxy  Array: resultset (etc.) ◦ type (value) ◦ resultset (table) fields rows  fields (table) value value  rows (table) type name value value value value

  32. Returning a result set: OK fields rows value value type name value value value value proxy.response.type = proxy.MYSQLD_PACKET_OK proxy.response.resultset = { fields = { {type=proxy.MYSQL_TYPE_LONGLONG, name="blogPostID" }, {type=proxy.MYSQL_TYPE_LONG, name="partitionKey"}, {type=proxy.MYSQL_TYPE_VAR_STRING, name="rawContent" } }, rows = { { tonumber(itemId), tonumber(partKey), contentValue } } } return proxy.PROXY_SEND_RESULT

  33. Cluster Operation Overview

  34. Cluster: Librarian  Talks to the client  Accepts items to store  Retrieves items / gives them to client  The single Lua script that runs under Proxy

  35. Cluster: Librarian  Directory ◦ itemId ◦ nodeId ◦ partitionKey  Event table ◦ serial no. ◦ event type ◦ event data

  36. Cluster: Librarian  Content_ partitionKey ◦ itemId ◦ item – compressed into largeblob  Node table ◦ nodeId ◦ connection / authentication info ◦ system status (disk) ◦ capacity factor

  37. Cluster: Librarian no insert yes bad syntax error good yes exists error no Error: table doesn't exist store on this node create table store on this node update ALL directories store Event return OK to client

  38. Cluster: Librarian  Returning an error proxy.response={ type= proxy.MYSQLD_PACKET_ERR, errmsg= "Duplicate entry '"..itemId.."' for key 1", errcode= 1062, sqlstate= "23000"} return proxy.PROXY_SEND_RESULT  Content Tables ◦ MyISAM (concurrent_insert=2) ◦ One table per partition key ◦ For us: 300 MB / hour

  39. Cluster: Librarian no select yes bad syntax error good yes return empty result 1=0 set to client no calculate yes info return result set max(ID) and to client table count(*) no remote read doesn't exist return empty result get item from dir set to client remote db local get item from this db return result set to client

  40. Cluster: Librarian  Federated select max(id)from sample; SELECT `id`, `val`, `name` FROM `sample`;  Client create table _content_info ( _max_id bigint unsigned, _count bigint unsigned) engine=federated connection=(...schema/_content_info...);  Target create view _content_info as select max(id) _max_id, count(*) _count from _content;

  41. Cluster: Librarian  show table status like `_content`; Auto_increment 0  cluster node add cluster node status cluster node offline

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend