我正在使用JDK 1.8.0_u66选项,该选项尚不可用。所以我最终设置了-XX:+CrashOnOutOfMemoryError

好的,我编写了以下简单的应用程序:

public static void main(String[] args) throws Exception{
    Lock lock = new ReentrantLock();
    Condition condition = lock.newCondition();

    while (true) {
        new Thread(() -> {
            lock.lock();
            try {
                while (true) {
                    try{
                        condition.await();
                    } catch (Exception e){}
                }
            } finally {
                lock.unlock();
            }
        }).start();
    }
}


应用程序因错误而失败

Exception in thread "main" java.lang.OutOfMemoryError:
unable to create new native thread


在一瞬间,但是由于设置了-XX:OnOutOfMemoryError="kill -9 %p"选项,它没有像我预期的那样被杀死。

我想杀死JVM是在单独的-XX:OnOutOfMemoryError="kill -9 %p"中完成的,但是由于已经达到限制,因此无法创建一个。因此,应用程序静默地保持在不一致状态下工作。

最佳答案

您很可能受JDK-8155004的影响,当-XX:OnOutOfMemoryError是由线程创建引起的时,会使OutOfMemoryError和相关选项无法运行。

OutOfMemoryError是由堆内存不足引起的时,当前方法效果很好。您可以使用以下代码和-XX:OnOutOfMemoryError="kill -9 %p"选项进行测试。它退出JVM 1.8.0_191(我最接近您的版本):

public static void main() {
  Thread t = new Thread(() -> {
    try {
      TimeUnit.HOURS.sleep(30);
    } catch (InterruptedException e) {}
  });
  t.start(); // to prevent natural JVM exit when main dies

  ArrayList<Long[]> retain = new ArrayList<>();
  while (true) {
    Long[] arr = new Long[Integer.MAX_VALUE];
    retain.add(arr);
  }
}

08-16 16:23