You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by ti...@apache.org on 2022/12/14 12:37:34 UTC

[ignite] branch revert-10434-IGNITE-17945 created (now b557e2bfdab)

This is an automated email from the ASF dual-hosted git repository.

timoninmaxim pushed a change to branch revert-10434-IGNITE-17945
in repository https://gitbox.apache.org/repos/asf/ignite.git


      at b557e2bfdab Revert "IGNITE-17945 Change message in case watchdog thread observes freeze (#10434)"

This branch includes the following new commits:

     new b557e2bfdab Revert "IGNITE-17945 Change message in case watchdog thread observes freeze (#10434)"

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[ignite] 01/01: Revert "IGNITE-17945 Change message in case watchdog thread observes freeze (#10434)"

Posted by ti...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

timoninmaxim pushed a commit to branch revert-10434-IGNITE-17945
in repository https://gitbox.apache.org/repos/asf/ignite.git

commit b557e2bfdabacb2b49342d6703dc2b5bae93d4c5
Author: Maksim Timonin <ti...@apache.org>
AuthorDate: Wed Dec 14 15:37:24 2022 +0300

    Revert "IGNITE-17945 Change message in case watchdog thread observes freeze (#10434)"
    
    This reverts commit 86dc48ea4f93df44d0c11730766cb7002e1e5d84.
---
 .../src/main/java/org/apache/ignite/internal/LongJVMPauseDetector.java | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/modules/core/src/main/java/org/apache/ignite/internal/LongJVMPauseDetector.java b/modules/core/src/main/java/org/apache/ignite/internal/LongJVMPauseDetector.java
index 8c1dd047258..1d5ce72a50d 100644
--- a/modules/core/src/main/java/org/apache/ignite/internal/LongJVMPauseDetector.java
+++ b/modules/core/src/main/java/org/apache/ignite/internal/LongJVMPauseDetector.java
@@ -127,8 +127,7 @@ public class LongJVMPauseDetector {
                         final long pause = now - PRECISION - lastWakeUpTime;
 
                         if (pause >= THRESHOLD) {
-                            log.warning("Possible too long JVM pause: " + pause + " milliseconds. Possible reasons:" +
-                                " GC pause, hardware temporary freeze, bulk loading, other JVM pauses.");
+                            log.warning("Possible too long JVM pause: " + pause + " milliseconds.");
 
                             synchronized (LongJVMPauseDetector.this) {
                                 final int next = (int)(longPausesCnt % EVT_CNT);