banking case study scaling with low latency using newsql
play

Banking Case study: Scaling with low latency using NewSQL Jags - PowerPoint PPT Presentation

Banking Case study: Scaling with low latency using NewSQL Jags Ramnarayan (VMWare) Jim Bedenbaugh (VMWare) Qcon 2012 Agenda Business Requirements Operational data Analysis Problem Statement Scaling pain Introduction to SQLfire Driving


  1. Banking Case study: Scaling with low latency using NewSQL Jags Ramnarayan (VMWare) Jim Bedenbaugh (VMWare) Qcon 2012

  2. Agenda Business Requirements Operational data Analysis Problem Statement Scaling pain Introduction to SQLfire Driving principles in SQLFire Use cases Demo (partitioned regions, colocation, etc) Data-aware procedures concepts Consistency model Shared-nothing disk persistence

  3. Business Requirements: What are they after? A large regional bank in the Northeastern U.S. Collects large amounts of operational data By region and branch Significant number of attributes associated with each transaction Drive thru or foot traffic Transaction type Product types Time of day

  4. Business Requirements: What are they after? (con’t) Analysis The data is analyzed to determine the staffing requirements for each branch and region. These requirements yield guidance on: Number of staff needed Skills needed Hours of operation

  5. So what seems to be the problem? ¡ ¡ “Righ “R ght n now ow ou our d dat atab abas ase i is on only ly 3 32G but... ... ¡ “We ar “W are con constan antly ly acq acquiring n g new ban anks… ¡ “A “And t this d dat atab abas ase i is gr grow owing r g rap apidly ly…” …” ¡ “A “And i it t tak akes at at le leas ast a w a week t to ge o get n new resou ource ces an and t this i is ju just t too s oo slow low.” .” ¡

  6. Vertical Scaling has led to The “Jenga Architecture” “We can only scale one way: Vertically. We want to scale horizontally but the vendor wants a pile of money to put in a new solution. When we need more resources, all we can do is jam in more memory and hang more drives off the same machine, but we’re getting at the end of that road. We need another solution.”

  7. How did they arrive in this predicament? Poor planning: “We just didn’t think about how this data is used or how much we would end up collecting over time.” Doing it on the cheap: “We were locked into one database vendor and the original implementation was cheap to do with their low end database.” Clustering: “Our team isn’t really all that sophisticated in doing these kinds of databases. An awful lot of our data lives on the mainframe.”

  8. The ¡introduc(on ¡of ¡SQLfire… ¡

  9. And how does SQLfire ease my pain? Powerful SQL engine: Replicated, partitioned tables in standard SQL for select, DML memory. Redundancy through DDL has SQLF extension memory copies. Data resides on disk when you explicitly say so Leverages GemFire data grid engine.

  10. Scaling at the speed of thought Consistency model is Applications FIFO, Tunable. access the distributed DB Distributed transactions using JDBC, without global locks ADO.NET

  11. Scaling at the speed of thought Asynchronous replication over WAN Synchronous replication within cluster Clients failover, failback Easily integrate with existing DBs - caching framework to read through, write through or write behind

  12. Scaling at the speed of thought When nodes are added, data and behavior is rebalanced without blocking current clients "Data aware procedures“ - standard Java stored procedures with "data aware" and parallelism extensions

  13. The Partitioning Strategy: How we chose… CREATE TABLE FLIGHTS ( FLIGHT_ID CHAR(6) NOT NULL , REGION INTEGER NOT NULL, SEGMENT_NUMBER INTEGER NOT NULL , ORIG_AIRPORT CHAR(3), DEPART_TIME TIME, … ) PARTITION BY COLUMN(REGION) REDUNDANCY 1 PERSISTENT;

  14. Partitioning: The Result What it looked like: 2x48G VM with 2 processors Data Partitioned and Replicated Split: 13 million rows/ 9 million rows What happened when we added another VM Added 48g 2 processor Data rebalanced across 3 partitions: 8 million/6 million/8 million How it performed We ran side by side comparisons of and existing SQL statement. The existing server took nearly 20 minutes to complete The SQLfire version completed in under 1 minute. The benefit of partitioning is that we can go to a single partition and retrieve data instead of a table scan.

  15. Start ¡ Yes ¡ Use ¡explicit ¡direc(ves ¡ Is ¡par((oning ¡ declared? ¡ No ¡ Is ¡the ¡ ¡ referenced ¡table ¡ Yes ¡ Yes ¡ Colocate ¡with ¡ Are ¡there ¡foreign ¡ ¡ ¡ par((oned ¡on ¡the ¡foreign ¡ referenced ¡table ¡ key? ¡ keys? ¡ No ¡ If ¡no ¡PARTITION ¡BY ¡clause ¡is ¡specified, ¡GemFire ¡ SQLF ¡will ¡automaBcally ¡parBBon ¡and ¡collocate ¡ tables ¡based ¡on ¡this ¡algorithm. ¡ Yes ¡ Par((on ¡by ¡primary ¡ Is ¡there ¡a ¡primary ¡ ¡ key ¡ key? ¡ Hashing ¡is ¡performed ¡on ¡the ¡Java ¡ implementa(on ¡of ¡the ¡column’s ¡type. ¡ No ¡ Yes ¡ Par((on ¡by ¡the ¡first ¡ Are ¡there ¡UNIQUE ¡ UNIQUE ¡column ¡ columns? ¡ Par((on ¡by ¡internally ¡ generated ¡row ¡id ¡ No ¡

  16. Reac(ons ¡to ¡the ¡implementa(on ¡ The DBA’s had the Grumpy Old Man response: “Hey you kids get off my grass!”

  17. Reac(ons ¡to ¡the ¡implementa(on ¡ Management response: “Where do we sign?”

  18. Reac(ons ¡to ¡the ¡implementa(on ¡ Business response: “Where do we sign?”

  19. Reac(ons ¡to ¡the ¡implementa(on ¡ Developers response: “What? We have to modify existing SQL? This just doesn’t drop in?”

  20. Conversion Gotchas and Tips… DDL. It’s different for Derby. DB2 has all kinds of options and parameters. Use a hatchet, not scissors when editing. I wrote a few scripts to rip out a lot of the DB2 DDL. It’s just not needed. Data types: Map them before you convert the DDL. Write a script to convert them. Data conversion: SQLfire has a neat import procedure SYSCS_UTIL.IMPORT_TABLE. Use it. I always requested CSV files and split them up into chunks in case anything went wrong. Use JDBCRowloader for read misses. Comes with SQLfire. Use DDLUtils for DDL conversion. Cannot use Stored Procedures. Rewrite as Java Stored Procedure

  21. ¡SQLFire ¡Driving ¡Principles ¡ NoSQ oSQL d dat ata m a mod odels ls le less r rigi gid b but m mos ost n now ow s suppor ort s som ome f for orm of of SQ SQL – – cq cql, u , un-ql ql, , oq oql, , etc etc SQ SQL : F : Fle lexible le, e , eas asily ly u understood ood, s , stron ong t g type s system essential f e al for or q query e engi gine e effici ciency cy Focu ocus on on com commod odity s servers; ; Memor ory d density f follow ollows M Moor oore’s ’s law law Optimize ze f for or m memor ory; F ; Focu ocus on on lar large ge N Not ot “Bi “Big d g dat ata” a” Undifferentiat ated f feat atures i in n next ge gen d dat atab abas ases - - Hor orizon zontal s al scalab calabili lity, h , high gh av avai ailab labili lity

  22. ¡SQLFire ¡Driving ¡Principles ¡ Dat ata i a is f flow lowing.. W g.. Wor ork w with r rele levan ant, “N , “NOW” d ” dat ata Not ot J Just H High gh A Avai ailab labili lity.. Con .. Continuou ous av avai ailab labili lity Sy Synch chron onou ous cop copies i in p prox oximity.. .. As Async ync cop copies acr acros oss W WAN Exploi loit d dat ata af a affinity f for or p par aralle allel p l proce ocessing; of g; offer n new A APIs - A - App d develop loper i is t the n new D DBA BA Consistency Con cy s shou ould ld b be t tunab able le Eventual con E al consistency cy i is t too d oo difficu cult lt f for or t the av average age d develop loper )  R Write(A (A,2 ,2) Read ad(A (A) m ) may ay r return 1 1 or or (1 (1,2 ,2) )

  23. ¡ ¡ ¡ DESIGN ¡PATTERNS ¡

  24. “Write ¡thru” ¡Distributed ¡caching ¡ Pre-load using DDLUtils for queries Lazily load using “RowLoader” for PK queries Configure LRU eviction or expiry for large data “Write thru” – participate in container transaction ¡

  25. Distributed ¡caching ¡with ¡Async ¡writes ¡to ¡DB ¡ Buffer high write rate from DB Writes can be enqueued in memory redundantly on multiple nodes Or, also be persisted to disk on each node Batches can be conflated and written to DB Pattern for “high ingest” into Data Warehouse ¡

  26. As ¡a ¡scalable ¡OLTP ¡data ¡store ¡ Shared nothing persistence to disk Backup and recovery No Database to configure and be throttled by ¡

  27. As ¡embedded, ¡clustered ¡Java ¡database ¡ Just deploy a JAR or WAR into clustered App nodes Just like H2 or Derby except data can be sync’d with DB is partitioned or replicated across the cluster ¡ Low cost and easy to manage

  28. To ¡process ¡app ¡behavior ¡in ¡parallel ¡ Map-reduce but based on simpler RPC

  29. To ¡make ¡data ¡visible ¡across ¡sites ¡in ¡real ¡(me ¡

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