1
play

1 Outline Economics in Mariposa Apply a microeconomic paradigm for - PDF document

Why is Mariposa Important? Mariposa: A wide-area distributed database Wide-area ( WAN ) differ from Local-area ( LAN ) databases. Each individual site is set up differently: with different access methods. with different data


  1. Why is Mariposa Important? Mariposa: A wide-area distributed database • Wide-area ( WAN ) differ from Local-area ( LAN ) databases. – Each individual site is set up differently: • with different access methods. • with different data type extensions • with different data-type extensions. • different site administrative structures. – Optimization is hard: • traditional optimizers do not work. • centralized distributed optimizers do not scale. Slides originally by Shahed Alam – Traditional LAN assumptions do not hold for today’s WANs! Edited by Cody R. Brown , Nov 15, 2009 – Why use the same software for LANs? 2 Assumptions in Traditional LAN Outline Distributed DBMS • Static data allocation 1. Assumptions for DDBMS – Objects can’t quickly change sites. 2. Motivation for Mariposa – Manual transfer of data is required from site to site. 3. Economics in Mariposa • Single administrative structure 4. Mariposa architecture 4. Mariposa architecture – Central optimizer splits queries and sends them out Central optimizer splits queries and sends them out. – No site can refuse work, even under excessive load. 5. Bidding process • Uniformity 6. Storage and Name resolution – Optimizer assumes all sites have same hardware, 7. Experiment and Conclusion network, ample space, etc. For WAN, these assumptions are less plausible! 3 4 Motivation Motivation: Assumptions • Scalability to a large number of sites • Why not plausible? – No assumptions that will limit this! – Building for a non-uniformed, multi-admin • Data mobility WAN environment! – Easily change “home” of an object and remain available. • No global synchronization – Schema changes should not force synchronization. • For this environment we will need new • Total local autonomy goals! – Total control over its own resources, including what to run and store.  Need new set of assumptions! • Easily configurable policies  Requires new architecture! – Easily change individual rules of sites by local administrators. 5 6 1

  2. Outline Economics in Mariposa • Apply a microeconomic paradigm for 1. Assumptions for DDBMS query and storage optimization: 2. Motivation for Mariposa – clients and servers have accounts with a 3. Economics in Mariposa network bank. – users allocate a budget to each query. users allocate a budget to each query – query administered by broker which obtains bids. – fragments (objects) are the units of storage that are bought and sold and can be split or coalesced. – servers buy objects, advertise its services, bids on queries. • Goal is to optimize revenue! 7 8 Economics in Mariposa Outline • Why a microeconomic structure? 1. Assumptions for DDBMS – Supports a large number of sites. 2. Motivation for Mariposa – Sites can easily join and leave by buying or 3. Economics in Mariposa selling objects. 4. Mariposa architecture 4. Mariposa architecture – Data mobility: objects have no “home” just D t bilit bj t h “h ” j t current owner which can change. • Object replication based on payment for frequency of updates among copy holders. – Name servers use the same policy for metadata. • Makes sense: sites want to maximize their profit per unit of operating. Competitive query execution. 9 10 Mariposa architecture A few more details… Middleware • Rush SQL Parser Client Application SQL Query Name server – Low level, efficient scripting rule language. Query Budget Parse tree (bid curve) – Included in Mariposa, done for performance reasons. Single site optimizer Local Execution Component – Storage manager, bidder, broker coded in Rush, but Plan tree a t ee Request Request can be done in any language. b d i l Bid Query Fragmenter • Strides Bidder Fragmented – Fragmenter groups operations in strides which can be plan Bid done in parallel. Query Broker Accept – Sub-queries in a stride must complete before any Executor sub-queries in next stride. Answer Coordinator Storage Manager – Used as synchronization. Answer *Figure by Shahed Alam 11 12 2

  3. Outline Bidding process • Each query has a budget B(t). 1. Assumptions for DDBMS – This is a budget which can decrease over 2. Motivation for Mariposa time. 3. Economics in Mariposa • Each query fragmented into sub-queries. q y g q 4. Mariposa architecture 4. Mariposa architecture – Can be split into parallel strides. 5. Bidding process • Broker solves sub-queries using: – Expensive Bid Protocol. – Purchase Order Protocol. 13 14 Expensive Bid protocol Purchase order protocol • Two phases: • Send subquery to bidder which most likely • 1. Request for bids: would win bid. – Send portion of query plan being bid. – Done by keeping track of query-history. – Bidder sends back a triplet (C i ,D i ,E i ): • Site processes request and sends a “bill ” Site processes request and sends a bill. • C i = Cost C i Cost • D i = Delay (time to process query) • Can refuse bid and return to broker or • E i = Expiration date of offer pass it on. • 2. Notify the winning bidder (may notify losers). • This process used only for complex queries as it is expensive (overhead: many expensive messages) . • Cons: Probable budget deficit! – Since do not know bill which site will charge. • Use Purchase order protocol for most queries. 15 16 Bid Acceptance Finding bidders • Collection of bids for sub-queries are • Finding bidders prefer in each stride. – Servers post “advertisements” with name servers. – Name servers store “ad-tables.” • Bids are not guaranteed to be accepted. • Bids are not guaranteed to be accepted • Advertisements in form of “yellow pages.” – Brokers must do it themselves, or inform users. • Several more specific ads available. • Only simple query can perform exhaustive search of bids. – Brokers examine ad-tables to locate bidders. – Non-optimal heuristic bottom-up greedy – Brokers remember sites that bid successfully. algorithm implemented for determining winner bids. 17 18 3

  4. Setting the bid price Outline • Remember, bidder sends reply in form (C i ,D i ,E i ) 1. Assumptions for DDBMS to broker. 2. Motivation for Mariposa • Cost: 3. Economics in Mariposa – CPU, I/O (naive), Network resource. – Optimization : Billing rate per fragment, adjust cost based on current 4. Mariposa architecture 4. Mariposa architecture load bid on hot list items even if server does not have data load bid on hot-list items even if server does not have data. • Delay: 5. Bidding process – Time to process under zero load or current load + safety factor. 6. Storage and Name resolution • Expiration: – Set arbitrarily. • Enforces load balancing. 19 20 Storage Management Naming and Name service • Manages fragments to maximize profits in local • Unlike traditional centralized name execution component. servers, Mariposa has a decentralized • Buying and selling fragments. name registration system. – Put items on hot-list for purchase. • Names are unordered sets of attributes. – Sells fragments to evict for new fragments. • Splitting or coalescing fragments. S li i l i f • Each object has four structures for naming: – Break fragments that have high revenues, to lower – Internal names copies (to redirect traffic to oneself). – Full names • Works in harmony with Bidder : – Common names – Bidder bids on fragments the Storage Manager – Name contexts wants. • share certain features – declines to bid on fragments Storage Manager has not interest in, or wants to sell. 21 22 Name resolution and discovery Outline • Every client-server has local name cache 1. Motivation to resolve object names. 2. Assumptions for DDBMS • Broker queries name-server if a match is 3. Economics in Mariposa not found. not found. 4. Mariposa architecture 4. Mariposa architecture • There exists multiple name-servers. 5. Bidding process – Uses advertisements to find clients. 6. Storage and Name resolution 7. Experiment and Conclusion • Broker choose name-server based on quality-of-service ( staleness of metadata ). 23 24 4

  5. Experimental Evaluation Conclusion • Test Purchase order vs. Expensive Bid • Scheduling actions in distributed systems Protocol in LAN vs. WAN environments. is difficult: – Only involves Broker: – Large number of sites and choices per action. • Purchase Order: 4.52s – Expensive global syncs. • Expensive Bid: p 14.08s – Supporting heterogeneous systems/capabilities. pp g g y p • Test Expensive Bid to show how data is – Timing varying load-levels. – Site entering/leaving the system. moved to closer sites for repeated-queries. – Result: all 3 tables move to site that starts the query. • Microeconomic model well suited to these problem! • Conclusion : Expensive Bid Protocol only used when Purchase Order can’t be. – Bidding allows us to adapt to environment. – Bidding is not too expensive! 25 26 Epilogue • Where is Mariposa now? – Mariposa -> Cohera -> PeopleSoft -> Oracle 27 5

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