1 / 42

Distributed Systems CS 15-440

This lecture discusses the importance of maintaining consistency in replicated data in distributed systems, explores different data-centric and client-centric consistency models, and covers topics such as replica management and consistency protocols.

allenc
Télécharger la présentation

Distributed Systems CS 15-440

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Distributed SystemsCS 15-440 Consistency and Replication – Part II Lecture 19, Nov 3, 2014 Mohammad Hammoud

  2. Today… • Last Session: • GraphLab • Consistency and Replication: A Very Brief Introduction • Today’s Session: • Consistency and Replication • Data-Centric Consistency Models • Announcements: • P2 grades will be out by tonight • Quiz II is on Monday Nov 17 (during the class time)- all topics covered after the midterm are included • P3 is due on Wednesday Nov 12 by midnight • PS4 is due on Saturday Nov 15 by midnight • During the next recitation (on Thursday Nov 6) we will practice on MapReduce

  3. Why Consistency? • In a DS with replicated data, one of the main problems is keeping the data consistent • An example: • In an e-commerce application, the bank database has been replicated across two servers • Maintaining consistency of replicated data is a challenge Event 2 = Add interest of 5% Event 1 = Add $1000 2 1 4 Bal=2000 Bal=2100 Bal=1000 3 Bal=1000 Bal=1050 Bal=2050 Replicated Database

  4. Overview of Consistency and Replication Today’s lecture • Consistency Models • Data-Centric Consistency Models • Client-Centric Consistency Models • Replica Management • When, where and by whom replicas should be placed? • Which consistency model to use for keeping replicas consistent? • Consistency Protocols • We study various implementations of consistency models Next lectures

  5. Overview • Consistency Models • Data-Centric Consistency Models • Client-Centric Consistency Models • Replica Management • Consistency Protocols

  6. Introduction to Consistency and Replication • In a distributed system, shared data is typically stored in distributed shared memory, distributed databases or distributed file systems • The storage can be distributed across multiple computers • Simply, we refer to a series of such data storage units as data-stores • Multiple processes can access shared data by accessing any replica on the data-store • Processes generally perform read and write operations on the replicas Process 1 Process 2 Process 3 Local Copy Distributed data-store

  7. Maintaining Consistency of Replicated Data DATA-STORE Replica 1 Replica 2 Replica 3 Replica n x=0 x=2 x=5 x=2 x=5 x=0 x=5 x=0 x=2 x=0 x=5 x=2 Process 1 R(x)0 W(x)2 R(x)5 R(x)? Process 2 R(x)2 R(x)? R(x)0 Process 3 W(x)5 • Strict Consistency • Data is always fresh • After a write operation, the update is propagated to all the replicas • A read operation will result in reading the most recent write • If there are occasional writes and reads, this leads to large overheads =Read variable x; Result is b = Write variable x; Result is b P1 =Process P1 =Timeline at P1 R(x)b W(x)b

  8. Maintaining Consistency of Replicated Data (Cont’d) DATA-STORE Replica 1 Replica 2 Replica 3 Replica n x=0 x=2 x=0 x=0 x=2 x=5 x=0 x=2 x=0 x=3 x=2 Process 1 R(x)0 W(x)2 R(x)5 R(x)? Process 2 R(x)? R(x)3 R(x)5 Process 3 W(x)5 • Loose Consistency • Data might be stale • A read operation may result in reading a value that was written long back • Replicas are generally out-of-sync • The replicas may sync at coarse grained time, thus reducing the overhead =Read variable x; Result is b = Write variable x; Result is b P1 =Process P1 =Timeline at P1 R(x)b W(x)b

  9. Trade-offs in Maintaining Consistency • Maintaining consistency should balance between the strictness of consistency versus efficiency • Good-enough consistency depends on your application • Loose Consistency • Strict Consistency • Easier to implement, and is efficient • Generally hard to implement, and is inefficient

  10. Consistency Model • A consistency model is a contract between • the process that wants to use the data, and • the replicated data repository (or data-store) • A consistency model states the level of consistency provided by the data-store to the processes while reading and writing the data

  11. Types of Consistency Models • Consistency models can be divided into two types: • Data-Centric Consistency Models • These models define how the data updates are propagated across the replicas to keep them consistent • Client-Centric Consistency Models • These models assume that clients connect to different replicas at different times • The models ensure that whenever a client connects to a replica, the replica is brought up-to-date with the replica that the client accessed previously

  12. Overview • Consistency Models • Data-Centric Consistency Models • Client-Centric Consistency Models • Replica Management • Consistency Protocols

  13. Data-centric Consistency Models • Data-centric Consistency Models describe how the replicated data is kept consistent, and what the processes can expect • Under Data-centric Consistency Models, we study two types of models: • Consistency Specification Models: • These models enable specifying the consistency levels that can be tolerated by the application • Models for Consistent Ordering of Operations: • These models specify the order in which the data updates are propagated to different replicas

  14. Overview • Consistency Models • Data-Centric Consistency Models • Consistency Specification Models • Models for Consistent Ordering of Operations • Client-Centric Consistency Models • Replica Management • Consistency Protocols

  15. Consistency Specification Models • In replicated data-stores, there should be a mechanism to: • Measure how inconsistent the data might be on different replicas • How replicas and applications can specify the tolerable inconsistency levels • Consistency Specification Models enable measuring and specifying the level of inconsistency in a replicated data-store • We study a Consistency Specification Model called Continuous Consistency Model

  16. Continuous Consistency Model • Continuous Consistency Model is used to measure inconsistencies and express what inconsistencies can be expected in the system • Yu and Vahdat [1] provided a framework for measuring and expressing consistency in replicated data-stores

  17. Continuous Consistency Ranges • Level of consistency is defined over three independent axes: • Numerical Deviation: Deviation in the numerical values between replicas • Order Deviation: Deviation with respect to the ordering of update operations • Staleness Deviation: Deviation in the staleness between replicas Numerical Deviation Example: Two copies a stock price should not deviate by more than $0.02 Example: In a bulletin board application, a maximum of six messages can be issued out-of-order Ordering Deviation Example: Weather data should not be more than four hours stale Staleness Deviation

  18. Consistency Unit (Conit) • Consistency unit (Conit) specifies the data unit over which consistency is measured • For example, conit can be defined as a record representing a single stock • Level of consistency is measured by each replica along the three dimensions • Numerical Deviation • For a given replica R, how many updates at other replicas are not yet seen at R? What is the effect of the non-propagated updates on local Conit values? • Order Deviation • For a given replica R, how many local updates are not propagated to other replicas? • Staleness Deviation • For a given replica R, how long has it been since updates were propagated?

  19. Example of Conit and Consistency Measures Order Deviation at a replica R is the number of operations in R that are not present at the other replicas Replica A Numerical Deviation at replica R is defined as n(w), where n = # of operations at other replicas that are not yet seen by R, w = weight of the deviation = max(update amount of all variables in a Conit) x; y Result Operation <16,B> <14,A> <23,A> <5,B> <5,B> <10,A> x+=2 y+=3 y+=1 y+=1 x+=2 x+=1 y=1 x=2 x=3 y=4 y=1 x=2 Replica B 0 0 (0,0) 0 0(0) 0 0 (0,0) 0 0(0) 2 3 0 2 2 3 0 1 1 1 4 0 2 1 0 0 1 3 1(1) 1(1) 1(1) 0(0) 0(0) 1(2) 2 2 2 2 2 2 1 0 1 1 0 0 (0,5) (0,16) (0,16) (0,16) (0,5) (0,5) 1 1 1 1 0 0 0(0) 1(1) 2(2) 3(5) 0(0) 1(1) (10,5) (23,5) (0,0) (10,5) (1,5) (14,5) x; y Result Operation Operation performed at B when the vector clock was 5 = Uncommitted operation = A Conit = Committed operation <5,B> = <m,n> <m,n> x;y

  20. Overview • Consistency Models • Data-Centric Consistency Models • Continuous Specification Models • Models for Consistent Ordering of Operations • Client-Centric Consistency Models • Replica Management • Consistency Protocols

  21. Why is Consistent Ordering Required in Replication? • In several applications, the order or the sequence in which the replicas commit to the data-store is critical • Example: • Continuous Specification Models define how inconsistency is measured • However, the models do not provide any indication about the order in which the data are committed Event 2 = Add interest of 5% Event 1 = Add $1000 2 1 3 4 Bal=2000 Bal=2100 Bal=1000 Bal=1000 Bal=1050 Bal=2050 Replicated Databases

  22. Consistent Ordering of Operations • Besides continuous consistency, we need to express the semantics of parallel accesses when shared resources are replicated • Before updates at replicas are committed, all replicas shall reach an agreementon a global ordering of the updates • Replicas in shared data-stores should agree on a consistent ordering of updates • What consistent ordering of updates can replicas agree on?

  23. Types of Ordering • We will study three types of orderings, which can be utilized by consistency models to agree upon and meet the needs of different applications: • Total Ordering • Sequential Ordering • Sequential Consistency Model • Causal Ordering • Causal Consistency Model

  24. Types of Ordering • Total Ordering • Sequential Ordering • Causal Ordering

  25. Total Ordering P1 P2 P3 • Total Order • If process Pi sends a message mi and Pj sends mj, and if one correct process delivers mi before mj then every correct process delivers mi before mj • Messages can refer to replica updates • In the example Ex1, if P1 issues the operation m(1,1): x=x+1;and • If P3issues m(3,1): print(x);and • P1 or P2 or P3 delivers m(3,1) before m(1,1) • Then, at all replicas P1,P2, P3the following order of operations are executed print(x); x=x+1; m(1,1) m(3,1) Ex1: Total Order P1 P2 P3 m(1,1) m(3,1) Ex2: Not in Total Order

  26. Types of Ordering • Total Ordering • Sequential Ordering • Causal Ordering

  27. Sequential Ordering • If a process Pi sends a sequence of messages m(i,1),....,m(i,ni), and • Process Pj sends a sequence of messagesm(j,1),....,m(j,nj), • Then: • At any process, the set of messages received are in some sequential order • Messages from each individual process appear in this sequence in the order sent by the sender • At every process, mi,1 should be delivered before mi,2 , which is delivered before mi,3 and so on... • At every process, mj,1 should be delivered before mj,2 , which is delivered before mj,3 and so on... P1 P2 P3 m(1,1) m(3,1) m(3,2) m(1,2) m(3,3) Valid Sequential Orders P1 P2 P3 m(1,1) m(3,1) m(3,2) m(1,2) m(3,3) Invalid Sequential Orders, but Valid Total Order

  28. Sequential Consistency Model • The Sequential Consistency Model entails that all update operations are executed at replicas in a sequential order • Consider a data-store with variable x(Initialized to NULL) • In the two data-stores below, identify the sequentially consistent data-store P1 P1 W(x)a W(x)a P2 W(x)b P2 W(x)b R(x)a R(x)a P3 R(x)b P3 R(x)b R(x)a R(x)b R(x)b R(x)a P4 P4 (a) Results while operating on DATA-STORE-1 (b) Results while operating on DATA-STORE-2 =Read variable x; Result is b = Write variable x; Result is b P1 =Process P1 =Timeline at P1 R(x)b W(x)b

  29. Sequential Consistency (Cont’d) • Consider three processes P1,P2and P3 executing multiple instructions on three shared variables x, y and z • Assume that x, y and z are set to zero at start • There are many valid sequences in which operations can be executed at the replica respecting sequential consistency • Identify the output P1 P2 P3 x = 1 print (y,z) y = 1 print (x,z) z = 1 print (x,y) x = 1 print (y,z) y = 1 print (x,z) z = 1 print (x,y) x = 1 y = 1 print (x,z) print (y,z) z = 1 print (x,y) z = 1 print (x,y) print (x,z) y = 1 x = 1 print (y,z) y = 1 z = 1 print (x,y) print (x,z) x = 1 print (y,z) 101011 010111 Output 000111 001011

  30. Implications of Adopting A Sequential Consistency Model for Applications • There might be several different sequentially consistent combinations of ordering • Number of combinations for a total of n instructions = • The contract between the process and the distributed data-store is that the process must accept all of the sequential orderings as valid results • A process that works for some of the sequential orderings and does not work correctly for others is INCORRECT

  31. Types of Ordering • Total Ordering • Sequential Ordering • Causal Ordering

  32. Causality (Recap) • Causal relation between two events • If a and b are two events such that a happened-before b (i.e., ab), and • If the (logical) times when events a and b occur at a process Pi are denoted as Ci(a) and Ci(b) • Then, if we can infer that abby observing that Ci(a)< Ci(b), then a and b are causally related • Causality can be implemented using Vector Clocks

  33. Causal vs. Concurrent events • Consider an interaction between processes P1 and P2operating on replicated data x and y W(x)a W(x)a P1 P1 R(x)a W(y)b W(y)b R(x)a P2 P2 • Events are not causally related • Events are concurrent • Computation of y at P2 does not depend on the value of xwritten by P1 • Events are causally related • Events are not concurrent • Computation of y at P2may have depended on value of x written by P1 =Read variable x; Result is b = Write variable x; Result is b P1 =Process P1 =Timeline at P1 R(x)b W(x)b

  34. Causal Ordering P1 P2 P3 • Causal Order • If process Pi sends a message mi and Pj sends mj, and if mimj(operator ‘’ is Lamport’s happened-before relation) then any correct process that delivers mj will deliver mi before mj • In Ex1: • m(1,1) and m(3,1) are in Causal Order • and m(1,1) and m(1,2)are in Causal Order m(1,1) m(3,1) m(1,2) Ex1: Valid Causal Orders P1 P2 P3 m(1,1) m(3,1) m(1,2) Invalid Causal Order

  35. Causal Consistency Model • A data-store is causally consistent if: • Writes that are potentially causally related must be seen by all the processes in the same order • Concurrent writes may be seen in a different order on different machines

  36. Example of a Causally Consistent Data-store Causal writes Concurrent writes P1 W(x)c W(x)a W(x)b P2 R(x)a R(x)a P3 R(x)a R(x)c R(x)b R(x)a R(x)b R(x)b R(x)c P4 A Causally Consistent Data-Store But not a Sequentially Consistent Data-Store =Read variable x; Result is b = Write variable x; Result is b P1 36 =Process P1 =Timeline at P1 R(x)b W(x)b

  37. Implications of adopting a Causally Consistent Data-store for Applications • Processes have to keep track of which processes have seen which writes • This requires maintaining a dependency graph between write and read operations • Vector clocks provides a way to maintain causally consistent data-base

  38. Topics Covered in Data-centric Consistency Models But, is Data-Centric Consistency Model good for all applications?

  39. Applications that Can Use Data-centric Models • Data-centric models are applicable when many processes are concurrently updating the data-store • But, do all applications need all replicas to be consistent? Webpage-A Webpage-A Webpage-A Webpage-A Webpage-A Webpage-A Event: Update Webpage-A Webpage-A Webpage-A Webpage-A Webpage-A Webpage-A Webpage-A • Data-Centric Consistency Model is too strict when • One client process updates the data • Other processes read the data, and are OK with reasonably stale data

  40. Summary of Data-Centric Consistency Models Data-centric consistency models describe how the replicated data is kept consistent across different data-stores, and what aprocess can expect from the data-store • These models allow measuring and specifying the consistency levels that are tolerable to the application • These models specify what ordering of operations are ensured at the replicas • Data-centric models are too strict when: • Most operations are read operations • Updates are generally triggered from one client process

  41. Next Classes • Consistency Models • Client-Centric Consistency Models • Replica Management • Replica management studies: • when, where and by whom replicas should be placed • which consistency model to use for keeping replicas consistent • Consistency Protocols • We study various implementations of consistency models

  42. References • [1] Haifeng Yu and Amin Vahdat, “Design and evaluation of a conit-based continuous consistency model for replicated services” • [2] http://tech.amikelive.com/node-285/using-content-delivery-networks-cdn-to-speed-up-content-load-on-the-web/ • [3] http://en.wikipedia.org/wiki/Replication_(computer_science) • [4] http://en.wikipedia.org/wiki/Content_delivery_network • [5] http://www.cdk5.net • [6] http://www.dis.uniroma1.it/~baldoni/ordered%2520communication%25202008.ppt • [7] http://www.cs.uiuc.edu/class/fa09/cs425/L5tmp.ppt

More Related