LiveJournal's Backend: A history of scaling

Loading...

Flash Player 9 (or above) is needed to view presentations.
We have detected that you do not have it on your computer. To install it, go here.

0 comments

Post a comment

    Post a comment
    Embed Video
    Edit your comment Cancel

    65 Favorites & 2 Groups

    LiveJournal's Backend: A history of scaling - Presentation Transcript

    1. LiveJournal's Backend A history of scaling August 2005 Brad Fitzpatrick brad@danga.com danga.com / livejournal.com / sixapart.com This work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/1.0/ or send a letter to Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305, USA. http://www.danga.com/words/
    2. LiveJournal Overview college hobby project, Apr 1999 ● “blogging”, forums – social-networking (friends) – aggregator: “friend's page” – Built on Open Source ● All Open Source itself ● Rapid growth ● April 2004: 2.8 million accounts – April 2005: 6.8 million accounts (Aug: 7.9M) – several thousands of hits/second ● lots of MySQL ● lots of custom (open source) infrastructure ● http://www.danga.com/words/
    3. Dropping names Wikipedia ● Slashdot ● Sourceforge ● Meetup ● HowardStern.com ● Facebook ● GUBA (large “content” site) ● parts of Perl.com? ● new qpsmptd ● ... ● http://www.danga.com/words/
    4. net. LiveJournal Backend: Today Roughly. BIG-IP Global Database perlbal (httpd/proxy) bigip1 mod_perl bigip2 proxy1 master_a master_b web1 proxy2 web2 proxy3 Memcached slave1 slave2 ... slave5 web3 proxy4 mc1 web4 proxy5 mc2 User DB Cluster 1 ... mc3 uc1a uc1b web50 mc4 User DB Cluster 2 ... uc2a uc2b Mogile Storage Nodes mc12 sto2 sto1 User DB Cluster 3 sto8 ... uc3a uc3b Mogile Trackers User DB Cluster 4 tracker1 tracker2 uc4a uc4b MogileFS Database User DB Cluster 5 uc5a uc5b mog_a mog_b http://www.danga.com/words/
    5. net. LiveJournal Backend: Today Roughly. BIG-IP Global Database perlbal (httpd/proxy) bigip1 mod_perl bigip2 proxy1 master_a master_b web1 proxy2 web2 proxy3 Memcached slave1 slave2 ... slave5 web3 proxy4 RELAX... mc1 web4 proxy5 mc2 User DB Cluster 1 ... mc3 uc1a uc1b web50 mc4 User DB Cluster 2 ... uc2a uc2b Mogile Storage Nodes mc12 sto2 sto1 User DB Cluster 3 sto8 ... uc3a uc3b Mogile Trackers User DB Cluster 4 tracker1 tracker2 uc4a uc4b MogileFS Database User DB Cluster 5 uc5a uc5b mog_a mog_b http://www.danga.com/words/
    6. The plan... Terminology ● Backend evolution ● work up to previous diagram – Four ways to do MySQL clusters ● for high-availability and load balancing – Caching ● memcached – Web load balancing ● Proprietary, open source, ours: Perlbal – MogileFS ● Questions ● end, or anytime – http://www.danga.com/words/
    7. Terminology: “Cluster” multiple machines ● why? ● High Availability Load Balancing http://www.danga.com/words/
    8. Aside best Venn diagram ever ● Times When I'm Times When I'm Wearing Pants Truly Happy http://www.danga.com/words/
    9. Terminology: “Scaling” NOT how fast your code is ● how fast your code will be tomorrow ● can it “scale out”? ● run in parallel? – algorithm's asymptotic performance? – common resources causing blocking? – say, NFS server ● http://www.danga.com/words/
    10. Backend Evolution From 1 server to 100+.... ● where it hurts – how to fix – Learn from this! ● don't repeat my mistakes – can implement our design on a single server – http://www.danga.com/words/
    11. One Server shared server ● dedicated server (still rented) ● still hurting, but could tune it – learn Unix pretty quickly (first root) – CGI to FastCGI – Simple ● http://www.danga.com/words/
    12. One Server - Problems Site gets slow eventually. ● reach point where tuning doesn't help – Need servers ● start “paid accounts” – SPOF (Single Point of Failure): ● the box itself – http://www.danga.com/words/
    13. Two Servers Paid account revenue buys: ● Kenny: 6U Dell web server – Cartman: 6U Dell database – server bigger / extra disks ● Network simple ● 2 NICs each – Cartman runs MySQL on ● internal network http://www.danga.com/words/
    14. Two Servers - Problems Two single points of failure ● No hot or cold spares ● Site gets slow again. ● CPU-bound on web node – need more web nodes... – http://www.danga.com/words/
    15. Four Servers Buy two more web nodes (1U this time) ● Kyle, Stan – Overview: 3 webs, 1 db ● Now we need to load-balance! ● Kept Kenny as gateway to outside world – mod_backhand amongst 'em all – http://www.danga.com/words/
    16. Four Servers - Problems Points of failure: ● database – public web node (but could switch to another – gateway easily when needed, or used heartbeat, but we didn't) nowadays: Whackamole ● Site gets slow... ● IO-bound – need another database server ... – ... how to use another database? – http://www.danga.com/words/
    17. Five Servers introducing MySQL replication We buy a new database server ● MySQL replication ● Writes to DB (master) ● Reads from both ● http://www.danga.com/words/
    18. Replication Implementation get_db_handle() : $dbh ● existing – get_db_reader() : $dbr ● transition to this – weighted selection – permissions: slaves select-only ● mysql option for this now – be prepared for replication lag ● easy to detect in MySQL 4.x – user actions from $dbh, not $dbr – http://www.danga.com/words/
    19. More Servers Site's fast for a while, ● Then slow ● More web servers, ● More database slaves, ● ... ● IO vs CPU fight ● BIG-IP load balancers ● cheap from usenet – two, but not automatic – fail-over (no support Chaos! contract) LVS would work too – http://www.danga.com/words/
    20. net. Where we're at.... BIG-IP bigip1 bigip2 mod_proxy mod_perl proxy1 web1 proxy2 web2 proxy3 Global Database web3 master web4 ... web12 slave1 slave2 ... slave6 http://www.danga.com/words/
    21. Problems with Architecture or, “This don't scale...” DB master is SPOF ● Slaves upon slaves doesn't scale well... ● only spreads reads – w/ 1 server w/ 2 servers 500 reads/s 250 reads/s 250 reads/s 200 write/s 200 write/s 200 writes/s http://www.danga.com/words/
    22. Eventually... databases eventual consumed by writing ● 3 reads/s 3 reads/s 3 reads/s 3 reads/s 3 reads/s 3 reads/s 3 reads/s 3 r/s 3 r/s 3 r/s 3 r/s 3 r/s 3 r/s 3 r/s 400 400 400400 400400 400400 400 400 400 write/s write/s write/s write/s write/s write/s write/s write/s 400 400 write/s write/s 400 write/s write/s write/s write/s http://www.danga.com/words/
    23. Spreading Writes Our database machines already did RAID ● We did backups ● So why put user data on 6+ slave machines? ● (~12+ disks) overkill redundancy – wasting time writing everywhere – http://www.danga.com/words/
    24. Introducing User Clusters Already had get_db_handle() vs ● get_db_reader() Specialized handles: ● Partition dataset ● can't join. don't care. never join user data w/ – other user data Each user assigned to a cluster number ● Each cluster has multiple machines ● writes self-contained in cluster (writing to 2-3 – machines, not 6) http://www.danga.com/words/
    25. User Clusters SELECT userid, clusterid FROM user WHERE user='bob' http://www.danga.com/words/
    26. User Clusters SELECT userid, clusterid FROM user WHERE user='bob' userid: 839 clusterid: 2 http://www.danga.com/words/
    27. User Clusters SELECT .... SELECT userid, FROM ... clusterid FROM WHERE user WHERE userid=839 ... user='bob' userid: 839 clusterid: 2 http://www.danga.com/words/
    28. User Clusters SELECT .... SELECT userid, FROM ... clusterid FROM WHERE user WHERE userid=839 ... user='bob' OMG i like totally hate my parents userid: 839 they just clusterid: 2 dont understand me and i h8 the world omg lol rofl *! :^- ^^; add me as a http://www.danga.com/words/ friend!!!
    29. User Cluster Implementation per-user numberspaces ● can't use AUTO_INCREMENT – user A has id 5 on cluster 1. ● user B has id 5 on cluster 2... can't move to cluster 1 ● PRIMARY KEY (userid, users_postid) – InnoDB clusters this. user moves fast. most space ● freed in B-Tree when deleting from source. moving users around clusters ● have a read-only flag on users – careful user mover tool – user-moving harness – job server that coordinates, distributed long-lived ● user-mover clients who ask for tasks balancing disk I/O, disk space – http://www.danga.com/words/
    30. User Cluster Implementation $u = LJ::load_user(“brad”) ● hits global cluster – $u object contains its clusterid – $dbcm = LJ::get_cluster_master($u) ● old – $u->do(“UPDATE foo SET ...”) ● $u->selectrow_array(“...”) ● allocates correct handle, proxies to DBI – new – http://www.danga.com/words/
    31. DBI::Role – DB Load Balancing Our little library to give us DBI handles ● GPL; not packaged anywhere but our cvs – Returns handles given a role name ● master (writes), slave (reads) – cluster<n>{,slave,a,b} – Can cache connections within a request or – forever Verifies connections from previous request ● Realtime balancing of DB nodes within a role ● web / CLI interfaces (not part of library) – dynamic reweighting when node down – http://www.danga.com/words/
    32. net. Where we're at... BIG-IP mod_proxy bigip1 Global Database bigip2 proxy1 master mod_perl proxy2 web1 proxy3 slave1 slave2 ... slave6 web2 proxy4 web3 proxy5 web4 User DB Cluster 1 ... master web25 slave2 slave1 User DB Cluster2 master slave2 slave1 http://www.danga.com/words/
    33. Points of Failure 1 x Global master ● lame – n x User cluster masters ● n x lame. – Slave reliance ● one dies, others reading too much – Global Database User DB Cluster2 User DB Cluster 1 master master master slave2 slave1 slave2 slave1 slave1 slave2 ... slave6 Solution? ... http://www.danga.com/words/
    34. Master-Master Clusters! two identical machines per cluster – both “good” machines ● do all reads/writes to one at a time, both replicate – from each other intentionally only use half our DB hardware at a – time to be prepared for crashes easy maintenance by flipping the active in pair – no points of failure – User DB Cluster 1 User DB Cluster 2 uc2a uc1a uc2b uc1b app http://www.danga.com/words/
    35. Master-Master Prereqs failover shouldn't break replication, be it: ● automatic (be prepared for flapping) – by hand (probably have other problems) – fun/tricky part is number allocation ● same number allocated on both pairs – cross-replicate, explode. – strategies ● odd/even numbering (a=odd, b=even) – if numbering is public, users suspicious ● 3rd party: global database (our solution) – ... – http://www.danga.com/words/
    36. Cold Co-Master inactive machine in pair isn't getting reads ● Strategies ● switch at night, or – sniff reads on active pair, replay to inactive guy – ignore it – not a big deal with InnoDB ● Clients Hot cache, Cold cache, happy. sad. 7B 7A http://www.danga.com/words/
    37. net. Where we're at... BIG-IP mod_proxy bigip1 Global Database bigip2 proxy1 master mod_perl proxy2 web1 proxy3 slave1 slave2 ... slave6 web2 proxy4 web3 proxy5 web4 User DB Cluster 1 ... master web25 slave2 slave1 User DB Cluster 2 uc2a uc2b http://www.danga.com/words/
    38. MyISAM vs. InnoDB http://www.danga.com/words/
    39. MyISAM vs. InnoDB Use InnoDB. ● Really. – Little bit more config work, but worth it: – won't lose data ● (unless your disks are lying, see later...) – fast as hell ● MyISAM for: ● logging – we do our web access logs to it ● read-only static data – plenty fast for reads ● http://www.danga.com/words/
    40. Logging to MySQL mod_perl logging handler ● INSERT DELAYED to mysql – MyISAM: appends to table w/o holes don't block – Apache's access logging disabled ● diskless web nodes – error logs through syslog-ng – Problems: ● too many connections to MySQL, too many – connects/second (local port exhaustion) had to switch to specialized daemon – daemons keeps persistent conn to MySQL ● other solutions weren't fast enough ● http://www.danga.com/words/
    41. Four Clustering Strategies... http://www.danga.com/words/
    42. Master / Slave doesn't always scale w/ 1 server ● reduces reads, not writes – 500 reads/s cluster eventually writing full – time 200 writes/s good uses: ● read-centric applications – snapshot machine for backups – can be underpowered ● w/ 2 servers box for “slow queries” – when specialized non-production ● 250 reads/s query required 250 reads/s table scan – 200 write/s 200 write/s non-optimal index available – http://www.danga.com/words/
    43. Downsides Database master is SPOF ● Reparenting slaves on master failure is tricky ● hang new master as slave off old master – while in production, loop: ● slave stop all slaves – compare replication positions – if unequal, slave start, repeat. – ● eventually it'll match if equal, change all slaves to be slaves of new master, stop old – master, change config of who's the master Global Database Global Database Global Database master master master new master slave1 slave2 new master slave1 slave2 new master slave1 slave2 http://www.danga.com/words/
    44. Master / Master great for maintenance ● flipping active side for maintenance / backups – great for peace of mind ● two separate copies – Con: requires careful schema ● easiest to design for from beginning – harder to tack on later – User DB Cluster 1 uc1a uc1b http://www.danga.com/words/
    45. MySQL Cluster “MySQL Cluster”: the product ● in-memory only ● good for small datasets – need 2-4x RAM as your dataset ● perhaps your {userid,username} -> user row (w/ ● clusterid) table? new set of table quirks, restrictions ● was in development ● perhaps better now? – Likely to kick ass in future: ● when not restricted to in-memory dataset. – planned development, last I heard? ● http://www.danga.com/words/
    46. Shared Storage (SAN, SCSI, DRBD...) Turn pair of InnoDB machines into a cluster ● looks like 1 box to outside world. floating IP. – One machine at a time running fs / MySQL ● Heartbeat to move IP, {un,}mount filesystem, ● {stop,start} mysql No special schema considerations ● MySQL 4.1 w/ binlog sync/flush options ● good – The cluster can be a master or slave as well – http://www.danga.com/words/
    47. Shared Storage: DRBD Linux block device driver ● sits atop another block device – syncs w/ another machine's block device – cross-over gigabit cable ideal. network is faster than ● random writes on your disks usually. Warning: ● use dedicated gigabit crossover – watch out for kernel memory fragmentation w/ – heavy network usage 64-bit machines might help a bit ● large MTU: pros & cons. – pros: speed ● cons: more fragmentation ● http://www.danga.com/words/
    48. MySQL Clustering Options: Pros & Cons no magic bullet ● maybe in the future ● http://www.danga.com/words/
    49. Caching http://www.danga.com/words/
    50. Caching caching's key to performance ● store result of a computation for quicker future – access can't hit the DB all the time ● MyISAM: r/w concurrency problems – InnoDB: better; not perfect – MySQL has to parse your queries all the time – better with new MySQL binary protocol ● http://www.danga.com/words/
    51. Where to cache? mod_perl caching – memory waste (address space per apache child) ● shared memory – limited to single machine, same with Java/C#/Mono ● MySQL query cache – flushed per update, small max size ● HEAP tables – fixed length rows, small max size ● http://www.danga.com/words/
    52. memcached http://www.danga.com/memcached/ our Open Source, distributed caching system ● run instances wherever there's free memory ● requests hashed out amongst them all – no “master node” ● protocol simple and XML-free; clients for: ● perl, java, php, python, ruby, ... – In use by lots of people ● People speeding up their: ● websites, mail servers, ... – very fast. ● http://www.danga.com/words/
    53. LiveJournal and memcached 12 unique hosts ● none dedicated – 28 instances ● 30 GB of cached data ● 90-93% hit rate ● http://www.danga.com/words/
    54. What to Cache Everything? ● Start with stuff that's hot ● Look at your logs ● query log – update log – slow log – Control MySQL logging at runtime ● can't – help me bug them. ● sniff the queries! – mysniff.pl (uses Net::Pcap and decodes mysql stuff) ● canonicalize and count ● or, name queries: SELECT /* name=foo */ – http://www.danga.com/words/
    55. Caching Disadvantages extra code ● updating your cache – perhaps you can hide it all – clean object setting/accessor API ● Data::ObectDriver (not yet released?) – but don't cache (DB query) -> (result set) ● want finer granularity – more stuff to admin ● but only one real option: memory to use – in practice we haven't touched memcached – boxes/processes in ages http://www.danga.com/words/
    56. Web Load Balancing http://www.danga.com/words/
    57. Web Load Balancing BIG-IP [mostly] packet-level ● doesn't buffer HTTP responses – need to spoon-feed clients – BIG-IP and others can't adjust server ● weighting quick enough DB apps have widly varying response times: few – ms to multiple seconds Tried a dozen reverse proxies ● none did what we wanted or were fast enough – Wrote Perlbal ● fast, smart, manageable HTTP web server/proxy – can do internal redirects – http://www.danga.com/words/
    58. Perlbal http://www.danga.com/words/
    59. Perlbal Perl ● single threaded, async event-based ● uses epoll, kqueue – console / HTTP remote management ● live config changes – handles dead nodes, smart balancing ● multiple modes ● static webserver – reverse proxy – plug-ins (Javascript message bus.....) – plug-ins ● GIF/PNG altering, .... – http://www.danga.com/words/
    60. Perlbal: Persistent Connections persistent connections ● perlbal to backends (mod_perls) – know exactly when a connection is ready for a new ● request no complex load balancing logic: just use whatever's free. – beats managing “weighted round robin” hell. clients persistent; not tied to backend – verifies new connections ● connects often fast, but talking to kernel, not – apache (listen queue) send OPTIONs request to see if apache is there – multiple queues ● free vs. paid user queues – http://www.danga.com/words/
    61. Perlbal: cooperative large file serving large file serving w/ mod_perl bad... ● mod_perl has better things to do than spoon- – feed clients bytes internal redirects ● mod_perl can pass off serving a big file to – Perlbal either from disk, or from other URL(s) ● client sees no HTTP redirect – “Friends-only” images – one, clean URL ● mod_perl does auth, and is done. ● perlbal serves. ● http://www.danga.com/words/
    62. Internal redirect picture http://www.danga.com/words/
    63. MogileFS our distributed file system ● open source ● userspace ● started on FUSE port, lost interest – hardly unique ● Google GFS – Nutch Distributed File System (NDFS) – production-quality ● http://www.danga.com/words/
    64. MogileFS: Why alternatives at time were either: ● closed, non-existent, expensive, in development, – complicated, ... scary/impossible when it came to data recovery – because it was easy ● http://www.danga.com/words/
    65. MogileFS: Main Ideas MogileFS main ideas: ● files belong to classes – classes: minimum replica counts ● tracks what disks files are on – set disk's state (up, temp_down, dead) and host ● keep replicas on devices on different hosts – Screw RAID! (for this, for databases it's good.) ● multiple tracker databases – all share same MySQL database cluster ● big, cheap disks – dumb storage nodes w/ 12, 16 disks, no RAID ● http://www.danga.com/words/
    66. MogileFS components clients ● trackers ● mysql database cluster ● storage nodes ● http://www.danga.com/words/
    67. MogileFS: Clients tiny text-based protocol ● Libraries available for: ● Perl (us) – tied filehandles ● Java – PHP – Python? – porting to $LANG is be trivial – doesn't do database access ● http://www.danga.com/words/
    68. MogileFS: Tracker interface between client protocol and cluster of ● MySQL machines also does automatic file replication, deleting, ● etc. http://www.danga.com/words/
    69. MySQL database master-slave or, recommended: MySQL on ● shared storage (DRBD/etc) http://www.danga.com/words/
    70. Storage nodes NFS or HTTP transport ● [Linux] NFS incredibly problematic – HTTP transport is either: ● Perlbal with PUT & DELETE enabled – “mogstored” wrapper just does “use Perlbal;” and sets up ● config for you Apache with WebDAV – Stores blobs on filesystem, not in database: ● otherwise can't sendfile() on them – would require lots of user/kernel copies – filesystem can be any filesystem – http://www.danga.com/words/
    71. Large file GET request http://www.danga.com/words/
    72. Spoonfeeding: slow, but event- based Auth: complex, but quick Large file GET request http://www.danga.com/words/
    73. And the reverse... Now Perlbal can buffer uploads as well.. ● Problems: – LifeBlog uploading ● cellphones are slow – LiveJournal/Friendster photo uploads ● cable/DSL uploads still slow – decide to buffer to “disk” (tmpfs, likely) – on any of: rate, size, time ● Big Ups to Mark “Junior” Smith – http://www.danga.com/words/
    74. Things to watch out for... http://www.danga.com/words/
    75. MyISAM sucks at concurrency ● reads and writes at same time: can't – except appends ● loses data in unclean shutdown / powerloss ● requires slow myisamchk / REPAIR TABLE – index corruption more often than I'd like – InnoDB: checksums itself ● Solution: ● use InnoDB tables – http://www.danga.com/words/
    76. Data Integrity Databases depend on fsync() ● else powerloss means terrible corruption – databases can't send raw SCSI/ATA commands to – flush controller caches, etc fsync() almost never works work ● Lots of parties contribute to the problem: – Linux, raid cards (LSI), controllers, disks, .... ● Solution: test & fix ● disk-checker.pl – client/server ● fix: – disk settings (scsirastols, take out of RAID), ● controller/RAID settings, etc, etc.... http://www.danga.com/words/
    77. Persistent Connection Woes connections == threads == memory ● My pet peeve: – want connection/thread distinction in MySQL! ● or lighter threads w/ max-runnable-threads tunable ● max threads ● limit max memory – with user clusters: ● Do you need Bob's DB handles alive while you – process Alice's request? not if DB handles are in short supply! ● Major wins by disabling persistent conns ● still use persistent memcached conns – don't connect to DB often w/ memcached – http://www.danga.com/words/
    78. In summary... http://www.danga.com/words/
    79. Software Overview Linux 2.6 ● Debian sarge ● MySQL ● 4.0, 4.1 – InnoDB, some MyISAM in specialized cases – BIG-IPs ● mod_perl ● Our stuff ● memcached – Perlbal – MogileFS – http://www.danga.com/words/
    80. Thank you! Questions to... brad@danga.com We're Hiring! http://www.sixapart.com/jobs/ http://www.danga.com/words/

    + vishnuvishnu, 3 years ago

    custom

    19125 views, 65 favs, 14 embeds more stats

    August 2005
    Brad Fitzpatrick
    brad@danga.com

    More info about this document

    © All Rights Reserved

    Go to text version

    • Total Views 19125
      • 18857 on SlideShare
      • 268 from embeds
    • Comments 0
    • Favorites 65
    • Downloads 0
    Most viewed embeds
    • 232 views on http://poorbuthappy.com
    • 17 views on http://www.poorbuthappy.com
    • 4 views on http://rapd.wordpress.com
    • 3 views on http://webdevcampsp.ning.com
    • 2 views on http://www.filescon.com

    more

    All embeds
    • 232 views on http://poorbuthappy.com
    • 17 views on http://www.poorbuthappy.com
    • 4 views on http://rapd.wordpress.com
    • 3 views on http://webdevcampsp.ning.com
    • 2 views on http://www.filescon.com
    • 2 views on http://www.touchdata.cc
    • 1 views on http://mambler.net
    • 1 views on http://209.85.173.104
    • 1 views on http://www.thoughtbag.com
    • 1 views on http://www.easyrapidshare.com
    • 1 views on http://192.168.10.105
    • 1 views on http://192.168.10.100
    • 1 views on http://jhpatel.blogspot.com
    • 1 views on http://wiki.tou7.com

    less

    Flagged as inappropriate Flag as inappropriate
    Flag as inappropriate

    Select your reason for flagging this presentation as inappropriate. If needed, use the feedback form to let us know more details.

    Cancel
    File a copyright complaint
    Having problems? Go to our helpdesk?

    Categories