Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
  1. how do I get MongoDB current server time from the C# driver?

  2. In case I have multiple shards and replica set, does monogo allow their time to be out synch?

  3. As for case 2, if the several servers time is out of sync, which server time will I be getting?

share|improve this question
1  
ATM MongoDB does not use server time for stuff like dates and that, instead it uses UTC only – Sammaye Mar 16 at 11:00

1 Answer

It is a very bad idea to run any cluster without synchronizing the clocks across all of them via NTP or something equivalent.

In a sharded cluster with replica sets for shards the number of problems you may run into if your clocks drift out of sync are numerous and difficult to diagnose.

Use ntpd and as an added advantage you can then use current time from your C# app server without worrying about it being different than the server time.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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