F1 - The Fault-Tolerant Distributed RDBMS Supporting Google's Ad Business Jeff Shute, Mircea Oancea, Stephan Ellner, Ben Handy, Eric Rollins, Bart Samwel, Radek Vingralek, Chad Whipkey, Xin Chen, Beat Jegerlehner, Kyle Littlefield, Phoenix Tong SIGMOD May 22, 2012

Today's Talk F1 - A Hybrid Database combining the ● Scalability of Bigtable ● Usability and functionality of SQL databases Key Ideas ● Scalability: Auto-sharded storage ● Availability & Consistency: Synchronous replication ● High commit latency: Can be hidden ○ Hierarchical schema ○ Protocol buffer column types ○ Efficient client code Can you have a scalable database without going NoSQL? Yes.

The AdWords Ecosystem One shared database backing Google's core AdWords business advertiser

SOAP API

web UI

reports Java / "frontend"

ad-hoc SQL users

C++ / "backend"

DB log aggregation

ad servers

ad approvals spam analysis ad logs

Our Legacy DB: Sharded MySQL Sharding Strategy ● Sharded by customer ● Apps optimized using shard awareness Limitations ● Availability ○ Master / slave replication -> downtime during failover ○ Schema changes -> downtime for table locking ● Scaling ○ Grow by adding shards ○ Rebalancing shards is extremely difficult and risky ○ Therefore, limit size and growth of data stored in database ● Functionality ○ Can't do cross-shard transactions or joins

Demanding Users Critical applications driving Google's core ad business ● 24/7 availability, even with datacenter outages ● Consistency required ○ Can't afford to process inconsistent data ○ Eventual consistency too complex and painful ● Scale: 10s of TB, replicated to 1000s of machines Shared schema ● Dozens of systems sharing one database ● Constantly evolving - multiple schema changes per week SQL Query ● Query without code

Our Solution: F1 A new database, ● built from scratch, ● designed to operate at Google scale, ● without compromising on RDBMS features. Co-developed with new lower-level storage system, Spanner

Underlying Storage - Spanner Descendant of Bigtable, Successor to Megastore Properties ● Globally distributed ● Synchronous cross-datacenter replication (with Paxos) ● Transparent sharding, data movement ● General transactions ○ Multiple reads followed by a single atomic write ○ Local or cross-machine (using 2PC) ● Snapshot reads

F1 F1 client

Architecture ● Sharded Spanner servers ○ data on GFS and in memory ● Stateless F1 server ● Pool of workers for query execution

F1 server F1 query workers

Features ● Relational schema ○ Extensions for hierarchy and rich data types ○ Non-blocking schema changes ● Consistent indexes ● Parallel reads with SQL or Map-Reduce

Spanner server

GFS

How We Deploy ● Five replicas needed for high availability ● Why not three? ○ Assume one datacenter down ○ Then one more machine crash => partial outage Geography ● Replicas spread across the country to survive regional disasters ○ Up to 100ms apart Performance ● Very high commit latency - 50-100ms ● Reads take 5-10ms - much slower than MySQL ● High throughput

Hierarchical Schema Explicit table hierarchies. Example: ● Customer (root table): PK (CustomerId) ● Campaign (child): PK (CustomerId, CampaignId) ● AdGroup (child): PK (CustomerId, CampaignId, AdGroupId) Storage Layout

Rows and PKs 1

1,3

1,3,5

1,3,6

2

1,4

2,5

1,4,7

2,5,8

Customer Campaign AdGroup AdGroup Campaign AdGroup Customer Campaign AdGroup

(1) (1,3) (1,3,5) (1,3,6) (1,4) (1,4,7) (2) (2,5) (2,5,8)

Clustered Storage ● ● ● ●

Child rows under one root row form a cluster Cluster stored on one machine (unless huge) Transactions within one cluster are most efficient Very efficient joins inside clusters (can merge with no sorting) Storage Layout

Rows and PKs 1

1,3

1,3,5

1,3,6

2

1,4

2,5

1,4,7

2,5,8

Customer Campaign AdGroup AdGroup Campaign AdGroup Customer Campaign AdGroup

(1) (1,3) (1,3,5) (1,3,6) (1,4) (1,4,7) (2) (2,5) (2,5,8)

Protocol Buffer Column Types Protocol Buffers ● Structured data types with optional and repeated fields ● Open-sourced by Google, APIs in several languages Column data types are mostly Protocol Buffers ● Treated as blobs by underlying storage ● SQL syntax extensions for reading nested fields ● Coarser schema with fewer tables - inlined objects instead Why useful? ● Protocol Buffers pervasive at Google -> no impedance mismatch ● Simplified schema and code - apps use the same objects ○ Don't need foreign keys or joins if data is inlined

SQL Query ● Parallel query engine implemented from scratch ● Fully functional SQL, joins to external sources ● Language extensions for protocol buffers SELECT CustomerId FROM Customer c PROTO JOIN c.Whitelist.feature f WHERE f.feature_id = 302 AND f.status = 'STATUS_ENABLED'

Making queries fast ● Hide RPC latency ● Parallel and batch execution ● Hierarchical joins

Coping with High Latency Preferred transaction structure ● One read phase: No serial reads ○ Read in batches ○ Read asynchronously in parallel ● Buffer writes in client, send as one RPC Use coarse schema and hierarchy ● Fewer tables and columns ● Fewer joins For bulk operations ● Use small transactions in parallel - high throughput Avoid ORMs that add hidden costs

ORM Anti-Patterns ● Obscuring database operations from app developers ● Serial reads ○ for loops doing one query per iteration ● Implicit traversal ○ Adding unwanted joins and loading unnecessary data These hurt performance in all databases. They are disastrous on F1.

Our Client Library ● Very lightweight ORM - doesn't really have the "R" ○ Never uses Relational joins or traversal ● All objects are loaded explicitly ○ Hierarchical schema and protocol buffers make this easy ○ Don't join - just load child objects with a range read ● Ask explicitly for parallel and async reads

Results Development ● Code is slightly more complex ○ But predictable performance, scales well by default ● Developers happy ○ Simpler schema ○ Rich data types -> lower impedance mismatch User-Facing Latency ● Avg user action: ~200ms - on par with legacy system ● Flatter distribution of latencies ○ Mostly from better client code ○ Few user actions take much longer than average ○ Old system had severe latency tail of multi-second transactions

Current Challenges ● Parallel query execution ○ Failure recovery ○ Isolation ○ Skew and stragglers ○ Optimization ● Migrating applications, without downtime ○ Core systems already on F1, many more moving ○ Millions of LOC

Summary We've moved a large and critical application suite from MySQL to F1. This gave us ● Better scalability ● Better availability ● Equivalent consistency guarantees ● Equally powerful SQL query And also similar application latency, using ● Coarser schema with rich column types ● Smarter client coding patterns In short, we made our database scale, and didn't lose any key database features along the way.

The Fault-Tolerant Distributed RDBMS Supporting Google's Ad Business

May 22, 2012 - 1,3,6. 1,3,5. 2. 2,5. 2,5,8. Storage Layout. Rows and PKs ... Parallel query engine implemented from scratch. ○ Fully functional SQL, joins to ...

309KB Sizes 2 Downloads 194 Views

Recommend Documents

F1 - The Fault-Tolerant Distributed RDBMS ... - Research at Google
May 22, 2012 - One shared database backing Google's core AdWords business. DB ... Our Solution: F1 .... These hurt performance in all databases. They are ...

RDBMS- Day5
SQL standard doesn't define any notion of horizontal or vertical views . .... locate a term called linkage editor under the letter L. Now against this term you will find ...

A wireless distributed framework for supporting ...
A wireless distributed framework for supporting Assistive. Learning Environments .... Documents of the W3-Consortium's Web Accessibility Initiative. (WAI) include ... propose the most relevant links (nodes) for the students to visit, or generate new

Supporting ad hoc sensemaking: Integrating cognitive, HCI and data ...
HCI, and Data Mining Approaches ... out the schema with data, and completing the target task. A .... (see [17] for details), basically Shiftr uses the graph's link.

RDBMS- Day 4
Copyright © 2004,. Infosys Technologies Ltd. SQL - Using GROUP BY. • Related rows can be grouped together by GROUP BY clause by specifying a column as ...

RDBMS- Day 4
Get all combinations of emp and cust information such that the emp and cust are co-located. SELECT Table1.Emp_ID, Table1.City, Table2.Cust_ID, Table2.City.

Distributed QoS Guarantees for Realtime Traffic in Ad Hoc Networks
... on-demand multime- dia retrieval, require quality of service (QoS) guarantees .... outside interference, the wireless channel has a high packet loss rate and the ...

DISTRIBUTED CONTROL OF WIRELESS AD-HOC ...
to random medium access control (MAC) strategies working on a collision ... This work has been supported by TROPIC Project, Nr. 318784. inference.

Googles-Ideological-Echo-Chamber.pdf
There was a problem previewing this document. Retrying... Download. Connect more apps... Try one of the apps below to open or edit this item.

Googles-Ideological-Echo-Chamber.pdf
This silencing has created an ideological echo chamber where some ideas are too. sacred to be honestly discussed. ○ The lack of discussion fosters the most ...

2016 Business Ad Sales.pdf
staff member work with you to design your perfect ad. To reserve your space, follow these guidelines: Provide business card or photos for each space in the ad.

Cheap Bubm 3D Googles Shoulder Bag Profession Vr Case Digital ...
Cheap Bubm 3D Googles Shoulder Bag Profession Vr C ... aterproof Case Free Shipping & Wholesale Price.pdf. Cheap Bubm 3D Googles Shoulder Bag ...

Supporting Information
Jul 13, 2010 - macaque brain consists of 95 vertices and 2,402 edges [1], where the network models brain regions as vertices and the presence of long dis-.

RELATION DATBASE MANAGEMENT SYSTEM (RDBMS).pdf ...
There was a problem previewing this document. Retrying... Download ... RELATION DATBASE MANAGEMENT SYSTEM (RDBMS).pdf. RELATION DATBASE ...

An Intelligent XML-RDBMS Mapper
Supervisor's Signature… ... electronic publishing. But due to its generic design .... database), accepting XML as input and rendering XML as output. A lot of work ...

Supporting Information
Oct 26, 2010 - between 0.3 and 1.0 mL of an aqueous colloidal dispersion. (4 g∕L) of partially doped polyaniline nanofibers was mixed with. 3 mL of DI water.

Supporting Information
May 31, 2011 - tions were carried out using a molecular orbital approach within a gradient corrected density functional framework. The molecular orbitals are ...

Supporting Information
Oct 26, 2010 - +1.2 V and then back to −0.2 V by using a scan rate of 50 mV∕s. ... The effect of polymer nanofiber concentration on film .... gold electrodes on SiO2∕Si and (Top Right) a close-up illustration of the electrode geometry.

Supporting Information
May 31, 2011 - The molecular orbitals are expressed as linear combinations of atomic orbitals ... minimization for free atoms and are optimized for all electron.

Supporting Information
Jul 13, 2010 - brain regions, lack of acronym field in the connectivity database, the ..... 2. while (some vertex in (Vk+1, Ek+1) has degree less than k + 1). (a) Set mk .... Goodale MA, Mansfield RJ (MIT Press, Cambridge, MA), pp 549-586. 18.

The DoubleClick Ad Exchange
to be allocated much more efficiently and easily across the web. ... The large online publishers (sellers)—websites like portals, entertainment sites and news ...

Download Supporting Information
Mar 4, 2011 - metal-semiconductor-metal devices in both sandwich-type planar and fiber geometries were compared. The materials used in each form factor ...