I am looking for quantitative estimates on clock offsets between VMs on Windows Azure - assuming that all VMs are hosted in the same datacenter. I am guesstimating that average clock offset between one VM and another is below 10 seconds, but I am not even sure it's guaranteed property of the Azure cloud.

Has anybody some quantitative measurements on that matter?

link|improve this question

3  
+1 - Good question. I'd "expect" the answer to be much closer than 10 seconds - within a data center NTP should be able to provide <0.01 second, but I haven't seen any numbers quoted anywhere. – Stuart May 26 '11 at 16:05
Windows Azure is useless for any serious application because of this (and not only Azure... all "real cloud hosting" platforms I've tried have this issue). What I seriously do not understand is how this came to be and when "we'll provide you with hosting platform on which you have >10sec time drift between servers" became valid option. I mean, it would be as if I developed website in which you can login only during odd seconds and said - it's not a bug, it's meant to work that way for security purposes. – kape123 Dec 14 '11 at 18:24
feedback

3 Answers

up vote 4 down vote accepted

I have finally settled to do some experiments on my own.

A few facts concerning the experiment protocol:

  • Instead of looking for offset to an reference clock, I have simply checked clock differences between Azure VMs and the Azure Storage.
  • Clock time of the Azure Storage has been retrieved using the HTTP hack pasted below.
  • Measurements have been done within the North Europe datacenter of Azure with 250 small VMs.
  • Latency between storage and VMs measured with Stopwatch was always lower than 1ms for minimalistic unauthenticated requests (basically HTTP requests were coming back with 400 errors, but still with Date: available in the HTTP headers).

Results:

  • About 50% of the VMs have a clock offset to the storage greater than 1s.
  • About 5% of the VMs have a clock offset to the storage greater than 2s.
  • Less than 1% observations for clock offsets close 3s.
  • A handfew outliers close to 4s.
  • The clock offset between a single VM and the storage typically vary of +1/-1s from one request to the next.

So technically, we are not too far from the 2s tolerance target, although for intra-data-center sync, you don't have to push the experiment far to observe close to 4s offset. If we assume a normal (aka Gaussian) distribution for the clock offsets, then I would say that relying on any clock threshold lower than 6s is bound to lead to scheduling issues.

/// <summary>
/// Substitute for proper NTP (Network Time Protocol) 
/// when UDP is not available, as on Windows Azure.
/// </summary>
public class HttpTimeChecker
{
    public static DateTime GetUtcNetworkTime(string server)
    {
        // HACK: we can't use WebClient here, because we get a faulty HTTP response
        // We don't care about HTTP error, the only thing that matter is the presence
        // of the 'Date:' HTTP header
        var tc = new TcpClient();
        tc.Connect(server, 80);

        string response;
        using (var ns = tc.GetStream())
        {
            var sw = new StreamWriter(ns);
            var sr = new StreamReader(ns);

            string req = "";
            req += "GET / HTTP/1.0\n";
            req += "Host: " + server + "\n";
            req += "\n";

            sw.Write(req);
            sw.Flush();

            response = sr.ReadToEnd();
        }

        foreach(var line in response.Split(new[] { '\r', '\n' }, StringSplitOptions.RemoveEmptyEntries))
        {
            if(line.StartsWith("Date: "))
            {
                return DateTime.Parse(line.Substring(6)).ToUniversalTime();
            }
        }

        throw new ArgumentException("No date to be retrieved among HTTP headers.", "server");
    }
}
link|improve this answer
feedback

Based on my experience, I would not rely on the system clock of the Azure VMs for anything critical. I have occasionally seen differences up to several minutes, which does fly in the face of what you'd expect.

link|improve this answer
Interesting :-) That's precisely this sort of situations that I would like to understand better. – Joannes Vermorel May 30 '11 at 13:30
Unfortunately, this is also what I am experiencing. I have an open API where i rely on the DateTime.UtcNow, and on the 3 instances i use (extra small), there is a difference varying up till 10 seconds. This is unacceptable, considering all my dev servers are in sync, why cant Microsoft have their instances in sync? – Michael Mortensen Nov 5 '11 at 1:29
A follow up to my last comment; it would appear, that after a warm up period of aprox. 1 hour, the instances starts to sync up. As of now, there are +1/-1 as Joannes also point out. Still odd, that it has to take this long. – Michael Mortensen Nov 5 '11 at 1:33
feedback

I've tried to search for an answer to this specific question - but haven't succeeded!

Some references I have found about the "Windows Time Service" - W32Time - reference that the design for the Windows service targets a tolerance of 2 seconds - e.g.

In practice within the Azure network I expect that the synchronisation achieved should be much better than this - but my search turned up no referenced guarantees on this.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.