Scattering theory: Difference between revisions

From formulasearchengine
Jump to navigation Jump to search
en>Vswitchs
extended Elastic vs. inelastic section
Line 1: Line 1:
The algorithm of '''Lamport timestamps''' is a simple algorithm used to determine the order of events in a [[distributed computer system]]. As different nodes or processes will typically not be perfectly synchronized, this algorithm is used to provide a [[Partially ordered set|partial ordering]] of events with minimal overhead, and conceptually provide a starting point for the more advanced [[vector clock]] method. They are named after their creator, [[Leslie Lamport]].
I am Oscar and I totally dig that name. One of the issues she enjoys most is to do aerobics and now she is trying to earn money with it. I utilized to be unemployed but now I am a librarian and the wage has been really satisfying. North Dakota is exactly where me and my husband reside.<br><br>My homepage :: [http://www.badfoxy.com/blog/view/45061/how-you-can-cure-an-unpleasant-candida-albicans http://www.badfoxy.com/]
 
Distributed algorithms such as resource synchronization often depend on some method of ordering events to function. For example, consider a system with two processes and a disk. The processes send messages to each other, and also send messages to the disk requesting access. The disk grants access in the order the messages were sent. Now, imagine process 1 sends a message to the disk asking for access to write, and then sends a message to process 2 asking it to read. Process 2 receives the message, and as a result sends its own message to the disk. Now, due to some timing delay, the disk receives both messages at the same time: how does it determine which message [[happened-before]] the other? (<math>A</math> happens-before <math>B</math> if one can get from <math>A</math> to <math>B</math> by a sequence of moves of two types: moving forward while remaining in the same process, and following a message from its sending to its reception.) A logical clock algorithm provides a mechanism to determine facts about the order of such events.
 
Lamport invented a simple mechanism by which the [[happened-before]] ordering can be captured numerically. A Lamport logical clock is an incrementing software counter maintained in each process.
 
It follows some simple rules:
 
# A process increments its counter before each event in that process;
# When a process sends a message, it includes its counter value with the message;
# On receiving a message, the receiver process sets its counter to be greater than the maximum of its own value and the received value before it considers the message received.
 
Conceptually, this logical clock can be thought of as a clock that only has meaning in relation to messages moving between processes. When a process receives a message, it resynchronizes its logical clock with that sender.
 
==Considerations==
For every two different events <math>a</math> and <math>b</math> occurring in the same process, and <math>C(x)</math> being the timestamp for a certain event <math>x</math>, it is necessary that <math>C(a)</math> never equals <math>C(b)</math>.
 
Therefore it is necessary that:
 
# The logical clock be set so that there is minimum of one clock "tick" (increment of the counter) between events <math>a</math> and <math>b</math>;
# In a multiprocess or multithreaded environment, it might be necessary to attach the process ID (PID) or any other unique ID to the timestamp so that it is possible to differentiate between events <math>a</math> and <math>b</math> which may occur simultaneously in different processes.
 
== Implications ==
A Lamport clock may be used to create a [[Partial order|partial]] causal ordering of events between processes. Given a logical clock following these rules, the following relation is true: if <math>a \rightarrow b</math> then <math>C(a) < C(b)</math>, where <math>\rightarrow\,</math> means [[happened-before]].
 
This relation only goes one way, and is called ''clock consistency condition'': if one event comes before another, then that event's logical clock comes before the other's. The ''strong clock consistency condition'', which is two way (if <math>C(a) < C(b)</math> then <math>a \rightarrow b</math>), can be obtained by other techniques such as [[vector clock]]s. Using only a simple Lamport clock, only a partial causal ordering can be inferred from the clock.
 
However, via the contrapositive, it's true that <math>C(a) \nless C(b)</math> implies <math>a \nrightarrow b</math>. So, for example, if <math>C(a) \geq C(b)</math> then <math>a</math> cannot have happened-before <math>b</math>.
 
Another way of putting this is that <math>C(a) < C(b)</math> means that <math>a</math> may have happened-before <math>b</math>, or be incomparable with <math>b</math> in the happened-before ordering, but <math>a</math> did not happen after <math>b</math>.
 
Nevertheless, Lamport timestamps can be used to create a [[total ordering]] of events in a distributed system by using some arbitrary mechanism to break ties (e.g. the ID of the process). The caveat is that this ordering is artifactual and cannot be depended on to imply a causal relationship.
 
==Lamport's logical clock in distributed systems==
* In a distributed system, it is not possible in practice to [[Clock synchronization|synchronize time]] across entities (typically thought of as processes) within the system; hence, the entities can use the concept of a logical clock based on the events through which they communicate.
* If two entities do not exchange any messages, then they probably do not need to share a common clock; events occurring on those entities are termed as concurrent events.
* Among the processes on the same local machine we can order the events based on the local clock of the system.
* When two entities communicate by message passing, then the send event is said to 'happen before' the receive event, and the logical order can be established among the events.
* A distributed system is said to have partial order if we can have a partial order relationship among the events in the system. If 'totality', i.e., causal relationship among all events in the system can be established, then the system is said to have total order.
* A single entity cannot have two events occur simultaneously. If the system has total order we can determine the order among all events in the system. If the system has partial order between processes, which is the type of order Lamport's logical clock provides, then we can only tell the ordering between entities that interact. Lamport addressed ordering two events with the same timestamp (or counter): "To break ties, we use any arbitrary total ordering < of the processes."<ref>{{cite doi|10.1145/359545.359563}}</ref> Thus two timestamps or counters may be the same within a distributed system, but in applying the logical clocks algorithm events that occur will always maintain at least a strict partial ordering..
 
==See also==
*[[Happened-before]]
*[[Vector clocks]]
 
==References==
<references />
 
<!--Interwikies-->
 
<!--Categories-->
[[Category:Distributed algorithms]]

Revision as of 08:07, 11 February 2014

I am Oscar and I totally dig that name. One of the issues she enjoys most is to do aerobics and now she is trying to earn money with it. I utilized to be unemployed but now I am a librarian and the wage has been really satisfying. North Dakota is exactly where me and my husband reside.

My homepage :: http://www.badfoxy.com/