如何在不重启的情况下解决闰秒睡眠问题

如何在不重启的情况下解决闰秒睡眠问题

我发现在最近一次闰秒插入(2016-12-31 23:59:60)之后,我们的 CentOS7 应用程序在作业之间让工作线程休眠 1 秒,现在开始立即唤醒休眠线程,而不是在 1 秒后唤醒。一般来说,所有休眠线程都会比预期唤醒时间提前 1 秒唤醒。

最简单有效的解决方案是重启盒子。但在我们的案例中,这并不可取。有没有办法在不重启的情况下解决这个问题?

PS. 作为参考,这里有一个用 C++ 编写的简单程序,可以重现该问题。

#include <boost/date_time.hpp>
#include <boost/thread.hpp>
#include <iostream>

using namespace std;


// this has to be run in a thread to be able to detect the issue
void check_thread()
{
    size_t expected_delay = 1000;
    cout << "Expected delay: " << expected_delay << " ms" << endl;
    boost::posix_time::ptime t1 = boost::posix_time::microsec_clock::universal_time();
    boost::this_thread::sleep(boost::posix_time::milliseconds(1000));
    boost::posix_time::ptime t2 = boost::posix_time::microsec_clock::universal_time();
    size_t actual_delay = (t2 - t1).total_milliseconds();
    cout << "Actual delay: " << actual_delay << " ms" << endl;
    if (abs(expected_delay - actual_delay) > 900) {
        cout << "Too big delay difference: " << (expected_delay - actual_delay) << endl;
        cout << "Possible leap second issue" << endl;
    }
    else {
        cout << "No issues found" << endl;
    }
}

int main()
{
    boost::thread_group g;
    g.create_thread(check_thread);
    g.join_all();
    return 0;
}

建筑:

g++ sleep_test.cpp -Wl,-Bstatic -lboost_thread -lboost_system -lboost_date_time -Wl,-Bdynamic -rdynamic -pthread

答案1

您的系统时间是否与ntpd或同步ptp?如果没有,请更新您的tzdata软件包。

对于未通过 ntpd 或 ptp 同步的系统,需要包含 12 月 31 日闰秒的更新的 tzdata 包。更新的 tzdata 包作为 RHEA-2016-1982 的一部分发布,任何使用 RHEL 7 且未通过 ntpd 或 ptp 同步的系统都应更新到 tzdata-2016g-2.el7 或更高版本,以接收此修复。

解决 Red Hat Enterprise Linux 中的闰秒问题

答案2

除了 Troy 所说的之外,在应用闰秒时尚未更新 tzdata 且未运行 ntpd 的 RHEL7 系统上,需要额外执行一个步骤 - 手动将时间向前设置 1 秒,然后将其恢复:

date -s "+1 sec"
date -s "-1 sec"

相关内容