Log warning: Thread starvation or clock leap detected (housekeeper delta=springHikariConnectionPool)

前端 未结 4 1740
耶瑟儿~
耶瑟儿~ 2020-12-23 14:03

I\'m using HikariCP 2.4.6 and at Tomcat 8 startup, I get a warning message:

01-Aug-2016 11:18:01.599 INFO [RMI TCP Connection(4)-127.0.0.1] org.apache.catali         


        
相关标签:
4条回答
  • 2020-12-23 14:14

    There's a good rundown of why clock leap detections might legitimately occur. To quote the external link by Brett Woolridge:

    This runs on the housekeeper thread, which executes every 30 seconds. If you are on Mac OS X, the clockSource is System.currentTimeMillis(), any other platform the clockSource is System.nanoTime(). Both in theory are monotonically increasing, but various things can affect that such as NTP servers. Most OSes are designed to handle backward NTP time adjustments to preserve the illusion of the forward flow of time.

    This code is saying, if time moves backwards (now < previous), or if time has "jumped forward" more than two housekeeping periods (more than 60 seconds), then something strange is likely going on.

    A couple of things might be going on:

    1. You could be running in a virtual container (VMWare, AWS, etc.) that for some reason is doing a particularly poor job of maintaining the illusion of the forward flow of time.

    2. Because other things occur in the housekeeper thread -- specifically, closing idle connections -- it is possible that for some reason closing connections is blocking the housekeeper thread for more than two housekeeping periods (60 seconds).

    3. The server is so busy, with all CPUs pegged, that thread starvation is occurring, which is preventing the housekeeper thread from running for more than two housekeeping periods.

    Considering these, maybe you can provide additional context.

    EDIT: Note that this is based on HikariCP 2.4.1 code. Make sure you are running the most up-to-date version available.

    (It also looks like the parameters were updated on the warning statement in the latest code.)

    0 讨论(0)
  • 2020-12-23 14:27

    One other reseason if you run the app locally and the computer went to sleep it happens. In that case, you don't need to do anything configure wise.

    0 讨论(0)
  • 2020-12-23 14:29

    I was facing this issue in a spring boot MySQL work in an AWS T2 micro 1GB RAM instance . After an hours effort and nothing moving forward , observed that CPU usage was going towards 100% . Then I made the instance T2 medium having 4 GB RAM and 2 vCPUs. After that I faced no problem

    0 讨论(0)
  • 2020-12-23 14:32

    I was having the same issue when I ran my spring boot application with microservices on the Linux machine. After some investigation found out that, the server has only 8GB memory. Increasing Memory(RAM) to 16GB fixed my issue.

    0 讨论(0)
提交回复
热议问题