1 / 14

Distributed Optimistic Algorithm

Distributed Optimistic Algorithm. Assumptions Synchronized clocks MTD (max, trans, delay) can be defined Step 1: same as before Step 2: same as before Step 3: transaction is broadcasted to all nodes at time  (V i ) (time when computation finishes and T i is ready for validation)

orea
Télécharger la présentation

Distributed Optimistic Algorithm

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 Optimistic Algorithm • Assumptions • Synchronized clocks • MTD (max, trans, delay) can be defined • Step 1: same as before • Step 2: same as before • Step 3: transaction is broadcasted to all nodes at time (Vi) (time when computation finishes and Ti is ready for validation) • Step 4: At time (Vi) + MTD, all nodes start validation of Ti. (Note (Vi) is attached to Ti) and if Ti reaches before (Vi) + MTD, it must wait Optimistic-CC

  2. Step 5: If validation succeeds, all nodes write S(wi) ELSE all nodes except “X” ignore Ti At node X, Ti is restarted and repeated until Ti validates THEOREM: The dist. opt. algorithm produces only correct histories at each node and all histories are identical PROOF: ONLY correct histories are produced. Because of Theorem 1 ELSE UPDATE S(Ri) and repeat from step 2 Optimistic-CC

  3. CASE 2: Validation takes place at local node and then at central node • Same • Same • Ti validates at X • If successful, Ti commits at X and is sent to C ELSE UPDATE S(Ri) and repeat from step 2 • If successful at C, send write set to all nodes ELSE UPDATE S(Ri) at C and execute at C and repeat validation until successful. Optimistic-CC

  4. Centralized Optimistic Algorithm: A node(C) is chosen as central node CASE 1: Validation takes place only at central node When Ti arrives at a node “X” • Read S(Ri) • Execute (compute) and get S(wi) Note S(wi) is semantic write set (actual) Locking may require syntactic (potential) write set S'(wi) S(wi) leq S'(wi) • Ti goes to node C (if X  C) • If Ti succeeds, send write set to all nodes Optimistic-CC

  5. Centralized Optimistic CASE 1: Validation takes place only at central node only CASE 2: Validation takes place at local node and then central node Distributed Optimistic Validation takes place at all nodes after a delay of MTD (Max. transmission Delay) Optimistic-CC

  6. When to synchronize (assert concurrency control) • First access to an entity (locking, pessimistic validation) • At each access (granularity level) • After all accesses and before commitment (optimistic validation) Optimistic-CC

  7. Information needed for synchronization • Locks on database entities (system R, INGRES, Rosenkrantz,…) • Time stamps on database entities (Thomas, Reed,…) • Time stamps on transactions (Kung, SDD-1, Schlageter,…) OBSERVATIONS - Time stamps more fundamental than locking - Time stamps carry more information - Time stamp checking costs more than checking locks Optimistic-CC

  8. History • Serial T1 T2 or T2 T1 •  • f12(f11(f21(x)))  • f21(f12(f11(x))) f: Herbrand fn. non serializable T11, T21, T12 f12(f21(f11(x))) So given interpretation of fij’s allows us to include histories which are not allowed by SERIALIZABILITY and hence allows us higher concurrency Optimistic-CC

  9. From TM' No Obtain S(Ri) Local Validation Successful? I/O Q (Lo) I/O CPUQ Read S(Ri) Execute Obtain S(Wi) and Validate CPU Trans- action (Ti) arrives Yes Send transaction to other sites I/O Q (Hi) Transaction (Ti) Finishes Write S(Wi) Local Validation Successful? No Yes Figure 2 Optimistic-CC

  10. Obtain locks from lock table for S(Ri) and S(Wi) C.P.U. No Obtain S(Ri) S(Wi) CPUQ (low) Arrive Locks granted Yes CPUQ (med) Execute CPUQ (Hi) Release locks Done IOQ (Hi) Write S(Wi) I/O IOQ (Hi) Read S(Ri) Locking Mechanism (Pessimistic) Optimistic-CC

  11. Steps of a Transaction (Ti) Non-Locking Algorithm • The transaction (Ti) arrives in the system • The read S'(Ri) and write S'(Wi) set of the transaction is obtained. These sets are syntactic • The transaction goes to an I/O queue to obtain item values for read set S‘(Ri) • The transaction goes to CPU queue and completes execution to obtain write set values. Also actual read set S(Ri) and write set S(wi) are determined. These sets represent semantic information • The transaction’s read sets are validated against other active transactions according consistency constraints (such as serializability) Optimistic-CC

  12. Steps of a Transaction (Ti) … (continued) • If validation fails due to conflict among transaction Ti and some other transaction Tj, then one of the transaction is required to repeat its execution. For example, if consistency constraint is “strongly serializable”, then the transaction that arrived later (let us say Ti) is selected for re-execution. Moreover the conflict among Ti and Tj is resolved and the values of S'(Ri) are updated with values from S(Wj) at the time of validation. This is useful because Ti does not have to go and do its I/O once again. • The transaction is sent to CPU queue to do its computation. • The transaction Ti’s write set is validated against write set of some transaction Tj (that has not completed but arrived before Ti). If conflict occurs, then Ti is delayed and writes after Tj writes in the database. • The transaction goes to an I/O queue and update its write set S(Wi). • The transaction Ti waits in memory for validation against transactions that arrived in the interval between its arrival time and validation time. Optimistic-CC

  13. Performance Techniques • Complexity • Analytical • Simulation • Empirical Optimistic-CC

  14. From Users To users CPO server I/O server To network From Network Performance model at each node Parameters • Arrival rate • Base set (size of write • set/read • Size of database • Number of sets • Transmission delay • CPU time • I/O time • Retry delay • Read only trans/write & read • trans ratio • Multiprogramming level • Degree of conflict Optimistic-CC

More Related