In trying to build a very latency sensitive application, that needs to send 100s of messages a seconds, each message having the time field, we wanted to consider optimizing gettimeofday. Out first thought was rdtsc based optimization. Any thoughts ? Any other pointers ? Required accurancy of the time value returned is in milliseconds, but it isn't a big deal if the value is occasionally out of sync with the receiver for 1-2 milliseconds. Trying to do better than the 62 nanoseconds gettimeofday takes

link|improve this question

77% accept rate
To what granularity does the time need to be accurate too? – David Waters Jun 27 '11 at 21:10
1  
Keep in mind the timestamp counter may not be synchronized across CPUs, depending on CPU model. Also, modern Linux will implement gettimeofday in userspace with rdtsc where possible – bdonlan Jun 27 '11 at 21:14
Are you sure gettimeofday() is a problem? Which OS are you using? On Linux, IIRC, it was moved to userspace (to the vsyscall page, or the vDSO, don't remember which) to allow it to scale to lots of CPUs (was done by SGI's Christoph Lameter, IIRC). – ninjalj Jun 27 '11 at 21:18
vsyscall had a gettimeofday, but vsyscall has been obsoleted, and its gettimeofday is now just a stub that calls into the kernel. – bdonlan Jun 27 '11 at 21:20
@David milliseconds – Humble Debugger Jun 29 '11 at 12:33
show 2 more comments
feedback

3 Answers

up vote 11 down vote accepted

Have you actually benchmarked, and found gettimeofday to be unacceptably slow?

At the rate of 100 messages a second, you have 10ms of CPU time per message. If you have multiple cores, assuming it can be fully parallelized, you can easily increase that by 4-6x - that's 40-60ms per message! The cost of gettimeofday is unlikely to be anywhere near 10ms - I'd suspect it to be more like 1-10 microseconds (on my system, microbenchmarking it gives about 1 microsecond per call - try it for yourself). Your optimization efforts would be better spent elsewhere.

While using the TSC is a reasonable idea, modern Linux already has a userspace TSC-based gettimeofday - where possible, the vdso will pull in an implementation of gettimeofday that applies an offset (read from a shared kernel-user memory segment) to rdtsc's value, thus computing the time of day without entering the kernel. However, some CPU models don't have a TSC synchronized between different cores or different packages, and so this can end up being disabled. If you want high performance timing, you might first want to consider finding a CPU model that does have a synchronized TSC.

That said, if you're willing to sacrifice a significant amount of resolution (your timing will only be accurate to the last tick, meaning it could be off by tens of milliseconds), you could use CLOCK_MONOTONIC_COARSE or CLOCK_REALTIME_COARSE with clock_gettime. This is also implemented with the vdso as well, and guaranteed not to call into the kernel (for recent kernels and glibc).

link|improve this answer
Each process is single threaded. The server will typically have 10-20 such processes running. – Humble Debugger Jun 29 '11 at 12:38
"CPU model that does have a synchronized TSC", have a Xeon 5680, will research on it's handling of this – Humble Debugger Jun 29 '11 at 12:41
@Humble, check for "Marking TSC unstable" in your dmesg. If it's there, you're not using TSC. But always, always benchmark before you try to optimize. Not only do you not know if it's fast enough to start, if you don't benchmark, you'll never know if you make an improvement... – bdonlan Jun 29 '11 at 15:23
@bdonlan dmesg | grep TSC says Fast TSC calibration using PIT – Humble Debugger Jun 29 '11 at 15:38
Chances are that, if that's all you see, you're using the TSC. But still, benchmark gettimeofday(). Is it fast enough? – bdonlan Jun 29 '11 at 15:56
show 2 more comments
feedback

Like bdonian says, if you're only sending a few hundred messages per second, gettimeofday is going to be fast enough.

However, if you were sending millions of messages per second, it might be different (but you should still measure that it is a bottleneck). In that case, you might want to consider something like this:

  • have a global variable, giving the current timestamp in your desired accuracy
  • have a dedicated background thread that does nothing except update the timestamp (if timestamp should be updated every T units of time, then have the thread sleep some fraction of T and then update the timestamp; use real-time features if you need to)
  • all other threads (or the main process, if you don't use threads otherwise) just reads the global variable

The C language does not guarantee that you can read the timestamp value if it is larger than sig_atomic_t. You could use locking to deal with that, but locking is heavy. Instead, you could use a volatile sig_atomic_t typed variable to index an array of timestamps: the background thread updates the next element in the array, and then updates the index. The other threads read the index, and then read the array: they might get a tiny bit out-of-date timestamp (but they get the right one next time), but they do not run into the problem where they read the timestamp at the same time it is being updated, and get some bytes of the old value and some of the new value.

But all this is much overkill for just hundreds of messages per second.

link|improve this answer
"have a dedicated background thread that does nothing except update the timestamp (if timestamp should be updated every T units of time" <-- this is exactly what CLOCK_*_COARSE does, except the dedicated thread is actually an interrupt handler and is system-wide, and the kernel folks have already dealt with the read tearing and other issues for you :) – bdonlan Jun 27 '11 at 21:47
I'm not sure that would be faster than Linux's gettimeofday(): every write would potentially cause a cache miss on every reader on SMP. – ninjalj Jun 27 '11 at 21:50
Come to think of it, are vvars cpu-local on Linux? If so, that's be another major advantage of CLOCK_*_COARSE... Edit: Looks like not (lxr.linux.no/linux+v2.6.39/arch/x86/kernel/vsyscall_64.c#L76), but invalidating a cache line or two is better than interrupting all CPUs with a local timer interrupt or IPI I suppose – bdonlan Jun 27 '11 at 21:50
Lars, it is not a question of how many times a second, the application wants to construct a message and send it out as soon as possible to the receiver, and is competing with other senders. This is a trading application, so in every message to the receiver, no matter how low or high the frequency we would like to shave off microseconds. – Humble Debugger Jun 29 '11 at 12:37
Thanks for your answer. Will give it a shot. – Humble Debugger Jun 29 '11 at 12:44
feedback

Do you need the millisecond precision? If not you could simply use time() and deal with the unix timestamp.

link|improve this answer
Comparison of time() and gettimeofday(), 60 nanoseconds versus 62 nanoseconds. Not much, need to do much better. – Humble Debugger Jun 29 '11 at 18:43
Maybe having a thread with: global_unix_ts = time(); sleep 500ms;. The global var not even protected by a mutex. This should be lighting fast. bdonlan's answers seems to be very elegant and complete too. – hexa Jun 29 '11 at 18:47
feedback

Your Answer

 
or
required, but never shown

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