From c67d0e95325b8a798397609ab303ea301aad6ac8 Mon Sep 17 00:00:00 2001 From: Alex Gaetano Padula Date: Fri, 13 Mar 2026 00:30:16 -0400 Subject: [PATCH 1/3] addition of tidesdb purge methods, sync wal method, and db stats methods with addition of new tests --- pom.xml | 2 +- src/main/c/com_tidesdb_TidesDB.c | 70 +++++++ src/main/java/com/tidesdb/ColumnFamily.java | 23 ++ src/main/java/com/tidesdb/DbStats.java | 220 ++++++++++++++++++++ src/main/java/com/tidesdb/TidesDB.java | 27 +++ src/test/java/com/tidesdb/TidesDBTest.java | 180 ++++++++++++++++ 6 files changed, 521 insertions(+), 1 deletion(-) create mode 100644 src/main/java/com/tidesdb/DbStats.java diff --git a/pom.xml b/pom.xml index 7418f11..3fc1d3c 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ com.tidesdb tidesdb-java - 0.6.5 + 0.6.6 jar TidesDB Java diff --git a/src/main/c/com_tidesdb_TidesDB.c b/src/main/c/com_tidesdb_TidesDB.c index 87a3c89..3fc4f19 100644 --- a/src/main/c/com_tidesdb_TidesDB.c +++ b/src/main/c/com_tidesdb_TidesDB.c @@ -1067,6 +1067,76 @@ JNIEXPORT jlong JNICALL Java_com_tidesdb_ColumnFamily_nativeSetCommitHook(JNIEnv return (jlong)(uintptr_t)ctx; } +JNIEXPORT void JNICALL Java_com_tidesdb_ColumnFamily_nativePurge(JNIEnv *env, jclass cls, + jlong handle) +{ + tidesdb_column_family_t *cf = (tidesdb_column_family_t *)(uintptr_t)handle; + int result = tidesdb_purge_cf(cf); + + if (result != TDB_SUCCESS) + { + throwTidesDBException(env, result, getErrorMessage(result)); + } +} + +JNIEXPORT void JNICALL Java_com_tidesdb_ColumnFamily_nativeSyncWal(JNIEnv *env, jclass cls, + jlong handle) +{ + tidesdb_column_family_t *cf = (tidesdb_column_family_t *)(uintptr_t)handle; + int result = tidesdb_sync_wal(cf); + + if (result != TDB_SUCCESS) + { + throwTidesDBException(env, result, getErrorMessage(result)); + } +} + +JNIEXPORT void JNICALL Java_com_tidesdb_TidesDB_nativePurge(JNIEnv *env, jclass cls, jlong handle) +{ + tidesdb_t *db = (tidesdb_t *)(uintptr_t)handle; + int result = tidesdb_purge(db); + + if (result != TDB_SUCCESS) + { + throwTidesDBException(env, result, getErrorMessage(result)); + } +} + +JNIEXPORT jobject JNICALL Java_com_tidesdb_TidesDB_nativeGetDbStats(JNIEnv *env, jclass cls, + jlong handle) +{ + tidesdb_t *db = (tidesdb_t *)(uintptr_t)handle; + tidesdb_db_stats_t db_stats; + + int result = tidesdb_get_db_stats(db, &db_stats); + if (result != TDB_SUCCESS) + { + throwTidesDBException(env, result, getErrorMessage(result)); + return NULL; + } + + jclass dbStatsClass = (*env)->FindClass(env, "com/tidesdb/DbStats"); + jmethodID constructor = + (*env)->GetMethodID(env, dbStatsClass, "", "(IJJJIIJIIJIIJJJJ)V"); + + return (*env)->NewObject(env, dbStatsClass, constructor, + (jint)db_stats.num_column_families, + (jlong)db_stats.total_memory, + (jlong)db_stats.available_memory, + (jlong)db_stats.resolved_memory_limit, + (jint)db_stats.memory_pressure_level, + (jint)db_stats.flush_pending_count, + (jlong)db_stats.total_memtable_bytes, + (jint)db_stats.total_immutable_count, + (jint)db_stats.total_sstable_count, + (jlong)db_stats.total_data_size_bytes, + (jint)db_stats.num_open_sstables, + (jlong)db_stats.global_seq, + (jlong)db_stats.txn_memory_bytes, + (jlong)db_stats.compaction_queue_size, + (jlong)db_stats.flush_queue_size); +} + JNIEXPORT jdouble JNICALL Java_com_tidesdb_ColumnFamily_nativeRangeCost(JNIEnv *env, jclass cls, jlong handle, jbyteArray keyA, diff --git a/src/main/java/com/tidesdb/ColumnFamily.java b/src/main/java/com/tidesdb/ColumnFamily.java index cb2708b..962dfa7 100644 --- a/src/main/java/com/tidesdb/ColumnFamily.java +++ b/src/main/java/com/tidesdb/ColumnFamily.java @@ -126,6 +126,27 @@ public void updateRuntimeConfig(ColumnFamilyConfig config, boolean persistToDisk persistToDisk); } + /** + * Forces a synchronous flush and aggressive compaction for this column family. + * Unlike {@link #compact()} and {@link #flushMemtable()} (which are non-blocking), + * purge blocks until all flush and compaction I/O is complete. + * + * @throws TidesDBException if the purge fails + */ + public void purge() throws TidesDBException { + nativePurge(nativeHandle); + } + + /** + * Forces an immediate fsync of the active write-ahead log for this column family. + * Useful for explicit durability control when using SYNC_NONE or SYNC_INTERVAL modes. + * + * @throws TidesDBException if the WAL sync fails + */ + public void syncWal() throws TidesDBException { + nativeSyncWal(nativeHandle); + } + /** * Estimates the computational cost of iterating between two keys in this column family. * The returned value is an opaque double — meaningful only for comparison with other @@ -190,4 +211,6 @@ private static native void nativeUpdateRuntimeConfig(long handle, long writeBuff int syncMode, long syncIntervalUs, boolean persistToDisk) throws TidesDBException; private static native double nativeRangeCost(long handle, byte[] keyA, byte[] keyB) throws TidesDBException; private static native long nativeSetCommitHook(long handle, CommitHook hook, long oldCtxHandle) throws TidesDBException; + private static native void nativePurge(long handle) throws TidesDBException; + private static native void nativeSyncWal(long handle) throws TidesDBException; } diff --git a/src/main/java/com/tidesdb/DbStats.java b/src/main/java/com/tidesdb/DbStats.java new file mode 100644 index 0000000..67eb36c --- /dev/null +++ b/src/main/java/com/tidesdb/DbStats.java @@ -0,0 +1,220 @@ +/** + * + * Copyright (C) TidesDB + * + * Original Author: Alex Gaetano Padula + * + * Licensed under the Mozilla Public License, v. 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.mozilla.org/en-US/MPL/2.0/ + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package com.tidesdb; + +/** + * Database-level aggregate statistics across the entire TidesDB instance. + */ +public class DbStats { + + private final int numColumnFamilies; + private final long totalMemory; + private final long availableMemory; + private final long resolvedMemoryLimit; + private final int memoryPressureLevel; + private final int flushPendingCount; + private final long totalMemtableBytes; + private final int totalImmutableCount; + private final int totalSstableCount; + private final long totalDataSizeBytes; + private final int numOpenSstables; + private final long globalSeq; + private final long txnMemoryBytes; + private final long compactionQueueSize; + private final long flushQueueSize; + + public DbStats(int numColumnFamilies, long totalMemory, long availableMemory, + long resolvedMemoryLimit, int memoryPressureLevel, int flushPendingCount, + long totalMemtableBytes, int totalImmutableCount, int totalSstableCount, + long totalDataSizeBytes, int numOpenSstables, long globalSeq, + long txnMemoryBytes, long compactionQueueSize, long flushQueueSize) { + this.numColumnFamilies = numColumnFamilies; + this.totalMemory = totalMemory; + this.availableMemory = availableMemory; + this.resolvedMemoryLimit = resolvedMemoryLimit; + this.memoryPressureLevel = memoryPressureLevel; + this.flushPendingCount = flushPendingCount; + this.totalMemtableBytes = totalMemtableBytes; + this.totalImmutableCount = totalImmutableCount; + this.totalSstableCount = totalSstableCount; + this.totalDataSizeBytes = totalDataSizeBytes; + this.numOpenSstables = numOpenSstables; + this.globalSeq = globalSeq; + this.txnMemoryBytes = txnMemoryBytes; + this.compactionQueueSize = compactionQueueSize; + this.flushQueueSize = flushQueueSize; + } + + /** + * Gets the number of column families. + * + * @return number of column families + */ + public int getNumColumnFamilies() { + return numColumnFamilies; + } + + /** + * Gets the system total memory. + * + * @return total memory in bytes + */ + public long getTotalMemory() { + return totalMemory; + } + + /** + * Gets the system available memory at open time. + * + * @return available memory in bytes + */ + public long getAvailableMemory() { + return availableMemory; + } + + /** + * Gets the resolved memory limit (auto or configured). + * + * @return resolved memory limit in bytes + */ + public long getResolvedMemoryLimit() { + return resolvedMemoryLimit; + } + + /** + * Gets the current memory pressure level. + * 0=normal, 1=elevated, 2=high, 3=critical. + * + * @return memory pressure level + */ + public int getMemoryPressureLevel() { + return memoryPressureLevel; + } + + /** + * Gets the number of pending flush operations (queued + in-flight). + * + * @return flush pending count + */ + public int getFlushPendingCount() { + return flushPendingCount; + } + + /** + * Gets the total bytes in active memtables across all column families. + * + * @return total memtable bytes + */ + public long getTotalMemtableBytes() { + return totalMemtableBytes; + } + + /** + * Gets the total immutable memtables across all column families. + * + * @return total immutable count + */ + public int getTotalImmutableCount() { + return totalImmutableCount; + } + + /** + * Gets the total SSTables across all column families and levels. + * + * @return total SSTable count + */ + public int getTotalSstableCount() { + return totalSstableCount; + } + + /** + * Gets the total data size (klog + vlog) across all column families. + * + * @return total data size in bytes + */ + public long getTotalDataSizeBytes() { + return totalDataSizeBytes; + } + + /** + * Gets the number of currently open SSTable file handles. + * + * @return number of open SSTables + */ + public int getNumOpenSstables() { + return numOpenSstables; + } + + /** + * Gets the current global sequence number. + * + * @return global sequence number + */ + public long getGlobalSeq() { + return globalSeq; + } + + /** + * Gets the bytes held by in-flight transactions. + * + * @return transaction memory bytes + */ + public long getTxnMemoryBytes() { + return txnMemoryBytes; + } + + /** + * Gets the number of pending compaction tasks. + * + * @return compaction queue size + */ + public long getCompactionQueueSize() { + return compactionQueueSize; + } + + /** + * Gets the number of pending flush tasks in queue. + * + * @return flush queue size + */ + public long getFlushQueueSize() { + return flushQueueSize; + } + + @Override + public String toString() { + return "DbStats{" + + "numColumnFamilies=" + numColumnFamilies + + ", totalMemory=" + totalMemory + + ", availableMemory=" + availableMemory + + ", resolvedMemoryLimit=" + resolvedMemoryLimit + + ", memoryPressureLevel=" + memoryPressureLevel + + ", flushPendingCount=" + flushPendingCount + + ", totalMemtableBytes=" + totalMemtableBytes + + ", totalImmutableCount=" + totalImmutableCount + + ", totalSstableCount=" + totalSstableCount + + ", totalDataSizeBytes=" + totalDataSizeBytes + + ", numOpenSstables=" + numOpenSstables + + ", globalSeq=" + globalSeq + + ", txnMemoryBytes=" + txnMemoryBytes + + ", compactionQueueSize=" + compactionQueueSize + + ", flushQueueSize=" + flushQueueSize + + '}'; + } +} diff --git a/src/main/java/com/tidesdb/TidesDB.java b/src/main/java/com/tidesdb/TidesDB.java index c112a49..5b23d0f 100644 --- a/src/main/java/com/tidesdb/TidesDB.java +++ b/src/main/java/com/tidesdb/TidesDB.java @@ -283,6 +283,29 @@ public void cloneColumnFamily(String sourceName, String destName) throws TidesDB nativeCloneColumnFamily(nativeHandle, sourceName, destName); } + /** + * Forces a synchronous flush and aggressive compaction for all column families, + * then drains both the global flush and compaction queues. + * This blocks until all work is complete. + * + * @throws TidesDBException if the purge fails + */ + public void purge() throws TidesDBException { + checkNotClosed(); + nativePurge(nativeHandle); + } + + /** + * Retrieves aggregate statistics across the entire database instance. + * + * @return database-level statistics + * @throws TidesDBException if the stats cannot be retrieved + */ + public DbStats getDbStats() throws TidesDBException { + checkNotClosed(); + return nativeGetDbStats(nativeHandle); + } + private void checkNotClosed() { if (closed) { throw new IllegalStateException("TidesDB instance is closed"); @@ -329,4 +352,8 @@ private static native void nativeCreateColumnFamily(long handle, String name, private static native void nativeRenameColumnFamily(long handle, String oldName, String newName) throws TidesDBException; private static native void nativeCloneColumnFamily(long handle, String sourceName, String destName) throws TidesDBException; + + private static native void nativePurge(long handle) throws TidesDBException; + + private static native DbStats nativeGetDbStats(long handle) throws TidesDBException; } diff --git a/src/test/java/com/tidesdb/TidesDBTest.java b/src/test/java/com/tidesdb/TidesDBTest.java index 3715eec..65f9a78 100644 --- a/src/test/java/com/tidesdb/TidesDBTest.java +++ b/src/test/java/com/tidesdb/TidesDBTest.java @@ -1136,6 +1136,186 @@ void testMultiColumnFamilyTransaction() throws TidesDBException { } } + @Test + @Order(31) + void testPurgeCf() throws TidesDBException { + Config config = Config.builder(tempDir.resolve("testdb29").toString()) + .numFlushThreads(2) + .numCompactionThreads(2) + .logLevel(LogLevel.INFO) + .blockCacheSize(64 * 1024 * 1024) + .maxOpenSSTables(256) + .build(); + + try (TidesDB db = TidesDB.open(config)) { + ColumnFamilyConfig cfConfig = ColumnFamilyConfig.defaultConfig(); + db.createColumnFamily("test_cf", cfConfig); + + ColumnFamily cf = db.getColumnFamily("test_cf"); + + // Insert data + try (Transaction txn = db.beginTransaction()) { + for (int i = 0; i < 100; i++) { + txn.put(cf, ("key" + i).getBytes(), ("value" + i).getBytes()); + } + txn.commit(); + } + + // Purge the column family (synchronous flush + compaction) + cf.purge(); + + // Verify data still accessible after purge + try (Transaction txn = db.beginTransaction()) { + byte[] result = txn.get(cf, "key50".getBytes()); + assertNotNull(result); + assertArrayEquals("value50".getBytes(), result); + } + } + } + + @Test + @Order(32) + void testPurgeDb() throws TidesDBException { + Config config = Config.builder(tempDir.resolve("testdb30").toString()) + .numFlushThreads(2) + .numCompactionThreads(2) + .logLevel(LogLevel.INFO) + .blockCacheSize(64 * 1024 * 1024) + .maxOpenSSTables(256) + .build(); + + try (TidesDB db = TidesDB.open(config)) { + ColumnFamilyConfig cfConfig = ColumnFamilyConfig.defaultConfig(); + db.createColumnFamily("cf1", cfConfig); + db.createColumnFamily("cf2", cfConfig); + + ColumnFamily cf1 = db.getColumnFamily("cf1"); + ColumnFamily cf2 = db.getColumnFamily("cf2"); + + // Insert data into both column families + try (Transaction txn = db.beginTransaction()) { + for (int i = 0; i < 50; i++) { + txn.put(cf1, ("key" + i).getBytes(), ("value" + i).getBytes()); + txn.put(cf2, ("key" + i).getBytes(), ("value" + i).getBytes()); + } + txn.commit(); + } + + // Purge entire database + db.purge(); + + // Verify data still accessible after purge + try (Transaction txn = db.beginTransaction()) { + byte[] result1 = txn.get(cf1, "key25".getBytes()); + assertNotNull(result1); + assertArrayEquals("value25".getBytes(), result1); + + byte[] result2 = txn.get(cf2, "key25".getBytes()); + assertNotNull(result2); + assertArrayEquals("value25".getBytes(), result2); + } + } + } + + @Test + @Order(33) + void testSyncWal() throws TidesDBException { + Config config = Config.builder(tempDir.resolve("testdb31").toString()) + .numFlushThreads(2) + .numCompactionThreads(2) + .logLevel(LogLevel.INFO) + .blockCacheSize(64 * 1024 * 1024) + .maxOpenSSTables(256) + .build(); + + try (TidesDB db = TidesDB.open(config)) { + ColumnFamilyConfig cfConfig = ColumnFamilyConfig.builder() + .syncMode(SyncMode.SYNC_NONE) + .build(); + db.createColumnFamily("test_cf", cfConfig); + + ColumnFamily cf = db.getColumnFamily("test_cf"); + + // Write some data + try (Transaction txn = db.beginTransaction()) { + txn.put(cf, "key1".getBytes(), "value1".getBytes()); + txn.commit(); + } + + // Force WAL sync + cf.syncWal(); + + // Verify data accessible + try (Transaction txn = db.beginTransaction()) { + byte[] result = txn.get(cf, "key1".getBytes()); + assertNotNull(result); + assertArrayEquals("value1".getBytes(), result); + } + } + } + + @Test + @Order(34) + void testGetDbStats() throws TidesDBException { + Config config = Config.builder(tempDir.resolve("testdb32").toString()) + .numFlushThreads(2) + .numCompactionThreads(2) + .logLevel(LogLevel.INFO) + .blockCacheSize(64 * 1024 * 1024) + .maxOpenSSTables(256) + .build(); + + try (TidesDB db = TidesDB.open(config)) { + ColumnFamilyConfig cfConfig = ColumnFamilyConfig.defaultConfig(); + db.createColumnFamily("cf1", cfConfig); + db.createColumnFamily("cf2", cfConfig); + + ColumnFamily cf1 = db.getColumnFamily("cf1"); + + // Insert some data + try (Transaction txn = db.beginTransaction()) { + for (int i = 0; i < 100; i++) { + txn.put(cf1, ("key" + i).getBytes(), ("value" + i).getBytes()); + } + txn.commit(); + } + + DbStats dbStats = db.getDbStats(); + assertNotNull(dbStats); + assertEquals(2, dbStats.getNumColumnFamilies()); + assertTrue(dbStats.getTotalMemory() > 0); + assertTrue(dbStats.getResolvedMemoryLimit() > 0); + assertTrue(dbStats.getMemoryPressureLevel() >= 0); + assertTrue(dbStats.getGlobalSeq() > 0); + assertTrue(dbStats.getTotalMemtableBytes() >= 0); + assertTrue(dbStats.getTotalSstableCount() >= 0); + assertTrue(dbStats.getTotalDataSizeBytes() >= 0); + } + } + + @Test + @Order(35) + void testGetDbStatsToString() throws TidesDBException { + Config config = Config.builder(tempDir.resolve("testdb33").toString()) + .numFlushThreads(2) + .numCompactionThreads(2) + .logLevel(LogLevel.INFO) + .blockCacheSize(64 * 1024 * 1024) + .maxOpenSSTables(256) + .build(); + + try (TidesDB db = TidesDB.open(config)) { + ColumnFamilyConfig cfConfig = ColumnFamilyConfig.defaultConfig(); + db.createColumnFamily("test_cf", cfConfig); + + DbStats dbStats = db.getDbStats(); + assertNotNull(dbStats); + String str = dbStats.toString(); + assertTrue(str.contains("numColumnFamilies=")); + assertTrue(str.contains("totalMemory=")); + } + } + @Test @Order(21) void testTransactionResetNullIsolation() throws TidesDBException { From e3da541e96eeb77b95afba4990e6a82cc7381c5f Mon Sep 17 00:00:00 2001 From: Alex Gaetano Padula Date: Fri, 13 Mar 2026 01:30:43 -0400 Subject: [PATCH 2/3] jni corrections --- hs_err_pid2048325.log | 1226 +++++++++++++++++++++++++++++ hs_err_pid2048993.log | 1223 +++++++++++++++++++++++++++++ hs_err_pid2050292.log | 1238 ++++++++++++++++++++++++++++++ src/main/c/com_tidesdb_TidesDB.c | 2 +- 4 files changed, 3688 insertions(+), 1 deletion(-) create mode 100644 hs_err_pid2048325.log create mode 100644 hs_err_pid2048993.log create mode 100644 hs_err_pid2050292.log diff --git a/hs_err_pid2048325.log b/hs_err_pid2048325.log new file mode 100644 index 0000000..463e5dd --- /dev/null +++ b/hs_err_pid2048325.log @@ -0,0 +1,1226 @@ +# +# A fatal error has been detected by the Java Runtime Environment: +# +# SIGSEGV (0xb) at pc=0x00007fdfae8d79e8, pid=2048325, tid=2048326 +# +# JRE version: OpenJDK Runtime Environment (17.0.9+9) (build 17.0.9+9-Ubuntu-123.04) +# Java VM: OpenJDK 64-Bit Server VM (17.0.9+9-Ubuntu-123.04, mixed mode, sharing, tiered, compressed oops, compressed class ptrs, g1 gc, linux-amd64) +# Problematic frame: +# V [libjvm.so+0x8d79e8] jni_NewObject+0x128 +# +# Core dump will be written. Default location: Core dumps may be processed with "/usr/share/apport/apport -p%p -s%s -c%c -d%d -P%P -u%u -g%g -- %E" (or dumping to /home/agpmastersystem/bnd/tidesdb-java/core.2048325) +# +# If you would like to submit a bug report, please visit: +# Unknown +# + +--------------- S U M M A R Y ------------ + +Command Line: -Djava.library.path=/usr/local/lib /home/agpmastersystem/bnd/tidesdb-java/target/surefire/surefirebooter-20260313005509935_3.jar /home/agpmastersystem/bnd/tidesdb-java/target/surefire 2026-03-13T00-55-09_884-jvmRun1 surefire-20260313005509935_1tmp surefire_0-20260313005509935_2tmp + +Host: 11th Gen Intel(R) Core(TM) i7-11700K @ 3.60GHz, 16 cores, 46G, Ubuntu 23.04 +Time: Fri Mar 13 00:55:10 2026 EDT elapsed time: 0.348350 seconds (0d 0h 0m 0s) + +--------------- T H R E A D --------------- + +Current thread (0x00007fdfa8014510): JavaThread "main" [_thread_in_vm, id=2048326, stack(0x00007fdfadf00000,0x00007fdfae000000)] + +Stack: [0x00007fdfadf00000,0x00007fdfae000000], sp=0x00007fdfadffb9b0, free space=1006k +Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code) +V [libjvm.so+0x8d79e8] jni_NewObject+0x128 +C [libtidesdb_jni.so+0x68a4] Java_com_tidesdb_TidesDB_nativeGetDbStats+0x1db +j com.tidesdb.TidesDB.nativeGetDbStats(J)Lcom/tidesdb/DbStats;+0 +j com.tidesdb.TidesDB.getDbStats()Lcom/tidesdb/DbStats;+8 +j com.tidesdb.TidesDBTest.testGetDbStats()V+179 +v ~StubRoutines::call_stub +V [libjvm.so+0x836d12] JavaCalls::call_helper(JavaValue*, methodHandle const&, JavaCallArguments*, JavaThread*)+0x302 +V [libjvm.so+0xcc5dbc] invoke(InstanceKlass*, methodHandle const&, Handle, bool, objArrayHandle, BasicType, objArrayHandle, bool, JavaThread*) [clone .constprop.0]+0x74c +V [libjvm.so+0xcc6af8] Reflection::invoke_method(oopDesc*, Handle, objArrayHandle, JavaThread*)+0x138 +V [libjvm.so+0x90daa4] JVM_InvokeMethod+0x144 +j jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+0 java.base@17.0.9 +j jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+133 java.base@17.0.9 +j jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+6 java.base@17.0.9 +j java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+59 java.base@17.0.9 +j org.junit.platform.commons.util.ReflectionUtils.invokeMethod(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+42 +j org.junit.jupiter.engine.execution.MethodInvocation.proceed()Ljava/lang/Object;+16 +j org.junit.jupiter.engine.execution.InvocationInterceptorChain$ValidatingInvocation.proceed()Ljava/lang/Object;+8 +j org.junit.jupiter.engine.extension.TimeoutExtension.intercept(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/extension/TimeoutDuration;Lorg/junit/jupiter/engine/extension/TimeoutExtension$TimeoutProvider;)Ljava/lang/Object;+28 +j org.junit.jupiter.engine.extension.TimeoutExtension.interceptTestableMethod(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/extension/TimeoutExtension$TimeoutProvider;)Ljava/lang/Object;+31 +j org.junit.jupiter.engine.extension.TimeoutExtension.interceptTestMethod(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;)V+9 +j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor$$Lambda$186+0x00007fdf1808e318.apply(Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;)V+5 +j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker$ReflectiveInterceptorCall.lambda$ofVoidMethod$0(Lorg/junit/jupiter/engine/execution/InterceptingExecutableInvoker$ReflectiveInterceptorCall$VoidMethodInterceptorCall;Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;)Ljava/lang/Void;+6 +j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker$ReflectiveInterceptorCall$$Lambda$187+0x00007fdf1808e738.apply(Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;)Ljava/lang/Object;+9 +j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.lambda$invoke$0(Lorg/junit/jupiter/engine/execution/InterceptingExecutableInvoker$ReflectiveInterceptorCall;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;)Ljava/lang/Object;+6 +j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker$$Lambda$392+0x00007fdf180c7378.apply(Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;)Ljava/lang/Object;+14 +j org.junit.jupiter.engine.execution.InvocationInterceptorChain$InterceptedInvocation.proceed()Ljava/lang/Object;+12 +j org.junit.jupiter.engine.execution.InvocationInterceptorChain.proceed(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;)Ljava/lang/Object;+1 +j org.junit.jupiter.engine.execution.InvocationInterceptorChain.chainAndInvoke(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/engine/execution/InvocationInterceptorChain$InterceptorCall;Ljava/util/List;)Ljava/lang/Object;+24 +j org.junit.jupiter.engine.execution.InvocationInterceptorChain.invoke(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/engine/extension/ExtensionRegistry;Lorg/junit/jupiter/engine/execution/InvocationInterceptorChain$InterceptorCall;)Ljava/lang/Object;+31 +j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.invoke(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/extension/ExtensionRegistry;Lorg/junit/jupiter/engine/execution/InterceptingExecutableInvoker$ReflectiveInterceptorCall;)Ljava/lang/Object;+15 +j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.invoke(Ljava/lang/reflect/Method;Ljava/lang/Object;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/extension/ExtensionRegistry;Lorg/junit/jupiter/engine/execution/InterceptingExecutableInvoker$ReflectiveInterceptorCall;)Ljava/lang/Object;+55 +j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.lambda$invokeTestMethod$7(Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/execution/JupiterEngineExecutionContext;)V+28 +j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor$$Lambda$427+0x00007fdf180cc300.execute()V+12 +j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 +j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.invokeTestMethod(Lorg/junit/jupiter/engine/execution/JupiterEngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$DynamicTestExecutor;)V+21 +j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.execute(Lorg/junit/jupiter/engine/execution/JupiterEngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$DynamicTestExecutor;)Lorg/junit/jupiter/engine/execution/JupiterEngineExecutionContext;+44 +j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.execute(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$DynamicTestExecutor;)Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;+6 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6()V+79 +j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$317+0x00007fdf180b7038.execute()V+4 +j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+15 +j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$316+0x00007fdf180b6e10.invoke(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+5 +j org.junit.platform.engine.support.hierarchical.Node.around(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$Invocation;)V+2 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9()V+14 +j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$315+0x00007fdf180b69e8.execute()V+4 +j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively()V+31 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.execute()V+55 +j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService$$Lambda$321+0x00007fdf180b7b50.accept(Ljava/lang/Object;)V+4 +j java.util.ArrayList.forEach(Ljava/util/function/Consumer;)V+46 java.base@17.0.9 +j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(Ljava/util/List;)V+6 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6()V+116 +j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$317+0x00007fdf180b7038.execute()V+4 +j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+15 +j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$316+0x00007fdf180b6e10.invoke(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+5 +j org.junit.platform.engine.support.hierarchical.Node.around(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$Invocation;)V+2 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9()V+14 +j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$315+0x00007fdf180b69e8.execute()V+4 +j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively()V+31 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.execute()V+55 +j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService$$Lambda$321+0x00007fdf180b7b50.accept(Ljava/lang/Object;)V+4 +j java.util.ArrayList.forEach(Ljava/util/function/Consumer;)V+46 java.base@17.0.9 +j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(Ljava/util/List;)V+6 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6()V+116 +j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$317+0x00007fdf180b7038.execute()V+4 +j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+15 +j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$316+0x00007fdf180b6e10.invoke(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+5 +j org.junit.platform.engine.support.hierarchical.Node.around(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$Invocation;)V+2 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9()V+14 +j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$315+0x00007fdf180b69e8.execute()V+4 +j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively()V+31 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.execute()V+55 +j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.submit(Lorg/junit/platform/engine/support/hierarchical/HierarchicalTestExecutorService$TestTask;)Ljava/util/concurrent/Future;+1 +j org.junit.platform.engine.support.hierarchical.HierarchicalTestExecutor.execute()Ljava/util/concurrent/Future;+74 +j org.junit.platform.engine.support.hierarchical.HierarchicalTestEngine.execute(Lorg/junit/platform/engine/ExecutionRequest;)V+31 +j org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(Lorg/junit/platform/engine/TestDescriptor;Lorg/junit/platform/engine/EngineExecutionListener;Lorg/junit/platform/engine/ConfigurationParameters;Lorg/junit/platform/engine/TestEngine;)V+24 +j org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(Lorg/junit/platform/launcher/core/LauncherDiscoveryResult;Lorg/junit/platform/engine/EngineExecutionListener;)V+115 +j org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(Lorg/junit/platform/launcher/core/InternalTestPlan;Lorg/junit/platform/engine/EngineExecutionListener;Lorg/junit/platform/launcher/TestExecutionListener;)V+55 +j org.junit.platform.launcher.core.EngineExecutionOrchestrator.lambda$execute$0(Lorg/junit/platform/launcher/core/InternalTestPlan;Lorg/junit/platform/launcher/TestExecutionListener;)V+6 +j org.junit.platform.launcher.core.EngineExecutionOrchestrator$$Lambda$271+0x00007fdf180a4238.accept(Ljava/lang/Object;)V+12 +j org.junit.platform.launcher.core.EngineExecutionOrchestrator.withInterceptedStreams(Lorg/junit/platform/engine/ConfigurationParameters;Lorg/junit/platform/launcher/core/ListenerRegistry;Ljava/util/function/Consumer;)V+51 +j org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(Lorg/junit/platform/launcher/core/InternalTestPlan;[Lorg/junit/platform/launcher/TestExecutionListener;)V+23 +j org.junit.platform.launcher.core.DefaultLauncher.execute(Lorg/junit/platform/launcher/core/InternalTestPlan;[Lorg/junit/platform/launcher/TestExecutionListener;)V+6 +j org.junit.platform.launcher.core.DefaultLauncher.execute(Lorg/junit/platform/launcher/LauncherDiscoveryRequest;[Lorg/junit/platform/launcher/TestExecutionListener;)V+34 +j org.junit.platform.launcher.core.DelegatingLauncher.execute(Lorg/junit/platform/launcher/LauncherDiscoveryRequest;[Lorg/junit/platform/launcher/TestExecutionListener;)V+6 +j org.apache.maven.surefire.junitplatform.LauncherAdapter.executeWithoutCancellationToken(Lorg/junit/platform/launcher/LauncherDiscoveryRequest;[Lorg/junit/platform/launcher/TestExecutionListener;)V+6 +j org.apache.maven.surefire.junitplatform.LauncherAdapter.execute(Lorg/junit/platform/launcher/LauncherDiscoveryRequest;[Lorg/junit/platform/launcher/TestExecutionListener;)V+10 +j org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.execute(Lorg/apache/maven/surefire/junitplatform/LauncherAdapter;Lorg/apache/maven/surefire/api/util/TestsToRun;Lorg/apache/maven/surefire/junitplatform/RunListenerAdapter;)V+61 +j org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.invokeAllTests(Lorg/apache/maven/surefire/junitplatform/LauncherAdapter;Lorg/apache/maven/surefire/api/util/TestsToRun;Lorg/apache/maven/surefire/junitplatform/RunListenerAdapter;)V+36 +j org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.invoke(Ljava/lang/Object;)Lorg/apache/maven/surefire/api/suite/RunResult;+144 +j org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess()V+8 +j org.apache.maven.surefire.booter.ForkedBooter.execute()V+1 +j org.apache.maven.surefire.booter.ForkedBooter.run(Lorg/apache/maven/surefire/booter/ForkedBooter;[Ljava/lang/String;)V+27 +j org.apache.maven.surefire.booter.ForkedBooter.main([Ljava/lang/String;)V+10 +v ~StubRoutines::call_stub +V [libjvm.so+0x836d12] JavaCalls::call_helper(JavaValue*, methodHandle const&, JavaCallArguments*, JavaThread*)+0x302 +...... + +Java frames: (J=compiled Java code, j=interpreted, Vv=VM code) +j com.tidesdb.TidesDB.nativeGetDbStats(J)Lcom/tidesdb/DbStats;+0 +j com.tidesdb.TidesDB.getDbStats()Lcom/tidesdb/DbStats;+8 +j com.tidesdb.TidesDBTest.testGetDbStats()V+179 +v ~StubRoutines::call_stub +j jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+0 java.base@17.0.9 +j jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+133 java.base@17.0.9 +j jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+6 java.base@17.0.9 +j java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+59 java.base@17.0.9 +j org.junit.platform.commons.util.ReflectionUtils.invokeMethod(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+42 +j org.junit.jupiter.engine.execution.MethodInvocation.proceed()Ljava/lang/Object;+16 +j org.junit.jupiter.engine.execution.InvocationInterceptorChain$ValidatingInvocation.proceed()Ljava/lang/Object;+8 +j org.junit.jupiter.engine.extension.TimeoutExtension.intercept(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/extension/TimeoutDuration;Lorg/junit/jupiter/engine/extension/TimeoutExtension$TimeoutProvider;)Ljava/lang/Object;+28 +j org.junit.jupiter.engine.extension.TimeoutExtension.interceptTestableMethod(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/extension/TimeoutExtension$TimeoutProvider;)Ljava/lang/Object;+31 +j org.junit.jupiter.engine.extension.TimeoutExtension.interceptTestMethod(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;)V+9 +j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor$$Lambda$186+0x00007fdf1808e318.apply(Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;)V+5 +j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker$ReflectiveInterceptorCall.lambda$ofVoidMethod$0(Lorg/junit/jupiter/engine/execution/InterceptingExecutableInvoker$ReflectiveInterceptorCall$VoidMethodInterceptorCall;Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;)Ljava/lang/Void;+6 +j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker$ReflectiveInterceptorCall$$Lambda$187+0x00007fdf1808e738.apply(Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;)Ljava/lang/Object;+9 +j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.lambda$invoke$0(Lorg/junit/jupiter/engine/execution/InterceptingExecutableInvoker$ReflectiveInterceptorCall;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;)Ljava/lang/Object;+6 +j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker$$Lambda$392+0x00007fdf180c7378.apply(Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;)Ljava/lang/Object;+14 +j org.junit.jupiter.engine.execution.InvocationInterceptorChain$InterceptedInvocation.proceed()Ljava/lang/Object;+12 +j org.junit.jupiter.engine.execution.InvocationInterceptorChain.proceed(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;)Ljava/lang/Object;+1 +j org.junit.jupiter.engine.execution.InvocationInterceptorChain.chainAndInvoke(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/engine/execution/InvocationInterceptorChain$InterceptorCall;Ljava/util/List;)Ljava/lang/Object;+24 +j org.junit.jupiter.engine.execution.InvocationInterceptorChain.invoke(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/engine/extension/ExtensionRegistry;Lorg/junit/jupiter/engine/execution/InvocationInterceptorChain$InterceptorCall;)Ljava/lang/Object;+31 +j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.invoke(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/extension/ExtensionRegistry;Lorg/junit/jupiter/engine/execution/InterceptingExecutableInvoker$ReflectiveInterceptorCall;)Ljava/lang/Object;+15 +j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.invoke(Ljava/lang/reflect/Method;Ljava/lang/Object;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/extension/ExtensionRegistry;Lorg/junit/jupiter/engine/execution/InterceptingExecutableInvoker$ReflectiveInterceptorCall;)Ljava/lang/Object;+55 +j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.lambda$invokeTestMethod$7(Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/execution/JupiterEngineExecutionContext;)V+28 +j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor$$Lambda$427+0x00007fdf180cc300.execute()V+12 +j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 +j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.invokeTestMethod(Lorg/junit/jupiter/engine/execution/JupiterEngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$DynamicTestExecutor;)V+21 +j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.execute(Lorg/junit/jupiter/engine/execution/JupiterEngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$DynamicTestExecutor;)Lorg/junit/jupiter/engine/execution/JupiterEngineExecutionContext;+44 +j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.execute(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$DynamicTestExecutor;)Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;+6 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6()V+79 +j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$317+0x00007fdf180b7038.execute()V+4 +j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+15 +j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$316+0x00007fdf180b6e10.invoke(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+5 +j org.junit.platform.engine.support.hierarchical.Node.around(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$Invocation;)V+2 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9()V+14 +j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$315+0x00007fdf180b69e8.execute()V+4 +j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively()V+31 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.execute()V+55 +j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService$$Lambda$321+0x00007fdf180b7b50.accept(Ljava/lang/Object;)V+4 +j java.util.ArrayList.forEach(Ljava/util/function/Consumer;)V+46 java.base@17.0.9 +j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(Ljava/util/List;)V+6 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6()V+116 +j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$317+0x00007fdf180b7038.execute()V+4 +j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+15 +j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$316+0x00007fdf180b6e10.invoke(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+5 +j org.junit.platform.engine.support.hierarchical.Node.around(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$Invocation;)V+2 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9()V+14 +j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$315+0x00007fdf180b69e8.execute()V+4 +j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively()V+31 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.execute()V+55 +j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService$$Lambda$321+0x00007fdf180b7b50.accept(Ljava/lang/Object;)V+4 +j java.util.ArrayList.forEach(Ljava/util/function/Consumer;)V+46 java.base@17.0.9 +j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(Ljava/util/List;)V+6 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6()V+116 +j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$317+0x00007fdf180b7038.execute()V+4 +j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+15 +j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$316+0x00007fdf180b6e10.invoke(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+5 +j org.junit.platform.engine.support.hierarchical.Node.around(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$Invocation;)V+2 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9()V+14 +j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$315+0x00007fdf180b69e8.execute()V+4 +j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively()V+31 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.execute()V+55 +j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.submit(Lorg/junit/platform/engine/support/hierarchical/HierarchicalTestExecutorService$TestTask;)Ljava/util/concurrent/Future;+1 +j org.junit.platform.engine.support.hierarchical.HierarchicalTestExecutor.execute()Ljava/util/concurrent/Future;+74 +j org.junit.platform.engine.support.hierarchical.HierarchicalTestEngine.execute(Lorg/junit/platform/engine/ExecutionRequest;)V+31 +j org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(Lorg/junit/platform/engine/TestDescriptor;Lorg/junit/platform/engine/EngineExecutionListener;Lorg/junit/platform/engine/ConfigurationParameters;Lorg/junit/platform/engine/TestEngine;)V+24 +j org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(Lorg/junit/platform/launcher/core/LauncherDiscoveryResult;Lorg/junit/platform/engine/EngineExecutionListener;)V+115 +j org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(Lorg/junit/platform/launcher/core/InternalTestPlan;Lorg/junit/platform/engine/EngineExecutionListener;Lorg/junit/platform/launcher/TestExecutionListener;)V+55 +j org.junit.platform.launcher.core.EngineExecutionOrchestrator.lambda$execute$0(Lorg/junit/platform/launcher/core/InternalTestPlan;Lorg/junit/platform/launcher/TestExecutionListener;)V+6 +j org.junit.platform.launcher.core.EngineExecutionOrchestrator$$Lambda$271+0x00007fdf180a4238.accept(Ljava/lang/Object;)V+12 +j org.junit.platform.launcher.core.EngineExecutionOrchestrator.withInterceptedStreams(Lorg/junit/platform/engine/ConfigurationParameters;Lorg/junit/platform/launcher/core/ListenerRegistry;Ljava/util/function/Consumer;)V+51 +j org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(Lorg/junit/platform/launcher/core/InternalTestPlan;[Lorg/junit/platform/launcher/TestExecutionListener;)V+23 +j org.junit.platform.launcher.core.DefaultLauncher.execute(Lorg/junit/platform/launcher/core/InternalTestPlan;[Lorg/junit/platform/launcher/TestExecutionListener;)V+6 +j org.junit.platform.launcher.core.DefaultLauncher.execute(Lorg/junit/platform/launcher/LauncherDiscoveryRequest;[Lorg/junit/platform/launcher/TestExecutionListener;)V+34 +j org.junit.platform.launcher.core.DelegatingLauncher.execute(Lorg/junit/platform/launcher/LauncherDiscoveryRequest;[Lorg/junit/platform/launcher/TestExecutionListener;)V+6 +j org.apache.maven.surefire.junitplatform.LauncherAdapter.executeWithoutCancellationToken(Lorg/junit/platform/launcher/LauncherDiscoveryRequest;[Lorg/junit/platform/launcher/TestExecutionListener;)V+6 +j org.apache.maven.surefire.junitplatform.LauncherAdapter.execute(Lorg/junit/platform/launcher/LauncherDiscoveryRequest;[Lorg/junit/platform/launcher/TestExecutionListener;)V+10 +j org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.execute(Lorg/apache/maven/surefire/junitplatform/LauncherAdapter;Lorg/apache/maven/surefire/api/util/TestsToRun;Lorg/apache/maven/surefire/junitplatform/RunListenerAdapter;)V+61 +j org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.invokeAllTests(Lorg/apache/maven/surefire/junitplatform/LauncherAdapter;Lorg/apache/maven/surefire/api/util/TestsToRun;Lorg/apache/maven/surefire/junitplatform/RunListenerAdapter;)V+36 +j org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.invoke(Ljava/lang/Object;)Lorg/apache/maven/surefire/api/suite/RunResult;+144 +j org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess()V+8 +j org.apache.maven.surefire.booter.ForkedBooter.execute()V+1 +j org.apache.maven.surefire.booter.ForkedBooter.run(Lorg/apache/maven/surefire/booter/ForkedBooter;[Ljava/lang/String;)V+27 +j org.apache.maven.surefire.booter.ForkedBooter.main([Ljava/lang/String;)V+10 +v ~StubRoutines::call_stub + +siginfo: si_signo: 11 (SIGSEGV), si_code: 1 (SEGV_MAPERR), si_addr: 0x0000000000000000 + +Registers: +RAX=0x00007fdfa81b5b28, RBX=0x00007fdfa8014510, RCX=0x0000000000000002, RDX=0x00007fdfa81b5b20 +RSP=0x00007fdfadffb9b0, RBP=0x00007fdfadffbb20, RSI=0x0000000540085570, RDI=0x00007fdfa81b5b28 +R8 =0x0000000bb38d9000, R9 =0x0000000501cd6000, R10=0x00007fdfae8d78c0, R11=0x0000000000000000 +R12=0x0000000000000000, R13=0x0000000000000000, R14=0x0000000000000000, R15=0x00007fdfadffba00 +RIP=0x00007fdfae8d79e8, EFLAGS=0x0000000000010206, CSGSFS=0x002b000000000033, ERR=0x0000000000000004 + TRAPNO=0x000000000000000e + + +Register to memory mapping: + +RAX=0x00007fdfa81b5b28 points into unknown readable memory: 0x0000000540085570 | 70 55 08 40 05 00 00 00 +RBX=0x00007fdfa8014510 is a thread +RCX=0x0000000000000002 is an unknown value +RDX=0x00007fdfa81b5b20 points into unknown readable memory: 0x0000000540084c08 | 08 4c 08 40 05 00 00 00 +RSP=0x00007fdfadffb9b0 is pointing into the stack for thread: 0x00007fdfa8014510 +RBP=0x00007fdfadffbb20 is pointing into the stack for thread: 0x00007fdfa8014510 +RSI=0x0000000540085570 is an oop: com.tidesdb.DbStats +{0x0000000540085570} - klass: 'com/tidesdb/DbStats' + - ---- fields (total size 14 words): + - private final 'numColumnFamilies' 'I' @12 0 + - private final 'totalMemory' 'J' @16 0 (0 0) + - private final 'availableMemory' 'J' @24 0 (0 0) + - private final 'resolvedMemoryLimit' 'J' @32 0 (0 0) + - private final 'totalMemtableBytes' 'J' @40 0 (0 0) + - private final 'totalDataSizeBytes' 'J' @48 0 (0 0) + - private final 'globalSeq' 'J' @56 0 (0 0) + - private final 'txnMemoryBytes' 'J' @64 0 (0 0) + - private final 'compactionQueueSize' 'J' @72 0 (0 0) + - private final 'flushQueueSize' 'J' @80 0 (0 0) + - private final 'memoryPressureLevel' 'I' @88 0 + - private final 'flushPendingCount' 'I' @92 0 + - private final 'totalImmutableCount' 'I' @96 0 + - private final 'totalSstableCount' 'I' @100 0 + - private final 'numOpenSstables' 'I' @104 0 +RDI=0x00007fdfa81b5b28 points into unknown readable memory: 0x0000000540085570 | 70 55 08 40 05 00 00 00 +R8 =0x0000000bb38d9000 is an unknown value +R9 =0x0000000501cd6000 is an unknown value +R10=0x00007fdfae8d78c0: in /usr/lib/jvm/java-17-openjdk-amd64/lib/server/libjvm.so at 0x00007fdfae000000 +R11=0x0 is NULL +R12=0x0 is NULL +R13=0x0 is NULL +R14=0x0 is NULL +R15=0x00007fdfadffba00 is pointing into the stack for thread: 0x00007fdfa8014510 + + +Top of Stack: (sp=0x00007fdfadffb9b0) +0x00007fdfadffb9b0: 00000000a8014f50 00007fdfaf3903ab +0x00007fdfadffb9c0: 00007fdfa8015038 00000000000000d8 +0x00007fdfadffb9d0: 00007fdfadffbec0 0000000000000000 +0x00007fdfadffb9e0: 00007fdfa8014510 00007fdfa8014f80 +0x00007fdfadffb9f0: 0000000000000431 00007fdfaf004d88 +0x00007fdfadffba00: 0000000000000013 00007fdfa8014f88 +0x00007fdfadffba10: 00007fdfadffbaa0 00007fdfaee64d6e +0x00007fdfadffba20: 0000000000000000 0000000000000000 +0x00007fdfadffba30: 0000000000000000 00007fdfaee521a7 +0x00007fdfadffba40: 4141414141414141 0000000000000000 +0x00007fdfadffba50: 00007fdfa8014510 0000000000000002 +0x00007fdfadffba60: 0000000bb38d9000 0000000501cd6000 +0x00007fdfadffba70: 0000000000000001 00007fdf180d4000 +0x00007fdfadffba80: 0000000000000001 00007fdfae8ff4d3 +0x00007fdfadffba90: 00007fdfa8014f88 00000007ff7560a0 +0x00007fdfadffbaa0: 00007fdfadffbad0 00007fdfa8014510 +0x00007fdfadffbab0: 00007fdfa8463dc0 00007fdfa80147c0 +0x00007fdfadffbac0: 00007fdfa8014f88 00000007ff7560a0 +0x00007fdfadffbad0: 00007fdfa8014510 00007fdfa8014510 +0x00007fdfadffbae0: 00007fdfadffbb80 00007fdfae8ccb35 +0x00007fdfadffbaf0: 0000000000000000 0000000000000000 +0x00007fdfadffbb00: 0000000000000000 0000000000000000 +0x00007fdfadffbb10: 0000000000000000 0000000000000000 +0x00007fdfadffbb20: 00007fdfadffbc90 00007fdfaf38f8a4 +0x00007fdfadffbb30: 00000005d9c6c800 0000000000000000 +0x00007fdfadffbb40: 0000000000000000 0000000000000000 +0x00007fdfadffbb50: 0000000000000000 0000000000000000 +0x00007fdfadffbb60: 0000000000000000 0000000000000000 +0x00007fdfadffbb70: 0000000000000002 0000000000000000 +0x00007fdfadffbb80: 0000000000000000 0000000000000000 +0x00007fdfadffbb90: 0000000bb38d9000 0000000501cd6000 +0x00007fdfadffbba0: 00000005d9c6c800 0000000000000000 + +Instructions: (pc=0x00007fdfae8d79e8) +0x00007fdfae8d78e8: 40 ff ff ff 4c 89 8d 48 ff ff ff 84 c0 74 29 0f +0x00007fdfae8d78f8: 29 85 50 ff ff ff 0f 29 8d 60 ff ff ff 0f 29 95 +0x00007fdfae8d7908: 70 ff ff ff 0f 29 5d 80 0f 29 65 90 0f 29 6d a0 +0x00007fdfae8d7918: 0f 29 75 b0 0f 29 7d c0 48 8d 9f 50 fd ff ff 8b +0x00007fdfae8d7928: 83 68 03 00 00 2d ab de 00 00 83 f8 01 0f 87 15 +0x00007fdfae8d7938: 02 00 00 c7 83 40 03 00 00 05 00 00 00 f0 83 04 +0x00007fdfae8d7948: 24 00 48 8b 83 48 03 00 00 a8 01 0f 85 df 01 00 +0x00007fdfae8d7958: 00 8b 83 34 03 00 00 85 c0 0f 85 a9 01 00 00 8b +0x00007fdfae8d7968: 83 30 03 00 00 a8 0c 0f 85 9b 01 00 00 48 83 7b +0x00007fdfae8d7978: 08 00 c7 83 40 03 00 00 06 00 00 00 48 89 9d c0 +0x00007fdfae8d7988: fe ff ff 48 c7 85 c8 fe ff ff 00 00 00 00 74 0c +0x00007fdfae8d7998: 48 8d bd c0 fe ff ff e8 ac 49 3b 00 41 f6 c4 01 +0x00007fdfae8d79a8: 0f 84 72 01 00 00 49 8d 7c 24 ff ff 15 07 78 a1 +0x00007fdfae8d79b8: 00 48 89 c7 48 89 de 45 31 ed e8 49 87 00 00 4c +0x00007fdfae8d79c8: 8b 63 08 4d 85 e4 0f 85 ad 00 00 00 31 d2 48 89 +0x00007fdfae8d79d8: c6 4c 8d bd e0 fe ff ff 48 89 df e8 28 7d 02 00 +0x00007fdfae8d79e8: 49 8b 36 4c 89 ff c7 85 a8 fe ff ff 18 00 00 00 +0x00007fdfae8d79f8: c7 85 ac fe ff ff 30 00 00 00 49 89 c5 48 8d 45 +0x00007fdfae8d7a08: 10 48 89 85 b0 fe ff ff 48 8d 85 20 ff ff ff 48 +0x00007fdfae8d7a18: 89 85 b8 fe ff ff c7 85 90 fe ff ff 0e 00 00 00 +0x00007fdfae8d7a28: e8 f3 90 00 00 4c 89 ee 49 89 d8 4c 89 f9 48 8d +0x00007fdfae8d7a38: 05 1b a3 96 00 f3 0f 6f 85 a8 fe ff ff 48 8d bd +0x00007fdfae8d7a48: 90 fe ff ff 4c 89 f2 48 89 85 e0 fe ff ff 48 8b +0x00007fdfae8d7a58: 85 b8 fe ff ff 0f 11 85 08 ff ff ff 48 89 85 18 +0x00007fdfae8d7a68: ff ff ff e8 10 f7 ff ff 48 83 7b 08 00 4c 89 ff +0x00007fdfae8d7a78: 4d 0f 45 ec e8 bf 87 00 00 48 83 bd c8 fe ff ff +0x00007fdfae8d7a88: 00 74 0c 48 8d bd c0 fe ff ff e8 59 49 3b 00 4c +0x00007fdfae8d7a98: 8b a3 e8 00 00 00 49 8b 44 24 10 48 83 38 00 74 +0x00007fdfae8d7aa8: 0d 4c 89 e7 e8 ef ef ee ff 49 8b 44 24 10 49 8b +0x00007fdfae8d7ab8: 54 24 08 48 8d bb 90 02 00 00 48 89 42 10 49 8b +0x00007fdfae8d7ac8: 44 24 08 49 8b 54 24 18 48 89 50 18 49 8b 44 24 +0x00007fdfae8d7ad8: 08 49 8b 54 24 20 48 89 50 20 e8 69 c4 df ff c7 + + +Stack slot to memory mapping: +stack at sp + 0 slots: 0x00000000a8014f50 is an unknown value +stack at sp + 1 slots: 0x00007fdfaf3903ab: in /usr/local/lib/libtidesdb_jni.so at 0x00007fdfaf389000 +stack at sp + 2 slots: 0x00007fdfa8015038 points into unknown readable memory: 0x0000000000000025 | 25 00 00 00 00 00 00 00 +stack at sp + 3 slots: 0x00000000000000d8 is an unknown value +stack at sp + 4 slots: 0x00007fdfadffbec0 is pointing into the stack for thread: 0x00007fdfa8014510 +stack at sp + 5 slots: 0x0 is NULL +stack at sp + 6 slots: 0x00007fdfa8014510 is a thread +stack at sp + 7 slots: 0x00007fdfa8014f80 points into unknown readable memory: 0x0000000540084d50 | 50 4d 08 40 05 00 00 00 + + +--------------- P R O C E S S --------------- + +Threads class SMR info: +_java_thread_list=0x00007fdef025de10, length=17, elements={ +0x00007fdfa8014510, 0x00007fdfa81b7e10, 0x00007fdfa81b9200, 0x00007fdfa81be770, +0x00007fdfa81bfb30, 0x00007fdfa81c0f50, 0x00007fdfa81c2990, 0x00007fdfa81c3ed0, +0x00007fdfa81c5350, 0x00007fdfa81cc920, 0x00007fdfa81d01b0, 0x00007fdef0025170, +0x00007fdfa830c6a0, 0x00007fdfa831c650, 0x00007fdee40eec70, 0x00007fdef025bc90, +0x00007fdef025ce20 +} + +Java Threads: ( => current thread ) +=>0x00007fdfa8014510 JavaThread "main" [_thread_in_vm, id=2048326, stack(0x00007fdfadf00000,0x00007fdfae000000)] + 0x00007fdfa81b7e10 JavaThread "Reference Handler" daemon [_thread_blocked, id=2048336, stack(0x00007fdf74ef0000,0x00007fdf74ff0000)] + 0x00007fdfa81b9200 JavaThread "Finalizer" daemon [_thread_blocked, id=2048337, stack(0x00007fdf74df0000,0x00007fdf74ef0000)] + 0x00007fdfa81be770 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=2048340, stack(0x00007fdf74700000,0x00007fdf74800000)] + 0x00007fdfa81bfb30 JavaThread "Service Thread" daemon [_thread_blocked, id=2048341, stack(0x00007fdf74600000,0x00007fdf74700000)] + 0x00007fdfa81c0f50 JavaThread "Monitor Deflation Thread" daemon [_thread_blocked, id=2048342, stack(0x00007fdf74500000,0x00007fdf74600000)] + 0x00007fdfa81c2990 JavaThread "C2 CompilerThread0" daemon [_thread_in_native, id=2048343, stack(0x00007fdf74400000,0x00007fdf74500000)] + 0x00007fdfa81c3ed0 JavaThread "C1 CompilerThread0" daemon [_thread_blocked, id=2048344, stack(0x00007fdf74300000,0x00007fdf74400000)] + 0x00007fdfa81c5350 JavaThread "Sweeper thread" daemon [_thread_blocked, id=2048345, stack(0x00007fdf74200000,0x00007fdf74300000)] + 0x00007fdfa81cc920 JavaThread "Notification Thread" daemon [_thread_blocked, id=2048346, stack(0x00007fdf74100000,0x00007fdf74200000)] + 0x00007fdfa81d01b0 JavaThread "Common-Cleaner" daemon [_thread_blocked, id=2048349, stack(0x00007fdf74000000,0x00007fdf74100000)] + 0x00007fdef0025170 JavaThread "C1 CompilerThread1" daemon [_thread_blocked, id=2048350, stack(0x00007fdf65dff000,0x00007fdf65eff000)] + 0x00007fdfa830c6a0 JavaThread "surefire-forkedjvm-stream-flusher" daemon [_thread_blocked, id=2048351, stack(0x00007fdf65cff000,0x00007fdf65dff000)] + 0x00007fdfa831c650 JavaThread "surefire-forkedjvm-command-thread" daemon [_thread_in_native, id=2048352, stack(0x00007fdf65bff000,0x00007fdf65cff000)] + 0x00007fdee40eec70 JavaThread "C2 CompilerThread1" daemon [_thread_in_native, id=2048358, stack(0x00007fdf65aff000,0x00007fdf65bff000)] + 0x00007fdef025bc90 JavaThread "C1 CompilerThread2" daemon [_thread_blocked, id=2048359, stack(0x00007fdf659ff000,0x00007fdf65aff000)] + 0x00007fdef025ce20 JavaThread "C1 CompilerThread3" daemon [_thread_blocked, id=2048360, stack(0x00007fdf658ff000,0x00007fdf659ff000)] + +Other Threads: + 0x00007fdfa81b3e80 VMThread "VM Thread" [stack: 0x00007fdf74ff1000,0x00007fdf750f1000] [id=2048335] + 0x00007fdfa81ce270 WatcherThread [stack: 0x00007fdf65f00000,0x00007fdf66000000] [id=2048348] + 0x00007fdfa8070ce0 GCTaskThread "GC Thread#0" [stack: 0x00007fdfacb91000,0x00007fdfacc91000] [id=2048328] + 0x00007fdfa807ddd0 ConcurrentGCThread "G1 Main Marker" [stack: 0x00007fdfaca90000,0x00007fdfacb90000] [id=2048329] + 0x00007fdfa807ed40 ConcurrentGCThread "G1 Conc#0" [stack: 0x00007fdfac98f000,0x00007fdfaca8f000] [id=2048330] + 0x00007fdfa8182f50 ConcurrentGCThread "G1 Refine#0" [stack: 0x00007fdf75345000,0x00007fdf75445000] [id=2048332] + 0x00007fdfa8183e50 ConcurrentGCThread "G1 Service" [stack: 0x00007fdf75244000,0x00007fdf75344000] [id=2048333] + +Threads with active compile tasks: +C2 CompilerThread0 352 1157 4 java.util.function.Predicate$$Lambda$90/0x00007fdf1805ebe8::test (15 bytes) +C2 CompilerThread1 352 1162 4 org.junit.jupiter.engine.discovery.predicates.IsTestableMethod::test (49 bytes) + +VM state: not at safepoint (normal execution) + +VM Mutex/Monitor currently owned by a thread: None + +Heap address: 0x0000000513000000, size: 11984 MB, Compressed Oops mode: Zero based, Oop shift amount: 3 + +CDS archive(s) mapped at: [0x00007fdf17000000-0x00007fdf17bc6000-0x00007fdf17bc6000), size 12345344, SharedBaseAddress: 0x00007fdf17000000, ArchiveRelocationMode: 1. +Compressed class space mapped at: 0x00007fdf18000000-0x00007fdf58000000, reserved size: 1073741824 +Narrow klass base: 0x00007fdf17000000, Narrow klass shift: 0, Narrow klass range: 0x100000000 + +GC Precious Log: + CPUs: 16 total, 16 available + Memory: 47928M + Large Page Support: Disabled + NUMA Support: Disabled + Compressed Oops: Enabled (Zero based) + Heap Region Size: 8M + Heap Min Capacity: 8M + Heap Initial Capacity: 752M + Heap Max Capacity: 11984M + Pre-touch: Disabled + Parallel Workers: 13 + Concurrent Workers: 3 + Concurrent Refinement Workers: 13 + Periodic GC: Disabled + +Heap: + garbage-first heap total 786432K, used 32688K [0x0000000513000000, 0x0000000800000000) + region size 8192K, 4 young (32768K), 0 survivors (0K) + Metaspace used 6810K, committed 7040K, reserved 1114112K + class space used 866K, committed 960K, reserved 1048576K + +Heap Regions: E=young(eden), S=young(survivor), O=old, HS=humongous(starts), HC=humongous(continues), CS=collection set, F=free, OA=open archive, CA=closed archive, TAMS=top-at-mark-start (previous, next) +| 0|0x0000000513000000, 0x0000000513000000, 0x0000000513800000| 0%| F| |TAMS 0x0000000513000000, 0x0000000513000000| Untracked +| 1|0x0000000513800000, 0x0000000513800000, 0x0000000514000000| 0%| F| |TAMS 0x0000000513800000, 0x0000000513800000| Untracked +| 2|0x0000000514000000, 0x0000000514000000, 0x0000000514800000| 0%| F| |TAMS 0x0000000514000000, 0x0000000514000000| Untracked +| 3|0x0000000514800000, 0x0000000514800000, 0x0000000515000000| 0%| F| |TAMS 0x0000000514800000, 0x0000000514800000| Untracked +| 4|0x0000000515000000, 0x0000000515000000, 0x0000000515800000| 0%| F| |TAMS 0x0000000515000000, 0x0000000515000000| Untracked +| 5|0x0000000515800000, 0x0000000515800000, 0x0000000516000000| 0%| F| |TAMS 0x0000000515800000, 0x0000000515800000| Untracked +| 6|0x0000000516000000, 0x0000000516000000, 0x0000000516800000| 0%| F| |TAMS 0x0000000516000000, 0x0000000516000000| Untracked +| 7|0x0000000516800000, 0x0000000516800000, 0x0000000517000000| 0%| F| |TAMS 0x0000000516800000, 0x0000000516800000| Untracked +| 8|0x0000000517000000, 0x0000000517000000, 0x0000000517800000| 0%| F| |TAMS 0x0000000517000000, 0x0000000517000000| Untracked +| 9|0x0000000517800000, 0x0000000517800000, 0x0000000518000000| 0%| F| |TAMS 0x0000000517800000, 0x0000000517800000| Untracked +| 10|0x0000000518000000, 0x0000000518000000, 0x0000000518800000| 0%| F| |TAMS 0x0000000518000000, 0x0000000518000000| Untracked +| 11|0x0000000518800000, 0x0000000518800000, 0x0000000519000000| 0%| F| |TAMS 0x0000000518800000, 0x0000000518800000| Untracked +| 12|0x0000000519000000, 0x0000000519000000, 0x0000000519800000| 0%| F| |TAMS 0x0000000519000000, 0x0000000519000000| Untracked +| 13|0x0000000519800000, 0x0000000519800000, 0x000000051a000000| 0%| F| |TAMS 0x0000000519800000, 0x0000000519800000| Untracked +| 14|0x000000051a000000, 0x000000051a000000, 0x000000051a800000| 0%| F| |TAMS 0x000000051a000000, 0x000000051a000000| Untracked +| 15|0x000000051a800000, 0x000000051a800000, 0x000000051b000000| 0%| F| |TAMS 0x000000051a800000, 0x000000051a800000| Untracked +| 16|0x000000051b000000, 0x000000051b000000, 0x000000051b800000| 0%| F| |TAMS 0x000000051b000000, 0x000000051b000000| Untracked +| 17|0x000000051b800000, 0x000000051b800000, 0x000000051c000000| 0%| F| |TAMS 0x000000051b800000, 0x000000051b800000| Untracked +| 18|0x000000051c000000, 0x000000051c000000, 0x000000051c800000| 0%| F| |TAMS 0x000000051c000000, 0x000000051c000000| Untracked +| 19|0x000000051c800000, 0x000000051c800000, 0x000000051d000000| 0%| F| |TAMS 0x000000051c800000, 0x000000051c800000| Untracked +| 20|0x000000051d000000, 0x000000051d000000, 0x000000051d800000| 0%| F| |TAMS 0x000000051d000000, 0x000000051d000000| Untracked +| 21|0x000000051d800000, 0x000000051d800000, 0x000000051e000000| 0%| F| |TAMS 0x000000051d800000, 0x000000051d800000| Untracked +| 22|0x000000051e000000, 0x000000051e000000, 0x000000051e800000| 0%| F| |TAMS 0x000000051e000000, 0x000000051e000000| Untracked +| 23|0x000000051e800000, 0x000000051e800000, 0x000000051f000000| 0%| F| |TAMS 0x000000051e800000, 0x000000051e800000| Untracked +| 24|0x000000051f000000, 0x000000051f000000, 0x000000051f800000| 0%| F| |TAMS 0x000000051f000000, 0x000000051f000000| Untracked +| 25|0x000000051f800000, 0x000000051f800000, 0x0000000520000000| 0%| F| |TAMS 0x000000051f800000, 0x000000051f800000| Untracked +| 26|0x0000000520000000, 0x0000000520000000, 0x0000000520800000| 0%| F| |TAMS 0x0000000520000000, 0x0000000520000000| Untracked +| 27|0x0000000520800000, 0x0000000520800000, 0x0000000521000000| 0%| F| |TAMS 0x0000000520800000, 0x0000000520800000| Untracked +| 28|0x0000000521000000, 0x0000000521000000, 0x0000000521800000| 0%| F| |TAMS 0x0000000521000000, 0x0000000521000000| Untracked +| 29|0x0000000521800000, 0x0000000521800000, 0x0000000522000000| 0%| F| |TAMS 0x0000000521800000, 0x0000000521800000| Untracked +| 30|0x0000000522000000, 0x0000000522000000, 0x0000000522800000| 0%| F| |TAMS 0x0000000522000000, 0x0000000522000000| Untracked +| 31|0x0000000522800000, 0x0000000522800000, 0x0000000523000000| 0%| F| |TAMS 0x0000000522800000, 0x0000000522800000| Untracked +| 32|0x0000000523000000, 0x0000000523000000, 0x0000000523800000| 0%| F| |TAMS 0x0000000523000000, 0x0000000523000000| Untracked +| 33|0x0000000523800000, 0x0000000523800000, 0x0000000524000000| 0%| F| |TAMS 0x0000000523800000, 0x0000000523800000| Untracked +| 34|0x0000000524000000, 0x0000000524000000, 0x0000000524800000| 0%| F| |TAMS 0x0000000524000000, 0x0000000524000000| Untracked +| 35|0x0000000524800000, 0x0000000524800000, 0x0000000525000000| 0%| F| |TAMS 0x0000000524800000, 0x0000000524800000| Untracked +| 36|0x0000000525000000, 0x0000000525000000, 0x0000000525800000| 0%| F| |TAMS 0x0000000525000000, 0x0000000525000000| Untracked +| 37|0x0000000525800000, 0x0000000525800000, 0x0000000526000000| 0%| F| |TAMS 0x0000000525800000, 0x0000000525800000| Untracked +| 38|0x0000000526000000, 0x0000000526000000, 0x0000000526800000| 0%| F| |TAMS 0x0000000526000000, 0x0000000526000000| Untracked +| 39|0x0000000526800000, 0x0000000526800000, 0x0000000527000000| 0%| F| |TAMS 0x0000000526800000, 0x0000000526800000| Untracked +| 40|0x0000000527000000, 0x0000000527000000, 0x0000000527800000| 0%| F| |TAMS 0x0000000527000000, 0x0000000527000000| Untracked +| 41|0x0000000527800000, 0x0000000527800000, 0x0000000528000000| 0%| F| |TAMS 0x0000000527800000, 0x0000000527800000| Untracked +| 42|0x0000000528000000, 0x0000000528000000, 0x0000000528800000| 0%| F| |TAMS 0x0000000528000000, 0x0000000528000000| Untracked +| 43|0x0000000528800000, 0x0000000528800000, 0x0000000529000000| 0%| F| |TAMS 0x0000000528800000, 0x0000000528800000| Untracked +| 44|0x0000000529000000, 0x0000000529000000, 0x0000000529800000| 0%| F| |TAMS 0x0000000529000000, 0x0000000529000000| Untracked +| 45|0x0000000529800000, 0x0000000529800000, 0x000000052a000000| 0%| F| |TAMS 0x0000000529800000, 0x0000000529800000| Untracked +| 46|0x000000052a000000, 0x000000052a000000, 0x000000052a800000| 0%| F| |TAMS 0x000000052a000000, 0x000000052a000000| Untracked +| 47|0x000000052a800000, 0x000000052a800000, 0x000000052b000000| 0%| F| |TAMS 0x000000052a800000, 0x000000052a800000| Untracked +| 48|0x000000052b000000, 0x000000052b000000, 0x000000052b800000| 0%| F| |TAMS 0x000000052b000000, 0x000000052b000000| Untracked +| 49|0x000000052b800000, 0x000000052b800000, 0x000000052c000000| 0%| F| |TAMS 0x000000052b800000, 0x000000052b800000| Untracked +| 50|0x000000052c000000, 0x000000052c000000, 0x000000052c800000| 0%| F| |TAMS 0x000000052c000000, 0x000000052c000000| Untracked +| 51|0x000000052c800000, 0x000000052c800000, 0x000000052d000000| 0%| F| |TAMS 0x000000052c800000, 0x000000052c800000| Untracked +| 52|0x000000052d000000, 0x000000052d000000, 0x000000052d800000| 0%| F| |TAMS 0x000000052d000000, 0x000000052d000000| Untracked +| 53|0x000000052d800000, 0x000000052d800000, 0x000000052e000000| 0%| F| |TAMS 0x000000052d800000, 0x000000052d800000| Untracked +| 54|0x000000052e000000, 0x000000052e000000, 0x000000052e800000| 0%| F| |TAMS 0x000000052e000000, 0x000000052e000000| Untracked +| 55|0x000000052e800000, 0x000000052e800000, 0x000000052f000000| 0%| F| |TAMS 0x000000052e800000, 0x000000052e800000| Untracked +| 56|0x000000052f000000, 0x000000052f000000, 0x000000052f800000| 0%| F| |TAMS 0x000000052f000000, 0x000000052f000000| Untracked +| 57|0x000000052f800000, 0x000000052f800000, 0x0000000530000000| 0%| F| |TAMS 0x000000052f800000, 0x000000052f800000| Untracked +| 58|0x0000000530000000, 0x0000000530000000, 0x0000000530800000| 0%| F| |TAMS 0x0000000530000000, 0x0000000530000000| Untracked +| 59|0x0000000530800000, 0x0000000530800000, 0x0000000531000000| 0%| F| |TAMS 0x0000000530800000, 0x0000000530800000| Untracked +| 60|0x0000000531000000, 0x0000000531000000, 0x0000000531800000| 0%| F| |TAMS 0x0000000531000000, 0x0000000531000000| Untracked +| 61|0x0000000531800000, 0x0000000531800000, 0x0000000532000000| 0%| F| |TAMS 0x0000000531800000, 0x0000000531800000| Untracked +| 62|0x0000000532000000, 0x0000000532000000, 0x0000000532800000| 0%| F| |TAMS 0x0000000532000000, 0x0000000532000000| Untracked +| 63|0x0000000532800000, 0x0000000532800000, 0x0000000533000000| 0%| F| |TAMS 0x0000000532800000, 0x0000000532800000| Untracked +| 64|0x0000000533000000, 0x0000000533000000, 0x0000000533800000| 0%| F| |TAMS 0x0000000533000000, 0x0000000533000000| Untracked +| 65|0x0000000533800000, 0x0000000533800000, 0x0000000534000000| 0%| F| |TAMS 0x0000000533800000, 0x0000000533800000| Untracked +| 66|0x0000000534000000, 0x0000000534000000, 0x0000000534800000| 0%| F| |TAMS 0x0000000534000000, 0x0000000534000000| Untracked +| 67|0x0000000534800000, 0x0000000534800000, 0x0000000535000000| 0%| F| |TAMS 0x0000000534800000, 0x0000000534800000| Untracked +| 68|0x0000000535000000, 0x0000000535000000, 0x0000000535800000| 0%| F| |TAMS 0x0000000535000000, 0x0000000535000000| Untracked +| 69|0x0000000535800000, 0x0000000535800000, 0x0000000536000000| 0%| F| |TAMS 0x0000000535800000, 0x0000000535800000| Untracked +| 70|0x0000000536000000, 0x0000000536000000, 0x0000000536800000| 0%| F| |TAMS 0x0000000536000000, 0x0000000536000000| Untracked +| 71|0x0000000536800000, 0x0000000536800000, 0x0000000537000000| 0%| F| |TAMS 0x0000000536800000, 0x0000000536800000| Untracked +| 72|0x0000000537000000, 0x0000000537000000, 0x0000000537800000| 0%| F| |TAMS 0x0000000537000000, 0x0000000537000000| Untracked +| 73|0x0000000537800000, 0x0000000537800000, 0x0000000538000000| 0%| F| |TAMS 0x0000000537800000, 0x0000000537800000| Untracked +| 74|0x0000000538000000, 0x0000000538000000, 0x0000000538800000| 0%| F| |TAMS 0x0000000538000000, 0x0000000538000000| Untracked +| 75|0x0000000538800000, 0x0000000538800000, 0x0000000539000000| 0%| F| |TAMS 0x0000000538800000, 0x0000000538800000| Untracked +| 76|0x0000000539000000, 0x0000000539000000, 0x0000000539800000| 0%| F| |TAMS 0x0000000539000000, 0x0000000539000000| Untracked +| 77|0x0000000539800000, 0x0000000539800000, 0x000000053a000000| 0%| F| |TAMS 0x0000000539800000, 0x0000000539800000| Untracked +| 78|0x000000053a000000, 0x000000053a000000, 0x000000053a800000| 0%| F| |TAMS 0x000000053a000000, 0x000000053a000000| Untracked +| 79|0x000000053a800000, 0x000000053a800000, 0x000000053b000000| 0%| F| |TAMS 0x000000053a800000, 0x000000053a800000| Untracked +| 80|0x000000053b000000, 0x000000053b000000, 0x000000053b800000| 0%| F| |TAMS 0x000000053b000000, 0x000000053b000000| Untracked +| 81|0x000000053b800000, 0x000000053b800000, 0x000000053c000000| 0%| F| |TAMS 0x000000053b800000, 0x000000053b800000| Untracked +| 82|0x000000053c000000, 0x000000053c000000, 0x000000053c800000| 0%| F| |TAMS 0x000000053c000000, 0x000000053c000000| Untracked +| 83|0x000000053c800000, 0x000000053c800000, 0x000000053d000000| 0%| F| |TAMS 0x000000053c800000, 0x000000053c800000| Untracked +| 84|0x000000053d000000, 0x000000053d000000, 0x000000053d800000| 0%| F| |TAMS 0x000000053d000000, 0x000000053d000000| Untracked +| 85|0x000000053d800000, 0x000000053d800000, 0x000000053e000000| 0%| F| |TAMS 0x000000053d800000, 0x000000053d800000| Untracked +| 86|0x000000053e000000, 0x000000053e000000, 0x000000053e800000| 0%| F| |TAMS 0x000000053e000000, 0x000000053e000000| Untracked +| 87|0x000000053e800000, 0x000000053e800000, 0x000000053f000000| 0%| F| |TAMS 0x000000053e800000, 0x000000053e800000| Untracked +| 88|0x000000053f000000, 0x000000053f000000, 0x000000053f800000| 0%| F| |TAMS 0x000000053f000000, 0x000000053f000000| Untracked +| 89|0x000000053f800000, 0x000000053f800000, 0x0000000540000000| 0%| F| |TAMS 0x000000053f800000, 0x000000053f800000| Untracked +| 90|0x0000000540000000, 0x00000005400a4600, 0x0000000540800000| 8%| E| |TAMS 0x0000000540000000, 0x0000000540000000| Complete +| 91|0x0000000540800000, 0x0000000541000000, 0x0000000541000000|100%| E|CS|TAMS 0x0000000540800000, 0x0000000540800000| Complete +| 92|0x0000000541000000, 0x0000000541800000, 0x0000000541800000|100%| E|CS|TAMS 0x0000000541000000, 0x0000000541000000| Complete +| 93|0x0000000541800000, 0x0000000542000000, 0x0000000542000000|100%| E|CS|TAMS 0x0000000541800000, 0x0000000541800000| Complete +|1496|0x00000007ff000000, 0x00000007ff775000, 0x00000007ff800000| 93%|OA| |TAMS 0x00000007ff000000, 0x00000007ff000000| Untracked +|1497|0x00000007ff800000, 0x00000007ff877000, 0x0000000800000000| 5%|CA| |TAMS 0x00000007ff800000, 0x00000007ff800000| Untracked + +Card table byte_map: [0x00007fdf8e530000,0x00007fdf8fc98000] _byte_map_base: 0x00007fdf8bc98000 + +Marking Bits (Prev, Next): (CMBitMap*) 0x00007fdfa8071770, (CMBitMap*) 0x00007fdfa80717b0 + Prev Bits: [0x00007fdf81288000, 0x00007fdf8cdc8000) + Next Bits: [0x00007fdf75748000, 0x00007fdf81288000) + +Polling page: 0x00007fdfaf760000 + +Metaspace: + +Usage: + Non-class: 5.80 MB used. + Class: 866.89 KB used. + Both: 6.65 MB used. + +Virtual space: + Non-class space: 64.00 MB reserved, 5.94 MB ( 9%) committed, 1 nodes. + Class space: 1.00 GB reserved, 960.00 KB ( <1%) committed, 1 nodes. + Both: 1.06 GB reserved, 6.88 MB ( <1%) committed. + +Chunk freelists: + Non-Class: 9.23 MB + Class: 15.04 MB + Both: 24.28 MB + +MaxMetaspaceSize: unlimited +CompressedClassSpaceSize: 1.00 GB +Initial GC threshold: 21.00 MB +Current GC threshold: 21.00 MB +CDS: on +MetaspaceReclaimPolicy: balanced + - commit_granule_bytes: 65536. + - commit_granule_words: 8192. + - virtual_space_node_default_size: 8388608. + - enlarge_chunks_in_place: 1. + - new_chunks_are_fully_committed: 0. + - uncommit_free_chunks: 1. + - use_allocation_guard: 0. + - handle_deallocations: 1. + + +Internal statistics: + +num_allocs_failed_limit: 0. +num_arena_births: 118. +num_arena_deaths: 0. +num_vsnodes_births: 2. +num_vsnodes_deaths: 0. +num_space_committed: 110. +num_space_uncommitted: 0. +num_chunks_returned_to_freelist: 0. +num_chunks_taken_from_freelist: 346. +num_chunk_merges: 0. +num_chunk_splits: 190. +num_chunks_enlarged: 106. +num_inconsistent_stats: 0. + +CodeHeap 'non-profiled nmethods': size=119168Kb used=335Kb max_used=335Kb free=118832Kb + bounds [0x00007fdf98fa0000, 0x00007fdf99210000, 0x00007fdfa0400000] +CodeHeap 'profiled nmethods': size=119164Kb used=2917Kb max_used=2917Kb free=116246Kb + bounds [0x00007fdf91400000, 0x00007fdf916e0000, 0x00007fdf9885f000] +CodeHeap 'non-nmethods': size=7428Kb used=2844Kb max_used=2855Kb free=4583Kb + bounds [0x00007fdf9885f000, 0x00007fdf98b2f000, 0x00007fdf98fa0000] + total_blobs=1835 nmethods=1404 adapters=341 + compilation: enabled + stopped_count=0, restarted_count=0 + full_count=0 + +Compilation events (20 events): +Event: 0.327 Thread 0x00007fdef025bc90 1401 3 java.lang.invoke.DirectMethodHandle::make (275 bytes) +Event: 0.327 Thread 0x00007fdfa81c3ed0 1403 3 java.lang.invoke.InvokerBytecodeGenerator::emitLoadInsn (21 bytes) +Event: 0.327 Thread 0x00007fdef0025170 1404 3 java.lang.invoke.InvokerBytecodeGenerator::loadInsnOpcode (98 bytes) +Event: 0.327 Thread 0x00007fdef025ce20 1405 3 java.lang.invoke.InvokerBytecodeGenerator::emitPushArgument (150 bytes) +Event: 0.327 Thread 0x00007fdfa81c3ed0 nmethod 1403 0x00007fdf916d2190 code [0x00007fdf916d2340, 0x00007fdf916d2590] +Event: 0.328 Thread 0x00007fdfa81c3ed0 1409 3 java.lang.invoke.LambdaForm$NamedFunction::returnType (11 bytes) +Event: 0.328 Thread 0x00007fdef0025170 nmethod 1404 0x00007fdf916d2710 code [0x00007fdf916d2980, 0x00007fdf916d3370] +Event: 0.328 Thread 0x00007fdef025ce20 nmethod 1405 0x00007fdf916d3690 code [0x00007fdf916d3980, 0x00007fdf916d4860] +Event: 0.328 Thread 0x00007fdfa81c3ed0 nmethod 1409 0x00007fdf916d4c10 code [0x00007fdf916d4e00, 0x00007fdf916d5280] +Event: 0.328 Thread 0x00007fdef025bc90 nmethod 1401 0x00007fdf916d5490 code [0x00007fdf916d5820, 0x00007fdf916d6cd0] +Event: 0.328 Thread 0x00007fdef025bc90 1413 3 java.lang.invoke.DirectMethodHandle::shouldBeInitialized (127 bytes) +Event: 0.328 Thread 0x00007fdfa81c3ed0 1415 3 sun.invoke.util.Wrapper::isSubwordOrInt (20 bytes) +Event: 0.328 Thread 0x00007fdef025ce20 1416 3 sun.invoke.util.Wrapper::isIntegral (23 bytes) +Event: 0.328 Thread 0x00007fdef0025170 1417 3 sun.invoke.util.Wrapper::isNumeric (16 bytes) +Event: 0.328 Thread 0x00007fdef0025170 nmethod 1417 0x00007fdf916d7510 code [0x00007fdf916d76a0, 0x00007fdf916d7810] +Event: 0.328 Thread 0x00007fdef025ce20 nmethod 1416 0x00007fdf916d7890 code [0x00007fdf916d7a40, 0x00007fdf916d7c90] +Event: 0.328 Thread 0x00007fdfa81c3ed0 nmethod 1415 0x00007fdf916d7d10 code [0x00007fdf916d7ee0, 0x00007fdf916d82f0] +Event: 0.328 Thread 0x00007fdef025bc90 nmethod 1413 0x00007fdf916d8410 code [0x00007fdf916d86a0, 0x00007fdf916d9070] +Event: 0.329 Thread 0x00007fdfa81c3ed0 1420 3 java.util.ImmutableCollections$ListN::size (6 bytes) +Event: 0.329 Thread 0x00007fdfa81c3ed0 nmethod 1420 0x00007fdf916d9310 code [0x00007fdf916d94a0, 0x00007fdf916d95b0] + +GC Heap History (0 events): +No events + +Dll operation events (8 events): +Event: 0.001 Loaded shared library /usr/lib/jvm/java-17-openjdk-amd64/lib/libjava.so +Event: 0.010 Loaded shared library /usr/lib/jvm/java-17-openjdk-amd64/lib/libjsvml.so +Event: 0.017 Loaded shared library /usr/lib/jvm/java-17-openjdk-amd64/lib/libnio.so +Event: 0.018 Loaded shared library /usr/lib/jvm/java-17-openjdk-amd64/lib/libzip.so +Event: 0.037 Loaded shared library /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement.so +Event: 0.039 Loaded shared library /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement_ext.so +Event: 0.047 Loaded shared library /usr/lib/jvm/java-17-openjdk-amd64/lib/libjimage.so +Event: 0.287 Loaded shared library /usr/local/lib/libtidesdb_jni.so + +Deoptimization events (20 events): +Event: 0.249 Thread 0x00007fdfa8014510 DEOPT PACKING pc=0x00007fdf98fe57a0 sp=0x00007fdfadffcb40 +Event: 0.249 Thread 0x00007fdfa8014510 DEOPT UNPACKING pc=0x00007fdf988b8b19 sp=0x00007fdfadffca68 mode 2 +Event: 0.256 Thread 0x00007fdfa8014510 Uncommon trap: trap_request=0xffffff45 fr.pc=0x00007fdf98fd5080 relative=0x0000000000000260 +Event: 0.256 Thread 0x00007fdfa8014510 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00007fdf98fd5080 method=java.util.concurrent.ConcurrentHashMap.get(Ljava/lang/Object;)Ljava/lang/Object; @ 86 c2 +Event: 0.256 Thread 0x00007fdfa8014510 DEOPT PACKING pc=0x00007fdf98fd5080 sp=0x00007fdfadffca90 +Event: 0.256 Thread 0x00007fdfa8014510 DEOPT UNPACKING pc=0x00007fdf988b8b19 sp=0x00007fdfadffca28 mode 2 +Event: 0.268 Thread 0x00007fdfa8014510 DEOPT PACKING pc=0x00007fdf914e0a23 sp=0x00007fdfadffb7f0 +Event: 0.268 Thread 0x00007fdfa8014510 DEOPT UNPACKING pc=0x00007fdf988b964f sp=0x00007fdfadffac70 mode 0 +Event: 0.274 Thread 0x00007fdfa8014510 Uncommon trap: trap_request=0xffffff45 fr.pc=0x00007fdf98fbe0b8 relative=0x0000000000000218 +Event: 0.274 Thread 0x00007fdfa8014510 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00007fdf98fbe0b8 method=java.lang.String.startsWith(Ljava/lang/String;I)Z @ 1 c2 +Event: 0.274 Thread 0x00007fdfa8014510 DEOPT PACKING pc=0x00007fdf98fbe0b8 sp=0x00007fdfadffaa50 +Event: 0.274 Thread 0x00007fdfa8014510 DEOPT UNPACKING pc=0x00007fdf988b8b19 sp=0x00007fdfadffa9d8 mode 2 +Event: 0.285 Thread 0x00007fdfa8014510 Uncommon trap: trap_request=0xffffff45 fr.pc=0x00007fdf98fce068 relative=0x0000000000000048 +Event: 0.285 Thread 0x00007fdfa8014510 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00007fdf98fce068 method=java.lang.CharacterData.of(I)Ljava/lang/CharacterData; @ 4 c2 +Event: 0.285 Thread 0x00007fdfa8014510 DEOPT PACKING pc=0x00007fdf98fce068 sp=0x00007fdfadffb020 +Event: 0.285 Thread 0x00007fdfa8014510 DEOPT UNPACKING pc=0x00007fdf988b8b19 sp=0x00007fdfadffafe0 mode 2 +Event: 0.286 Thread 0x00007fdfa8014510 Uncommon trap: trap_request=0xffffff45 fr.pc=0x00007fdf98fb5cc0 relative=0x00000000000001a0 +Event: 0.286 Thread 0x00007fdfa8014510 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00007fdf98fb5cc0 method=java.lang.String.isLatin1()Z @ 10 c2 +Event: 0.286 Thread 0x00007fdfa8014510 DEOPT PACKING pc=0x00007fdf98fb5cc0 sp=0x00007fdfadffb890 +Event: 0.286 Thread 0x00007fdfa8014510 DEOPT UNPACKING pc=0x00007fdf988b8b19 sp=0x00007fdfadffb7e0 mode 2 + +Classes unloaded (0 events): +No events + +Classes redefined (0 events): +No events + +Internal exceptions (20 events): +Event: 0.196 Thread 0x00007fdfa8014510 Exception (0x00000005408cf268) +thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] +Event: 0.198 Thread 0x00007fdfa8014510 Exception (0x00000005408f42d8) +thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] +Event: 0.198 Thread 0x00007fdfa8014510 Exception (0x00000005408f7c58) +thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] +Event: 0.198 Thread 0x00007fdfa8014510 Exception (0x0000000540900118) +thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] +Event: 0.204 Thread 0x00007fdfa8014510 Exception (0x0000000540987408) +thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] +Event: 0.207 Thread 0x00007fdfa8014510 Exception (0x00000005409a7350) +thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 826] +Event: 0.207 Thread 0x00007fdfa8014510 Exception (0x00000005409a9fc8) +thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 826] +Event: 0.207 Thread 0x00007fdfa8014510 Exception (0x00000005409b3870) +thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] +Event: 0.223 Thread 0x00007fdfa8014510 Exception (0x0000000540b14b60) +thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] +Event: 0.223 Thread 0x00007fdfa8014510 Exception (0x0000000540b18488) +thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 826] +Event: 0.225 Thread 0x00007fdfa8014510 Exception (0x0000000540b37770) +thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] +Event: 0.231 Thread 0x00007fdfa8014510 Exception (0x0000000540bb0230) +thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] +Event: 0.240 Thread 0x00007fdfa8014510 Exception (0x0000000540c8db48) +thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] +Event: 0.244 Thread 0x00007fdfa8014510 Exception (0x0000000540cfdd50) +thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] +Event: 0.254 Thread 0x00007fdfa8014510 Exception (0x0000000540de3688) +thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] +Event: 0.263 Thread 0x00007fdfa8014510 Exception (0x0000000540e97470) +thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] +Event: 0.263 Thread 0x00007fdfa8014510 Exception (0x0000000540e9c028) +thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] +Event: 0.264 Thread 0x00007fdfa8014510 Exception (0x0000000540ead3f0) +thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] +Event: 0.265 Thread 0x00007fdfa8014510 Exception (0x0000000540eb11e8) +thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 826] +Event: 0.335 Thread 0x00007fdfa8014510 Exception > (0x0000000540084d50) +thrown [./src/hotspot/share/prims/jni.cpp, line 1073] + +VM Operations (20 events): +Event: 0.109 Executing VM operation: HandshakeAllThreads +Event: 0.109 Executing VM operation: HandshakeAllThreads done +Event: 0.153 Executing VM operation: HandshakeAllThreads +Event: 0.153 Executing VM operation: HandshakeAllThreads done +Event: 0.201 Executing VM operation: ICBufferFull +Event: 0.201 Executing VM operation: ICBufferFull done +Event: 0.202 Executing VM operation: HandshakeAllThreads +Event: 0.202 Executing VM operation: HandshakeAllThreads done +Event: 0.210 Executing VM operation: HandshakeAllThreads +Event: 0.210 Executing VM operation: HandshakeAllThreads done +Event: 0.235 Executing VM operation: HandshakeAllThreads +Event: 0.235 Executing VM operation: HandshakeAllThreads done +Event: 0.245 Executing VM operation: HandshakeAllThreads +Event: 0.245 Executing VM operation: HandshakeAllThreads done +Event: 0.267 Executing VM operation: HandshakeAllThreads +Event: 0.267 Executing VM operation: HandshakeAllThreads done +Event: 0.274 Executing VM operation: HandshakeAllThreads +Event: 0.274 Executing VM operation: HandshakeAllThreads done +Event: 0.285 Executing VM operation: HandshakeAllThreads +Event: 0.285 Executing VM operation: HandshakeAllThreads done + +Events (20 events): +Event: 0.282 loading class java/lang/constant/DirectMethodHandleDesc$1 +Event: 0.282 loading class java/lang/constant/DirectMethodHandleDesc$1 done +Event: 0.282 loading class java/lang/constant/PrimitiveClassDescImpl +Event: 0.282 loading class java/lang/constant/DynamicConstantDesc +Event: 0.282 loading class java/lang/constant/DynamicConstantDesc done +Event: 0.282 loading class java/lang/constant/PrimitiveClassDescImpl done +Event: 0.282 loading class java/lang/constant/DynamicConstantDesc$AnonymousDynamicConstantDesc +Event: 0.282 loading class java/lang/constant/DynamicConstantDesc$AnonymousDynamicConstantDesc done +Event: 0.282 loading class sun/nio/fs/UnixFileModeAttribute +Event: 0.282 loading class sun/nio/fs/UnixFileModeAttribute done +Event: 0.283 loading class sun/nio/fs/UnixFileModeAttribute$1 +Event: 0.283 loading class sun/nio/fs/UnixFileModeAttribute$1 done +Event: 0.283 loading class jdk/internal/reflect/UnsafeObjectFieldAccessorImpl +Event: 0.283 loading class jdk/internal/reflect/UnsafeObjectFieldAccessorImpl done +Event: 0.284 loading class java/time/format/DateTimeParseException +Event: 0.284 loading class java/time/DateTimeException +Event: 0.284 loading class java/time/DateTimeException done +Event: 0.284 loading class java/time/format/DateTimeParseException done +Event: 0.287 loading class java/lang/UnsatisfiedLinkError +Event: 0.287 loading class java/lang/UnsatisfiedLinkError done + + +Dynamic libraries: +513000000-542000000 rw-p 00000000 00:00 0 +542000000-7ff000000 ---p 00000000 00:00 0 +7ff000000-7ff700000 rw-p 00000000 00:00 0 +7ff700000-7ff775000 rw-p 00c75000 08:14 11213468 /usr/lib/jvm/java-17-openjdk-amd64/lib/server/classes.jsa +7ff775000-7ff800000 rw-p 00000000 00:00 0 +7ff800000-7ff877000 rw-p 00bfe000 08:14 11213468 /usr/lib/jvm/java-17-openjdk-amd64/lib/server/classes.jsa +7ff877000-800000000 rw-p 00000000 00:00 0 +5608965ab000-5608965ac000 r--p 00000000 08:14 11213397 /usr/lib/jvm/java-17-openjdk-amd64/bin/java +5608965ac000-5608965ad000 r-xp 00001000 08:14 11213397 /usr/lib/jvm/java-17-openjdk-amd64/bin/java +5608965ad000-5608965ae000 r--p 00002000 08:14 11213397 /usr/lib/jvm/java-17-openjdk-amd64/bin/java +5608965ae000-5608965af000 r--p 00002000 08:14 11213397 /usr/lib/jvm/java-17-openjdk-amd64/bin/java +5608965af000-5608965b0000 rw-p 00003000 08:14 11213397 /usr/lib/jvm/java-17-openjdk-amd64/bin/java +5608983cf000-560898416000 rw-p 00000000 00:00 0 [heap] +7fde97ffe000-7fdeb8021000 rw-p 00000000 00:00 0 +7fdeb8021000-7fdebc000000 ---p 00000000 00:00 0 +7fdebc000000-7fdebc021000 rw-p 00000000 00:00 0 +7fdebc021000-7fdec0000000 ---p 00000000 00:00 0 +7fdec0000000-7fdec0021000 rw-p 00000000 00:00 0 +7fdec0021000-7fdec4000000 ---p 00000000 00:00 0 +7fdec4000000-7fdec4021000 rw-p 00000000 00:00 0 +7fdec4021000-7fdec8000000 ---p 00000000 00:00 0 +7fdec8000000-7fdec818d000 rw-p 00000000 00:00 0 +7fdec818d000-7fdecc000000 ---p 00000000 00:00 0 +7fdecc000000-7fdeccc2e000 rw-p 00000000 00:00 0 +7fdeccc2e000-7fded0000000 ---p 00000000 00:00 0 +7fded0000000-7fded0be8000 rw-p 00000000 00:00 0 +7fded0be8000-7fded4000000 ---p 00000000 00:00 0 +7fded4000000-7fded4176000 rw-p 00000000 00:00 0 +7fded4176000-7fded8000000 ---p 00000000 00:00 0 +7fded8000000-7fded8021000 rw-p 00000000 00:00 0 +7fded8021000-7fdedc000000 ---p 00000000 00:00 0 +7fdedc000000-7fdedc021000 rw-p 00000000 00:00 0 +7fdedc021000-7fdee0000000 ---p 00000000 00:00 0 +7fdee0000000-7fdee0021000 rw-p 00000000 00:00 0 +7fdee0021000-7fdee4000000 ---p 00000000 00:00 0 +7fdee4000000-7fdee43a4000 rw-p 00000000 00:00 0 +7fdee43a4000-7fdee8000000 ---p 00000000 00:00 0 +7fdee8000000-7fdee8021000 rw-p 00000000 00:00 0 +7fdee8021000-7fdeec000000 ---p 00000000 00:00 0 +7fdeec000000-7fdeec021000 rw-p 00000000 00:00 0 +7fdeec021000-7fdef0000000 ---p 00000000 00:00 0 +7fdef0000000-7fdef03c9000 rw-p 00000000 00:00 0 +7fdef03c9000-7fdef4000000 ---p 00000000 00:00 0 +7fdef4000000-7fdef4021000 rw-p 00000000 00:00 0 +7fdef4021000-7fdef8000000 ---p 00000000 00:00 0 +7fdef8000000-7fdef8021000 rw-p 00000000 00:00 0 +7fdef8021000-7fdefc000000 ---p 00000000 00:00 0 +7fdefc000000-7fdefd038000 rw-p 00000000 00:00 0 +7fdefd038000-7fdf00000000 ---p 00000000 00:00 0 +7fdf00000000-7fdf00021000 rw-p 00000000 00:00 0 +7fdf00021000-7fdf04000000 ---p 00000000 00:00 0 +7fdf04000000-7fdf04021000 rw-p 00000000 00:00 0 +7fdf04021000-7fdf08000000 ---p 00000000 00:00 0 +7fdf08000000-7fdf08021000 rw-p 00000000 00:00 0 +7fdf08021000-7fdf0c000000 ---p 00000000 00:00 0 +7fdf0c000000-7fdf0c021000 rw-p 00000000 00:00 0 +7fdf0c021000-7fdf10000000 ---p 00000000 00:00 0 +7fdf10000000-7fdf10021000 rw-p 00000000 00:00 0 +7fdf10021000-7fdf14000000 ---p 00000000 00:00 0 +7fdf15d72000-7fdf15ffe000 rw-p 00000000 00:00 0 +7fdf15ffe000-7fdf15fff000 ---p 00000000 00:00 0 +7fdf15fff000-7fdf167ff000 rw-p 00000000 00:00 0 +7fdf167ff000-7fdf16800000 ---p 00000000 00:00 0 +7fdf16800000-7fdf17000000 rw-p 00000000 00:00 0 +7fdf17000000-7fdf17bc6000 rw-p 00001000 08:14 11213468 /usr/lib/jvm/java-17-openjdk-amd64/lib/server/classes.jsa +7fdf17bc6000-7fdf18000000 ---p 00000000 00:00 0 +7fdf18000000-7fdf18030000 rw-p 00000000 00:00 0 +7fdf18030000-7fdf18070000 rw-p 00000000 00:00 0 +7fdf18070000-7fdf180d0000 rw-p 00000000 00:00 0 +7fdf180d0000-7fdf180f0000 rw-p 00000000 00:00 0 +7fdf180f0000-7fdf58000000 ---p 00000000 00:00 0 +7fdf58000000-7fdf58021000 rw-p 00000000 00:00 0 +7fdf58021000-7fdf5c000000 ---p 00000000 00:00 0 +7fdf5c000000-7fdf5c320000 rw-p 00000000 00:00 0 +7fdf5c320000-7fdf5c400000 ---p 00000000 00:00 0 +7fdf5c400000-7fdf5c6d0000 rw-p 00000000 00:00 0 +7fdf5c6d0000-7fdf60000000 ---p 00000000 00:00 0 +7fdf60000000-7fdf60021000 rw-p 00000000 00:00 0 +7fdf60021000-7fdf64000000 ---p 00000000 00:00 0 +7fdf64048000-7fdf64049000 ---p 00000000 00:00 0 +7fdf64049000-7fdf64849000 rw-p 00000000 00:00 0 +7fdf64849000-7fdf6484a000 ---p 00000000 00:00 0 +7fdf6484a000-7fdf6504a000 rw-p 00000000 00:00 0 +7fdf6504a000-7fdf6504b000 ---p 00000000 00:00 0 +7fdf6504b000-7fdf6584b000 rw-p 00000000 00:00 0 +7fdf6584b000-7fdf6584f000 r--p 00000000 08:14 10908334 /usr/lib/x86_64-linux-gnu/libzstd.so.1.5.4 +7fdf6584f000-7fdf658ed000 r-xp 00004000 08:14 10908334 /usr/lib/x86_64-linux-gnu/libzstd.so.1.5.4 +7fdf658ed000-7fdf658fd000 r--p 000a2000 08:14 10908334 /usr/lib/x86_64-linux-gnu/libzstd.so.1.5.4 +7fdf658fd000-7fdf658fe000 r--p 000b1000 08:14 10908334 /usr/lib/x86_64-linux-gnu/libzstd.so.1.5.4 +7fdf658fe000-7fdf658ff000 rw-p 000b2000 08:14 10908334 /usr/lib/x86_64-linux-gnu/libzstd.so.1.5.4 +7fdf658ff000-7fdf65903000 ---p 00000000 00:00 0 +7fdf65903000-7fdf659ff000 rw-p 00000000 00:00 0 +7fdf659ff000-7fdf65a03000 ---p 00000000 00:00 0 +7fdf65a03000-7fdf65aff000 rw-p 00000000 00:00 0 +7fdf65aff000-7fdf65b03000 ---p 00000000 00:00 0 +7fdf65b03000-7fdf65bff000 rw-p 00000000 00:00 0 +7fdf65bff000-7fdf65c03000 ---p 00000000 00:00 0 +7fdf65c03000-7fdf65cff000 rw-p 00000000 00:00 0 +7fdf65cff000-7fdf65d03000 ---p 00000000 00:00 0 +7fdf65d03000-7fdf65dff000 rw-p 00000000 00:00 0 +7fdf65dff000-7fdf65e03000 ---p 00000000 00:00 0 +7fdf65e03000-7fdf65eff000 rw-p 00000000 00:00 0 +7fdf65eff000-7fdf65f00000 ---p 00000000 00:00 0 +7fdf65f00000-7fdf68021000 rw-p 00000000 00:00 0 +7fdf68021000-7fdf6c000000 ---p 00000000 00:00 0 +7fdf6c000000-7fdf6c021000 rw-p 00000000 00:00 0 +7fdf6c021000-7fdf70000000 ---p 00000000 00:00 0 +7fdf70000000-7fdf70021000 rw-p 00000000 00:00 0 +7fdf70021000-7fdf74000000 ---p 00000000 00:00 0 +7fdf74000000-7fdf74004000 ---p 00000000 00:00 0 +7fdf74004000-7fdf74100000 rw-p 00000000 00:00 0 +7fdf74100000-7fdf74104000 ---p 00000000 00:00 0 +7fdf74104000-7fdf74200000 rw-p 00000000 00:00 0 +7fdf74200000-7fdf74204000 ---p 00000000 00:00 0 +7fdf74204000-7fdf74300000 rw-p 00000000 00:00 0 +7fdf74300000-7fdf74304000 ---p 00000000 00:00 0 +7fdf74304000-7fdf74400000 rw-p 00000000 00:00 0 +7fdf74400000-7fdf74404000 ---p 00000000 00:00 0 +7fdf74404000-7fdf74500000 rw-p 00000000 00:00 0 +7fdf74500000-7fdf74504000 ---p 00000000 00:00 0 +7fdf74504000-7fdf74600000 rw-p 00000000 00:00 0 +7fdf74600000-7fdf74604000 ---p 00000000 00:00 0 +7fdf74604000-7fdf74700000 rw-p 00000000 00:00 0 +7fdf74700000-7fdf74704000 ---p 00000000 00:00 0 +7fdf74704000-7fdf74800000 rw-p 00000000 00:00 0 +7fdf74800000-7fdf74d74000 r--p 00000000 08:14 10879460 /usr/lib/locale/locale-archive +7fdf74d8e000-7fdf74d96000 r--p 00000000 08:14 11018131 /usr/local/lib/libtidesdb.so +7fdf74d96000-7fdf74ddf000 r-xp 00008000 08:14 11018131 /usr/local/lib/libtidesdb.so +7fdf74ddf000-7fdf74ded000 r--p 00051000 08:14 11018131 /usr/local/lib/libtidesdb.so +7fdf74ded000-7fdf74dee000 r--p 0005e000 08:14 11018131 /usr/local/lib/libtidesdb.so +7fdf74dee000-7fdf74def000 rw-p 0005f000 08:14 11018131 /usr/local/lib/libtidesdb.so +7fdf74def000-7fdf74df0000 rw-p 00000000 00:00 0 +7fdf74df0000-7fdf74df4000 ---p 00000000 00:00 0 +7fdf74df4000-7fdf74ef0000 rw-p 00000000 00:00 0 +7fdf74ef0000-7fdf74ef4000 ---p 00000000 00:00 0 +7fdf74ef4000-7fdf74ff0000 rw-p 00000000 00:00 0 +7fdf74ff0000-7fdf74ff1000 ---p 00000000 00:00 0 +7fdf74ff1000-7fdf750f1000 rw-p 00000000 00:00 0 +7fdf750f1000-7fdf750f6000 r--p 00000000 08:14 11213452 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjsvml.so +7fdf750f6000-7fdf75137000 r-xp 00005000 08:14 11213452 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjsvml.so +7fdf75137000-7fdf751c0000 r--p 00046000 08:14 11213452 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjsvml.so +7fdf751c0000-7fdf751c1000 r--p 000ce000 08:14 11213452 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjsvml.so +7fdf751c1000-7fdf751c2000 rw-p 000cf000 08:14 11213452 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjsvml.so +7fdf751c2000-7fdf75243000 rw-p 00000000 00:00 0 +7fdf75243000-7fdf75244000 ---p 00000000 00:00 0 +7fdf75244000-7fdf75344000 rw-p 00000000 00:00 0 +7fdf75344000-7fdf75345000 ---p 00000000 00:00 0 +7fdf75345000-7fdf76308000 rw-p 00000000 00:00 0 +7fdf76308000-7fdf81248000 ---p 00000000 00:00 0 +7fdf81248000-7fdf81e48000 rw-p 00000000 00:00 0 +7fdf81e48000-7fdf8cd88000 ---p 00000000 00:00 0 +7fdf8cd88000-7fdf8cf40000 rw-p 00000000 00:00 0 +7fdf8cf40000-7fdf8e528000 ---p 00000000 00:00 0 +7fdf8e528000-7fdf8e6a8000 rw-p 00000000 00:00 0 +7fdf8e6a8000-7fdf8fc90000 ---p 00000000 00:00 0 +7fdf8fc90000-7fdf8fe10000 rw-p 00000000 00:00 0 +7fdf8fe10000-7fdf913f8000 ---p 00000000 00:00 0 +7fdf913f8000-7fdf91400000 rw-p 00000000 00:00 0 +7fdf91400000-7fdf916e0000 rwxp 00000000 00:00 0 +7fdf916e0000-7fdf9885f000 ---p 00000000 00:00 0 +7fdf9885f000-7fdf98b2f000 rwxp 00000000 00:00 0 +7fdf98b2f000-7fdf98fa0000 ---p 00000000 00:00 0 +7fdf98fa0000-7fdf99210000 rwxp 00000000 00:00 0 +7fdf99210000-7fdfa0400000 ---p 00000000 00:00 0 +7fdfa0400000-7fdfa7e68000 r--s 00000000 08:14 11213467 /usr/lib/jvm/java-17-openjdk-amd64/lib/modules +7fdfa7ea4000-7fdfabfe5000 rw-p 00000000 00:00 0 +7fdfabfe5000-7fdfac000000 ---p 00000000 00:00 0 +7fdfac021000-7fdfac024000 r--p 00000000 08:14 10907948 /usr/lib/x86_64-linux-gnu/liblz4.so.1.9.4 +7fdfac024000-7fdfac03f000 r-xp 00003000 08:14 10907948 /usr/lib/x86_64-linux-gnu/liblz4.so.1.9.4 +7fdfac03f000-7fdfac042000 r--p 0001e000 08:14 10907948 /usr/lib/x86_64-linux-gnu/liblz4.so.1.9.4 +7fdfac042000-7fdfac043000 r--p 00020000 08:14 10907948 /usr/lib/x86_64-linux-gnu/liblz4.so.1.9.4 +7fdfac043000-7fdfac044000 rw-p 00021000 08:14 10907948 /usr/lib/x86_64-linux-gnu/liblz4.so.1.9.4 +7fdfac044000-7fdfac98e000 rw-p 00000000 00:00 0 +7fdfac98e000-7fdfac98f000 ---p 00000000 00:00 0 +7fdfac98f000-7fdfaca8f000 rw-p 00000000 00:00 0 +7fdfaca8f000-7fdfaca90000 ---p 00000000 00:00 0 +7fdfaca90000-7fdfacb90000 rw-p 00000000 00:00 0 +7fdfacb90000-7fdfacb91000 ---p 00000000 00:00 0 +7fdfacb91000-7fdfada33000 rw-p 00000000 00:00 0 +7fdfada33000-7fdfadb17000 ---p 00000000 00:00 0 +7fdfadb17000-7fdfadb1d000 rw-p 00000000 00:00 0 +7fdfadb1d000-7fdfadc00000 ---p 00000000 00:00 0 +7fdfadc00000-7fdfadc9c000 r--p 00000000 08:14 10888123 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.32 +7fdfadc9c000-7fdfaddcd000 r-xp 0009c000 08:14 10888123 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.32 +7fdfaddcd000-7fdfade5a000 r--p 001cd000 08:14 10888123 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.32 +7fdfade5a000-7fdfade65000 r--p 0025a000 08:14 10888123 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.32 +7fdfade65000-7fdfade68000 rw-p 00265000 08:14 10888123 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.32 +7fdfade68000-7fdfade6c000 rw-p 00000000 00:00 0 +7fdfade9b000-7fdfadea2000 r--s 00000000 08:14 10965240 /usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache +7fdfadea2000-7fdfadf00000 rw-p 00000000 00:00 0 +7fdfadf00000-7fdfadf04000 ---p 00000000 00:00 0 +7fdfadf04000-7fdfae000000 rw-p 00000000 00:00 0 +7fdfae000000-7fdfae251000 r--p 00000000 08:14 11213471 /usr/lib/jvm/java-17-openjdk-amd64/lib/server/libjvm.so +7fdfae251000-7fdfaefb3000 r-xp 00251000 08:14 11213471 /usr/lib/jvm/java-17-openjdk-amd64/lib/server/libjvm.so +7fdfaefb3000-7fdfaf233000 r--p 00fb3000 08:14 11213471 /usr/lib/jvm/java-17-openjdk-amd64/lib/server/libjvm.so +7fdfaf233000-7fdfaf2eb000 r--p 01233000 08:14 11213471 /usr/lib/jvm/java-17-openjdk-amd64/lib/server/libjvm.so +7fdfaf2eb000-7fdfaf320000 rw-p 012eb000 08:14 11213471 /usr/lib/jvm/java-17-openjdk-amd64/lib/server/libjvm.so +7fdfaf320000-7fdfaf37a000 rw-p 00000000 00:00 0 +7fdfaf37e000-7fdfaf381000 r--p 00000000 08:14 10881736 /usr/lib/x86_64-linux-gnu/libsnappy.so.1.1.9 +7fdfaf381000-7fdfaf386000 r-xp 00003000 08:14 10881736 /usr/lib/x86_64-linux-gnu/libsnappy.so.1.1.9 +7fdfaf386000-7fdfaf387000 r--p 00008000 08:14 10881736 /usr/lib/x86_64-linux-gnu/libsnappy.so.1.1.9 +7fdfaf387000-7fdfaf388000 r--p 00009000 08:14 10881736 /usr/lib/x86_64-linux-gnu/libsnappy.so.1.1.9 +7fdfaf388000-7fdfaf389000 rw-p 0000a000 08:14 10881736 /usr/lib/x86_64-linux-gnu/libsnappy.so.1.1.9 +7fdfaf389000-7fdfaf38c000 r--p 00000000 08:14 11022710 /usr/local/lib/libtidesdb_jni.so +7fdfaf38c000-7fdfaf390000 r-xp 00003000 08:14 11022710 /usr/local/lib/libtidesdb_jni.so +7fdfaf390000-7fdfaf391000 r--p 00007000 08:14 11022710 /usr/local/lib/libtidesdb_jni.so +7fdfaf391000-7fdfaf392000 r--p 00007000 08:14 11022710 /usr/local/lib/libtidesdb_jni.so +7fdfaf392000-7fdfaf393000 rw-p 00008000 08:14 11022710 /usr/local/lib/libtidesdb_jni.so +7fdfaf393000-7fdfaf395000 r--p 00000000 08:14 11213456 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement_ext.so +7fdfaf395000-7fdfaf398000 r-xp 00002000 08:14 11213456 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement_ext.so +7fdfaf398000-7fdfaf39a000 r--p 00005000 08:14 11213456 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement_ext.so +7fdfaf39a000-7fdfaf39b000 r--p 00006000 08:14 11213456 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement_ext.so +7fdfaf39b000-7fdfaf39c000 rw-p 00007000 08:14 11213456 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement_ext.so +7fdfaf39c000-7fdfaf3a0000 r--p 00000000 08:14 11213458 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnet.so +7fdfaf3a0000-7fdfaf3ae000 r-xp 00004000 08:14 11213458 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnet.so +7fdfaf3ae000-7fdfaf3b2000 r--p 00012000 08:14 11213458 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnet.so +7fdfaf3b2000-7fdfaf3b3000 r--p 00015000 08:14 11213458 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnet.so +7fdfaf3b3000-7fdfaf3b4000 rw-p 00016000 08:14 11213458 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnet.so +7fdfaf3b4000-7fdfaf3bb000 r--p 00000000 08:14 11213459 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnio.so +7fdfaf3bb000-7fdfaf3c4000 r-xp 00007000 08:14 11213459 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnio.so +7fdfaf3c4000-7fdfaf3c8000 r--p 00010000 08:14 11213459 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnio.so +7fdfaf3c8000-7fdfaf3c9000 r--p 00014000 08:14 11213459 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnio.so +7fdfaf3c9000-7fdfaf3ca000 rw-p 00015000 08:14 11213459 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnio.so +7fdfaf3ca000-7fdfaf3d0000 rw-p 00000000 00:00 0 +7fdfaf3d0000-7fdfaf3d9000 ---p 00000000 00:00 0 +7fdfaf3d9000-7fdfaf3e5000 r--p 00000000 08:14 11213445 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjava.so +7fdfaf3e5000-7fdfaf3f7000 r-xp 0000c000 08:14 11213445 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjava.so +7fdfaf3f7000-7fdfaf3fd000 r--p 0001e000 08:14 11213445 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjava.so +7fdfaf3fd000-7fdfaf3fe000 r--p 00023000 08:14 11213445 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjava.so +7fdfaf3fe000-7fdfaf3ff000 rw-p 00024000 08:14 11213445 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjava.so +7fdfaf3ff000-7fdfaf400000 rw-p 00000000 00:00 0 +7fdfaf400000-7fdfaf422000 r--p 00000000 08:14 10888103 /usr/lib/x86_64-linux-gnu/libc.so.6 +7fdfaf422000-7fdfaf59a000 r-xp 00022000 08:14 10888103 /usr/lib/x86_64-linux-gnu/libc.so.6 +7fdfaf59a000-7fdfaf5f2000 r--p 0019a000 08:14 10888103 /usr/lib/x86_64-linux-gnu/libc.so.6 +7fdfaf5f2000-7fdfaf5f6000 r--p 001f1000 08:14 10888103 /usr/lib/x86_64-linux-gnu/libc.so.6 +7fdfaf5f6000-7fdfaf5f8000 rw-p 001f5000 08:14 10888103 /usr/lib/x86_64-linux-gnu/libc.so.6 +7fdfaf5f8000-7fdfaf605000 rw-p 00000000 00:00 0 +7fdfaf605000-7fdfaf607000 r--p 00000000 08:14 11213454 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement.so +7fdfaf607000-7fdfaf608000 r-xp 00002000 08:14 11213454 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement.so +7fdfaf608000-7fdfaf609000 r--p 00003000 08:14 11213454 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement.so +7fdfaf609000-7fdfaf60a000 r--p 00003000 08:14 11213454 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement.so +7fdfaf60a000-7fdfaf60b000 rw-p 00004000 08:14 11213454 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement.so +7fdfaf60b000-7fdfaf60e000 r--p 00000000 08:14 10888119 /usr/lib/x86_64-linux-gnu/libgcc_s.so.1 +7fdfaf60e000-7fdfaf629000 r-xp 00003000 08:14 10888119 /usr/lib/x86_64-linux-gnu/libgcc_s.so.1 +7fdfaf629000-7fdfaf62d000 r--p 0001e000 08:14 10888119 /usr/lib/x86_64-linux-gnu/libgcc_s.so.1 +7fdfaf62d000-7fdfaf62e000 r--p 00021000 08:14 10888119 /usr/lib/x86_64-linux-gnu/libgcc_s.so.1 +7fdfaf62e000-7fdfaf62f000 rw-p 00022000 08:14 10888119 /usr/lib/x86_64-linux-gnu/libgcc_s.so.1 +7fdfaf62f000-7fdfaf63d000 r--p 00000000 08:14 10888109 /usr/lib/x86_64-linux-gnu/libm.so.6 +7fdfaf63d000-7fdfaf6bb000 r-xp 0000e000 08:14 10888109 /usr/lib/x86_64-linux-gnu/libm.so.6 +7fdfaf6bb000-7fdfaf716000 r--p 0008c000 08:14 10888109 /usr/lib/x86_64-linux-gnu/libm.so.6 +7fdfaf716000-7fdfaf717000 r--p 000e6000 08:14 10888109 /usr/lib/x86_64-linux-gnu/libm.so.6 +7fdfaf717000-7fdfaf718000 rw-p 000e7000 08:14 10888109 /usr/lib/x86_64-linux-gnu/libm.so.6 +7fdfaf718000-7fdfaf71b000 rw-p 00000000 00:00 0 +7fdfaf71b000-7fdfaf71d000 r--p 00000000 08:14 11213449 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjli.so +7fdfaf71d000-7fdfaf727000 r-xp 00002000 08:14 11213449 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjli.so +7fdfaf727000-7fdfaf72a000 r--p 0000c000 08:14 11213449 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjli.so +7fdfaf72a000-7fdfaf72b000 r--p 0000e000 08:14 11213449 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjli.so +7fdfaf72b000-7fdfaf72c000 rw-p 0000f000 08:14 11213449 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjli.so +7fdfaf72c000-7fdfaf72f000 r--p 00000000 08:14 10908333 /usr/lib/x86_64-linux-gnu/libz.so.1.2.13 +7fdfaf72f000-7fdfaf741000 r-xp 00003000 08:14 10908333 /usr/lib/x86_64-linux-gnu/libz.so.1.2.13 +7fdfaf741000-7fdfaf748000 r--p 00015000 08:14 10908333 /usr/lib/x86_64-linux-gnu/libz.so.1.2.13 +7fdfaf748000-7fdfaf749000 r--p 0001b000 08:14 10908333 /usr/lib/x86_64-linux-gnu/libz.so.1.2.13 +7fdfaf749000-7fdfaf74a000 rw-p 0001c000 08:14 10908333 /usr/lib/x86_64-linux-gnu/libz.so.1.2.13 +7fdfaf74d000-7fdfaf74f000 r--p 00000000 08:14 11213466 /usr/lib/jvm/java-17-openjdk-amd64/lib/libzip.so +7fdfaf74f000-7fdfaf754000 r-xp 00002000 08:14 11213466 /usr/lib/jvm/java-17-openjdk-amd64/lib/libzip.so +7fdfaf754000-7fdfaf756000 r--p 00007000 08:14 11213466 /usr/lib/jvm/java-17-openjdk-amd64/lib/libzip.so +7fdfaf756000-7fdfaf757000 r--p 00008000 08:14 11213466 /usr/lib/jvm/java-17-openjdk-amd64/lib/libzip.so +7fdfaf757000-7fdfaf758000 rw-p 00009000 08:14 11213466 /usr/lib/jvm/java-17-openjdk-amd64/lib/libzip.so +7fdfaf758000-7fdfaf760000 rw-s 00000000 08:14 18885539 /tmp/hsperfdata_agpmastersystem/2048325 +7fdfaf760000-7fdfaf761000 ---p 00000000 00:00 0 +7fdfaf761000-7fdfaf762000 r--p 00000000 00:00 0 +7fdfaf762000-7fdfaf763000 ---p 00000000 00:00 0 +7fdfaf763000-7fdfaf765000 r--p 00000000 08:14 11213448 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjimage.so +7fdfaf765000-7fdfaf768000 r-xp 00002000 08:14 11213448 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjimage.so +7fdfaf768000-7fdfaf769000 r--p 00005000 08:14 11213448 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjimage.so +7fdfaf769000-7fdfaf76a000 r--p 00006000 08:14 11213448 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjimage.so +7fdfaf76a000-7fdfaf76b000 rw-p 00007000 08:14 11213448 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjimage.so +7fdfaf76b000-7fdfaf76d000 rw-p 00000000 00:00 0 +7fdfaf76d000-7fdfaf76e000 r--p 00000000 08:14 10887950 /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2 +7fdfaf76e000-7fdfaf796000 r-xp 00001000 08:14 10887950 /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2 +7fdfaf796000-7fdfaf7a0000 r--p 00029000 08:14 10887950 /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2 +7fdfaf7a0000-7fdfaf7a2000 r--p 00033000 08:14 10887950 /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2 +7fdfaf7a2000-7fdfaf7a4000 rw-p 00035000 08:14 10887950 /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2 +7fff848d9000-7fff848fb000 rw-p 00000000 00:00 0 [stack] +7fff849d7000-7fff849db000 r--p 00000000 00:00 0 [vvar] +7fff849db000-7fff849dd000 r-xp 00000000 00:00 0 [vdso] +ffffffffff600000-ffffffffff601000 --xp 00000000 00:00 0 [vsyscall] + + +VM Arguments: +jvm_args: -Djava.library.path=/usr/local/lib +java_command: /home/agpmastersystem/bnd/tidesdb-java/target/surefire/surefirebooter-20260313005509935_3.jar /home/agpmastersystem/bnd/tidesdb-java/target/surefire 2026-03-13T00-55-09_884-jvmRun1 surefire-20260313005509935_1tmp surefire_0-20260313005509935_2tmp +java_class_path (initial): /home/agpmastersystem/bnd/tidesdb-java/target/surefire/surefirebooter-20260313005509935_3.jar +Launcher Type: SUN_STANDARD + +[Global flags] + intx CICompilerCount = 12 {product} {ergonomic} + uint ConcGCThreads = 3 {product} {ergonomic} + uint G1ConcRefinementThreads = 13 {product} {ergonomic} + size_t G1HeapRegionSize = 8388608 {product} {ergonomic} + uintx GCDrainStackTargetSize = 64 {product} {ergonomic} + size_t InitialHeapSize = 788529152 {product} {ergonomic} + size_t MarkStackSize = 4194304 {product} {ergonomic} + size_t MaxHeapSize = 12566134784 {product} {ergonomic} + size_t MaxNewSize = 7532969984 {product} {ergonomic} + size_t MinHeapDeltaBytes = 8388608 {product} {ergonomic} + size_t MinHeapSize = 8388608 {product} {ergonomic} + uintx NonNMethodCodeHeapSize = 7602480 {pd product} {ergonomic} + uintx NonProfiledCodeHeapSize = 122027880 {pd product} {ergonomic} + uintx ProfiledCodeHeapSize = 122027880 {pd product} {ergonomic} + uintx ReservedCodeCacheSize = 251658240 {pd product} {ergonomic} + bool SegmentedCodeCache = true {product} {ergonomic} + size_t SoftMaxHeapSize = 12566134784 {manageable} {ergonomic} + bool UseCompressedClassPointers = true {product lp64_product} {ergonomic} + bool UseCompressedOops = true {product lp64_product} {ergonomic} + bool UseG1GC = true {product} {ergonomic} + +Logging: +Log output configuration: + #0: stdout all=warning uptime,level,tags + #1: stderr all=off uptime,level,tags + +Environment Variables: +PATH=/home/agpmastersystem/bin:/home/agpmastersystem/flutter/flutter/bin:/home/agpmastersystem/flutter/flutter/bin:/home/agpmastersystem/development/flutter/bin:/home/agpmastersystem/.local/bin:/home/agpmastersystem/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin:/home/agpmastersystem/.dotnet/tools:/home/agpmastersystem/.dotnet/tools:/home/agpmastersystem/julia-1.10.0/bin:/opt/zig/zig-linux-x86_64-0.13.0 +USERNAME=agpmastersystem +SHELL=/bin/bash +DISPLAY=:1 +LANG=en_US.UTF-8 +TERM=xterm-256color + +Active Locale: +LC_ALL=en_US.UTF-8 +LC_COLLATE=en_US.UTF-8 +LC_CTYPE=en_US.UTF-8 +LC_MESSAGES=en_US.UTF-8 +LC_MONETARY=en_US.UTF-8 +LC_NUMERIC=en_US.UTF-8 +LC_TIME=en_US.UTF-8 + +Signal Handlers: + SIGSEGV: crash_handler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, unblocked + SIGBUS: crash_handler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, unblocked + SIGFPE: crash_handler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, unblocked + SIGPIPE: javaSignalHandler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, blocked + SIGXFSZ: javaSignalHandler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, blocked + SIGILL: crash_handler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, unblocked + SIGUSR2: SR_handler in libjvm.so, mask=00000000000000000000000000000000, flags=SA_RESTART|SA_SIGINFO, blocked + SIGHUP: UserHandler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, blocked + SIGINT: UserHandler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, blocked + SIGTERM: UserHandler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, blocked + SIGQUIT: UserHandler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, blocked + SIGTRAP: crash_handler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, unblocked + + +Periodic native trim disabled + + +--------------- S Y S T E M --------------- + +OS: +DISTRIB_ID=Ubuntu +DISTRIB_RELEASE=23.04 +DISTRIB_CODENAME=lunar +DISTRIB_DESCRIPTION="Ubuntu 23.04" +uname: Linux 6.2.0-39-generic #40-Ubuntu SMP PREEMPT_DYNAMIC Tue Nov 14 14:18:00 UTC 2023 x86_64 +OS uptime: 8 days 10:11 hours +libc: glibc 2.37 NPTL 2.37 +rlimit (soft/hard): STACK 8192k/infinity , CORE 0k/infinity , NPROC 191244/191244 , NOFILE 1048576/1048576 , AS infinity/infinity , CPU infinity/infinity , DATA infinity/infinity , FSIZE infinity/infinity , MEMLOCK 6134892k/6134892k +load average: 5.12 5.31 6.67 + +/proc/meminfo: +MemTotal: 49079140 kB +MemFree: 445144 kB +MemAvailable: 20908832 kB +Buffers: 2064396 kB +Cached: 18416124 kB +SwapCached: 112372 kB +Active: 14739160 kB +Inactive: 31259668 kB +Active(anon): 2687800 kB +Inactive(anon): 23445264 kB +Active(file): 12051360 kB +Inactive(file): 7814404 kB +Unevictable: 1668 kB +Mlocked: 264 kB +SwapTotal: 8388604 kB +SwapFree: 5695484 kB +Zswap: 0 kB +Zswapped: 0 kB +Dirty: 5696 kB +Writeback: 16 kB +AnonPages: 25444804 kB +Mapped: 1261704 kB +Shmem: 614756 kB +KReclaimable: 1337760 kB +Slab: 1840504 kB +SReclaimable: 1337760 kB +SUnreclaim: 502744 kB +KernelStack: 44616 kB +PageTables: 184500 kB +SecPageTables: 0 kB +NFS_Unstable: 0 kB +Bounce: 0 kB +WritebackTmp: 0 kB +CommitLimit: 32928172 kB +Committed_AS: 90441240 kB +VmallocTotal: 34359738367 kB +VmallocUsed: 163580 kB +VmallocChunk: 0 kB +Percpu: 18176 kB +HardwareCorrupted: 0 kB +AnonHugePages: 10240 kB +ShmemHugePages: 2048 kB +ShmemPmdMapped: 0 kB +FileHugePages: 0 kB +FilePmdMapped: 0 kB +HugePages_Total: 0 +HugePages_Free: 0 +HugePages_Rsvd: 0 +HugePages_Surp: 0 +Hugepagesize: 2048 kB +Hugetlb: 0 kB +DirectMap4k: 2126020 kB +DirectMap2M: 41670656 kB +DirectMap1G: 7340032 kB + +/sys/kernel/mm/transparent_hugepage/enabled: always [madvise] never +/sys/kernel/mm/transparent_hugepage/defrag (defrag/compaction efforts parameter): always defer defer+madvise [madvise] never + +Process Memory: +Virtual Size: 16819916K (peak: 16819916K) +Resident Set Size: 190040K (peak: 190040K) (anon: 167512K, file: 22528K, shmem: 0K) +Swapped out: 0K +C-Heap outstanding allocations: 669781K, retained: 5826K +glibc malloc tunables: (default) + +/proc/sys/kernel/threads-max (system-wide limit on the number of threads): 382489 +/proc/sys/vm/max_map_count (maximum number of memory map areas a process may have): 65530 +/proc/sys/kernel/pid_max (system-wide limit on number of process identifiers): 4194304 + +container (cgroup) information: +container_type: cgroupv2 +cpu_cpuset_cpus: not supported +cpu_memory_nodes: not supported +active_processor_count: 16 +cpu_quota: not supported +cpu_period: not supported +cpu_shares: not supported +memory_limit_in_bytes: unlimited +memory_and_swap_limit_in_bytes: unlimited +memory_soft_limit_in_bytes: unlimited +memory_usage_in_bytes: 20275492 k +memory_max_usage_in_bytes: not supported +memory_swap_current_in_bytes: 651156 k +memory_swap_max_limit_in_bytes: unlimited +maximum number of tasks: 57373 +current number of tasks: 685 + +Steal ticks since vm start: 0 +Steal ticks percentage since vm start: 0.000 + +CPU: total 16 (initial active 16) (8 cores per cpu, 2 threads per core) family 6 model 167 stepping 1 microcode 0x5d, cx8, cmov, fxsr, ht, mmx, 3dnowpref, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, lzcnt, tsc, tscinvbit, avx, avx2, aes, erms, clmul, bmi1, bmi2, adx, avx512f, avx512dq, avx512cd, avx512bw, avx512vl, sha, fma, vzeroupper, avx512_vpopcntdq, avx512_vpclmulqdq, avx512_vaes, avx512_vnni, clflush, clflushopt, avx512_vbmi2, avx512_vbmi +CPU Model and flags from /proc/cpuinfo: +model name : 11th Gen Intel(R) Core(TM) i7-11700K @ 3.60GHz +flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid mpx avx512f avx512dq rdseed adx smap avx512ifma clflushopt intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp hwp_pkg_req avx512vbmi umip pku ospke avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg avx512_vpopcntdq rdpid fsrm md_clear flush_l1d arch_capabilities + +Online cpus: 0-15 +Offline cpus: +BIOS frequency limitation: +Frequency switch latency (ns): 0 +Available cpu frequencies: +Current governor: powersave +Core performance/turbo boost: + +Memory: 4k page, physical 49079140k(445144k free), swap 8388604k(5695484k free) +Page Sizes: 4k + +vm_info: OpenJDK 64-Bit Server VM (17.0.9+9-Ubuntu-123.04) for linux-amd64 JRE (17.0.9+9-Ubuntu-123.04), built on Oct 19 2023 08:33:16 by "buildd" with gcc 12.3.0 + +END. diff --git a/hs_err_pid2048993.log b/hs_err_pid2048993.log new file mode 100644 index 0000000..bfa6826 --- /dev/null +++ b/hs_err_pid2048993.log @@ -0,0 +1,1223 @@ +# +# A fatal error has been detected by the Java Runtime Environment: +# +# SIGSEGV (0xb) at pc=0x00007fd5d5ad79e8, pid=2048993, tid=2048994 +# +# JRE version: OpenJDK Runtime Environment (17.0.9+9) (build 17.0.9+9-Ubuntu-123.04) +# Java VM: OpenJDK 64-Bit Server VM (17.0.9+9-Ubuntu-123.04, mixed mode, sharing, tiered, compressed oops, compressed class ptrs, g1 gc, linux-amd64) +# Problematic frame: +# V [libjvm.so+0x8d79e8] jni_NewObject+0x128 +# +# Core dump will be written. Default location: Core dumps may be processed with "/usr/share/apport/apport -p%p -s%s -c%c -d%d -P%P -u%u -g%g -- %E" (or dumping to /home/agpmastersystem/bnd/tidesdb-java/core.2048993) +# +# If you would like to submit a bug report, please visit: +# Unknown +# + +--------------- S U M M A R Y ------------ + +Command Line: -Djava.library.path=/usr/local/lib /home/agpmastersystem/bnd/tidesdb-java/target/surefire/surefirebooter-20260313005533920_3.jar /home/agpmastersystem/bnd/tidesdb-java/target/surefire 2026-03-13T00-55-33_849-jvmRun1 surefire-20260313005533920_1tmp surefire_0-20260313005533920_2tmp + +Host: 11th Gen Intel(R) Core(TM) i7-11700K @ 3.60GHz, 16 cores, 46G, Ubuntu 23.04 +Time: Fri Mar 13 00:55:34 2026 EDT elapsed time: 0.315125 seconds (0d 0h 0m 0s) + +--------------- T H R E A D --------------- + +Current thread (0x00007fd5d0014510): JavaThread "main" [_thread_in_vm, id=2048994, stack(0x00007fd5d5100000,0x00007fd5d5200000)] + +Stack: [0x00007fd5d5100000,0x00007fd5d5200000], sp=0x00007fd5d51fb9b0, free space=1006k +Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code) +V [libjvm.so+0x8d79e8] jni_NewObject+0x128 +C [libtidesdb_jni.so+0x68a4] Java_com_tidesdb_TidesDB_nativeGetDbStats+0x1db +j com.tidesdb.TidesDB.nativeGetDbStats(J)Lcom/tidesdb/DbStats;+0 +j com.tidesdb.TidesDB.getDbStats()Lcom/tidesdb/DbStats;+8 +j com.tidesdb.TidesDBTest.testGetDbStats()V+179 +v ~StubRoutines::call_stub +V [libjvm.so+0x836d12] JavaCalls::call_helper(JavaValue*, methodHandle const&, JavaCallArguments*, JavaThread*)+0x302 +V [libjvm.so+0xcc5dbc] invoke(InstanceKlass*, methodHandle const&, Handle, bool, objArrayHandle, BasicType, objArrayHandle, bool, JavaThread*) [clone .constprop.0]+0x74c +V [libjvm.so+0xcc6af8] Reflection::invoke_method(oopDesc*, Handle, objArrayHandle, JavaThread*)+0x138 +V [libjvm.so+0x90daa4] JVM_InvokeMethod+0x144 +j jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+0 java.base@17.0.9 +j jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+133 java.base@17.0.9 +j jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+6 java.base@17.0.9 +j java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+59 java.base@17.0.9 +j org.junit.platform.commons.util.ReflectionUtils.invokeMethod(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+42 +j org.junit.jupiter.engine.execution.MethodInvocation.proceed()Ljava/lang/Object;+16 +j org.junit.jupiter.engine.execution.InvocationInterceptorChain$ValidatingInvocation.proceed()Ljava/lang/Object;+8 +j org.junit.jupiter.engine.extension.TimeoutExtension.intercept(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/extension/TimeoutDuration;Lorg/junit/jupiter/engine/extension/TimeoutExtension$TimeoutProvider;)Ljava/lang/Object;+28 +j org.junit.jupiter.engine.extension.TimeoutExtension.interceptTestableMethod(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/extension/TimeoutExtension$TimeoutProvider;)Ljava/lang/Object;+31 +j org.junit.jupiter.engine.extension.TimeoutExtension.interceptTestMethod(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;)V+9 +j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor$$Lambda$186+0x00007fd54008e318.apply(Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;)V+5 +j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker$ReflectiveInterceptorCall.lambda$ofVoidMethod$0(Lorg/junit/jupiter/engine/execution/InterceptingExecutableInvoker$ReflectiveInterceptorCall$VoidMethodInterceptorCall;Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;)Ljava/lang/Void;+6 +j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker$ReflectiveInterceptorCall$$Lambda$187+0x00007fd54008e738.apply(Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;)Ljava/lang/Object;+9 +j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.lambda$invoke$0(Lorg/junit/jupiter/engine/execution/InterceptingExecutableInvoker$ReflectiveInterceptorCall;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;)Ljava/lang/Object;+6 +j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker$$Lambda$392+0x00007fd5400c7378.apply(Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;)Ljava/lang/Object;+14 +j org.junit.jupiter.engine.execution.InvocationInterceptorChain$InterceptedInvocation.proceed()Ljava/lang/Object;+12 +j org.junit.jupiter.engine.execution.InvocationInterceptorChain.proceed(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;)Ljava/lang/Object;+1 +j org.junit.jupiter.engine.execution.InvocationInterceptorChain.chainAndInvoke(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/engine/execution/InvocationInterceptorChain$InterceptorCall;Ljava/util/List;)Ljava/lang/Object;+24 +j org.junit.jupiter.engine.execution.InvocationInterceptorChain.invoke(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/engine/extension/ExtensionRegistry;Lorg/junit/jupiter/engine/execution/InvocationInterceptorChain$InterceptorCall;)Ljava/lang/Object;+31 +j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.invoke(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/extension/ExtensionRegistry;Lorg/junit/jupiter/engine/execution/InterceptingExecutableInvoker$ReflectiveInterceptorCall;)Ljava/lang/Object;+15 +j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.invoke(Ljava/lang/reflect/Method;Ljava/lang/Object;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/extension/ExtensionRegistry;Lorg/junit/jupiter/engine/execution/InterceptingExecutableInvoker$ReflectiveInterceptorCall;)Ljava/lang/Object;+55 +j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.lambda$invokeTestMethod$7(Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/execution/JupiterEngineExecutionContext;)V+28 +j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor$$Lambda$427+0x00007fd5400cc300.execute()V+12 +j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 +j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.invokeTestMethod(Lorg/junit/jupiter/engine/execution/JupiterEngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$DynamicTestExecutor;)V+21 +j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.execute(Lorg/junit/jupiter/engine/execution/JupiterEngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$DynamicTestExecutor;)Lorg/junit/jupiter/engine/execution/JupiterEngineExecutionContext;+44 +j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.execute(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$DynamicTestExecutor;)Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;+6 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6()V+79 +j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$317+0x00007fd5400b7038.execute()V+4 +j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+15 +j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$316+0x00007fd5400b6e10.invoke(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+5 +j org.junit.platform.engine.support.hierarchical.Node.around(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$Invocation;)V+2 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9()V+14 +j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$315+0x00007fd5400b69e8.execute()V+4 +j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively()V+31 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.execute()V+55 +j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService$$Lambda$321+0x00007fd5400b7b50.accept(Ljava/lang/Object;)V+4 +j java.util.ArrayList.forEach(Ljava/util/function/Consumer;)V+46 java.base@17.0.9 +j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(Ljava/util/List;)V+6 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6()V+116 +j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$317+0x00007fd5400b7038.execute()V+4 +j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+15 +j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$316+0x00007fd5400b6e10.invoke(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+5 +j org.junit.platform.engine.support.hierarchical.Node.around(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$Invocation;)V+2 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9()V+14 +j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$315+0x00007fd5400b69e8.execute()V+4 +j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively()V+31 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.execute()V+55 +j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService$$Lambda$321+0x00007fd5400b7b50.accept(Ljava/lang/Object;)V+4 +j java.util.ArrayList.forEach(Ljava/util/function/Consumer;)V+46 java.base@17.0.9 +j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(Ljava/util/List;)V+6 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6()V+116 +j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$317+0x00007fd5400b7038.execute()V+4 +j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+15 +j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$316+0x00007fd5400b6e10.invoke(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+5 +j org.junit.platform.engine.support.hierarchical.Node.around(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$Invocation;)V+2 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9()V+14 +j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$315+0x00007fd5400b69e8.execute()V+4 +j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively()V+31 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.execute()V+55 +j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.submit(Lorg/junit/platform/engine/support/hierarchical/HierarchicalTestExecutorService$TestTask;)Ljava/util/concurrent/Future;+1 +j org.junit.platform.engine.support.hierarchical.HierarchicalTestExecutor.execute()Ljava/util/concurrent/Future;+74 +j org.junit.platform.engine.support.hierarchical.HierarchicalTestEngine.execute(Lorg/junit/platform/engine/ExecutionRequest;)V+31 +j org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(Lorg/junit/platform/engine/TestDescriptor;Lorg/junit/platform/engine/EngineExecutionListener;Lorg/junit/platform/engine/ConfigurationParameters;Lorg/junit/platform/engine/TestEngine;)V+24 +j org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(Lorg/junit/platform/launcher/core/LauncherDiscoveryResult;Lorg/junit/platform/engine/EngineExecutionListener;)V+115 +j org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(Lorg/junit/platform/launcher/core/InternalTestPlan;Lorg/junit/platform/engine/EngineExecutionListener;Lorg/junit/platform/launcher/TestExecutionListener;)V+55 +j org.junit.platform.launcher.core.EngineExecutionOrchestrator.lambda$execute$0(Lorg/junit/platform/launcher/core/InternalTestPlan;Lorg/junit/platform/launcher/TestExecutionListener;)V+6 +j org.junit.platform.launcher.core.EngineExecutionOrchestrator$$Lambda$271+0x00007fd5400a4238.accept(Ljava/lang/Object;)V+12 +j org.junit.platform.launcher.core.EngineExecutionOrchestrator.withInterceptedStreams(Lorg/junit/platform/engine/ConfigurationParameters;Lorg/junit/platform/launcher/core/ListenerRegistry;Ljava/util/function/Consumer;)V+51 +j org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(Lorg/junit/platform/launcher/core/InternalTestPlan;[Lorg/junit/platform/launcher/TestExecutionListener;)V+23 +j org.junit.platform.launcher.core.DefaultLauncher.execute(Lorg/junit/platform/launcher/core/InternalTestPlan;[Lorg/junit/platform/launcher/TestExecutionListener;)V+6 +j org.junit.platform.launcher.core.DefaultLauncher.execute(Lorg/junit/platform/launcher/LauncherDiscoveryRequest;[Lorg/junit/platform/launcher/TestExecutionListener;)V+34 +j org.junit.platform.launcher.core.DelegatingLauncher.execute(Lorg/junit/platform/launcher/LauncherDiscoveryRequest;[Lorg/junit/platform/launcher/TestExecutionListener;)V+6 +j org.apache.maven.surefire.junitplatform.LauncherAdapter.executeWithoutCancellationToken(Lorg/junit/platform/launcher/LauncherDiscoveryRequest;[Lorg/junit/platform/launcher/TestExecutionListener;)V+6 +j org.apache.maven.surefire.junitplatform.LauncherAdapter.execute(Lorg/junit/platform/launcher/LauncherDiscoveryRequest;[Lorg/junit/platform/launcher/TestExecutionListener;)V+10 +j org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.execute(Lorg/apache/maven/surefire/junitplatform/LauncherAdapter;Lorg/apache/maven/surefire/api/util/TestsToRun;Lorg/apache/maven/surefire/junitplatform/RunListenerAdapter;)V+61 +j org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.invokeAllTests(Lorg/apache/maven/surefire/junitplatform/LauncherAdapter;Lorg/apache/maven/surefire/api/util/TestsToRun;Lorg/apache/maven/surefire/junitplatform/RunListenerAdapter;)V+36 +j org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.invoke(Ljava/lang/Object;)Lorg/apache/maven/surefire/api/suite/RunResult;+144 +j org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess()V+8 +j org.apache.maven.surefire.booter.ForkedBooter.execute()V+1 +j org.apache.maven.surefire.booter.ForkedBooter.run(Lorg/apache/maven/surefire/booter/ForkedBooter;[Ljava/lang/String;)V+27 +j org.apache.maven.surefire.booter.ForkedBooter.main([Ljava/lang/String;)V+10 +v ~StubRoutines::call_stub +V [libjvm.so+0x836d12] JavaCalls::call_helper(JavaValue*, methodHandle const&, JavaCallArguments*, JavaThread*)+0x302 +...... + +Java frames: (J=compiled Java code, j=interpreted, Vv=VM code) +j com.tidesdb.TidesDB.nativeGetDbStats(J)Lcom/tidesdb/DbStats;+0 +j com.tidesdb.TidesDB.getDbStats()Lcom/tidesdb/DbStats;+8 +j com.tidesdb.TidesDBTest.testGetDbStats()V+179 +v ~StubRoutines::call_stub +j jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+0 java.base@17.0.9 +j jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+133 java.base@17.0.9 +j jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+6 java.base@17.0.9 +j java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+59 java.base@17.0.9 +j org.junit.platform.commons.util.ReflectionUtils.invokeMethod(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+42 +j org.junit.jupiter.engine.execution.MethodInvocation.proceed()Ljava/lang/Object;+16 +j org.junit.jupiter.engine.execution.InvocationInterceptorChain$ValidatingInvocation.proceed()Ljava/lang/Object;+8 +j org.junit.jupiter.engine.extension.TimeoutExtension.intercept(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/extension/TimeoutDuration;Lorg/junit/jupiter/engine/extension/TimeoutExtension$TimeoutProvider;)Ljava/lang/Object;+28 +j org.junit.jupiter.engine.extension.TimeoutExtension.interceptTestableMethod(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/extension/TimeoutExtension$TimeoutProvider;)Ljava/lang/Object;+31 +j org.junit.jupiter.engine.extension.TimeoutExtension.interceptTestMethod(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;)V+9 +j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor$$Lambda$186+0x00007fd54008e318.apply(Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;)V+5 +j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker$ReflectiveInterceptorCall.lambda$ofVoidMethod$0(Lorg/junit/jupiter/engine/execution/InterceptingExecutableInvoker$ReflectiveInterceptorCall$VoidMethodInterceptorCall;Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;)Ljava/lang/Void;+6 +j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker$ReflectiveInterceptorCall$$Lambda$187+0x00007fd54008e738.apply(Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;)Ljava/lang/Object;+9 +j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.lambda$invoke$0(Lorg/junit/jupiter/engine/execution/InterceptingExecutableInvoker$ReflectiveInterceptorCall;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;)Ljava/lang/Object;+6 +j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker$$Lambda$392+0x00007fd5400c7378.apply(Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;)Ljava/lang/Object;+14 +j org.junit.jupiter.engine.execution.InvocationInterceptorChain$InterceptedInvocation.proceed()Ljava/lang/Object;+12 +j org.junit.jupiter.engine.execution.InvocationInterceptorChain.proceed(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;)Ljava/lang/Object;+1 +j org.junit.jupiter.engine.execution.InvocationInterceptorChain.chainAndInvoke(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/engine/execution/InvocationInterceptorChain$InterceptorCall;Ljava/util/List;)Ljava/lang/Object;+24 +j org.junit.jupiter.engine.execution.InvocationInterceptorChain.invoke(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/engine/extension/ExtensionRegistry;Lorg/junit/jupiter/engine/execution/InvocationInterceptorChain$InterceptorCall;)Ljava/lang/Object;+31 +j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.invoke(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/extension/ExtensionRegistry;Lorg/junit/jupiter/engine/execution/InterceptingExecutableInvoker$ReflectiveInterceptorCall;)Ljava/lang/Object;+15 +j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.invoke(Ljava/lang/reflect/Method;Ljava/lang/Object;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/extension/ExtensionRegistry;Lorg/junit/jupiter/engine/execution/InterceptingExecutableInvoker$ReflectiveInterceptorCall;)Ljava/lang/Object;+55 +j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.lambda$invokeTestMethod$7(Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/execution/JupiterEngineExecutionContext;)V+28 +j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor$$Lambda$427+0x00007fd5400cc300.execute()V+12 +j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 +j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.invokeTestMethod(Lorg/junit/jupiter/engine/execution/JupiterEngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$DynamicTestExecutor;)V+21 +j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.execute(Lorg/junit/jupiter/engine/execution/JupiterEngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$DynamicTestExecutor;)Lorg/junit/jupiter/engine/execution/JupiterEngineExecutionContext;+44 +j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.execute(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$DynamicTestExecutor;)Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;+6 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6()V+79 +j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$317+0x00007fd5400b7038.execute()V+4 +j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+15 +j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$316+0x00007fd5400b6e10.invoke(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+5 +j org.junit.platform.engine.support.hierarchical.Node.around(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$Invocation;)V+2 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9()V+14 +j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$315+0x00007fd5400b69e8.execute()V+4 +j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively()V+31 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.execute()V+55 +j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService$$Lambda$321+0x00007fd5400b7b50.accept(Ljava/lang/Object;)V+4 +j java.util.ArrayList.forEach(Ljava/util/function/Consumer;)V+46 java.base@17.0.9 +j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(Ljava/util/List;)V+6 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6()V+116 +j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$317+0x00007fd5400b7038.execute()V+4 +j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+15 +j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$316+0x00007fd5400b6e10.invoke(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+5 +j org.junit.platform.engine.support.hierarchical.Node.around(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$Invocation;)V+2 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9()V+14 +j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$315+0x00007fd5400b69e8.execute()V+4 +j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively()V+31 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.execute()V+55 +j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService$$Lambda$321+0x00007fd5400b7b50.accept(Ljava/lang/Object;)V+4 +j java.util.ArrayList.forEach(Ljava/util/function/Consumer;)V+46 java.base@17.0.9 +j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(Ljava/util/List;)V+6 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6()V+116 +j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$317+0x00007fd5400b7038.execute()V+4 +j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+15 +j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$316+0x00007fd5400b6e10.invoke(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+5 +j org.junit.platform.engine.support.hierarchical.Node.around(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$Invocation;)V+2 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9()V+14 +j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$315+0x00007fd5400b69e8.execute()V+4 +j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively()V+31 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.execute()V+55 +j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.submit(Lorg/junit/platform/engine/support/hierarchical/HierarchicalTestExecutorService$TestTask;)Ljava/util/concurrent/Future;+1 +j org.junit.platform.engine.support.hierarchical.HierarchicalTestExecutor.execute()Ljava/util/concurrent/Future;+74 +j org.junit.platform.engine.support.hierarchical.HierarchicalTestEngine.execute(Lorg/junit/platform/engine/ExecutionRequest;)V+31 +j org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(Lorg/junit/platform/engine/TestDescriptor;Lorg/junit/platform/engine/EngineExecutionListener;Lorg/junit/platform/engine/ConfigurationParameters;Lorg/junit/platform/engine/TestEngine;)V+24 +j org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(Lorg/junit/platform/launcher/core/LauncherDiscoveryResult;Lorg/junit/platform/engine/EngineExecutionListener;)V+115 +j org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(Lorg/junit/platform/launcher/core/InternalTestPlan;Lorg/junit/platform/engine/EngineExecutionListener;Lorg/junit/platform/launcher/TestExecutionListener;)V+55 +j org.junit.platform.launcher.core.EngineExecutionOrchestrator.lambda$execute$0(Lorg/junit/platform/launcher/core/InternalTestPlan;Lorg/junit/platform/launcher/TestExecutionListener;)V+6 +j org.junit.platform.launcher.core.EngineExecutionOrchestrator$$Lambda$271+0x00007fd5400a4238.accept(Ljava/lang/Object;)V+12 +j org.junit.platform.launcher.core.EngineExecutionOrchestrator.withInterceptedStreams(Lorg/junit/platform/engine/ConfigurationParameters;Lorg/junit/platform/launcher/core/ListenerRegistry;Ljava/util/function/Consumer;)V+51 +j org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(Lorg/junit/platform/launcher/core/InternalTestPlan;[Lorg/junit/platform/launcher/TestExecutionListener;)V+23 +j org.junit.platform.launcher.core.DefaultLauncher.execute(Lorg/junit/platform/launcher/core/InternalTestPlan;[Lorg/junit/platform/launcher/TestExecutionListener;)V+6 +j org.junit.platform.launcher.core.DefaultLauncher.execute(Lorg/junit/platform/launcher/LauncherDiscoveryRequest;[Lorg/junit/platform/launcher/TestExecutionListener;)V+34 +j org.junit.platform.launcher.core.DelegatingLauncher.execute(Lorg/junit/platform/launcher/LauncherDiscoveryRequest;[Lorg/junit/platform/launcher/TestExecutionListener;)V+6 +j org.apache.maven.surefire.junitplatform.LauncherAdapter.executeWithoutCancellationToken(Lorg/junit/platform/launcher/LauncherDiscoveryRequest;[Lorg/junit/platform/launcher/TestExecutionListener;)V+6 +j org.apache.maven.surefire.junitplatform.LauncherAdapter.execute(Lorg/junit/platform/launcher/LauncherDiscoveryRequest;[Lorg/junit/platform/launcher/TestExecutionListener;)V+10 +j org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.execute(Lorg/apache/maven/surefire/junitplatform/LauncherAdapter;Lorg/apache/maven/surefire/api/util/TestsToRun;Lorg/apache/maven/surefire/junitplatform/RunListenerAdapter;)V+61 +j org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.invokeAllTests(Lorg/apache/maven/surefire/junitplatform/LauncherAdapter;Lorg/apache/maven/surefire/api/util/TestsToRun;Lorg/apache/maven/surefire/junitplatform/RunListenerAdapter;)V+36 +j org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.invoke(Ljava/lang/Object;)Lorg/apache/maven/surefire/api/suite/RunResult;+144 +j org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess()V+8 +j org.apache.maven.surefire.booter.ForkedBooter.execute()V+1 +j org.apache.maven.surefire.booter.ForkedBooter.run(Lorg/apache/maven/surefire/booter/ForkedBooter;[Ljava/lang/String;)V+27 +j org.apache.maven.surefire.booter.ForkedBooter.main([Ljava/lang/String;)V+10 +v ~StubRoutines::call_stub + +siginfo: si_signo: 11 (SIGSEGV), si_code: 1 (SEGV_MAPERR), si_addr: 0x0000000000000000 + +Registers: +RAX=0x00007fd5d01b5b28, RBX=0x00007fd5d0014510, RCX=0x0000000000000002, RDX=0x00007fd5d01b5b20 +RSP=0x00007fd5d51fb9b0, RBP=0x00007fd5d51fbb20, RSI=0x0000000540035cc8, RDI=0x00007fd5d01b5b28 +R8 =0x0000000bb38d9000, R9 =0x0000000513968000, R10=0x00007fd5d5ad78c0, R11=0x0000000000000000 +R12=0x0000000000000000, R13=0x0000000000000000, R14=0x0000000000000000, R15=0x00007fd5d51fba00 +RIP=0x00007fd5d5ad79e8, EFLAGS=0x0000000000010206, CSGSFS=0x002b000000000033, ERR=0x0000000000000004 + TRAPNO=0x000000000000000e + + +Register to memory mapping: + +RAX=0x00007fd5d01b5b28 points into unknown readable memory: 0x0000000540035cc8 | c8 5c 03 40 05 00 00 00 +RBX=0x00007fd5d0014510 is a thread +RCX=0x0000000000000002 is an unknown value +RDX=0x00007fd5d01b5b20 points into unknown readable memory: 0x0000000540035360 | 60 53 03 40 05 00 00 00 +RSP=0x00007fd5d51fb9b0 is pointing into the stack for thread: 0x00007fd5d0014510 +RBP=0x00007fd5d51fbb20 is pointing into the stack for thread: 0x00007fd5d0014510 +RSI=0x0000000540035cc8 is an oop: com.tidesdb.DbStats +{0x0000000540035cc8} - klass: 'com/tidesdb/DbStats' + - ---- fields (total size 14 words): + - private final 'numColumnFamilies' 'I' @12 0 + - private final 'totalMemory' 'J' @16 0 (0 0) + - private final 'availableMemory' 'J' @24 0 (0 0) + - private final 'resolvedMemoryLimit' 'J' @32 0 (0 0) + - private final 'totalMemtableBytes' 'J' @40 0 (0 0) + - private final 'totalDataSizeBytes' 'J' @48 0 (0 0) + - private final 'globalSeq' 'J' @56 0 (0 0) + - private final 'txnMemoryBytes' 'J' @64 0 (0 0) + - private final 'compactionQueueSize' 'J' @72 0 (0 0) + - private final 'flushQueueSize' 'J' @80 0 (0 0) + - private final 'memoryPressureLevel' 'I' @88 0 + - private final 'flushPendingCount' 'I' @92 0 + - private final 'totalImmutableCount' 'I' @96 0 + - private final 'totalSstableCount' 'I' @100 0 + - private final 'numOpenSstables' 'I' @104 0 +RDI=0x00007fd5d01b5b28 points into unknown readable memory: 0x0000000540035cc8 | c8 5c 03 40 05 00 00 00 +R8 =0x0000000bb38d9000 is an unknown value +R9 =0x0000000513968000 points into unknown readable memory: 0x0000000000000000 | 00 00 00 00 00 00 00 00 +R10=0x00007fd5d5ad78c0: in /usr/lib/jvm/java-17-openjdk-amd64/lib/server/libjvm.so at 0x00007fd5d5200000 +R11=0x0 is NULL +R12=0x0 is NULL +R13=0x0 is NULL +R14=0x0 is NULL +R15=0x00007fd5d51fba00 is pointing into the stack for thread: 0x00007fd5d0014510 + + +Top of Stack: (sp=0x00007fd5d51fb9b0) +0x00007fd5d51fb9b0: 00000000d0014f50 00007fd5cfee43ab +0x00007fd5d51fb9c0: 00007fd5d0015038 00000000000000d8 +0x00007fd5d51fb9d0: 00007fd5d51fbec0 0000000000000000 +0x00007fd5d51fb9e0: 00007fd5d0014510 00007fd5d0014f80 +0x00007fd5d51fb9f0: 0000000000000431 00007fd5d6204d88 +0x00007fd5d51fba00: 0000000000000013 00007fd5d0014f88 +0x00007fd5d51fba10: 00007fd5d51fbaa0 00007fd5d6064d6e +0x00007fd5d51fba20: 0000000000000000 0000000000000000 +0x00007fd5d51fba30: 0000000000000000 00007fd5d60521a7 +0x00007fd5d51fba40: 4141414141414141 0000000000000000 +0x00007fd5d51fba50: 00007fd5d0014510 0000000000000002 +0x00007fd5d51fba60: 0000000bb38d9000 0000000513968000 +0x00007fd5d51fba70: 0000000000000001 00007fd5400d4000 +0x00007fd5d51fba80: 0000000000000001 00007fd5d5aff4d3 +0x00007fd5d51fba90: 00007fd5d0014f88 00000007ff7560a0 +0x00007fd5d51fbaa0: 00007fd5d51fbad0 00007fd5d0014510 +0x00007fd5d51fbab0: 00007fd5d0423980 00007fd5d00147c0 +0x00007fd5d51fbac0: 00007fd5d0014f88 00000007ff7560a0 +0x00007fd5d51fbad0: 00007fd5d0014510 00007fd5d0014510 +0x00007fd5d51fbae0: 00007fd5d51fbb80 00007fd5d5accb35 +0x00007fd5d51fbaf0: 0000000000000000 0000000000000000 +0x00007fd5d51fbb00: 0000000000000000 0000000000000000 +0x00007fd5d51fbb10: 0000000000000000 0000000000000000 +0x00007fd5d51fbb20: 00007fd5d51fbc90 00007fd5cfee38a4 +0x00007fd5d51fbb30: 00000005d9c6c800 0000000000000000 +0x00007fd5d51fbb40: 0000000000000000 0000000000000000 +0x00007fd5d51fbb50: 0000000000000000 0000000000000000 +0x00007fd5d51fbb60: 0000000000000000 0000000000000000 +0x00007fd5d51fbb70: 0000000000000002 0000000000000000 +0x00007fd5d51fbb80: 0000000000000000 0000000000000000 +0x00007fd5d51fbb90: 0000000bb38d9000 0000000513968000 +0x00007fd5d51fbba0: 00000005d9c6c800 0000000000000000 + +Instructions: (pc=0x00007fd5d5ad79e8) +0x00007fd5d5ad78e8: 40 ff ff ff 4c 89 8d 48 ff ff ff 84 c0 74 29 0f +0x00007fd5d5ad78f8: 29 85 50 ff ff ff 0f 29 8d 60 ff ff ff 0f 29 95 +0x00007fd5d5ad7908: 70 ff ff ff 0f 29 5d 80 0f 29 65 90 0f 29 6d a0 +0x00007fd5d5ad7918: 0f 29 75 b0 0f 29 7d c0 48 8d 9f 50 fd ff ff 8b +0x00007fd5d5ad7928: 83 68 03 00 00 2d ab de 00 00 83 f8 01 0f 87 15 +0x00007fd5d5ad7938: 02 00 00 c7 83 40 03 00 00 05 00 00 00 f0 83 04 +0x00007fd5d5ad7948: 24 00 48 8b 83 48 03 00 00 a8 01 0f 85 df 01 00 +0x00007fd5d5ad7958: 00 8b 83 34 03 00 00 85 c0 0f 85 a9 01 00 00 8b +0x00007fd5d5ad7968: 83 30 03 00 00 a8 0c 0f 85 9b 01 00 00 48 83 7b +0x00007fd5d5ad7978: 08 00 c7 83 40 03 00 00 06 00 00 00 48 89 9d c0 +0x00007fd5d5ad7988: fe ff ff 48 c7 85 c8 fe ff ff 00 00 00 00 74 0c +0x00007fd5d5ad7998: 48 8d bd c0 fe ff ff e8 ac 49 3b 00 41 f6 c4 01 +0x00007fd5d5ad79a8: 0f 84 72 01 00 00 49 8d 7c 24 ff ff 15 07 78 a1 +0x00007fd5d5ad79b8: 00 48 89 c7 48 89 de 45 31 ed e8 49 87 00 00 4c +0x00007fd5d5ad79c8: 8b 63 08 4d 85 e4 0f 85 ad 00 00 00 31 d2 48 89 +0x00007fd5d5ad79d8: c6 4c 8d bd e0 fe ff ff 48 89 df e8 28 7d 02 00 +0x00007fd5d5ad79e8: 49 8b 36 4c 89 ff c7 85 a8 fe ff ff 18 00 00 00 +0x00007fd5d5ad79f8: c7 85 ac fe ff ff 30 00 00 00 49 89 c5 48 8d 45 +0x00007fd5d5ad7a08: 10 48 89 85 b0 fe ff ff 48 8d 85 20 ff ff ff 48 +0x00007fd5d5ad7a18: 89 85 b8 fe ff ff c7 85 90 fe ff ff 0e 00 00 00 +0x00007fd5d5ad7a28: e8 f3 90 00 00 4c 89 ee 49 89 d8 4c 89 f9 48 8d +0x00007fd5d5ad7a38: 05 1b a3 96 00 f3 0f 6f 85 a8 fe ff ff 48 8d bd +0x00007fd5d5ad7a48: 90 fe ff ff 4c 89 f2 48 89 85 e0 fe ff ff 48 8b +0x00007fd5d5ad7a58: 85 b8 fe ff ff 0f 11 85 08 ff ff ff 48 89 85 18 +0x00007fd5d5ad7a68: ff ff ff e8 10 f7 ff ff 48 83 7b 08 00 4c 89 ff +0x00007fd5d5ad7a78: 4d 0f 45 ec e8 bf 87 00 00 48 83 bd c8 fe ff ff +0x00007fd5d5ad7a88: 00 74 0c 48 8d bd c0 fe ff ff e8 59 49 3b 00 4c +0x00007fd5d5ad7a98: 8b a3 e8 00 00 00 49 8b 44 24 10 48 83 38 00 74 +0x00007fd5d5ad7aa8: 0d 4c 89 e7 e8 ef ef ee ff 49 8b 44 24 10 49 8b +0x00007fd5d5ad7ab8: 54 24 08 48 8d bb 90 02 00 00 48 89 42 10 49 8b +0x00007fd5d5ad7ac8: 44 24 08 49 8b 54 24 18 48 89 50 18 49 8b 44 24 +0x00007fd5d5ad7ad8: 08 49 8b 54 24 20 48 89 50 20 e8 69 c4 df ff c7 + + +Stack slot to memory mapping: +stack at sp + 0 slots: 0x00000000d0014f50 is an unknown value +stack at sp + 1 slots: 0x00007fd5cfee43ab: in /usr/local/lib/libtidesdb_jni.so at 0x00007fd5cfedd000 +stack at sp + 2 slots: 0x00007fd5d0015038 points into unknown readable memory: 0x0000000000000025 | 25 00 00 00 00 00 00 00 +stack at sp + 3 slots: 0x00000000000000d8 is an unknown value +stack at sp + 4 slots: 0x00007fd5d51fbec0 is pointing into the stack for thread: 0x00007fd5d0014510 +stack at sp + 5 slots: 0x0 is NULL +stack at sp + 6 slots: 0x00007fd5d0014510 is a thread +stack at sp + 7 slots: 0x00007fd5d0014f80 points into unknown readable memory: 0x00000005400354a8 | a8 54 03 40 05 00 00 00 + + +--------------- P R O C E S S --------------- + +Threads class SMR info: +_java_thread_list=0x00007fd50c1efb50, length=16, elements={ +0x00007fd5d0014510, 0x00007fd5d01b7e10, 0x00007fd5d01b9200, 0x00007fd5d01be770, +0x00007fd5d01bfb30, 0x00007fd5d01c0f50, 0x00007fd5d01c2990, 0x00007fd5d01c3ed0, +0x00007fd5d01c5350, 0x00007fd5d01cc920, 0x00007fd5d01cfdc0, 0x00007fd51802d1b0, +0x00007fd5d031c110, 0x00007fd5d032c0c0, 0x00007fd518135130, 0x00007fd50c1eeb50 +} + +Java Threads: ( => current thread ) +=>0x00007fd5d0014510 JavaThread "main" [_thread_in_vm, id=2048994, stack(0x00007fd5d5100000,0x00007fd5d5200000)] + 0x00007fd5d01b7e10 JavaThread "Reference Handler" daemon [_thread_blocked, id=2049005, stack(0x00007fd59c188000,0x00007fd59c288000)] + 0x00007fd5d01b9200 JavaThread "Finalizer" daemon [_thread_blocked, id=2049006, stack(0x00007fd59c088000,0x00007fd59c188000)] + 0x00007fd5d01be770 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=2049008, stack(0x00007fd58d900000,0x00007fd58da00000)] + 0x00007fd5d01bfb30 JavaThread "Service Thread" daemon [_thread_blocked, id=2049009, stack(0x00007fd58d800000,0x00007fd58d900000)] + 0x00007fd5d01c0f50 JavaThread "Monitor Deflation Thread" daemon [_thread_blocked, id=2049010, stack(0x00007fd58d700000,0x00007fd58d800000)] + 0x00007fd5d01c2990 JavaThread "C2 CompilerThread0" daemon [_thread_in_native, id=2049011, stack(0x00007fd58d600000,0x00007fd58d700000)] + 0x00007fd5d01c3ed0 JavaThread "C1 CompilerThread0" daemon [_thread_blocked, id=2049012, stack(0x00007fd58d500000,0x00007fd58d600000)] + 0x00007fd5d01c5350 JavaThread "Sweeper thread" daemon [_thread_blocked, id=2049013, stack(0x00007fd58d400000,0x00007fd58d500000)] + 0x00007fd5d01cc920 JavaThread "Notification Thread" daemon [_thread_blocked, id=2049015, stack(0x00007fd58d300000,0x00007fd58d400000)] + 0x00007fd5d01cfdc0 JavaThread "Common-Cleaner" daemon [_thread_blocked, id=2049017, stack(0x00007fd58d0ff000,0x00007fd58d1ff000)] + 0x00007fd51802d1b0 JavaThread "C1 CompilerThread1" daemon [_thread_blocked, id=2049018, stack(0x00007fd58cfff000,0x00007fd58d0ff000)] + 0x00007fd5d031c110 JavaThread "surefire-forkedjvm-stream-flusher" daemon [_thread_blocked, id=2049019, stack(0x00007fd58ceff000,0x00007fd58cfff000)] + 0x00007fd5d032c0c0 JavaThread "surefire-forkedjvm-command-thread" daemon [_thread_in_native, id=2049020, stack(0x00007fd58cdff000,0x00007fd58ceff000)] + 0x00007fd518135130 JavaThread "C2 CompilerThread1" daemon [_thread_in_native, id=2049031, stack(0x00007fd58ccff000,0x00007fd58cdff000)] + 0x00007fd50c1eeb50 JavaThread "C1 CompilerThread2" daemon [_thread_blocked, id=2049032, stack(0x00007fd58cbff000,0x00007fd58ccff000)] + +Other Threads: + 0x00007fd5d01b3e80 VMThread "VM Thread" [stack: 0x00007fd59c289000,0x00007fd59c389000] [id=2049003] + 0x00007fd5d01ce270 WatcherThread [stack: 0x00007fd58d200000,0x00007fd58d300000] [id=2049016] + 0x00007fd5d0070ce0 GCTaskThread "GC Thread#0" [stack: 0x00007fd59d648000,0x00007fd59d748000] [id=2048995] + 0x00007fd5d007ddd0 ConcurrentGCThread "G1 Main Marker" [stack: 0x00007fd59d547000,0x00007fd59d647000] [id=2048996] + 0x00007fd5d007ed40 ConcurrentGCThread "G1 Conc#0" [stack: 0x00007fd59d446000,0x00007fd59d546000] [id=2048997] + 0x00007fd5d0182f50 ConcurrentGCThread "G1 Refine#0" [stack: 0x00007fd59c638000,0x00007fd59c738000] [id=2048999] + 0x00007fd5d0183e50 ConcurrentGCThread "G1 Service" [stack: 0x00007fd59c537000,0x00007fd59c637000] [id=2049000] + +Threads with active compile tasks: +C2 CompilerThread0 320 1165 4 java.util.function.Predicate$$Lambda$90/0x00007fd54005ebe8::test (15 bytes) +C2 CompilerThread1 320 1171 4 org.junit.jupiter.engine.discovery.predicates.IsTestableMethod::test (49 bytes) + +VM state: not at safepoint (normal execution) + +VM Mutex/Monitor currently owned by a thread: None + +Heap address: 0x0000000513000000, size: 11984 MB, Compressed Oops mode: Zero based, Oop shift amount: 3 + +CDS archive(s) mapped at: [0x00007fd53f000000-0x00007fd53fbc6000-0x00007fd53fbc6000), size 12345344, SharedBaseAddress: 0x00007fd53f000000, ArchiveRelocationMode: 1. +Compressed class space mapped at: 0x00007fd540000000-0x00007fd580000000, reserved size: 1073741824 +Narrow klass base: 0x00007fd53f000000, Narrow klass shift: 0, Narrow klass range: 0x100000000 + +GC Precious Log: + CPUs: 16 total, 16 available + Memory: 47928M + Large Page Support: Disabled + NUMA Support: Disabled + Compressed Oops: Enabled (Zero based) + Heap Region Size: 8M + Heap Min Capacity: 8M + Heap Initial Capacity: 752M + Heap Max Capacity: 11984M + Pre-touch: Disabled + Parallel Workers: 13 + Concurrent Workers: 3 + Concurrent Refinement Workers: 13 + Periodic GC: Disabled + +Heap: + garbage-first heap total 786432K, used 32688K [0x0000000513000000, 0x0000000800000000) + region size 8192K, 4 young (32768K), 0 survivors (0K) + Metaspace used 6811K, committed 7040K, reserved 1114112K + class space used 866K, committed 960K, reserved 1048576K + +Heap Regions: E=young(eden), S=young(survivor), O=old, HS=humongous(starts), HC=humongous(continues), CS=collection set, F=free, OA=open archive, CA=closed archive, TAMS=top-at-mark-start (previous, next) +| 0|0x0000000513000000, 0x0000000513000000, 0x0000000513800000| 0%| F| |TAMS 0x0000000513000000, 0x0000000513000000| Untracked +| 1|0x0000000513800000, 0x0000000513800000, 0x0000000514000000| 0%| F| |TAMS 0x0000000513800000, 0x0000000513800000| Untracked +| 2|0x0000000514000000, 0x0000000514000000, 0x0000000514800000| 0%| F| |TAMS 0x0000000514000000, 0x0000000514000000| Untracked +| 3|0x0000000514800000, 0x0000000514800000, 0x0000000515000000| 0%| F| |TAMS 0x0000000514800000, 0x0000000514800000| Untracked +| 4|0x0000000515000000, 0x0000000515000000, 0x0000000515800000| 0%| F| |TAMS 0x0000000515000000, 0x0000000515000000| Untracked +| 5|0x0000000515800000, 0x0000000515800000, 0x0000000516000000| 0%| F| |TAMS 0x0000000515800000, 0x0000000515800000| Untracked +| 6|0x0000000516000000, 0x0000000516000000, 0x0000000516800000| 0%| F| |TAMS 0x0000000516000000, 0x0000000516000000| Untracked +| 7|0x0000000516800000, 0x0000000516800000, 0x0000000517000000| 0%| F| |TAMS 0x0000000516800000, 0x0000000516800000| Untracked +| 8|0x0000000517000000, 0x0000000517000000, 0x0000000517800000| 0%| F| |TAMS 0x0000000517000000, 0x0000000517000000| Untracked +| 9|0x0000000517800000, 0x0000000517800000, 0x0000000518000000| 0%| F| |TAMS 0x0000000517800000, 0x0000000517800000| Untracked +| 10|0x0000000518000000, 0x0000000518000000, 0x0000000518800000| 0%| F| |TAMS 0x0000000518000000, 0x0000000518000000| Untracked +| 11|0x0000000518800000, 0x0000000518800000, 0x0000000519000000| 0%| F| |TAMS 0x0000000518800000, 0x0000000518800000| Untracked +| 12|0x0000000519000000, 0x0000000519000000, 0x0000000519800000| 0%| F| |TAMS 0x0000000519000000, 0x0000000519000000| Untracked +| 13|0x0000000519800000, 0x0000000519800000, 0x000000051a000000| 0%| F| |TAMS 0x0000000519800000, 0x0000000519800000| Untracked +| 14|0x000000051a000000, 0x000000051a000000, 0x000000051a800000| 0%| F| |TAMS 0x000000051a000000, 0x000000051a000000| Untracked +| 15|0x000000051a800000, 0x000000051a800000, 0x000000051b000000| 0%| F| |TAMS 0x000000051a800000, 0x000000051a800000| Untracked +| 16|0x000000051b000000, 0x000000051b000000, 0x000000051b800000| 0%| F| |TAMS 0x000000051b000000, 0x000000051b000000| Untracked +| 17|0x000000051b800000, 0x000000051b800000, 0x000000051c000000| 0%| F| |TAMS 0x000000051b800000, 0x000000051b800000| Untracked +| 18|0x000000051c000000, 0x000000051c000000, 0x000000051c800000| 0%| F| |TAMS 0x000000051c000000, 0x000000051c000000| Untracked +| 19|0x000000051c800000, 0x000000051c800000, 0x000000051d000000| 0%| F| |TAMS 0x000000051c800000, 0x000000051c800000| Untracked +| 20|0x000000051d000000, 0x000000051d000000, 0x000000051d800000| 0%| F| |TAMS 0x000000051d000000, 0x000000051d000000| Untracked +| 21|0x000000051d800000, 0x000000051d800000, 0x000000051e000000| 0%| F| |TAMS 0x000000051d800000, 0x000000051d800000| Untracked +| 22|0x000000051e000000, 0x000000051e000000, 0x000000051e800000| 0%| F| |TAMS 0x000000051e000000, 0x000000051e000000| Untracked +| 23|0x000000051e800000, 0x000000051e800000, 0x000000051f000000| 0%| F| |TAMS 0x000000051e800000, 0x000000051e800000| Untracked +| 24|0x000000051f000000, 0x000000051f000000, 0x000000051f800000| 0%| F| |TAMS 0x000000051f000000, 0x000000051f000000| Untracked +| 25|0x000000051f800000, 0x000000051f800000, 0x0000000520000000| 0%| F| |TAMS 0x000000051f800000, 0x000000051f800000| Untracked +| 26|0x0000000520000000, 0x0000000520000000, 0x0000000520800000| 0%| F| |TAMS 0x0000000520000000, 0x0000000520000000| Untracked +| 27|0x0000000520800000, 0x0000000520800000, 0x0000000521000000| 0%| F| |TAMS 0x0000000520800000, 0x0000000520800000| Untracked +| 28|0x0000000521000000, 0x0000000521000000, 0x0000000521800000| 0%| F| |TAMS 0x0000000521000000, 0x0000000521000000| Untracked +| 29|0x0000000521800000, 0x0000000521800000, 0x0000000522000000| 0%| F| |TAMS 0x0000000521800000, 0x0000000521800000| Untracked +| 30|0x0000000522000000, 0x0000000522000000, 0x0000000522800000| 0%| F| |TAMS 0x0000000522000000, 0x0000000522000000| Untracked +| 31|0x0000000522800000, 0x0000000522800000, 0x0000000523000000| 0%| F| |TAMS 0x0000000522800000, 0x0000000522800000| Untracked +| 32|0x0000000523000000, 0x0000000523000000, 0x0000000523800000| 0%| F| |TAMS 0x0000000523000000, 0x0000000523000000| Untracked +| 33|0x0000000523800000, 0x0000000523800000, 0x0000000524000000| 0%| F| |TAMS 0x0000000523800000, 0x0000000523800000| Untracked +| 34|0x0000000524000000, 0x0000000524000000, 0x0000000524800000| 0%| F| |TAMS 0x0000000524000000, 0x0000000524000000| Untracked +| 35|0x0000000524800000, 0x0000000524800000, 0x0000000525000000| 0%| F| |TAMS 0x0000000524800000, 0x0000000524800000| Untracked +| 36|0x0000000525000000, 0x0000000525000000, 0x0000000525800000| 0%| F| |TAMS 0x0000000525000000, 0x0000000525000000| Untracked +| 37|0x0000000525800000, 0x0000000525800000, 0x0000000526000000| 0%| F| |TAMS 0x0000000525800000, 0x0000000525800000| Untracked +| 38|0x0000000526000000, 0x0000000526000000, 0x0000000526800000| 0%| F| |TAMS 0x0000000526000000, 0x0000000526000000| Untracked +| 39|0x0000000526800000, 0x0000000526800000, 0x0000000527000000| 0%| F| |TAMS 0x0000000526800000, 0x0000000526800000| Untracked +| 40|0x0000000527000000, 0x0000000527000000, 0x0000000527800000| 0%| F| |TAMS 0x0000000527000000, 0x0000000527000000| Untracked +| 41|0x0000000527800000, 0x0000000527800000, 0x0000000528000000| 0%| F| |TAMS 0x0000000527800000, 0x0000000527800000| Untracked +| 42|0x0000000528000000, 0x0000000528000000, 0x0000000528800000| 0%| F| |TAMS 0x0000000528000000, 0x0000000528000000| Untracked +| 43|0x0000000528800000, 0x0000000528800000, 0x0000000529000000| 0%| F| |TAMS 0x0000000528800000, 0x0000000528800000| Untracked +| 44|0x0000000529000000, 0x0000000529000000, 0x0000000529800000| 0%| F| |TAMS 0x0000000529000000, 0x0000000529000000| Untracked +| 45|0x0000000529800000, 0x0000000529800000, 0x000000052a000000| 0%| F| |TAMS 0x0000000529800000, 0x0000000529800000| Untracked +| 46|0x000000052a000000, 0x000000052a000000, 0x000000052a800000| 0%| F| |TAMS 0x000000052a000000, 0x000000052a000000| Untracked +| 47|0x000000052a800000, 0x000000052a800000, 0x000000052b000000| 0%| F| |TAMS 0x000000052a800000, 0x000000052a800000| Untracked +| 48|0x000000052b000000, 0x000000052b000000, 0x000000052b800000| 0%| F| |TAMS 0x000000052b000000, 0x000000052b000000| Untracked +| 49|0x000000052b800000, 0x000000052b800000, 0x000000052c000000| 0%| F| |TAMS 0x000000052b800000, 0x000000052b800000| Untracked +| 50|0x000000052c000000, 0x000000052c000000, 0x000000052c800000| 0%| F| |TAMS 0x000000052c000000, 0x000000052c000000| Untracked +| 51|0x000000052c800000, 0x000000052c800000, 0x000000052d000000| 0%| F| |TAMS 0x000000052c800000, 0x000000052c800000| Untracked +| 52|0x000000052d000000, 0x000000052d000000, 0x000000052d800000| 0%| F| |TAMS 0x000000052d000000, 0x000000052d000000| Untracked +| 53|0x000000052d800000, 0x000000052d800000, 0x000000052e000000| 0%| F| |TAMS 0x000000052d800000, 0x000000052d800000| Untracked +| 54|0x000000052e000000, 0x000000052e000000, 0x000000052e800000| 0%| F| |TAMS 0x000000052e000000, 0x000000052e000000| Untracked +| 55|0x000000052e800000, 0x000000052e800000, 0x000000052f000000| 0%| F| |TAMS 0x000000052e800000, 0x000000052e800000| Untracked +| 56|0x000000052f000000, 0x000000052f000000, 0x000000052f800000| 0%| F| |TAMS 0x000000052f000000, 0x000000052f000000| Untracked +| 57|0x000000052f800000, 0x000000052f800000, 0x0000000530000000| 0%| F| |TAMS 0x000000052f800000, 0x000000052f800000| Untracked +| 58|0x0000000530000000, 0x0000000530000000, 0x0000000530800000| 0%| F| |TAMS 0x0000000530000000, 0x0000000530000000| Untracked +| 59|0x0000000530800000, 0x0000000530800000, 0x0000000531000000| 0%| F| |TAMS 0x0000000530800000, 0x0000000530800000| Untracked +| 60|0x0000000531000000, 0x0000000531000000, 0x0000000531800000| 0%| F| |TAMS 0x0000000531000000, 0x0000000531000000| Untracked +| 61|0x0000000531800000, 0x0000000531800000, 0x0000000532000000| 0%| F| |TAMS 0x0000000531800000, 0x0000000531800000| Untracked +| 62|0x0000000532000000, 0x0000000532000000, 0x0000000532800000| 0%| F| |TAMS 0x0000000532000000, 0x0000000532000000| Untracked +| 63|0x0000000532800000, 0x0000000532800000, 0x0000000533000000| 0%| F| |TAMS 0x0000000532800000, 0x0000000532800000| Untracked +| 64|0x0000000533000000, 0x0000000533000000, 0x0000000533800000| 0%| F| |TAMS 0x0000000533000000, 0x0000000533000000| Untracked +| 65|0x0000000533800000, 0x0000000533800000, 0x0000000534000000| 0%| F| |TAMS 0x0000000533800000, 0x0000000533800000| Untracked +| 66|0x0000000534000000, 0x0000000534000000, 0x0000000534800000| 0%| F| |TAMS 0x0000000534000000, 0x0000000534000000| Untracked +| 67|0x0000000534800000, 0x0000000534800000, 0x0000000535000000| 0%| F| |TAMS 0x0000000534800000, 0x0000000534800000| Untracked +| 68|0x0000000535000000, 0x0000000535000000, 0x0000000535800000| 0%| F| |TAMS 0x0000000535000000, 0x0000000535000000| Untracked +| 69|0x0000000535800000, 0x0000000535800000, 0x0000000536000000| 0%| F| |TAMS 0x0000000535800000, 0x0000000535800000| Untracked +| 70|0x0000000536000000, 0x0000000536000000, 0x0000000536800000| 0%| F| |TAMS 0x0000000536000000, 0x0000000536000000| Untracked +| 71|0x0000000536800000, 0x0000000536800000, 0x0000000537000000| 0%| F| |TAMS 0x0000000536800000, 0x0000000536800000| Untracked +| 72|0x0000000537000000, 0x0000000537000000, 0x0000000537800000| 0%| F| |TAMS 0x0000000537000000, 0x0000000537000000| Untracked +| 73|0x0000000537800000, 0x0000000537800000, 0x0000000538000000| 0%| F| |TAMS 0x0000000537800000, 0x0000000537800000| Untracked +| 74|0x0000000538000000, 0x0000000538000000, 0x0000000538800000| 0%| F| |TAMS 0x0000000538000000, 0x0000000538000000| Untracked +| 75|0x0000000538800000, 0x0000000538800000, 0x0000000539000000| 0%| F| |TAMS 0x0000000538800000, 0x0000000538800000| Untracked +| 76|0x0000000539000000, 0x0000000539000000, 0x0000000539800000| 0%| F| |TAMS 0x0000000539000000, 0x0000000539000000| Untracked +| 77|0x0000000539800000, 0x0000000539800000, 0x000000053a000000| 0%| F| |TAMS 0x0000000539800000, 0x0000000539800000| Untracked +| 78|0x000000053a000000, 0x000000053a000000, 0x000000053a800000| 0%| F| |TAMS 0x000000053a000000, 0x000000053a000000| Untracked +| 79|0x000000053a800000, 0x000000053a800000, 0x000000053b000000| 0%| F| |TAMS 0x000000053a800000, 0x000000053a800000| Untracked +| 80|0x000000053b000000, 0x000000053b000000, 0x000000053b800000| 0%| F| |TAMS 0x000000053b000000, 0x000000053b000000| Untracked +| 81|0x000000053b800000, 0x000000053b800000, 0x000000053c000000| 0%| F| |TAMS 0x000000053b800000, 0x000000053b800000| Untracked +| 82|0x000000053c000000, 0x000000053c000000, 0x000000053c800000| 0%| F| |TAMS 0x000000053c000000, 0x000000053c000000| Untracked +| 83|0x000000053c800000, 0x000000053c800000, 0x000000053d000000| 0%| F| |TAMS 0x000000053c800000, 0x000000053c800000| Untracked +| 84|0x000000053d000000, 0x000000053d000000, 0x000000053d800000| 0%| F| |TAMS 0x000000053d000000, 0x000000053d000000| Untracked +| 85|0x000000053d800000, 0x000000053d800000, 0x000000053e000000| 0%| F| |TAMS 0x000000053d800000, 0x000000053d800000| Untracked +| 86|0x000000053e000000, 0x000000053e000000, 0x000000053e800000| 0%| F| |TAMS 0x000000053e000000, 0x000000053e000000| Untracked +| 87|0x000000053e800000, 0x000000053e800000, 0x000000053f000000| 0%| F| |TAMS 0x000000053e800000, 0x000000053e800000| Untracked +| 88|0x000000053f000000, 0x000000053f000000, 0x000000053f800000| 0%| F| |TAMS 0x000000053f000000, 0x000000053f000000| Untracked +| 89|0x000000053f800000, 0x000000053f800000, 0x0000000540000000| 0%| F| |TAMS 0x000000053f800000, 0x000000053f800000| Untracked +| 90|0x0000000540000000, 0x00000005400a5bc0, 0x0000000540800000| 8%| E| |TAMS 0x0000000540000000, 0x0000000540000000| Complete +| 91|0x0000000540800000, 0x0000000541000000, 0x0000000541000000|100%| E|CS|TAMS 0x0000000540800000, 0x0000000540800000| Complete +| 92|0x0000000541000000, 0x0000000541800000, 0x0000000541800000|100%| E|CS|TAMS 0x0000000541000000, 0x0000000541000000| Complete +| 93|0x0000000541800000, 0x0000000542000000, 0x0000000542000000|100%| E|CS|TAMS 0x0000000541800000, 0x0000000541800000| Complete +|1496|0x00000007ff000000, 0x00000007ff775000, 0x00000007ff800000| 93%|OA| |TAMS 0x00000007ff000000, 0x00000007ff000000| Untracked +|1497|0x00000007ff800000, 0x00000007ff877000, 0x0000000800000000| 5%|CA| |TAMS 0x00000007ff800000, 0x00000007ff800000| Untracked + +Card table byte_map: [0x00007fd5b6530000,0x00007fd5b7c98000] _byte_map_base: 0x00007fd5b3c98000 + +Marking Bits (Prev, Next): (CMBitMap*) 0x00007fd5d0071770, (CMBitMap*) 0x00007fd5d00717b0 + Prev Bits: [0x00007fd5a9288000, 0x00007fd5b4dc8000) + Next Bits: [0x00007fd59d748000, 0x00007fd5a9288000) + +Polling page: 0x00007fd5d6976000 + +Metaspace: + +Usage: + Non-class: 5.81 MB used. + Class: 866.89 KB used. + Both: 6.65 MB used. + +Virtual space: + Non-class space: 64.00 MB reserved, 5.94 MB ( 9%) committed, 1 nodes. + Class space: 1.00 GB reserved, 960.00 KB ( <1%) committed, 1 nodes. + Both: 1.06 GB reserved, 6.88 MB ( <1%) committed. + +Chunk freelists: + Non-Class: 9.23 MB + Class: 15.04 MB + Both: 24.28 MB + +MaxMetaspaceSize: unlimited +CompressedClassSpaceSize: 1.00 GB +Initial GC threshold: 21.00 MB +Current GC threshold: 21.00 MB +CDS: on +MetaspaceReclaimPolicy: balanced + - commit_granule_bytes: 65536. + - commit_granule_words: 8192. + - virtual_space_node_default_size: 8388608. + - enlarge_chunks_in_place: 1. + - new_chunks_are_fully_committed: 0. + - uncommit_free_chunks: 1. + - use_allocation_guard: 0. + - handle_deallocations: 1. + + +Internal statistics: + +num_allocs_failed_limit: 0. +num_arena_births: 118. +num_arena_deaths: 0. +num_vsnodes_births: 2. +num_vsnodes_deaths: 0. +num_space_committed: 110. +num_space_uncommitted: 0. +num_chunks_returned_to_freelist: 0. +num_chunks_taken_from_freelist: 346. +num_chunk_merges: 0. +num_chunk_splits: 190. +num_chunks_enlarged: 106. +num_inconsistent_stats: 0. + +CodeHeap 'non-profiled nmethods': size=119168Kb used=343Kb max_used=343Kb free=118825Kb + bounds [0x00007fd5c0fa0000, 0x00007fd5c1210000, 0x00007fd5c8400000] +CodeHeap 'profiled nmethods': size=119164Kb used=2917Kb max_used=2917Kb free=116246Kb + bounds [0x00007fd5b9400000, 0x00007fd5b96e0000, 0x00007fd5c085f000] +CodeHeap 'non-nmethods': size=7428Kb used=2280Kb max_used=2291Kb free=5148Kb + bounds [0x00007fd5c085f000, 0x00007fd5c0acf000, 0x00007fd5c0fa0000] + total_blobs=1840 nmethods=1410 adapters=341 + compilation: enabled + stopped_count=0, restarted_count=0 + full_count=0 + +Compilation events (20 events): +Event: 0.277 Thread 0x00007fd51802d1b0 nmethod 1399 0x00007fd5b96d2790 code [0x00007fd5b96d29a0, 0x00007fd5b96d2fc0] +Event: 0.277 Thread 0x00007fd50c1eeb50 nmethod 1398 0x00007fd5b96d3210 code [0x00007fd5b96d3480, 0x00007fd5b96d3f90] +Event: 0.310 Thread 0x00007fd51802d1b0 1408 3 java.lang.invoke.InvokerBytecodeGenerator::emitLoadInsn (21 bytes) +Event: 0.310 Thread 0x00007fd50c1eeb50 1409 3 java.lang.invoke.InvokerBytecodeGenerator::loadInsnOpcode (98 bytes) +Event: 0.310 Thread 0x00007fd5d01c3ed0 1410 3 java.lang.invoke.InvokerBytecodeGenerator::emitPushArgument (150 bytes) +Event: 0.310 Thread 0x00007fd51802d1b0 nmethod 1408 0x00007fd5b96d4310 code [0x00007fd5b96d44c0, 0x00007fd5b96d4710] +Event: 0.310 Thread 0x00007fd51802d1b0 1414 3 java.lang.invoke.LambdaForm$NamedFunction::returnType (11 bytes) +Event: 0.310 Thread 0x00007fd50c1eeb50 nmethod 1409 0x00007fd5b96d4890 code [0x00007fd5b96d4b00, 0x00007fd5b96d54f0] +Event: 0.310 Thread 0x00007fd51802d1b0 nmethod 1414 0x00007fd5b96d5810 code [0x00007fd5b96d5a00, 0x00007fd5b96d5e80] +Event: 0.310 Thread 0x00007fd5d01c3ed0 nmethod 1410 0x00007fd5b96d6090 code [0x00007fd5b96d6380, 0x00007fd5b96d7260] +Event: 0.310 Thread 0x00007fd51802d1b0 1418 3 java.lang.invoke.DirectMethodHandle::shouldBeInitialized (127 bytes) +Event: 0.310 Thread 0x00007fd50c1eeb50 1420 3 sun.invoke.util.Wrapper::isSubwordOrInt (20 bytes) +Event: 0.310 Thread 0x00007fd5d01c3ed0 1421 3 sun.invoke.util.Wrapper::isIntegral (23 bytes) +Event: 0.310 Thread 0x00007fd5d01c3ed0 nmethod 1421 0x00007fd5b96d7610 code [0x00007fd5b96d77c0, 0x00007fd5b96d7a10] +Event: 0.310 Thread 0x00007fd5d01c3ed0 1422 3 sun.invoke.util.Wrapper::isNumeric (16 bytes) +Event: 0.310 Thread 0x00007fd51802d1b0 nmethod 1418 0x00007fd5b96d7a90 code [0x00007fd5b96d7d20, 0x00007fd5b96d86f0] +Event: 0.310 Thread 0x00007fd50c1eeb50 nmethod 1420 0x00007fd5b96d8990 code [0x00007fd5b96d8b60, 0x00007fd5b96d8f70] +Event: 0.310 Thread 0x00007fd5d01c3ed0 nmethod 1422 0x00007fd5b96d9090 code [0x00007fd5b96d9220, 0x00007fd5b96d9390] +Event: 0.311 Thread 0x00007fd51802d1b0 1425 3 java.util.ImmutableCollections$ListN::size (6 bytes) +Event: 0.311 Thread 0x00007fd51802d1b0 nmethod 1425 0x00007fd5b96d9410 code [0x00007fd5b96d95a0, 0x00007fd5b96d96b0] + +GC Heap History (0 events): +No events + +Dll operation events (8 events): +Event: 0.001 Loaded shared library /usr/lib/jvm/java-17-openjdk-amd64/lib/libjava.so +Event: 0.010 Loaded shared library /usr/lib/jvm/java-17-openjdk-amd64/lib/libjsvml.so +Event: 0.018 Loaded shared library /usr/lib/jvm/java-17-openjdk-amd64/lib/libnio.so +Event: 0.019 Loaded shared library /usr/lib/jvm/java-17-openjdk-amd64/lib/libzip.so +Event: 0.039 Loaded shared library /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement.so +Event: 0.041 Loaded shared library /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement_ext.so +Event: 0.048 Loaded shared library /usr/lib/jvm/java-17-openjdk-amd64/lib/libjimage.so +Event: 0.278 Loaded shared library /usr/local/lib/libtidesdb_jni.so + +Deoptimization events (20 events): +Event: 0.238 Thread 0x00007fd5d0014510 DEOPT PACKING pc=0x00007fd5c0fe71a0 sp=0x00007fd5d51fcb40 +Event: 0.238 Thread 0x00007fd5d0014510 DEOPT UNPACKING pc=0x00007fd5c08b8b19 sp=0x00007fd5d51fca68 mode 2 +Event: 0.246 Thread 0x00007fd5d0014510 Uncommon trap: trap_request=0xffffff45 fr.pc=0x00007fd5c0fd5dfc relative=0x000000000000025c +Event: 0.246 Thread 0x00007fd5d0014510 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00007fd5c0fd5dfc method=java.util.concurrent.ConcurrentHashMap.get(Ljava/lang/Object;)Ljava/lang/Object; @ 86 c2 +Event: 0.246 Thread 0x00007fd5d0014510 DEOPT PACKING pc=0x00007fd5c0fd5dfc sp=0x00007fd5d51fca90 +Event: 0.246 Thread 0x00007fd5d0014510 DEOPT UNPACKING pc=0x00007fd5c08b8b19 sp=0x00007fd5d51fca28 mode 2 +Event: 0.257 Thread 0x00007fd5d0014510 DEOPT PACKING pc=0x00007fd5b94e0a23 sp=0x00007fd5d51fb7f0 +Event: 0.257 Thread 0x00007fd5d0014510 DEOPT UNPACKING pc=0x00007fd5c08b964f sp=0x00007fd5d51fac70 mode 0 +Event: 0.264 Thread 0x00007fd5d0014510 Uncommon trap: trap_request=0xffffff45 fr.pc=0x00007fd5c0fbe8b8 relative=0x0000000000000218 +Event: 0.264 Thread 0x00007fd5d0014510 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00007fd5c0fbe8b8 method=java.lang.String.startsWith(Ljava/lang/String;I)Z @ 1 c2 +Event: 0.264 Thread 0x00007fd5d0014510 DEOPT PACKING pc=0x00007fd5c0fbe8b8 sp=0x00007fd5d51faa50 +Event: 0.264 Thread 0x00007fd5d0014510 DEOPT UNPACKING pc=0x00007fd5c08b8b19 sp=0x00007fd5d51fa9d8 mode 2 +Event: 0.275 Thread 0x00007fd5d0014510 Uncommon trap: trap_request=0xffffff45 fr.pc=0x00007fd5c0fcede8 relative=0x0000000000000048 +Event: 0.275 Thread 0x00007fd5d0014510 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00007fd5c0fcede8 method=java.lang.CharacterData.of(I)Ljava/lang/CharacterData; @ 4 c2 +Event: 0.275 Thread 0x00007fd5d0014510 DEOPT PACKING pc=0x00007fd5c0fcede8 sp=0x00007fd5d51fb020 +Event: 0.275 Thread 0x00007fd5d0014510 DEOPT UNPACKING pc=0x00007fd5c08b8b19 sp=0x00007fd5d51fafe0 mode 2 +Event: 0.276 Thread 0x00007fd5d0014510 Uncommon trap: trap_request=0xffffff45 fr.pc=0x00007fd5c0fb60c0 relative=0x00000000000001a0 +Event: 0.276 Thread 0x00007fd5d0014510 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00007fd5c0fb60c0 method=java.lang.String.isLatin1()Z @ 10 c2 +Event: 0.276 Thread 0x00007fd5d0014510 DEOPT PACKING pc=0x00007fd5c0fb60c0 sp=0x00007fd5d51fb890 +Event: 0.276 Thread 0x00007fd5d0014510 DEOPT UNPACKING pc=0x00007fd5c08b8b19 sp=0x00007fd5d51fb7e0 mode 2 + +Classes unloaded (0 events): +No events + +Classes redefined (0 events): +No events + +Internal exceptions (20 events): +Event: 0.190 Thread 0x00007fd5d0014510 Exception (0x00000005408cf258) +thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] +Event: 0.192 Thread 0x00007fd5d0014510 Exception (0x00000005408f42c8) +thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] +Event: 0.192 Thread 0x00007fd5d0014510 Exception (0x00000005408f7c48) +thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] +Event: 0.192 Thread 0x00007fd5d0014510 Exception (0x0000000540900108) +thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] +Event: 0.199 Thread 0x00007fd5d0014510 Exception (0x00000005409873f8) +thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] +Event: 0.201 Thread 0x00007fd5d0014510 Exception (0x00000005409a7340) +thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 826] +Event: 0.201 Thread 0x00007fd5d0014510 Exception (0x00000005409a9fb8) +thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 826] +Event: 0.202 Thread 0x00007fd5d0014510 Exception (0x00000005409b3860) +thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] +Event: 0.217 Thread 0x00007fd5d0014510 Exception (0x0000000540b14b50) +thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] +Event: 0.217 Thread 0x00007fd5d0014510 Exception (0x0000000540b18478) +thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 826] +Event: 0.218 Thread 0x00007fd5d0014510 Exception (0x0000000540b37760) +thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] +Event: 0.222 Thread 0x00007fd5d0014510 Exception (0x0000000540bb0220) +thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] +Event: 0.231 Thread 0x00007fd5d0014510 Exception (0x0000000540c8db38) +thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] +Event: 0.234 Thread 0x00007fd5d0014510 Exception (0x0000000540cfdd40) +thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] +Event: 0.245 Thread 0x00007fd5d0014510 Exception (0x0000000540de3678) +thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] +Event: 0.253 Thread 0x00007fd5d0014510 Exception (0x0000000540e97460) +thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] +Event: 0.253 Thread 0x00007fd5d0014510 Exception (0x0000000540e9c018) +thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] +Event: 0.254 Thread 0x00007fd5d0014510 Exception (0x0000000540ead3e0) +thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] +Event: 0.254 Thread 0x00007fd5d0014510 Exception (0x0000000540eb11d8) +thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 826] +Event: 0.313 Thread 0x00007fd5d0014510 Exception > (0x00000005400354a8) +thrown [./src/hotspot/share/prims/jni.cpp, line 1073] + +VM Operations (20 events): +Event: 0.109 Executing VM operation: HandshakeAllThreads +Event: 0.109 Executing VM operation: HandshakeAllThreads done +Event: 0.148 Executing VM operation: HandshakeAllThreads +Event: 0.148 Executing VM operation: HandshakeAllThreads done +Event: 0.195 Executing VM operation: ICBufferFull +Event: 0.195 Executing VM operation: ICBufferFull done +Event: 0.197 Executing VM operation: HandshakeAllThreads +Event: 0.197 Executing VM operation: HandshakeAllThreads done +Event: 0.205 Executing VM operation: HandshakeAllThreads +Event: 0.205 Executing VM operation: HandshakeAllThreads done +Event: 0.227 Executing VM operation: HandshakeAllThreads +Event: 0.227 Executing VM operation: HandshakeAllThreads done +Event: 0.235 Executing VM operation: HandshakeAllThreads +Event: 0.235 Executing VM operation: HandshakeAllThreads done +Event: 0.256 Executing VM operation: HandshakeAllThreads +Event: 0.256 Executing VM operation: HandshakeAllThreads done +Event: 0.264 Executing VM operation: HandshakeAllThreads +Event: 0.264 Executing VM operation: HandshakeAllThreads done +Event: 0.275 Executing VM operation: HandshakeAllThreads +Event: 0.275 Executing VM operation: HandshakeAllThreads done + +Events (20 events): +Event: 0.271 loading class java/lang/constant/DirectMethodHandleDesc$1 +Event: 0.271 loading class java/lang/constant/DirectMethodHandleDesc$1 done +Event: 0.271 loading class java/lang/constant/PrimitiveClassDescImpl +Event: 0.271 loading class java/lang/constant/DynamicConstantDesc +Event: 0.271 loading class java/lang/constant/DynamicConstantDesc done +Event: 0.271 loading class java/lang/constant/PrimitiveClassDescImpl done +Event: 0.271 loading class java/lang/constant/DynamicConstantDesc$AnonymousDynamicConstantDesc +Event: 0.271 loading class java/lang/constant/DynamicConstantDesc$AnonymousDynamicConstantDesc done +Event: 0.272 loading class sun/nio/fs/UnixFileModeAttribute +Event: 0.272 loading class sun/nio/fs/UnixFileModeAttribute done +Event: 0.272 loading class sun/nio/fs/UnixFileModeAttribute$1 +Event: 0.272 loading class sun/nio/fs/UnixFileModeAttribute$1 done +Event: 0.272 loading class jdk/internal/reflect/UnsafeObjectFieldAccessorImpl +Event: 0.272 loading class jdk/internal/reflect/UnsafeObjectFieldAccessorImpl done +Event: 0.275 loading class java/time/format/DateTimeParseException +Event: 0.275 loading class java/time/DateTimeException +Event: 0.275 loading class java/time/DateTimeException done +Event: 0.275 loading class java/time/format/DateTimeParseException done +Event: 0.277 loading class java/lang/UnsatisfiedLinkError +Event: 0.277 loading class java/lang/UnsatisfiedLinkError done + + +Dynamic libraries: +513000000-542000000 rw-p 00000000 00:00 0 +542000000-7ff000000 ---p 00000000 00:00 0 +7ff000000-7ff700000 rw-p 00000000 00:00 0 +7ff700000-7ff775000 rw-p 00c75000 08:14 11213468 /usr/lib/jvm/java-17-openjdk-amd64/lib/server/classes.jsa +7ff775000-7ff800000 rw-p 00000000 00:00 0 +7ff800000-7ff877000 rw-p 00bfe000 08:14 11213468 /usr/lib/jvm/java-17-openjdk-amd64/lib/server/classes.jsa +7ff877000-800000000 rw-p 00000000 00:00 0 +559dee519000-559dee51a000 r--p 00000000 08:14 11213397 /usr/lib/jvm/java-17-openjdk-amd64/bin/java +559dee51a000-559dee51b000 r-xp 00001000 08:14 11213397 /usr/lib/jvm/java-17-openjdk-amd64/bin/java +559dee51b000-559dee51c000 r--p 00002000 08:14 11213397 /usr/lib/jvm/java-17-openjdk-amd64/bin/java +559dee51c000-559dee51d000 r--p 00002000 08:14 11213397 /usr/lib/jvm/java-17-openjdk-amd64/bin/java +559dee51d000-559dee51e000 rw-p 00003000 08:14 11213397 /usr/lib/jvm/java-17-openjdk-amd64/bin/java +559dee88d000-559dee8d4000 rw-p 00000000 00:00 0 [heap] +7fd4bfffe000-7fd4e0021000 rw-p 00000000 00:00 0 +7fd4e0021000-7fd4e4000000 ---p 00000000 00:00 0 +7fd4e8000000-7fd4e8021000 rw-p 00000000 00:00 0 +7fd4e8021000-7fd4ec000000 ---p 00000000 00:00 0 +7fd4ec000000-7fd4ec021000 rw-p 00000000 00:00 0 +7fd4ec021000-7fd4f0000000 ---p 00000000 00:00 0 +7fd4f0000000-7fd4f0c86000 rw-p 00000000 00:00 0 +7fd4f0c86000-7fd4f4000000 ---p 00000000 00:00 0 +7fd4f4000000-7fd4f4021000 rw-p 00000000 00:00 0 +7fd4f4021000-7fd4f8000000 ---p 00000000 00:00 0 +7fd4f8000000-7fd4f8c4f000 rw-p 00000000 00:00 0 +7fd4f8c4f000-7fd4fc000000 ---p 00000000 00:00 0 +7fd4fc000000-7fd4fc15d000 rw-p 00000000 00:00 0 +7fd4fc15d000-7fd500000000 ---p 00000000 00:00 0 +7fd500000000-7fd500021000 rw-p 00000000 00:00 0 +7fd500021000-7fd504000000 ---p 00000000 00:00 0 +7fd504000000-7fd504021000 rw-p 00000000 00:00 0 +7fd504021000-7fd508000000 ---p 00000000 00:00 0 +7fd508000000-7fd508021000 rw-p 00000000 00:00 0 +7fd508021000-7fd50c000000 ---p 00000000 00:00 0 +7fd50c000000-7fd50c2bd000 rw-p 00000000 00:00 0 +7fd50c2bd000-7fd510000000 ---p 00000000 00:00 0 +7fd510000000-7fd510021000 rw-p 00000000 00:00 0 +7fd510021000-7fd514000000 ---p 00000000 00:00 0 +7fd514000000-7fd514021000 rw-p 00000000 00:00 0 +7fd514021000-7fd518000000 ---p 00000000 00:00 0 +7fd518000000-7fd5183ab000 rw-p 00000000 00:00 0 +7fd5183ab000-7fd51c000000 ---p 00000000 00:00 0 +7fd51c000000-7fd51c021000 rw-p 00000000 00:00 0 +7fd51c021000-7fd520000000 ---p 00000000 00:00 0 +7fd520000000-7fd520021000 rw-p 00000000 00:00 0 +7fd520021000-7fd524000000 ---p 00000000 00:00 0 +7fd524000000-7fd524e02000 rw-p 00000000 00:00 0 +7fd524e02000-7fd528000000 ---p 00000000 00:00 0 +7fd528000000-7fd528021000 rw-p 00000000 00:00 0 +7fd528021000-7fd52c000000 ---p 00000000 00:00 0 +7fd52c000000-7fd52c021000 rw-p 00000000 00:00 0 +7fd52c021000-7fd530000000 ---p 00000000 00:00 0 +7fd530000000-7fd530021000 rw-p 00000000 00:00 0 +7fd530021000-7fd534000000 ---p 00000000 00:00 0 +7fd534000000-7fd534021000 rw-p 00000000 00:00 0 +7fd534021000-7fd538000000 ---p 00000000 00:00 0 +7fd538000000-7fd538021000 rw-p 00000000 00:00 0 +7fd538021000-7fd53c000000 ---p 00000000 00:00 0 +7fd53cffc000-7fd53cffd000 ---p 00000000 00:00 0 +7fd53cffd000-7fd53d7fd000 rw-p 00000000 00:00 0 +7fd53d7fd000-7fd53d7fe000 ---p 00000000 00:00 0 +7fd53d7fe000-7fd53dffe000 rw-p 00000000 00:00 0 +7fd53dffe000-7fd53dfff000 ---p 00000000 00:00 0 +7fd53dfff000-7fd53e7ff000 rw-p 00000000 00:00 0 +7fd53e7ff000-7fd53e800000 ---p 00000000 00:00 0 +7fd53e800000-7fd53f000000 rw-p 00000000 00:00 0 +7fd53f000000-7fd53fbc6000 rw-p 00001000 08:14 11213468 /usr/lib/jvm/java-17-openjdk-amd64/lib/server/classes.jsa +7fd53fbc6000-7fd540000000 ---p 00000000 00:00 0 +7fd540000000-7fd540030000 rw-p 00000000 00:00 0 +7fd540030000-7fd540070000 rw-p 00000000 00:00 0 +7fd540070000-7fd5400d0000 rw-p 00000000 00:00 0 +7fd5400d0000-7fd5400f0000 rw-p 00000000 00:00 0 +7fd5400f0000-7fd580000000 ---p 00000000 00:00 0 +7fd580000000-7fd580021000 rw-p 00000000 00:00 0 +7fd580021000-7fd584000000 ---p 00000000 00:00 0 +7fd584000000-7fd584320000 rw-p 00000000 00:00 0 +7fd584320000-7fd584400000 ---p 00000000 00:00 0 +7fd584400000-7fd5846d0000 rw-p 00000000 00:00 0 +7fd5846d0000-7fd588000000 ---p 00000000 00:00 0 +7fd588000000-7fd588021000 rw-p 00000000 00:00 0 +7fd588021000-7fd58c000000 ---p 00000000 00:00 0 +7fd58c0be000-7fd58c34a000 rw-p 00000000 00:00 0 +7fd58c34a000-7fd58c34b000 ---p 00000000 00:00 0 +7fd58c34b000-7fd58cb4b000 rw-p 00000000 00:00 0 +7fd58cb4b000-7fd58cb4f000 r--p 00000000 08:14 10908334 /usr/lib/x86_64-linux-gnu/libzstd.so.1.5.4 +7fd58cb4f000-7fd58cbed000 r-xp 00004000 08:14 10908334 /usr/lib/x86_64-linux-gnu/libzstd.so.1.5.4 +7fd58cbed000-7fd58cbfd000 r--p 000a2000 08:14 10908334 /usr/lib/x86_64-linux-gnu/libzstd.so.1.5.4 +7fd58cbfd000-7fd58cbfe000 r--p 000b1000 08:14 10908334 /usr/lib/x86_64-linux-gnu/libzstd.so.1.5.4 +7fd58cbfe000-7fd58cbff000 rw-p 000b2000 08:14 10908334 /usr/lib/x86_64-linux-gnu/libzstd.so.1.5.4 +7fd58cbff000-7fd58cc03000 ---p 00000000 00:00 0 +7fd58cc03000-7fd58ccff000 rw-p 00000000 00:00 0 +7fd58ccff000-7fd58cd03000 ---p 00000000 00:00 0 +7fd58cd03000-7fd58cdff000 rw-p 00000000 00:00 0 +7fd58cdff000-7fd58ce03000 ---p 00000000 00:00 0 +7fd58ce03000-7fd58ceff000 rw-p 00000000 00:00 0 +7fd58ceff000-7fd58cf03000 ---p 00000000 00:00 0 +7fd58cf03000-7fd58cfff000 rw-p 00000000 00:00 0 +7fd58cfff000-7fd58d003000 ---p 00000000 00:00 0 +7fd58d003000-7fd58d0ff000 rw-p 00000000 00:00 0 +7fd58d0ff000-7fd58d103000 ---p 00000000 00:00 0 +7fd58d103000-7fd58d1ff000 rw-p 00000000 00:00 0 +7fd58d1ff000-7fd58d200000 ---p 00000000 00:00 0 +7fd58d200000-7fd58d300000 rw-p 00000000 00:00 0 +7fd58d300000-7fd58d304000 ---p 00000000 00:00 0 +7fd58d304000-7fd58d400000 rw-p 00000000 00:00 0 +7fd58d400000-7fd58d404000 ---p 00000000 00:00 0 +7fd58d404000-7fd58d500000 rw-p 00000000 00:00 0 +7fd58d500000-7fd58d504000 ---p 00000000 00:00 0 +7fd58d504000-7fd58d600000 rw-p 00000000 00:00 0 +7fd58d600000-7fd58d604000 ---p 00000000 00:00 0 +7fd58d604000-7fd58d700000 rw-p 00000000 00:00 0 +7fd58d700000-7fd58d704000 ---p 00000000 00:00 0 +7fd58d704000-7fd58d800000 rw-p 00000000 00:00 0 +7fd58d800000-7fd58d804000 ---p 00000000 00:00 0 +7fd58d804000-7fd58d900000 rw-p 00000000 00:00 0 +7fd58d900000-7fd58d904000 ---p 00000000 00:00 0 +7fd58d904000-7fd58da00000 rw-p 00000000 00:00 0 +7fd58da00000-7fd58df74000 r--p 00000000 08:14 10879460 /usr/lib/locale/locale-archive +7fd58dfdd000-7fd58dfe0000 r--p 00000000 08:14 10907948 /usr/lib/x86_64-linux-gnu/liblz4.so.1.9.4 +7fd58dfe0000-7fd58dffb000 r-xp 00003000 08:14 10907948 /usr/lib/x86_64-linux-gnu/liblz4.so.1.9.4 +7fd58dffb000-7fd58dffe000 r--p 0001e000 08:14 10907948 /usr/lib/x86_64-linux-gnu/liblz4.so.1.9.4 +7fd58dffe000-7fd58dfff000 r--p 00020000 08:14 10907948 /usr/lib/x86_64-linux-gnu/liblz4.so.1.9.4 +7fd58dfff000-7fd58e000000 rw-p 00021000 08:14 10907948 /usr/lib/x86_64-linux-gnu/liblz4.so.1.9.4 +7fd58e000000-7fd590021000 rw-p 00000000 00:00 0 +7fd590021000-7fd594000000 ---p 00000000 00:00 0 +7fd594000000-7fd594021000 rw-p 00000000 00:00 0 +7fd594021000-7fd598000000 ---p 00000000 00:00 0 +7fd598000000-7fd598021000 rw-p 00000000 00:00 0 +7fd598021000-7fd59c000000 ---p 00000000 00:00 0 +7fd59c005000-7fd59c00d000 r--p 00000000 08:14 11018131 /usr/local/lib/libtidesdb.so +7fd59c00d000-7fd59c056000 r-xp 00008000 08:14 11018131 /usr/local/lib/libtidesdb.so +7fd59c056000-7fd59c064000 r--p 00051000 08:14 11018131 /usr/local/lib/libtidesdb.so +7fd59c064000-7fd59c065000 r--p 0005e000 08:14 11018131 /usr/local/lib/libtidesdb.so +7fd59c065000-7fd59c066000 rw-p 0005f000 08:14 11018131 /usr/local/lib/libtidesdb.so +7fd59c066000-7fd59c067000 rw-p 00000000 00:00 0 +7fd59c088000-7fd59c08c000 ---p 00000000 00:00 0 +7fd59c08c000-7fd59c188000 rw-p 00000000 00:00 0 +7fd59c188000-7fd59c18c000 ---p 00000000 00:00 0 +7fd59c18c000-7fd59c288000 rw-p 00000000 00:00 0 +7fd59c288000-7fd59c289000 ---p 00000000 00:00 0 +7fd59c289000-7fd59c389000 rw-p 00000000 00:00 0 +7fd59c389000-7fd59c38e000 r--p 00000000 08:14 11213452 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjsvml.so +7fd59c38e000-7fd59c3cf000 r-xp 00005000 08:14 11213452 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjsvml.so +7fd59c3cf000-7fd59c458000 r--p 00046000 08:14 11213452 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjsvml.so +7fd59c458000-7fd59c459000 r--p 000ce000 08:14 11213452 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjsvml.so +7fd59c459000-7fd59c45a000 rw-p 000cf000 08:14 11213452 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjsvml.so +7fd59c45a000-7fd59c536000 rw-p 00000000 00:00 0 +7fd59c536000-7fd59c537000 ---p 00000000 00:00 0 +7fd59c537000-7fd59c637000 rw-p 00000000 00:00 0 +7fd59c637000-7fd59c638000 ---p 00000000 00:00 0 +7fd59c638000-7fd59d445000 rw-p 00000000 00:00 0 +7fd59d445000-7fd59d446000 ---p 00000000 00:00 0 +7fd59d446000-7fd59d546000 rw-p 00000000 00:00 0 +7fd59d546000-7fd59d547000 ---p 00000000 00:00 0 +7fd59d547000-7fd59d647000 rw-p 00000000 00:00 0 +7fd59d647000-7fd59d648000 ---p 00000000 00:00 0 +7fd59d648000-7fd59e308000 rw-p 00000000 00:00 0 +7fd59e308000-7fd5a9248000 ---p 00000000 00:00 0 +7fd5a9248000-7fd5a9e48000 rw-p 00000000 00:00 0 +7fd5a9e48000-7fd5b4d88000 ---p 00000000 00:00 0 +7fd5b4d88000-7fd5b4f40000 rw-p 00000000 00:00 0 +7fd5b4f40000-7fd5b6528000 ---p 00000000 00:00 0 +7fd5b6528000-7fd5b66a8000 rw-p 00000000 00:00 0 +7fd5b66a8000-7fd5b7c90000 ---p 00000000 00:00 0 +7fd5b7c90000-7fd5b7e10000 rw-p 00000000 00:00 0 +7fd5b7e10000-7fd5b93f8000 ---p 00000000 00:00 0 +7fd5b93f8000-7fd5b9400000 rw-p 00000000 00:00 0 +7fd5b9400000-7fd5b96e0000 rwxp 00000000 00:00 0 +7fd5b96e0000-7fd5c085f000 ---p 00000000 00:00 0 +7fd5c085f000-7fd5c0acf000 rwxp 00000000 00:00 0 +7fd5c0acf000-7fd5c0fa0000 ---p 00000000 00:00 0 +7fd5c0fa0000-7fd5c1210000 rwxp 00000000 00:00 0 +7fd5c1210000-7fd5c8400000 ---p 00000000 00:00 0 +7fd5c8400000-7fd5cfe68000 r--s 00000000 08:14 11213467 /usr/lib/jvm/java-17-openjdk-amd64/lib/modules +7fd5cfe87000-7fd5cfec8000 rw-p 00000000 00:00 0 +7fd5cfed2000-7fd5cfed5000 r--p 00000000 08:14 10881736 /usr/lib/x86_64-linux-gnu/libsnappy.so.1.1.9 +7fd5cfed5000-7fd5cfeda000 r-xp 00003000 08:14 10881736 /usr/lib/x86_64-linux-gnu/libsnappy.so.1.1.9 +7fd5cfeda000-7fd5cfedb000 r--p 00008000 08:14 10881736 /usr/lib/x86_64-linux-gnu/libsnappy.so.1.1.9 +7fd5cfedb000-7fd5cfedc000 r--p 00009000 08:14 10881736 /usr/lib/x86_64-linux-gnu/libsnappy.so.1.1.9 +7fd5cfedc000-7fd5cfedd000 rw-p 0000a000 08:14 10881736 /usr/lib/x86_64-linux-gnu/libsnappy.so.1.1.9 +7fd5cfedd000-7fd5cfee0000 r--p 00000000 08:14 11022710 /usr/local/lib/libtidesdb_jni.so +7fd5cfee0000-7fd5cfee4000 r-xp 00003000 08:14 11022710 /usr/local/lib/libtidesdb_jni.so +7fd5cfee4000-7fd5cfee5000 r--p 00007000 08:14 11022710 /usr/local/lib/libtidesdb_jni.so +7fd5cfee5000-7fd5cfee6000 r--p 00007000 08:14 11022710 /usr/local/lib/libtidesdb_jni.so +7fd5cfee6000-7fd5cfee7000 rw-p 00008000 08:14 11022710 /usr/local/lib/libtidesdb_jni.so +7fd5cfee7000-7fd5cfeeb000 r--p 00000000 08:14 11213458 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnet.so +7fd5cfeeb000-7fd5cfef9000 r-xp 00004000 08:14 11213458 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnet.so +7fd5cfef9000-7fd5cfefd000 r--p 00012000 08:14 11213458 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnet.so +7fd5cfefd000-7fd5cfefe000 r--p 00015000 08:14 11213458 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnet.so +7fd5cfefe000-7fd5cfeff000 rw-p 00016000 08:14 11213458 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnet.so +7fd5cfeff000-7fd5d3fa5000 rw-p 00000000 00:00 0 +7fd5d3fa5000-7fd5d4000000 ---p 00000000 00:00 0 +7fd5d4003000-7fd5d4005000 r--p 00000000 08:14 11213456 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement_ext.so +7fd5d4005000-7fd5d4008000 r-xp 00002000 08:14 11213456 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement_ext.so +7fd5d4008000-7fd5d400a000 r--p 00005000 08:14 11213456 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement_ext.so +7fd5d400a000-7fd5d400b000 r--p 00006000 08:14 11213456 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement_ext.so +7fd5d400b000-7fd5d400c000 rw-p 00007000 08:14 11213456 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement_ext.so +7fd5d400c000-7fd5d4013000 r--p 00000000 08:14 11213459 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnio.so +7fd5d4013000-7fd5d401c000 r-xp 00007000 08:14 11213459 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnio.so +7fd5d401c000-7fd5d4020000 r--p 00010000 08:14 11213459 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnio.so +7fd5d4020000-7fd5d4021000 r--p 00014000 08:14 11213459 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnio.so +7fd5d4021000-7fd5d4022000 rw-p 00015000 08:14 11213459 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnio.so +7fd5d4022000-7fd5d4c33000 rw-p 00000000 00:00 0 +7fd5d4c33000-7fd5d4d17000 ---p 00000000 00:00 0 +7fd5d4d17000-7fd5d4d1d000 rw-p 00000000 00:00 0 +7fd5d4d1d000-7fd5d4e00000 ---p 00000000 00:00 0 +7fd5d4e00000-7fd5d4e9c000 r--p 00000000 08:14 10888123 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.32 +7fd5d4e9c000-7fd5d4fcd000 r-xp 0009c000 08:14 10888123 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.32 +7fd5d4fcd000-7fd5d505a000 r--p 001cd000 08:14 10888123 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.32 +7fd5d505a000-7fd5d5065000 r--p 0025a000 08:14 10888123 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.32 +7fd5d5065000-7fd5d5068000 rw-p 00265000 08:14 10888123 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.32 +7fd5d5068000-7fd5d506c000 rw-p 00000000 00:00 0 +7fd5d5070000-7fd5d5100000 rw-p 00000000 00:00 0 +7fd5d5100000-7fd5d5104000 ---p 00000000 00:00 0 +7fd5d5104000-7fd5d5200000 rw-p 00000000 00:00 0 +7fd5d5200000-7fd5d5451000 r--p 00000000 08:14 11213471 /usr/lib/jvm/java-17-openjdk-amd64/lib/server/libjvm.so +7fd5d5451000-7fd5d61b3000 r-xp 00251000 08:14 11213471 /usr/lib/jvm/java-17-openjdk-amd64/lib/server/libjvm.so +7fd5d61b3000-7fd5d6433000 r--p 00fb3000 08:14 11213471 /usr/lib/jvm/java-17-openjdk-amd64/lib/server/libjvm.so +7fd5d6433000-7fd5d64eb000 r--p 01233000 08:14 11213471 /usr/lib/jvm/java-17-openjdk-amd64/lib/server/libjvm.so +7fd5d64eb000-7fd5d6520000 rw-p 012eb000 08:14 11213471 /usr/lib/jvm/java-17-openjdk-amd64/lib/server/libjvm.so +7fd5d6520000-7fd5d657a000 rw-p 00000000 00:00 0 +7fd5d657b000-7fd5d65d9000 rw-p 00000000 00:00 0 +7fd5d65d9000-7fd5d65e5000 r--p 00000000 08:14 11213445 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjava.so +7fd5d65e5000-7fd5d65f7000 r-xp 0000c000 08:14 11213445 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjava.so +7fd5d65f7000-7fd5d65fd000 r--p 0001e000 08:14 11213445 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjava.so +7fd5d65fd000-7fd5d65fe000 r--p 00023000 08:14 11213445 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjava.so +7fd5d65fe000-7fd5d65ff000 rw-p 00024000 08:14 11213445 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjava.so +7fd5d65ff000-7fd5d6600000 rw-p 00000000 00:00 0 +7fd5d6600000-7fd5d6622000 r--p 00000000 08:14 10888103 /usr/lib/x86_64-linux-gnu/libc.so.6 +7fd5d6622000-7fd5d679a000 r-xp 00022000 08:14 10888103 /usr/lib/x86_64-linux-gnu/libc.so.6 +7fd5d679a000-7fd5d67f2000 r--p 0019a000 08:14 10888103 /usr/lib/x86_64-linux-gnu/libc.so.6 +7fd5d67f2000-7fd5d67f6000 r--p 001f1000 08:14 10888103 /usr/lib/x86_64-linux-gnu/libc.so.6 +7fd5d67f6000-7fd5d67f8000 rw-p 001f5000 08:14 10888103 /usr/lib/x86_64-linux-gnu/libc.so.6 +7fd5d67f8000-7fd5d6805000 rw-p 00000000 00:00 0 +7fd5d6805000-7fd5d680c000 r--s 00000000 08:14 10965240 /usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache +7fd5d680c000-7fd5d680e000 r--p 00000000 08:14 11213454 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement.so +7fd5d680e000-7fd5d680f000 r-xp 00002000 08:14 11213454 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement.so +7fd5d680f000-7fd5d6810000 r--p 00003000 08:14 11213454 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement.so +7fd5d6810000-7fd5d6811000 r--p 00003000 08:14 11213454 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement.so +7fd5d6811000-7fd5d6812000 rw-p 00004000 08:14 11213454 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement.so +7fd5d6812000-7fd5d6817000 rw-p 00000000 00:00 0 +7fd5d6817000-7fd5d6821000 ---p 00000000 00:00 0 +7fd5d6821000-7fd5d6824000 r--p 00000000 08:14 10888119 /usr/lib/x86_64-linux-gnu/libgcc_s.so.1 +7fd5d6824000-7fd5d683f000 r-xp 00003000 08:14 10888119 /usr/lib/x86_64-linux-gnu/libgcc_s.so.1 +7fd5d683f000-7fd5d6843000 r--p 0001e000 08:14 10888119 /usr/lib/x86_64-linux-gnu/libgcc_s.so.1 +7fd5d6843000-7fd5d6844000 r--p 00021000 08:14 10888119 /usr/lib/x86_64-linux-gnu/libgcc_s.so.1 +7fd5d6844000-7fd5d6845000 rw-p 00022000 08:14 10888119 /usr/lib/x86_64-linux-gnu/libgcc_s.so.1 +7fd5d6845000-7fd5d6853000 r--p 00000000 08:14 10888109 /usr/lib/x86_64-linux-gnu/libm.so.6 +7fd5d6853000-7fd5d68d1000 r-xp 0000e000 08:14 10888109 /usr/lib/x86_64-linux-gnu/libm.so.6 +7fd5d68d1000-7fd5d692c000 r--p 0008c000 08:14 10888109 /usr/lib/x86_64-linux-gnu/libm.so.6 +7fd5d692c000-7fd5d692d000 r--p 000e6000 08:14 10888109 /usr/lib/x86_64-linux-gnu/libm.so.6 +7fd5d692d000-7fd5d692e000 rw-p 000e7000 08:14 10888109 /usr/lib/x86_64-linux-gnu/libm.so.6 +7fd5d692e000-7fd5d6931000 rw-p 00000000 00:00 0 +7fd5d6931000-7fd5d6933000 r--p 00000000 08:14 11213449 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjli.so +7fd5d6933000-7fd5d693d000 r-xp 00002000 08:14 11213449 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjli.so +7fd5d693d000-7fd5d6940000 r--p 0000c000 08:14 11213449 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjli.so +7fd5d6940000-7fd5d6941000 r--p 0000e000 08:14 11213449 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjli.so +7fd5d6941000-7fd5d6942000 rw-p 0000f000 08:14 11213449 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjli.so +7fd5d6942000-7fd5d6945000 r--p 00000000 08:14 10908333 /usr/lib/x86_64-linux-gnu/libz.so.1.2.13 +7fd5d6945000-7fd5d6957000 r-xp 00003000 08:14 10908333 /usr/lib/x86_64-linux-gnu/libz.so.1.2.13 +7fd5d6957000-7fd5d695e000 r--p 00015000 08:14 10908333 /usr/lib/x86_64-linux-gnu/libz.so.1.2.13 +7fd5d695e000-7fd5d695f000 r--p 0001b000 08:14 10908333 /usr/lib/x86_64-linux-gnu/libz.so.1.2.13 +7fd5d695f000-7fd5d6960000 rw-p 0001c000 08:14 10908333 /usr/lib/x86_64-linux-gnu/libz.so.1.2.13 +7fd5d6963000-7fd5d6965000 r--p 00000000 08:14 11213466 /usr/lib/jvm/java-17-openjdk-amd64/lib/libzip.so +7fd5d6965000-7fd5d696a000 r-xp 00002000 08:14 11213466 /usr/lib/jvm/java-17-openjdk-amd64/lib/libzip.so +7fd5d696a000-7fd5d696c000 r--p 00007000 08:14 11213466 /usr/lib/jvm/java-17-openjdk-amd64/lib/libzip.so +7fd5d696c000-7fd5d696d000 r--p 00008000 08:14 11213466 /usr/lib/jvm/java-17-openjdk-amd64/lib/libzip.so +7fd5d696d000-7fd5d696e000 rw-p 00009000 08:14 11213466 /usr/lib/jvm/java-17-openjdk-amd64/lib/libzip.so +7fd5d696e000-7fd5d6976000 rw-s 00000000 08:14 18885538 /tmp/hsperfdata_agpmastersystem/2048993 +7fd5d6976000-7fd5d6977000 ---p 00000000 00:00 0 +7fd5d6977000-7fd5d6978000 r--p 00000000 00:00 0 +7fd5d6978000-7fd5d6979000 ---p 00000000 00:00 0 +7fd5d6979000-7fd5d697b000 r--p 00000000 08:14 11213448 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjimage.so +7fd5d697b000-7fd5d697e000 r-xp 00002000 08:14 11213448 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjimage.so +7fd5d697e000-7fd5d697f000 r--p 00005000 08:14 11213448 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjimage.so +7fd5d697f000-7fd5d6980000 r--p 00006000 08:14 11213448 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjimage.so +7fd5d6980000-7fd5d6981000 rw-p 00007000 08:14 11213448 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjimage.so +7fd5d6981000-7fd5d6983000 rw-p 00000000 00:00 0 +7fd5d6983000-7fd5d6984000 r--p 00000000 08:14 10887950 /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2 +7fd5d6984000-7fd5d69ac000 r-xp 00001000 08:14 10887950 /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2 +7fd5d69ac000-7fd5d69b6000 r--p 00029000 08:14 10887950 /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2 +7fd5d69b6000-7fd5d69b8000 r--p 00033000 08:14 10887950 /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2 +7fd5d69b8000-7fd5d69ba000 rw-p 00035000 08:14 10887950 /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2 +7fff63bfe000-7fff63c20000 rw-p 00000000 00:00 0 [stack] +7fff63cb8000-7fff63cbc000 r--p 00000000 00:00 0 [vvar] +7fff63cbc000-7fff63cbe000 r-xp 00000000 00:00 0 [vdso] +ffffffffff600000-ffffffffff601000 --xp 00000000 00:00 0 [vsyscall] + + +VM Arguments: +jvm_args: -Djava.library.path=/usr/local/lib +java_command: /home/agpmastersystem/bnd/tidesdb-java/target/surefire/surefirebooter-20260313005533920_3.jar /home/agpmastersystem/bnd/tidesdb-java/target/surefire 2026-03-13T00-55-33_849-jvmRun1 surefire-20260313005533920_1tmp surefire_0-20260313005533920_2tmp +java_class_path (initial): /home/agpmastersystem/bnd/tidesdb-java/target/surefire/surefirebooter-20260313005533920_3.jar +Launcher Type: SUN_STANDARD + +[Global flags] + intx CICompilerCount = 12 {product} {ergonomic} + uint ConcGCThreads = 3 {product} {ergonomic} + uint G1ConcRefinementThreads = 13 {product} {ergonomic} + size_t G1HeapRegionSize = 8388608 {product} {ergonomic} + uintx GCDrainStackTargetSize = 64 {product} {ergonomic} + size_t InitialHeapSize = 788529152 {product} {ergonomic} + size_t MarkStackSize = 4194304 {product} {ergonomic} + size_t MaxHeapSize = 12566134784 {product} {ergonomic} + size_t MaxNewSize = 7532969984 {product} {ergonomic} + size_t MinHeapDeltaBytes = 8388608 {product} {ergonomic} + size_t MinHeapSize = 8388608 {product} {ergonomic} + uintx NonNMethodCodeHeapSize = 7602480 {pd product} {ergonomic} + uintx NonProfiledCodeHeapSize = 122027880 {pd product} {ergonomic} + uintx ProfiledCodeHeapSize = 122027880 {pd product} {ergonomic} + uintx ReservedCodeCacheSize = 251658240 {pd product} {ergonomic} + bool SegmentedCodeCache = true {product} {ergonomic} + size_t SoftMaxHeapSize = 12566134784 {manageable} {ergonomic} + bool UseCompressedClassPointers = true {product lp64_product} {ergonomic} + bool UseCompressedOops = true {product lp64_product} {ergonomic} + bool UseG1GC = true {product} {ergonomic} + +Logging: +Log output configuration: + #0: stdout all=warning uptime,level,tags + #1: stderr all=off uptime,level,tags + +Environment Variables: +PATH=/home/agpmastersystem/bin:/home/agpmastersystem/flutter/flutter/bin:/home/agpmastersystem/flutter/flutter/bin:/home/agpmastersystem/development/flutter/bin:/home/agpmastersystem/.local/bin:/home/agpmastersystem/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin:/home/agpmastersystem/.dotnet/tools:/home/agpmastersystem/.dotnet/tools:/home/agpmastersystem/julia-1.10.0/bin:/opt/zig/zig-linux-x86_64-0.13.0 +USERNAME=agpmastersystem +SHELL=/bin/bash +DISPLAY=:1 +LANG=en_US.UTF-8 +TERM=xterm-256color + +Active Locale: +LC_ALL=en_US.UTF-8 +LC_COLLATE=en_US.UTF-8 +LC_CTYPE=en_US.UTF-8 +LC_MESSAGES=en_US.UTF-8 +LC_MONETARY=en_US.UTF-8 +LC_NUMERIC=en_US.UTF-8 +LC_TIME=en_US.UTF-8 + +Signal Handlers: + SIGSEGV: crash_handler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, unblocked + SIGBUS: crash_handler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, unblocked + SIGFPE: crash_handler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, unblocked + SIGPIPE: javaSignalHandler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, blocked + SIGXFSZ: javaSignalHandler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, blocked + SIGILL: crash_handler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, unblocked + SIGUSR2: SR_handler in libjvm.so, mask=00000000000000000000000000000000, flags=SA_RESTART|SA_SIGINFO, blocked + SIGHUP: UserHandler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, blocked + SIGINT: UserHandler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, blocked + SIGTERM: UserHandler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, blocked + SIGQUIT: UserHandler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, blocked + SIGTRAP: crash_handler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, unblocked + + +Periodic native trim disabled + + +--------------- S Y S T E M --------------- + +OS: +DISTRIB_ID=Ubuntu +DISTRIB_RELEASE=23.04 +DISTRIB_CODENAME=lunar +DISTRIB_DESCRIPTION="Ubuntu 23.04" +uname: Linux 6.2.0-39-generic #40-Ubuntu SMP PREEMPT_DYNAMIC Tue Nov 14 14:18:00 UTC 2023 x86_64 +OS uptime: 8 days 10:11 hours +libc: glibc 2.37 NPTL 2.37 +rlimit (soft/hard): STACK 8192k/infinity , CORE 0k/infinity , NPROC 191244/191244 , NOFILE 1048576/1048576 , AS infinity/infinity , CPU infinity/infinity , DATA infinity/infinity , FSIZE infinity/infinity , MEMLOCK 6134892k/6134892k +load average: 9.14 6.28 6.96 + +/proc/meminfo: +MemTotal: 49079140 kB +MemFree: 486224 kB +MemAvailable: 21208312 kB +Buffers: 2057320 kB +Cached: 18530208 kB +SwapCached: 93336 kB +Active: 14683080 kB +Inactive: 31289092 kB +Active(anon): 2692248 kB +Inactive(anon): 23299044 kB +Active(file): 11990832 kB +Inactive(file): 7990048 kB +Unevictable: 1668 kB +Mlocked: 264 kB +SwapTotal: 8388604 kB +SwapFree: 5683452 kB +Zswap: 0 kB +Zswapped: 0 kB +Dirty: 2852 kB +Writeback: 0 kB +AnonPages: 25330160 kB +Mapped: 1259560 kB +Shmem: 606640 kB +KReclaimable: 1337684 kB +Slab: 1840348 kB +SReclaimable: 1337684 kB +SUnreclaim: 502664 kB +KernelStack: 44568 kB +PageTables: 183668 kB +SecPageTables: 0 kB +NFS_Unstable: 0 kB +Bounce: 0 kB +WritebackTmp: 0 kB +CommitLimit: 32928172 kB +Committed_AS: 89715620 kB +VmallocTotal: 34359738367 kB +VmallocUsed: 163524 kB +VmallocChunk: 0 kB +Percpu: 18176 kB +HardwareCorrupted: 0 kB +AnonHugePages: 10240 kB +ShmemHugePages: 2048 kB +ShmemPmdMapped: 0 kB +FileHugePages: 0 kB +FilePmdMapped: 0 kB +HugePages_Total: 0 +HugePages_Free: 0 +HugePages_Rsvd: 0 +HugePages_Surp: 0 +Hugepagesize: 2048 kB +Hugetlb: 0 kB +DirectMap4k: 2126020 kB +DirectMap2M: 41670656 kB +DirectMap1G: 7340032 kB + +/sys/kernel/mm/transparent_hugepage/enabled: always [madvise] never +/sys/kernel/mm/transparent_hugepage/defrag (defrag/compaction efforts parameter): always defer defer+madvise [madvise] never + +Process Memory: +Virtual Size: 16753356K (peak: 16753356K) +Resident Set Size: 185496K (peak: 185496K) (anon: 162452K, file: 23044K, shmem: 0K) +Swapped out: 0K +C-Heap outstanding allocations: 664549K, retained: 6570K +glibc malloc tunables: (default) + +/proc/sys/kernel/threads-max (system-wide limit on the number of threads): 382489 +/proc/sys/vm/max_map_count (maximum number of memory map areas a process may have): 65530 +/proc/sys/kernel/pid_max (system-wide limit on number of process identifiers): 4194304 + +container (cgroup) information: +container_type: cgroupv2 +cpu_cpuset_cpus: not supported +cpu_memory_nodes: not supported +active_processor_count: 16 +cpu_quota: not supported +cpu_period: not supported +cpu_shares: not supported +memory_limit_in_bytes: unlimited +memory_and_swap_limit_in_bytes: unlimited +memory_soft_limit_in_bytes: unlimited +memory_usage_in_bytes: 20302984 k +memory_max_usage_in_bytes: not supported +memory_swap_current_in_bytes: 661184 k +memory_swap_max_limit_in_bytes: unlimited +maximum number of tasks: 57373 +current number of tasks: 684 + +Steal ticks since vm start: 0 +Steal ticks percentage since vm start: 0.000 + +CPU: total 16 (initial active 16) (8 cores per cpu, 2 threads per core) family 6 model 167 stepping 1 microcode 0x5d, cx8, cmov, fxsr, ht, mmx, 3dnowpref, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, lzcnt, tsc, tscinvbit, avx, avx2, aes, erms, clmul, bmi1, bmi2, adx, avx512f, avx512dq, avx512cd, avx512bw, avx512vl, sha, fma, vzeroupper, avx512_vpopcntdq, avx512_vpclmulqdq, avx512_vaes, avx512_vnni, clflush, clflushopt, avx512_vbmi2, avx512_vbmi +CPU Model and flags from /proc/cpuinfo: +model name : 11th Gen Intel(R) Core(TM) i7-11700K @ 3.60GHz +flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid mpx avx512f avx512dq rdseed adx smap avx512ifma clflushopt intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp hwp_pkg_req avx512vbmi umip pku ospke avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg avx512_vpopcntdq rdpid fsrm md_clear flush_l1d arch_capabilities + +Online cpus: 0-15 +Offline cpus: +BIOS frequency limitation: +Frequency switch latency (ns): 0 +Available cpu frequencies: +Current governor: powersave +Core performance/turbo boost: + +Memory: 4k page, physical 49079140k(486712k free), swap 8388604k(5683452k free) +Page Sizes: 4k + +vm_info: OpenJDK 64-Bit Server VM (17.0.9+9-Ubuntu-123.04) for linux-amd64 JRE (17.0.9+9-Ubuntu-123.04), built on Oct 19 2023 08:33:16 by "buildd" with gcc 12.3.0 + +END. diff --git a/hs_err_pid2050292.log b/hs_err_pid2050292.log new file mode 100644 index 0000000..662ae99 --- /dev/null +++ b/hs_err_pid2050292.log @@ -0,0 +1,1238 @@ +# +# A fatal error has been detected by the Java Runtime Environment: +# +# SIGSEGV (0xb) at pc=0x00007f70f40d79e8, pid=2050292, tid=2050293 +# +# JRE version: OpenJDK Runtime Environment (17.0.9+9) (build 17.0.9+9-Ubuntu-123.04) +# Java VM: OpenJDK 64-Bit Server VM (17.0.9+9-Ubuntu-123.04, mixed mode, sharing, tiered, compressed oops, compressed class ptrs, g1 gc, linux-amd64) +# Problematic frame: +# V [libjvm.so+0x8d79e8] jni_NewObject+0x128 +# +# Core dump will be written. Default location: Core dumps may be processed with "/usr/share/apport/apport -p%p -s%s -c%c -d%d -P%P -u%u -g%g -- %E" (or dumping to /home/agpmastersystem/bnd/tidesdb-java/core.2050292) +# +# If you would like to submit a bug report, please visit: +# Unknown +# + +--------------- S U M M A R Y ------------ + +Command Line: -Djava.library.path=/usr/local/lib /home/agpmastersystem/bnd/tidesdb-java/target/surefire/surefirebooter-20260313005825693_3.jar /home/agpmastersystem/bnd/tidesdb-java/target/surefire 2026-03-13T00-58-25_630-jvmRun1 surefire-20260313005825693_1tmp surefire_0-20260313005825693_2tmp + +Host: 11th Gen Intel(R) Core(TM) i7-11700K @ 3.60GHz, 16 cores, 46G, Ubuntu 23.04 +Time: Fri Mar 13 00:58:26 2026 EDT elapsed time: 0.332531 seconds (0d 0h 0m 0s) + +--------------- T H R E A D --------------- + +Current thread (0x00007f70ec014510): JavaThread "main" [_thread_in_vm, id=2050293, stack(0x00007f70f3700000,0x00007f70f3800000)] + +Stack: [0x00007f70f3700000,0x00007f70f3800000], sp=0x00007f70f37fb9b0, free space=1006k +Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code) +V [libjvm.so+0x8d79e8] jni_NewObject+0x128 +C [libtidesdb_jni.so+0x68a4] Java_com_tidesdb_TidesDB_nativeGetDbStats+0x1db +j com.tidesdb.TidesDB.nativeGetDbStats(J)Lcom/tidesdb/DbStats;+0 +j com.tidesdb.TidesDB.getDbStats()Lcom/tidesdb/DbStats;+8 +j com.tidesdb.TidesDBTest.testGetDbStats()V+179 +v ~StubRoutines::call_stub +V [libjvm.so+0x836d12] JavaCalls::call_helper(JavaValue*, methodHandle const&, JavaCallArguments*, JavaThread*)+0x302 +V [libjvm.so+0xcc5dbc] invoke(InstanceKlass*, methodHandle const&, Handle, bool, objArrayHandle, BasicType, objArrayHandle, bool, JavaThread*) [clone .constprop.0]+0x74c +V [libjvm.so+0xcc6af8] Reflection::invoke_method(oopDesc*, Handle, objArrayHandle, JavaThread*)+0x138 +V [libjvm.so+0x90daa4] JVM_InvokeMethod+0x144 +j jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+0 java.base@17.0.9 +j jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+133 java.base@17.0.9 +j jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+6 java.base@17.0.9 +j java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+59 java.base@17.0.9 +j org.junit.platform.commons.util.ReflectionUtils.invokeMethod(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+42 +j org.junit.jupiter.engine.execution.MethodInvocation.proceed()Ljava/lang/Object;+16 +j org.junit.jupiter.engine.execution.InvocationInterceptorChain$ValidatingInvocation.proceed()Ljava/lang/Object;+8 +j org.junit.jupiter.engine.extension.TimeoutExtension.intercept(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/extension/TimeoutDuration;Lorg/junit/jupiter/engine/extension/TimeoutExtension$TimeoutProvider;)Ljava/lang/Object;+28 +j org.junit.jupiter.engine.extension.TimeoutExtension.interceptTestableMethod(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/extension/TimeoutExtension$TimeoutProvider;)Ljava/lang/Object;+31 +j org.junit.jupiter.engine.extension.TimeoutExtension.interceptTestMethod(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;)V+9 +j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor$$Lambda$186+0x00007f706408e318.apply(Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;)V+5 +j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker$ReflectiveInterceptorCall.lambda$ofVoidMethod$0(Lorg/junit/jupiter/engine/execution/InterceptingExecutableInvoker$ReflectiveInterceptorCall$VoidMethodInterceptorCall;Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;)Ljava/lang/Void;+6 +j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker$ReflectiveInterceptorCall$$Lambda$187+0x00007f706408e738.apply(Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;)Ljava/lang/Object;+9 +j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.lambda$invoke$0(Lorg/junit/jupiter/engine/execution/InterceptingExecutableInvoker$ReflectiveInterceptorCall;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;)Ljava/lang/Object;+6 +j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker$$Lambda$392+0x00007f70640c7378.apply(Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;)Ljava/lang/Object;+14 +j org.junit.jupiter.engine.execution.InvocationInterceptorChain$InterceptedInvocation.proceed()Ljava/lang/Object;+12 +j org.junit.jupiter.engine.execution.InvocationInterceptorChain.proceed(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;)Ljava/lang/Object;+1 +j org.junit.jupiter.engine.execution.InvocationInterceptorChain.chainAndInvoke(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/engine/execution/InvocationInterceptorChain$InterceptorCall;Ljava/util/List;)Ljava/lang/Object;+24 +j org.junit.jupiter.engine.execution.InvocationInterceptorChain.invoke(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/engine/extension/ExtensionRegistry;Lorg/junit/jupiter/engine/execution/InvocationInterceptorChain$InterceptorCall;)Ljava/lang/Object;+31 +j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.invoke(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/extension/ExtensionRegistry;Lorg/junit/jupiter/engine/execution/InterceptingExecutableInvoker$ReflectiveInterceptorCall;)Ljava/lang/Object;+15 +j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.invoke(Ljava/lang/reflect/Method;Ljava/lang/Object;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/extension/ExtensionRegistry;Lorg/junit/jupiter/engine/execution/InterceptingExecutableInvoker$ReflectiveInterceptorCall;)Ljava/lang/Object;+55 +j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.lambda$invokeTestMethod$7(Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/execution/JupiterEngineExecutionContext;)V+28 +j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor$$Lambda$427+0x00007f70640cc300.execute()V+12 +j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 +j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.invokeTestMethod(Lorg/junit/jupiter/engine/execution/JupiterEngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$DynamicTestExecutor;)V+21 +j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.execute(Lorg/junit/jupiter/engine/execution/JupiterEngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$DynamicTestExecutor;)Lorg/junit/jupiter/engine/execution/JupiterEngineExecutionContext;+44 +j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.execute(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$DynamicTestExecutor;)Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;+6 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6()V+79 +j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$317+0x00007f70640b7038.execute()V+4 +j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+15 +j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$316+0x00007f70640b6e10.invoke(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+5 +j org.junit.platform.engine.support.hierarchical.Node.around(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$Invocation;)V+2 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9()V+14 +j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$315+0x00007f70640b69e8.execute()V+4 +j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively()V+31 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.execute()V+55 +j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService$$Lambda$321+0x00007f70640b7b50.accept(Ljava/lang/Object;)V+4 +j java.util.ArrayList.forEach(Ljava/util/function/Consumer;)V+46 java.base@17.0.9 +j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(Ljava/util/List;)V+6 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6()V+116 +j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$317+0x00007f70640b7038.execute()V+4 +j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+15 +j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$316+0x00007f70640b6e10.invoke(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+5 +j org.junit.platform.engine.support.hierarchical.Node.around(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$Invocation;)V+2 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9()V+14 +j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$315+0x00007f70640b69e8.execute()V+4 +j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively()V+31 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.execute()V+55 +j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService$$Lambda$321+0x00007f70640b7b50.accept(Ljava/lang/Object;)V+4 +j java.util.ArrayList.forEach(Ljava/util/function/Consumer;)V+46 java.base@17.0.9 +j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(Ljava/util/List;)V+6 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6()V+116 +j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$317+0x00007f70640b7038.execute()V+4 +j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+15 +j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$316+0x00007f70640b6e10.invoke(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+5 +j org.junit.platform.engine.support.hierarchical.Node.around(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$Invocation;)V+2 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9()V+14 +j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$315+0x00007f70640b69e8.execute()V+4 +j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively()V+31 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.execute()V+55 +j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.submit(Lorg/junit/platform/engine/support/hierarchical/HierarchicalTestExecutorService$TestTask;)Ljava/util/concurrent/Future;+1 +j org.junit.platform.engine.support.hierarchical.HierarchicalTestExecutor.execute()Ljava/util/concurrent/Future;+74 +j org.junit.platform.engine.support.hierarchical.HierarchicalTestEngine.execute(Lorg/junit/platform/engine/ExecutionRequest;)V+31 +j org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(Lorg/junit/platform/engine/TestDescriptor;Lorg/junit/platform/engine/EngineExecutionListener;Lorg/junit/platform/engine/ConfigurationParameters;Lorg/junit/platform/engine/TestEngine;)V+24 +j org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(Lorg/junit/platform/launcher/core/LauncherDiscoveryResult;Lorg/junit/platform/engine/EngineExecutionListener;)V+115 +j org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(Lorg/junit/platform/launcher/core/InternalTestPlan;Lorg/junit/platform/engine/EngineExecutionListener;Lorg/junit/platform/launcher/TestExecutionListener;)V+55 +j org.junit.platform.launcher.core.EngineExecutionOrchestrator.lambda$execute$0(Lorg/junit/platform/launcher/core/InternalTestPlan;Lorg/junit/platform/launcher/TestExecutionListener;)V+6 +j org.junit.platform.launcher.core.EngineExecutionOrchestrator$$Lambda$271+0x00007f70640a4238.accept(Ljava/lang/Object;)V+12 +j org.junit.platform.launcher.core.EngineExecutionOrchestrator.withInterceptedStreams(Lorg/junit/platform/engine/ConfigurationParameters;Lorg/junit/platform/launcher/core/ListenerRegistry;Ljava/util/function/Consumer;)V+51 +j org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(Lorg/junit/platform/launcher/core/InternalTestPlan;[Lorg/junit/platform/launcher/TestExecutionListener;)V+23 +j org.junit.platform.launcher.core.DefaultLauncher.execute(Lorg/junit/platform/launcher/core/InternalTestPlan;[Lorg/junit/platform/launcher/TestExecutionListener;)V+6 +j org.junit.platform.launcher.core.DefaultLauncher.execute(Lorg/junit/platform/launcher/LauncherDiscoveryRequest;[Lorg/junit/platform/launcher/TestExecutionListener;)V+34 +j org.junit.platform.launcher.core.DelegatingLauncher.execute(Lorg/junit/platform/launcher/LauncherDiscoveryRequest;[Lorg/junit/platform/launcher/TestExecutionListener;)V+6 +j org.apache.maven.surefire.junitplatform.LauncherAdapter.executeWithoutCancellationToken(Lorg/junit/platform/launcher/LauncherDiscoveryRequest;[Lorg/junit/platform/launcher/TestExecutionListener;)V+6 +j org.apache.maven.surefire.junitplatform.LauncherAdapter.execute(Lorg/junit/platform/launcher/LauncherDiscoveryRequest;[Lorg/junit/platform/launcher/TestExecutionListener;)V+10 +j org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.execute(Lorg/apache/maven/surefire/junitplatform/LauncherAdapter;Lorg/apache/maven/surefire/api/util/TestsToRun;Lorg/apache/maven/surefire/junitplatform/RunListenerAdapter;)V+61 +j org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.invokeAllTests(Lorg/apache/maven/surefire/junitplatform/LauncherAdapter;Lorg/apache/maven/surefire/api/util/TestsToRun;Lorg/apache/maven/surefire/junitplatform/RunListenerAdapter;)V+36 +j org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.invoke(Ljava/lang/Object;)Lorg/apache/maven/surefire/api/suite/RunResult;+144 +j org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess()V+8 +j org.apache.maven.surefire.booter.ForkedBooter.execute()V+1 +j org.apache.maven.surefire.booter.ForkedBooter.run(Lorg/apache/maven/surefire/booter/ForkedBooter;[Ljava/lang/String;)V+27 +j org.apache.maven.surefire.booter.ForkedBooter.main([Ljava/lang/String;)V+10 +v ~StubRoutines::call_stub +V [libjvm.so+0x836d12] JavaCalls::call_helper(JavaValue*, methodHandle const&, JavaCallArguments*, JavaThread*)+0x302 +...... + +Java frames: (J=compiled Java code, j=interpreted, Vv=VM code) +j com.tidesdb.TidesDB.nativeGetDbStats(J)Lcom/tidesdb/DbStats;+0 +j com.tidesdb.TidesDB.getDbStats()Lcom/tidesdb/DbStats;+8 +j com.tidesdb.TidesDBTest.testGetDbStats()V+179 +v ~StubRoutines::call_stub +j jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+0 java.base@17.0.9 +j jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+133 java.base@17.0.9 +j jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+6 java.base@17.0.9 +j java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+59 java.base@17.0.9 +j org.junit.platform.commons.util.ReflectionUtils.invokeMethod(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+42 +j org.junit.jupiter.engine.execution.MethodInvocation.proceed()Ljava/lang/Object;+16 +j org.junit.jupiter.engine.execution.InvocationInterceptorChain$ValidatingInvocation.proceed()Ljava/lang/Object;+8 +j org.junit.jupiter.engine.extension.TimeoutExtension.intercept(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/extension/TimeoutDuration;Lorg/junit/jupiter/engine/extension/TimeoutExtension$TimeoutProvider;)Ljava/lang/Object;+28 +j org.junit.jupiter.engine.extension.TimeoutExtension.interceptTestableMethod(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/extension/TimeoutExtension$TimeoutProvider;)Ljava/lang/Object;+31 +j org.junit.jupiter.engine.extension.TimeoutExtension.interceptTestMethod(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;)V+9 +j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor$$Lambda$186+0x00007f706408e318.apply(Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;)V+5 +j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker$ReflectiveInterceptorCall.lambda$ofVoidMethod$0(Lorg/junit/jupiter/engine/execution/InterceptingExecutableInvoker$ReflectiveInterceptorCall$VoidMethodInterceptorCall;Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;)Ljava/lang/Void;+6 +j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker$ReflectiveInterceptorCall$$Lambda$187+0x00007f706408e738.apply(Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;)Ljava/lang/Object;+9 +j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.lambda$invoke$0(Lorg/junit/jupiter/engine/execution/InterceptingExecutableInvoker$ReflectiveInterceptorCall;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;)Ljava/lang/Object;+6 +j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker$$Lambda$392+0x00007f70640c7378.apply(Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;)Ljava/lang/Object;+14 +j org.junit.jupiter.engine.execution.InvocationInterceptorChain$InterceptedInvocation.proceed()Ljava/lang/Object;+12 +j org.junit.jupiter.engine.execution.InvocationInterceptorChain.proceed(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;)Ljava/lang/Object;+1 +j org.junit.jupiter.engine.execution.InvocationInterceptorChain.chainAndInvoke(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/engine/execution/InvocationInterceptorChain$InterceptorCall;Ljava/util/List;)Ljava/lang/Object;+24 +j org.junit.jupiter.engine.execution.InvocationInterceptorChain.invoke(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/engine/extension/ExtensionRegistry;Lorg/junit/jupiter/engine/execution/InvocationInterceptorChain$InterceptorCall;)Ljava/lang/Object;+31 +j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.invoke(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/extension/ExtensionRegistry;Lorg/junit/jupiter/engine/execution/InterceptingExecutableInvoker$ReflectiveInterceptorCall;)Ljava/lang/Object;+15 +j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.invoke(Ljava/lang/reflect/Method;Ljava/lang/Object;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/extension/ExtensionRegistry;Lorg/junit/jupiter/engine/execution/InterceptingExecutableInvoker$ReflectiveInterceptorCall;)Ljava/lang/Object;+55 +j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.lambda$invokeTestMethod$7(Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/execution/JupiterEngineExecutionContext;)V+28 +j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor$$Lambda$427+0x00007f70640cc300.execute()V+12 +j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 +j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.invokeTestMethod(Lorg/junit/jupiter/engine/execution/JupiterEngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$DynamicTestExecutor;)V+21 +j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.execute(Lorg/junit/jupiter/engine/execution/JupiterEngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$DynamicTestExecutor;)Lorg/junit/jupiter/engine/execution/JupiterEngineExecutionContext;+44 +j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.execute(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$DynamicTestExecutor;)Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;+6 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6()V+79 +j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$317+0x00007f70640b7038.execute()V+4 +j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+15 +j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$316+0x00007f70640b6e10.invoke(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+5 +j org.junit.platform.engine.support.hierarchical.Node.around(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$Invocation;)V+2 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9()V+14 +j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$315+0x00007f70640b69e8.execute()V+4 +j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively()V+31 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.execute()V+55 +j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService$$Lambda$321+0x00007f70640b7b50.accept(Ljava/lang/Object;)V+4 +j java.util.ArrayList.forEach(Ljava/util/function/Consumer;)V+46 java.base@17.0.9 +j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(Ljava/util/List;)V+6 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6()V+116 +j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$317+0x00007f70640b7038.execute()V+4 +j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+15 +j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$316+0x00007f70640b6e10.invoke(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+5 +j org.junit.platform.engine.support.hierarchical.Node.around(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$Invocation;)V+2 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9()V+14 +j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$315+0x00007f70640b69e8.execute()V+4 +j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively()V+31 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.execute()V+55 +j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService$$Lambda$321+0x00007f70640b7b50.accept(Ljava/lang/Object;)V+4 +j java.util.ArrayList.forEach(Ljava/util/function/Consumer;)V+46 java.base@17.0.9 +j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(Ljava/util/List;)V+6 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6()V+116 +j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$317+0x00007f70640b7038.execute()V+4 +j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+15 +j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$316+0x00007f70640b6e10.invoke(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+5 +j org.junit.platform.engine.support.hierarchical.Node.around(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$Invocation;)V+2 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9()V+14 +j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$315+0x00007f70640b69e8.execute()V+4 +j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively()V+31 +j org.junit.platform.engine.support.hierarchical.NodeTestTask.execute()V+55 +j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.submit(Lorg/junit/platform/engine/support/hierarchical/HierarchicalTestExecutorService$TestTask;)Ljava/util/concurrent/Future;+1 +j org.junit.platform.engine.support.hierarchical.HierarchicalTestExecutor.execute()Ljava/util/concurrent/Future;+74 +j org.junit.platform.engine.support.hierarchical.HierarchicalTestEngine.execute(Lorg/junit/platform/engine/ExecutionRequest;)V+31 +j org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(Lorg/junit/platform/engine/TestDescriptor;Lorg/junit/platform/engine/EngineExecutionListener;Lorg/junit/platform/engine/ConfigurationParameters;Lorg/junit/platform/engine/TestEngine;)V+24 +j org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(Lorg/junit/platform/launcher/core/LauncherDiscoveryResult;Lorg/junit/platform/engine/EngineExecutionListener;)V+115 +j org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(Lorg/junit/platform/launcher/core/InternalTestPlan;Lorg/junit/platform/engine/EngineExecutionListener;Lorg/junit/platform/launcher/TestExecutionListener;)V+55 +j org.junit.platform.launcher.core.EngineExecutionOrchestrator.lambda$execute$0(Lorg/junit/platform/launcher/core/InternalTestPlan;Lorg/junit/platform/launcher/TestExecutionListener;)V+6 +j org.junit.platform.launcher.core.EngineExecutionOrchestrator$$Lambda$271+0x00007f70640a4238.accept(Ljava/lang/Object;)V+12 +j org.junit.platform.launcher.core.EngineExecutionOrchestrator.withInterceptedStreams(Lorg/junit/platform/engine/ConfigurationParameters;Lorg/junit/platform/launcher/core/ListenerRegistry;Ljava/util/function/Consumer;)V+51 +j org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(Lorg/junit/platform/launcher/core/InternalTestPlan;[Lorg/junit/platform/launcher/TestExecutionListener;)V+23 +j org.junit.platform.launcher.core.DefaultLauncher.execute(Lorg/junit/platform/launcher/core/InternalTestPlan;[Lorg/junit/platform/launcher/TestExecutionListener;)V+6 +j org.junit.platform.launcher.core.DefaultLauncher.execute(Lorg/junit/platform/launcher/LauncherDiscoveryRequest;[Lorg/junit/platform/launcher/TestExecutionListener;)V+34 +j org.junit.platform.launcher.core.DelegatingLauncher.execute(Lorg/junit/platform/launcher/LauncherDiscoveryRequest;[Lorg/junit/platform/launcher/TestExecutionListener;)V+6 +j org.apache.maven.surefire.junitplatform.LauncherAdapter.executeWithoutCancellationToken(Lorg/junit/platform/launcher/LauncherDiscoveryRequest;[Lorg/junit/platform/launcher/TestExecutionListener;)V+6 +j org.apache.maven.surefire.junitplatform.LauncherAdapter.execute(Lorg/junit/platform/launcher/LauncherDiscoveryRequest;[Lorg/junit/platform/launcher/TestExecutionListener;)V+10 +j org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.execute(Lorg/apache/maven/surefire/junitplatform/LauncherAdapter;Lorg/apache/maven/surefire/api/util/TestsToRun;Lorg/apache/maven/surefire/junitplatform/RunListenerAdapter;)V+61 +j org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.invokeAllTests(Lorg/apache/maven/surefire/junitplatform/LauncherAdapter;Lorg/apache/maven/surefire/api/util/TestsToRun;Lorg/apache/maven/surefire/junitplatform/RunListenerAdapter;)V+36 +j org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.invoke(Ljava/lang/Object;)Lorg/apache/maven/surefire/api/suite/RunResult;+144 +j org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess()V+8 +j org.apache.maven.surefire.booter.ForkedBooter.execute()V+1 +j org.apache.maven.surefire.booter.ForkedBooter.run(Lorg/apache/maven/surefire/booter/ForkedBooter;[Ljava/lang/String;)V+27 +j org.apache.maven.surefire.booter.ForkedBooter.main([Ljava/lang/String;)V+10 +v ~StubRoutines::call_stub + +siginfo: si_signo: 11 (SIGSEGV), si_code: 1 (SEGV_MAPERR), si_addr: 0x0000000000000000 + +Registers: +RAX=0x00007f70ec1b5b28, RBX=0x00007f70ec014510, RCX=0x0000000000000002, RDX=0x00007f70ec1b5b20 +RSP=0x00007f70f37fb9b0, RBP=0x00007f70f37fbb20, RSI=0x0000000540035cc8, RDI=0x00007f70ec1b5b28 +R8 =0x0000000bb38d9000, R9 =0x0000000535d7b000, R10=0x00007f70f40d78c0, R11=0x0000000000000000 +R12=0x0000000000000000, R13=0x0000000000000000, R14=0x0000000000000000, R15=0x00007f70f37fba00 +RIP=0x00007f70f40d79e8, EFLAGS=0x0000000000010206, CSGSFS=0x002b000000000033, ERR=0x0000000000000004 + TRAPNO=0x000000000000000e + + +Register to memory mapping: + +RAX=0x00007f70ec1b5b28 points into unknown readable memory: 0x0000000540035cc8 | c8 5c 03 40 05 00 00 00 +RBX=0x00007f70ec014510 is a thread +RCX=0x0000000000000002 is an unknown value +RDX=0x00007f70ec1b5b20 points into unknown readable memory: 0x0000000540035360 | 60 53 03 40 05 00 00 00 +RSP=0x00007f70f37fb9b0 is pointing into the stack for thread: 0x00007f70ec014510 +RBP=0x00007f70f37fbb20 is pointing into the stack for thread: 0x00007f70ec014510 +RSI=0x0000000540035cc8 is an oop: com.tidesdb.DbStats +{0x0000000540035cc8} - klass: 'com/tidesdb/DbStats' + - ---- fields (total size 14 words): + - private final 'numColumnFamilies' 'I' @12 0 + - private final 'totalMemory' 'J' @16 0 (0 0) + - private final 'availableMemory' 'J' @24 0 (0 0) + - private final 'resolvedMemoryLimit' 'J' @32 0 (0 0) + - private final 'totalMemtableBytes' 'J' @40 0 (0 0) + - private final 'totalDataSizeBytes' 'J' @48 0 (0 0) + - private final 'globalSeq' 'J' @56 0 (0 0) + - private final 'txnMemoryBytes' 'J' @64 0 (0 0) + - private final 'compactionQueueSize' 'J' @72 0 (0 0) + - private final 'flushQueueSize' 'J' @80 0 (0 0) + - private final 'memoryPressureLevel' 'I' @88 0 + - private final 'flushPendingCount' 'I' @92 0 + - private final 'totalImmutableCount' 'I' @96 0 + - private final 'totalSstableCount' 'I' @100 0 + - private final 'numOpenSstables' 'I' @104 0 +RDI=0x00007f70ec1b5b28 points into unknown readable memory: 0x0000000540035cc8 | c8 5c 03 40 05 00 00 00 +R8 =0x0000000bb38d9000 is an unknown value +R9 =0x0000000535d7b000 points into unknown readable memory: 0x0000000000000000 | 00 00 00 00 00 00 00 00 +R10=0x00007f70f40d78c0: in /usr/lib/jvm/java-17-openjdk-amd64/lib/server/libjvm.so at 0x00007f70f3800000 +R11=0x0 is NULL +R12=0x0 is NULL +R13=0x0 is NULL +R14=0x0 is NULL +R15=0x00007f70f37fba00 is pointing into the stack for thread: 0x00007f70ec014510 + + +Top of Stack: (sp=0x00007f70f37fb9b0) +0x00007f70f37fb9b0: 00000000ec014f50 00007f70f4e1b3ab +0x00007f70f37fb9c0: 00007f70ec015038 00000000000000d8 +0x00007f70f37fb9d0: 00007f70f37fbec0 0000000000000000 +0x00007f70f37fb9e0: 00007f70ec014510 00007f70ec014f80 +0x00007f70f37fb9f0: 0000000000000431 00007f70f4804d88 +0x00007f70f37fba00: 0000000000000013 00007f70ec014f88 +0x00007f70f37fba10: 00007f70f37fbaa0 00007f70f4664d6e +0x00007f70f37fba20: 0000000000000000 0000000000000000 +0x00007f70f37fba30: 0000000000000000 00007f70f46521a7 +0x00007f70f37fba40: 4141414141414141 0000000000000000 +0x00007f70f37fba50: 00007f70ec014510 0000000000000002 +0x00007f70f37fba60: 0000000bb38d9000 0000000535d7b000 +0x00007f70f37fba70: 0000000000000001 00007f70640d4000 +0x00007f70f37fba80: 0000000000000001 00007f70f40ff4d3 +0x00007f70f37fba90: 00007f70ec014f88 00000007ff7560a0 +0x00007f70f37fbaa0: 00007f70f37fbad0 00007f70ec014510 +0x00007f70f37fbab0: 00007f70ec413e40 00007f70ec0147c0 +0x00007f70f37fbac0: 00007f70ec014f88 00000007ff7560a0 +0x00007f70f37fbad0: 00007f70ec014510 00007f70ec014510 +0x00007f70f37fbae0: 00007f70f37fbb80 00007f70f40ccb35 +0x00007f70f37fbaf0: 0000000000000000 0000000000000000 +0x00007f70f37fbb00: 0000000000000000 0000000000000000 +0x00007f70f37fbb10: 0000000000000000 0000000000000000 +0x00007f70f37fbb20: 00007f70f37fbc90 00007f70f4e1a8a4 +0x00007f70f37fbb30: 00000005d9c6c800 0000000000000000 +0x00007f70f37fbb40: 0000000000000000 0000000000000000 +0x00007f70f37fbb50: 0000000000000000 0000000000000000 +0x00007f70f37fbb60: 0000000000000000 0000000000000000 +0x00007f70f37fbb70: 0000000000000002 0000000000000000 +0x00007f70f37fbb80: 0000000000000000 0000000000000000 +0x00007f70f37fbb90: 0000000bb38d9000 0000000535d7b000 +0x00007f70f37fbba0: 00000005d9c6c800 0000000000000000 + +Instructions: (pc=0x00007f70f40d79e8) +0x00007f70f40d78e8: 40 ff ff ff 4c 89 8d 48 ff ff ff 84 c0 74 29 0f +0x00007f70f40d78f8: 29 85 50 ff ff ff 0f 29 8d 60 ff ff ff 0f 29 95 +0x00007f70f40d7908: 70 ff ff ff 0f 29 5d 80 0f 29 65 90 0f 29 6d a0 +0x00007f70f40d7918: 0f 29 75 b0 0f 29 7d c0 48 8d 9f 50 fd ff ff 8b +0x00007f70f40d7928: 83 68 03 00 00 2d ab de 00 00 83 f8 01 0f 87 15 +0x00007f70f40d7938: 02 00 00 c7 83 40 03 00 00 05 00 00 00 f0 83 04 +0x00007f70f40d7948: 24 00 48 8b 83 48 03 00 00 a8 01 0f 85 df 01 00 +0x00007f70f40d7958: 00 8b 83 34 03 00 00 85 c0 0f 85 a9 01 00 00 8b +0x00007f70f40d7968: 83 30 03 00 00 a8 0c 0f 85 9b 01 00 00 48 83 7b +0x00007f70f40d7978: 08 00 c7 83 40 03 00 00 06 00 00 00 48 89 9d c0 +0x00007f70f40d7988: fe ff ff 48 c7 85 c8 fe ff ff 00 00 00 00 74 0c +0x00007f70f40d7998: 48 8d bd c0 fe ff ff e8 ac 49 3b 00 41 f6 c4 01 +0x00007f70f40d79a8: 0f 84 72 01 00 00 49 8d 7c 24 ff ff 15 07 78 a1 +0x00007f70f40d79b8: 00 48 89 c7 48 89 de 45 31 ed e8 49 87 00 00 4c +0x00007f70f40d79c8: 8b 63 08 4d 85 e4 0f 85 ad 00 00 00 31 d2 48 89 +0x00007f70f40d79d8: c6 4c 8d bd e0 fe ff ff 48 89 df e8 28 7d 02 00 +0x00007f70f40d79e8: 49 8b 36 4c 89 ff c7 85 a8 fe ff ff 18 00 00 00 +0x00007f70f40d79f8: c7 85 ac fe ff ff 30 00 00 00 49 89 c5 48 8d 45 +0x00007f70f40d7a08: 10 48 89 85 b0 fe ff ff 48 8d 85 20 ff ff ff 48 +0x00007f70f40d7a18: 89 85 b8 fe ff ff c7 85 90 fe ff ff 0e 00 00 00 +0x00007f70f40d7a28: e8 f3 90 00 00 4c 89 ee 49 89 d8 4c 89 f9 48 8d +0x00007f70f40d7a38: 05 1b a3 96 00 f3 0f 6f 85 a8 fe ff ff 48 8d bd +0x00007f70f40d7a48: 90 fe ff ff 4c 89 f2 48 89 85 e0 fe ff ff 48 8b +0x00007f70f40d7a58: 85 b8 fe ff ff 0f 11 85 08 ff ff ff 48 89 85 18 +0x00007f70f40d7a68: ff ff ff e8 10 f7 ff ff 48 83 7b 08 00 4c 89 ff +0x00007f70f40d7a78: 4d 0f 45 ec e8 bf 87 00 00 48 83 bd c8 fe ff ff +0x00007f70f40d7a88: 00 74 0c 48 8d bd c0 fe ff ff e8 59 49 3b 00 4c +0x00007f70f40d7a98: 8b a3 e8 00 00 00 49 8b 44 24 10 48 83 38 00 74 +0x00007f70f40d7aa8: 0d 4c 89 e7 e8 ef ef ee ff 49 8b 44 24 10 49 8b +0x00007f70f40d7ab8: 54 24 08 48 8d bb 90 02 00 00 48 89 42 10 49 8b +0x00007f70f40d7ac8: 44 24 08 49 8b 54 24 18 48 89 50 18 49 8b 44 24 +0x00007f70f40d7ad8: 08 49 8b 54 24 20 48 89 50 20 e8 69 c4 df ff c7 + + +Stack slot to memory mapping: +stack at sp + 0 slots: 0x00000000ec014f50 is an unknown value +stack at sp + 1 slots: 0x00007f70f4e1b3ab: in /usr/local/lib/libtidesdb_jni.so at 0x00007f70f4e14000 +stack at sp + 2 slots: 0x00007f70ec015038 points into unknown readable memory: 0x0000000000000025 | 25 00 00 00 00 00 00 00 +stack at sp + 3 slots: 0x00000000000000d8 is an unknown value +stack at sp + 4 slots: 0x00007f70f37fbec0 is pointing into the stack for thread: 0x00007f70ec014510 +stack at sp + 5 slots: 0x0 is NULL +stack at sp + 6 slots: 0x00007f70ec014510 is a thread +stack at sp + 7 slots: 0x00007f70ec014f80 points into unknown readable memory: 0x00000005400354a8 | a8 54 03 40 05 00 00 00 + + +--------------- P R O C E S S --------------- + +Threads class SMR info: +_java_thread_list=0x00007f702c555fc0, length=19, elements={ +0x00007f70ec014510, 0x00007f70ec1b7e10, 0x00007f70ec1b9200, 0x00007f70ec1be770, +0x00007f70ec1bfb30, 0x00007f70ec1c0f50, 0x00007f70ec1c2990, 0x00007f70ec1c3ed0, +0x00007f70ec1c5350, 0x00007f70ec1cc920, 0x00007f70ec1d01b0, 0x00007f70380b01d0, +0x00007f70ec30c540, 0x00007f70ec31c4f0, 0x00007f702c0e5d60, 0x00007f702c134ef0, +0x00007f702c136ee0, 0x00007f701c17b750, 0x00007f702c554fc0 +} + +Java Threads: ( => current thread ) +=>0x00007f70ec014510 JavaThread "main" [_thread_in_vm, id=2050293, stack(0x00007f70f3700000,0x00007f70f3800000)] + 0x00007f70ec1b7e10 JavaThread "Reference Handler" daemon [_thread_blocked, id=2050303, stack(0x00007f70b87da000,0x00007f70b88da000)] + 0x00007f70ec1b9200 JavaThread "Finalizer" daemon [_thread_blocked, id=2050304, stack(0x00007f70b86da000,0x00007f70b87da000)] + 0x00007f70ec1be770 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=2050307, stack(0x00007f70b85da000,0x00007f70b86da000)] + 0x00007f70ec1bfb30 JavaThread "Service Thread" daemon [_thread_blocked, id=2050308, stack(0x00007f70b84da000,0x00007f70b85da000)] + 0x00007f70ec1c0f50 JavaThread "Monitor Deflation Thread" daemon [_thread_blocked, id=2050309, stack(0x00007f70b83da000,0x00007f70b84da000)] + 0x00007f70ec1c2990 JavaThread "C2 CompilerThread0" daemon [_thread_in_native, id=2050310, stack(0x00007f70b82da000,0x00007f70b83da000)] + 0x00007f70ec1c3ed0 JavaThread "C1 CompilerThread0" daemon [_thread_blocked, id=2050311, stack(0x00007f70b81da000,0x00007f70b82da000)] + 0x00007f70ec1c5350 JavaThread "Sweeper thread" daemon [_thread_blocked, id=2050312, stack(0x00007f70b80da000,0x00007f70b81da000)] + 0x00007f70ec1cc920 JavaThread "Notification Thread" daemon [_thread_blocked, id=2050314, stack(0x00007f705e900000,0x00007f705ea00000)] + 0x00007f70ec1d01b0 JavaThread "Common-Cleaner" daemon [_thread_blocked, id=2050316, stack(0x00007f705e6ff000,0x00007f705e7ff000)] + 0x00007f70380b01d0 JavaThread "C1 CompilerThread1" daemon [_thread_blocked, id=2050317, stack(0x00007f705e5ff000,0x00007f705e6ff000)] + 0x00007f70ec30c540 JavaThread "surefire-forkedjvm-stream-flusher" daemon [_thread_blocked, id=2050318, stack(0x00007f705e4ff000,0x00007f705e5ff000)] + 0x00007f70ec31c4f0 JavaThread "surefire-forkedjvm-command-thread" daemon [_thread_in_native, id=2050319, stack(0x00007f705e3ff000,0x00007f705e4ff000)] + 0x00007f702c0e5d60 JavaThread "C2 CompilerThread1" daemon [_thread_in_native, id=2050320, stack(0x00007f705e2ff000,0x00007f705e3ff000)] + 0x00007f702c134ef0 JavaThread "C1 CompilerThread2" daemon [_thread_blocked, id=2050321, stack(0x00007f705e1ff000,0x00007f705e2ff000)] + 0x00007f702c136ee0 JavaThread "C2 CompilerThread2" daemon [_thread_in_native, id=2050322, stack(0x00007f705e0ff000,0x00007f705e1ff000)] + 0x00007f701c17b750 JavaThread "C2 CompilerThread3" daemon [_thread_in_native, id=2050323, stack(0x00007f705dfff000,0x00007f705e0ff000)] + 0x00007f702c554fc0 JavaThread "C2 CompilerThread4" daemon [_thread_blocked, id=2050324, stack(0x00007f705deff000,0x00007f705dfff000)] + +Other Threads: + 0x00007f70ec1b3e80 VMThread "VM Thread" [stack: 0x00007f70b88db000,0x00007f70b89db000] [id=2050302] + 0x00007f70ec1ce270 WatcherThread [stack: 0x00007f705e800000,0x00007f705e900000] [id=2050315] + 0x00007f70ec070ce0 GCTaskThread "GC Thread#0" [stack: 0x00007f70f0cb9000,0x00007f70f0db9000] [id=2050294] + 0x00007f70ec07ddd0 ConcurrentGCThread "G1 Main Marker" [stack: 0x00007f70f0bb8000,0x00007f70f0cb8000] [id=2050295] + 0x00007f70ec07ed40 ConcurrentGCThread "G1 Conc#0" [stack: 0x00007f70f0ab7000,0x00007f70f0bb7000] [id=2050296] + 0x00007f70ec182f50 ConcurrentGCThread "G1 Refine#0" [stack: 0x00007f70b8bae000,0x00007f70b8cae000] [id=2050298] + 0x00007f70ec183e50 ConcurrentGCThread "G1 Service" [stack: 0x00007f70b8aad000,0x00007f70b8bad000] [id=2050299] + +Threads with active compile tasks: +C2 CompilerThread0 336 1166 4 org.junit.jupiter.engine.discovery.predicates.IsTestableMethod::test (49 bytes) +C2 CompilerThread1 336 1162 4 java.util.function.Predicate$$Lambda$90/0x00007f706405ebe8::test (15 bytes) +C2 CompilerThread2 336 1295 4 org.junit.platform.commons.util.AnnotationUtils::findMetaAnnotation (84 bytes) +C2 CompilerThread3 336 1294 4 org.junit.platform.commons.util.AnnotationUtils::findAnnotation (193 bytes) + +VM state: not at safepoint (normal execution) + +VM Mutex/Monitor currently owned by a thread: None + +Heap address: 0x0000000513000000, size: 11984 MB, Compressed Oops mode: Zero based, Oop shift amount: 3 + +CDS archive(s) mapped at: [0x00007f7063000000-0x00007f7063bc6000-0x00007f7063bc6000), size 12345344, SharedBaseAddress: 0x00007f7063000000, ArchiveRelocationMode: 1. +Compressed class space mapped at: 0x00007f7064000000-0x00007f70a4000000, reserved size: 1073741824 +Narrow klass base: 0x00007f7063000000, Narrow klass shift: 0, Narrow klass range: 0x100000000 + +GC Precious Log: + CPUs: 16 total, 16 available + Memory: 47928M + Large Page Support: Disabled + NUMA Support: Disabled + Compressed Oops: Enabled (Zero based) + Heap Region Size: 8M + Heap Min Capacity: 8M + Heap Initial Capacity: 752M + Heap Max Capacity: 11984M + Pre-touch: Disabled + Parallel Workers: 13 + Concurrent Workers: 3 + Concurrent Refinement Workers: 13 + Periodic GC: Disabled + +Heap: + garbage-first heap total 786432K, used 32688K [0x0000000513000000, 0x0000000800000000) + region size 8192K, 4 young (32768K), 0 survivors (0K) + Metaspace used 6811K, committed 7040K, reserved 1114112K + class space used 866K, committed 960K, reserved 1048576K + +Heap Regions: E=young(eden), S=young(survivor), O=old, HS=humongous(starts), HC=humongous(continues), CS=collection set, F=free, OA=open archive, CA=closed archive, TAMS=top-at-mark-start (previous, next) +| 0|0x0000000513000000, 0x0000000513000000, 0x0000000513800000| 0%| F| |TAMS 0x0000000513000000, 0x0000000513000000| Untracked +| 1|0x0000000513800000, 0x0000000513800000, 0x0000000514000000| 0%| F| |TAMS 0x0000000513800000, 0x0000000513800000| Untracked +| 2|0x0000000514000000, 0x0000000514000000, 0x0000000514800000| 0%| F| |TAMS 0x0000000514000000, 0x0000000514000000| Untracked +| 3|0x0000000514800000, 0x0000000514800000, 0x0000000515000000| 0%| F| |TAMS 0x0000000514800000, 0x0000000514800000| Untracked +| 4|0x0000000515000000, 0x0000000515000000, 0x0000000515800000| 0%| F| |TAMS 0x0000000515000000, 0x0000000515000000| Untracked +| 5|0x0000000515800000, 0x0000000515800000, 0x0000000516000000| 0%| F| |TAMS 0x0000000515800000, 0x0000000515800000| Untracked +| 6|0x0000000516000000, 0x0000000516000000, 0x0000000516800000| 0%| F| |TAMS 0x0000000516000000, 0x0000000516000000| Untracked +| 7|0x0000000516800000, 0x0000000516800000, 0x0000000517000000| 0%| F| |TAMS 0x0000000516800000, 0x0000000516800000| Untracked +| 8|0x0000000517000000, 0x0000000517000000, 0x0000000517800000| 0%| F| |TAMS 0x0000000517000000, 0x0000000517000000| Untracked +| 9|0x0000000517800000, 0x0000000517800000, 0x0000000518000000| 0%| F| |TAMS 0x0000000517800000, 0x0000000517800000| Untracked +| 10|0x0000000518000000, 0x0000000518000000, 0x0000000518800000| 0%| F| |TAMS 0x0000000518000000, 0x0000000518000000| Untracked +| 11|0x0000000518800000, 0x0000000518800000, 0x0000000519000000| 0%| F| |TAMS 0x0000000518800000, 0x0000000518800000| Untracked +| 12|0x0000000519000000, 0x0000000519000000, 0x0000000519800000| 0%| F| |TAMS 0x0000000519000000, 0x0000000519000000| Untracked +| 13|0x0000000519800000, 0x0000000519800000, 0x000000051a000000| 0%| F| |TAMS 0x0000000519800000, 0x0000000519800000| Untracked +| 14|0x000000051a000000, 0x000000051a000000, 0x000000051a800000| 0%| F| |TAMS 0x000000051a000000, 0x000000051a000000| Untracked +| 15|0x000000051a800000, 0x000000051a800000, 0x000000051b000000| 0%| F| |TAMS 0x000000051a800000, 0x000000051a800000| Untracked +| 16|0x000000051b000000, 0x000000051b000000, 0x000000051b800000| 0%| F| |TAMS 0x000000051b000000, 0x000000051b000000| Untracked +| 17|0x000000051b800000, 0x000000051b800000, 0x000000051c000000| 0%| F| |TAMS 0x000000051b800000, 0x000000051b800000| Untracked +| 18|0x000000051c000000, 0x000000051c000000, 0x000000051c800000| 0%| F| |TAMS 0x000000051c000000, 0x000000051c000000| Untracked +| 19|0x000000051c800000, 0x000000051c800000, 0x000000051d000000| 0%| F| |TAMS 0x000000051c800000, 0x000000051c800000| Untracked +| 20|0x000000051d000000, 0x000000051d000000, 0x000000051d800000| 0%| F| |TAMS 0x000000051d000000, 0x000000051d000000| Untracked +| 21|0x000000051d800000, 0x000000051d800000, 0x000000051e000000| 0%| F| |TAMS 0x000000051d800000, 0x000000051d800000| Untracked +| 22|0x000000051e000000, 0x000000051e000000, 0x000000051e800000| 0%| F| |TAMS 0x000000051e000000, 0x000000051e000000| Untracked +| 23|0x000000051e800000, 0x000000051e800000, 0x000000051f000000| 0%| F| |TAMS 0x000000051e800000, 0x000000051e800000| Untracked +| 24|0x000000051f000000, 0x000000051f000000, 0x000000051f800000| 0%| F| |TAMS 0x000000051f000000, 0x000000051f000000| Untracked +| 25|0x000000051f800000, 0x000000051f800000, 0x0000000520000000| 0%| F| |TAMS 0x000000051f800000, 0x000000051f800000| Untracked +| 26|0x0000000520000000, 0x0000000520000000, 0x0000000520800000| 0%| F| |TAMS 0x0000000520000000, 0x0000000520000000| Untracked +| 27|0x0000000520800000, 0x0000000520800000, 0x0000000521000000| 0%| F| |TAMS 0x0000000520800000, 0x0000000520800000| Untracked +| 28|0x0000000521000000, 0x0000000521000000, 0x0000000521800000| 0%| F| |TAMS 0x0000000521000000, 0x0000000521000000| Untracked +| 29|0x0000000521800000, 0x0000000521800000, 0x0000000522000000| 0%| F| |TAMS 0x0000000521800000, 0x0000000521800000| Untracked +| 30|0x0000000522000000, 0x0000000522000000, 0x0000000522800000| 0%| F| |TAMS 0x0000000522000000, 0x0000000522000000| Untracked +| 31|0x0000000522800000, 0x0000000522800000, 0x0000000523000000| 0%| F| |TAMS 0x0000000522800000, 0x0000000522800000| Untracked +| 32|0x0000000523000000, 0x0000000523000000, 0x0000000523800000| 0%| F| |TAMS 0x0000000523000000, 0x0000000523000000| Untracked +| 33|0x0000000523800000, 0x0000000523800000, 0x0000000524000000| 0%| F| |TAMS 0x0000000523800000, 0x0000000523800000| Untracked +| 34|0x0000000524000000, 0x0000000524000000, 0x0000000524800000| 0%| F| |TAMS 0x0000000524000000, 0x0000000524000000| Untracked +| 35|0x0000000524800000, 0x0000000524800000, 0x0000000525000000| 0%| F| |TAMS 0x0000000524800000, 0x0000000524800000| Untracked +| 36|0x0000000525000000, 0x0000000525000000, 0x0000000525800000| 0%| F| |TAMS 0x0000000525000000, 0x0000000525000000| Untracked +| 37|0x0000000525800000, 0x0000000525800000, 0x0000000526000000| 0%| F| |TAMS 0x0000000525800000, 0x0000000525800000| Untracked +| 38|0x0000000526000000, 0x0000000526000000, 0x0000000526800000| 0%| F| |TAMS 0x0000000526000000, 0x0000000526000000| Untracked +| 39|0x0000000526800000, 0x0000000526800000, 0x0000000527000000| 0%| F| |TAMS 0x0000000526800000, 0x0000000526800000| Untracked +| 40|0x0000000527000000, 0x0000000527000000, 0x0000000527800000| 0%| F| |TAMS 0x0000000527000000, 0x0000000527000000| Untracked +| 41|0x0000000527800000, 0x0000000527800000, 0x0000000528000000| 0%| F| |TAMS 0x0000000527800000, 0x0000000527800000| Untracked +| 42|0x0000000528000000, 0x0000000528000000, 0x0000000528800000| 0%| F| |TAMS 0x0000000528000000, 0x0000000528000000| Untracked +| 43|0x0000000528800000, 0x0000000528800000, 0x0000000529000000| 0%| F| |TAMS 0x0000000528800000, 0x0000000528800000| Untracked +| 44|0x0000000529000000, 0x0000000529000000, 0x0000000529800000| 0%| F| |TAMS 0x0000000529000000, 0x0000000529000000| Untracked +| 45|0x0000000529800000, 0x0000000529800000, 0x000000052a000000| 0%| F| |TAMS 0x0000000529800000, 0x0000000529800000| Untracked +| 46|0x000000052a000000, 0x000000052a000000, 0x000000052a800000| 0%| F| |TAMS 0x000000052a000000, 0x000000052a000000| Untracked +| 47|0x000000052a800000, 0x000000052a800000, 0x000000052b000000| 0%| F| |TAMS 0x000000052a800000, 0x000000052a800000| Untracked +| 48|0x000000052b000000, 0x000000052b000000, 0x000000052b800000| 0%| F| |TAMS 0x000000052b000000, 0x000000052b000000| Untracked +| 49|0x000000052b800000, 0x000000052b800000, 0x000000052c000000| 0%| F| |TAMS 0x000000052b800000, 0x000000052b800000| Untracked +| 50|0x000000052c000000, 0x000000052c000000, 0x000000052c800000| 0%| F| |TAMS 0x000000052c000000, 0x000000052c000000| Untracked +| 51|0x000000052c800000, 0x000000052c800000, 0x000000052d000000| 0%| F| |TAMS 0x000000052c800000, 0x000000052c800000| Untracked +| 52|0x000000052d000000, 0x000000052d000000, 0x000000052d800000| 0%| F| |TAMS 0x000000052d000000, 0x000000052d000000| Untracked +| 53|0x000000052d800000, 0x000000052d800000, 0x000000052e000000| 0%| F| |TAMS 0x000000052d800000, 0x000000052d800000| Untracked +| 54|0x000000052e000000, 0x000000052e000000, 0x000000052e800000| 0%| F| |TAMS 0x000000052e000000, 0x000000052e000000| Untracked +| 55|0x000000052e800000, 0x000000052e800000, 0x000000052f000000| 0%| F| |TAMS 0x000000052e800000, 0x000000052e800000| Untracked +| 56|0x000000052f000000, 0x000000052f000000, 0x000000052f800000| 0%| F| |TAMS 0x000000052f000000, 0x000000052f000000| Untracked +| 57|0x000000052f800000, 0x000000052f800000, 0x0000000530000000| 0%| F| |TAMS 0x000000052f800000, 0x000000052f800000| Untracked +| 58|0x0000000530000000, 0x0000000530000000, 0x0000000530800000| 0%| F| |TAMS 0x0000000530000000, 0x0000000530000000| Untracked +| 59|0x0000000530800000, 0x0000000530800000, 0x0000000531000000| 0%| F| |TAMS 0x0000000530800000, 0x0000000530800000| Untracked +| 60|0x0000000531000000, 0x0000000531000000, 0x0000000531800000| 0%| F| |TAMS 0x0000000531000000, 0x0000000531000000| Untracked +| 61|0x0000000531800000, 0x0000000531800000, 0x0000000532000000| 0%| F| |TAMS 0x0000000531800000, 0x0000000531800000| Untracked +| 62|0x0000000532000000, 0x0000000532000000, 0x0000000532800000| 0%| F| |TAMS 0x0000000532000000, 0x0000000532000000| Untracked +| 63|0x0000000532800000, 0x0000000532800000, 0x0000000533000000| 0%| F| |TAMS 0x0000000532800000, 0x0000000532800000| Untracked +| 64|0x0000000533000000, 0x0000000533000000, 0x0000000533800000| 0%| F| |TAMS 0x0000000533000000, 0x0000000533000000| Untracked +| 65|0x0000000533800000, 0x0000000533800000, 0x0000000534000000| 0%| F| |TAMS 0x0000000533800000, 0x0000000533800000| Untracked +| 66|0x0000000534000000, 0x0000000534000000, 0x0000000534800000| 0%| F| |TAMS 0x0000000534000000, 0x0000000534000000| Untracked +| 67|0x0000000534800000, 0x0000000534800000, 0x0000000535000000| 0%| F| |TAMS 0x0000000534800000, 0x0000000534800000| Untracked +| 68|0x0000000535000000, 0x0000000535000000, 0x0000000535800000| 0%| F| |TAMS 0x0000000535000000, 0x0000000535000000| Untracked +| 69|0x0000000535800000, 0x0000000535800000, 0x0000000536000000| 0%| F| |TAMS 0x0000000535800000, 0x0000000535800000| Untracked +| 70|0x0000000536000000, 0x0000000536000000, 0x0000000536800000| 0%| F| |TAMS 0x0000000536000000, 0x0000000536000000| Untracked +| 71|0x0000000536800000, 0x0000000536800000, 0x0000000537000000| 0%| F| |TAMS 0x0000000536800000, 0x0000000536800000| Untracked +| 72|0x0000000537000000, 0x0000000537000000, 0x0000000537800000| 0%| F| |TAMS 0x0000000537000000, 0x0000000537000000| Untracked +| 73|0x0000000537800000, 0x0000000537800000, 0x0000000538000000| 0%| F| |TAMS 0x0000000537800000, 0x0000000537800000| Untracked +| 74|0x0000000538000000, 0x0000000538000000, 0x0000000538800000| 0%| F| |TAMS 0x0000000538000000, 0x0000000538000000| Untracked +| 75|0x0000000538800000, 0x0000000538800000, 0x0000000539000000| 0%| F| |TAMS 0x0000000538800000, 0x0000000538800000| Untracked +| 76|0x0000000539000000, 0x0000000539000000, 0x0000000539800000| 0%| F| |TAMS 0x0000000539000000, 0x0000000539000000| Untracked +| 77|0x0000000539800000, 0x0000000539800000, 0x000000053a000000| 0%| F| |TAMS 0x0000000539800000, 0x0000000539800000| Untracked +| 78|0x000000053a000000, 0x000000053a000000, 0x000000053a800000| 0%| F| |TAMS 0x000000053a000000, 0x000000053a000000| Untracked +| 79|0x000000053a800000, 0x000000053a800000, 0x000000053b000000| 0%| F| |TAMS 0x000000053a800000, 0x000000053a800000| Untracked +| 80|0x000000053b000000, 0x000000053b000000, 0x000000053b800000| 0%| F| |TAMS 0x000000053b000000, 0x000000053b000000| Untracked +| 81|0x000000053b800000, 0x000000053b800000, 0x000000053c000000| 0%| F| |TAMS 0x000000053b800000, 0x000000053b800000| Untracked +| 82|0x000000053c000000, 0x000000053c000000, 0x000000053c800000| 0%| F| |TAMS 0x000000053c000000, 0x000000053c000000| Untracked +| 83|0x000000053c800000, 0x000000053c800000, 0x000000053d000000| 0%| F| |TAMS 0x000000053c800000, 0x000000053c800000| Untracked +| 84|0x000000053d000000, 0x000000053d000000, 0x000000053d800000| 0%| F| |TAMS 0x000000053d000000, 0x000000053d000000| Untracked +| 85|0x000000053d800000, 0x000000053d800000, 0x000000053e000000| 0%| F| |TAMS 0x000000053d800000, 0x000000053d800000| Untracked +| 86|0x000000053e000000, 0x000000053e000000, 0x000000053e800000| 0%| F| |TAMS 0x000000053e000000, 0x000000053e000000| Untracked +| 87|0x000000053e800000, 0x000000053e800000, 0x000000053f000000| 0%| F| |TAMS 0x000000053e800000, 0x000000053e800000| Untracked +| 88|0x000000053f000000, 0x000000053f000000, 0x000000053f800000| 0%| F| |TAMS 0x000000053f000000, 0x000000053f000000| Untracked +| 89|0x000000053f800000, 0x000000053f800000, 0x0000000540000000| 0%| F| |TAMS 0x000000053f800000, 0x000000053f800000| Untracked +| 90|0x0000000540000000, 0x00000005400a5bc0, 0x0000000540800000| 8%| E| |TAMS 0x0000000540000000, 0x0000000540000000| Complete +| 91|0x0000000540800000, 0x0000000541000000, 0x0000000541000000|100%| E|CS|TAMS 0x0000000540800000, 0x0000000540800000| Complete +| 92|0x0000000541000000, 0x0000000541800000, 0x0000000541800000|100%| E|CS|TAMS 0x0000000541000000, 0x0000000541000000| Complete +| 93|0x0000000541800000, 0x0000000542000000, 0x0000000542000000|100%| E|CS|TAMS 0x0000000541800000, 0x0000000541800000| Complete +|1496|0x00000007ff000000, 0x00000007ff775000, 0x00000007ff800000| 93%|OA| |TAMS 0x00000007ff000000, 0x00000007ff000000| Untracked +|1497|0x00000007ff800000, 0x00000007ff877000, 0x0000000800000000| 5%|CA| |TAMS 0x00000007ff800000, 0x00000007ff800000| Untracked + +Card table byte_map: [0x00007f70d3c98000,0x00007f70d5400000] _byte_map_base: 0x00007f70d1400000 + +Marking Bits (Prev, Next): (CMBitMap*) 0x00007f70ec071770, (CMBitMap*) 0x00007f70ec0717b0 + Prev Bits: [0x00007f70c69f0000, 0x00007f70d2530000) + Next Bits: [0x00007f70baeb0000, 0x00007f70c69f0000) + +Polling page: 0x00007f70f5044000 + +Metaspace: + +Usage: + Non-class: 5.81 MB used. + Class: 866.89 KB used. + Both: 6.65 MB used. + +Virtual space: + Non-class space: 64.00 MB reserved, 5.94 MB ( 9%) committed, 1 nodes. + Class space: 1.00 GB reserved, 960.00 KB ( <1%) committed, 1 nodes. + Both: 1.06 GB reserved, 6.88 MB ( <1%) committed. + +Chunk freelists: + Non-Class: 9.23 MB + Class: 15.04 MB + Both: 24.28 MB + +MaxMetaspaceSize: unlimited +CompressedClassSpaceSize: 1.00 GB +Initial GC threshold: 21.00 MB +Current GC threshold: 21.00 MB +CDS: on +MetaspaceReclaimPolicy: balanced + - commit_granule_bytes: 65536. + - commit_granule_words: 8192. + - virtual_space_node_default_size: 8388608. + - enlarge_chunks_in_place: 1. + - new_chunks_are_fully_committed: 0. + - uncommit_free_chunks: 1. + - use_allocation_guard: 0. + - handle_deallocations: 1. + + +Internal statistics: + +num_allocs_failed_limit: 0. +num_arena_births: 118. +num_arena_deaths: 0. +num_vsnodes_births: 2. +num_vsnodes_deaths: 0. +num_space_committed: 110. +num_space_uncommitted: 0. +num_chunks_returned_to_freelist: 0. +num_chunks_taken_from_freelist: 345. +num_chunk_merges: 0. +num_chunk_splits: 190. +num_chunks_enlarged: 107. +num_inconsistent_stats: 0. + +CodeHeap 'non-profiled nmethods': size=119168Kb used=363Kb max_used=363Kb free=118804Kb + bounds [0x00007f70dcfa0000, 0x00007f70dd210000, 0x00007f70e4400000] +CodeHeap 'profiled nmethods': size=119164Kb used=2923Kb max_used=2923Kb free=116240Kb + bounds [0x00007f70d5400000, 0x00007f70d56e0000, 0x00007f70dc85f000] +CodeHeap 'non-nmethods': size=7428Kb used=2280Kb max_used=2294Kb free=5147Kb + bounds [0x00007f70dc85f000, 0x00007f70dcacf000, 0x00007f70dcfa0000] + total_blobs=1860 nmethods=1430 adapters=341 + compilation: enabled + stopped_count=0, restarted_count=0 + full_count=0 + +Compilation events (20 events): +Event: 0.327 Thread 0x00007f70380b01d0 nmethod 1414 0x00007f70d56d3e90 code [0x00007f70d56d4100, 0x00007f70d56d4af0] +Event: 0.327 Thread 0x00007f70380b01d0 1419 3 java.lang.invoke.LambdaForm$NamedFunction::returnType (11 bytes) +Event: 0.328 Thread 0x00007f70380b01d0 nmethod 1419 0x00007f70d56d4e10 code [0x00007f70d56d5000, 0x00007f70d56d5480] +Event: 0.328 Thread 0x00007f70ec1c3ed0 nmethod 1411 0x00007f70d56d5690 code [0x00007f70d56d5a20, 0x00007f70d56d6ed0] +Event: 0.328 Thread 0x00007f702c134ef0 nmethod 1415 0x00007f70d56d7710 code [0x00007f70d56d7a00, 0x00007f70d56d88e0] +Event: 0.328 Thread 0x00007f70ec1c3ed0 1423 3 java.lang.invoke.DirectMethodHandle::shouldBeInitialized (127 bytes) +Event: 0.328 Thread 0x00007f702c554fc0 1424 4 java.lang.invoke.MethodType::hashCode (53 bytes) +Event: 0.328 Thread 0x00007f70380b01d0 1426 3 sun.invoke.util.Wrapper::isSubwordOrInt (20 bytes) +Event: 0.328 Thread 0x00007f702c134ef0 1427 3 sun.invoke.util.Wrapper::isIntegral (23 bytes) +Event: 0.328 Thread 0x00007f702c134ef0 nmethod 1427 0x00007f70d56d8c90 code [0x00007f70d56d8e40, 0x00007f70d56d9090] +Event: 0.328 Thread 0x00007f702c134ef0 1428 3 sun.invoke.util.Wrapper::isNumeric (16 bytes) +Event: 0.328 Thread 0x00007f70380b01d0 nmethod 1426 0x00007f70d56d9110 code [0x00007f70d56d92e0, 0x00007f70d56d96f0] +Event: 0.328 Thread 0x00007f702c134ef0 nmethod 1428 0x00007f70d56d9810 code [0x00007f70d56d99a0, 0x00007f70d56d9b10] +Event: 0.328 Thread 0x00007f70ec1c3ed0 nmethod 1423 0x00007f70d56d9b90 code [0x00007f70d56d9e20, 0x00007f70d56da7f0] +Event: 0.328 Thread 0x00007f702c134ef0 1431 3 java.util.ImmutableCollections$ListN::size (6 bytes) +Event: 0.328 Thread 0x00007f702c134ef0 nmethod 1431 0x00007f70d56daa90 code [0x00007f70d56dac20, 0x00007f70d56dad30] +Event: 0.329 Thread 0x00007f702c554fc0 nmethod 1424 0x00007f70dcffa190 code [0x00007f70dcffa340, 0x00007f70dcffa4f8] +Event: 0.329 Thread 0x00007f702c554fc0 1434 4 java.lang.StringCoding::hasNegatives (25 bytes) +Event: 0.330 Thread 0x00007f702c554fc0 nmethod 1434 0x00007f70dcffa690 code [0x00007f70dcffa820, 0x00007f70dcffa978] +Event: 0.330 Thread 0x00007f702c554fc0 1430 4 java.lang.StringBuilder:: (7 bytes) + +GC Heap History (0 events): +No events + +Dll operation events (8 events): +Event: 0.001 Loaded shared library /usr/lib/jvm/java-17-openjdk-amd64/lib/libjava.so +Event: 0.013 Loaded shared library /usr/lib/jvm/java-17-openjdk-amd64/lib/libjsvml.so +Event: 0.019 Loaded shared library /usr/lib/jvm/java-17-openjdk-amd64/lib/libnio.so +Event: 0.020 Loaded shared library /usr/lib/jvm/java-17-openjdk-amd64/lib/libzip.so +Event: 0.039 Loaded shared library /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement.so +Event: 0.040 Loaded shared library /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement_ext.so +Event: 0.048 Loaded shared library /usr/lib/jvm/java-17-openjdk-amd64/lib/libjimage.so +Event: 0.295 Loaded shared library /usr/local/lib/libtidesdb_jni.so + +Deoptimization events (20 events): +Event: 0.269 Thread 0x00007f70ec014510 DEOPT PACKING pc=0x00007f70dcff1464 sp=0x00007f70f37fbed0 +Event: 0.269 Thread 0x00007f70ec014510 DEOPT UNPACKING pc=0x00007f70dc8b8b19 sp=0x00007f70f37fbe88 mode 2 +Event: 0.269 Thread 0x00007f70ec014510 Uncommon trap: trap_request=0xffffffbe fr.pc=0x00007f70dcff1464 relative=0x00000000000001c4 +Event: 0.269 Thread 0x00007f70ec014510 Uncommon trap: reason=profile_predicate action=maybe_recompile pc=0x00007f70dcff1464 method=java.util.LinkedHashMap.valuesToArray([Ljava/lang/Object;)[Ljava/lang/Object; @ 12 c2 +Event: 0.269 Thread 0x00007f70ec014510 DEOPT PACKING pc=0x00007f70dcff1464 sp=0x00007f70f37fc160 +Event: 0.269 Thread 0x00007f70ec014510 DEOPT UNPACKING pc=0x00007f70dc8b8b19 sp=0x00007f70f37fc118 mode 2 +Event: 0.273 Thread 0x00007f70ec014510 DEOPT PACKING pc=0x00007f70d54dffa3 sp=0x00007f70f37fbbc0 +Event: 0.273 Thread 0x00007f70ec014510 DEOPT UNPACKING pc=0x00007f70dc8b964f sp=0x00007f70f37fb040 mode 0 +Event: 0.278 Thread 0x00007f70ec014510 Uncommon trap: trap_request=0xffffff45 fr.pc=0x00007f70dcfbe038 relative=0x0000000000000218 +Event: 0.278 Thread 0x00007f70ec014510 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00007f70dcfbe038 method=java.lang.String.startsWith(Ljava/lang/String;I)Z @ 1 c2 +Event: 0.278 Thread 0x00007f70ec014510 DEOPT PACKING pc=0x00007f70dcfbe038 sp=0x00007f70f37faa50 +Event: 0.278 Thread 0x00007f70ec014510 DEOPT UNPACKING pc=0x00007f70dc8b8b19 sp=0x00007f70f37fa9d8 mode 2 +Event: 0.291 Thread 0x00007f70ec014510 Uncommon trap: trap_request=0xffffff45 fr.pc=0x00007f70dcfce0e8 relative=0x0000000000000048 +Event: 0.291 Thread 0x00007f70ec014510 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00007f70dcfce0e8 method=java.lang.CharacterData.of(I)Ljava/lang/CharacterData; @ 4 c2 +Event: 0.291 Thread 0x00007f70ec014510 DEOPT PACKING pc=0x00007f70dcfce0e8 sp=0x00007f70f37fb020 +Event: 0.291 Thread 0x00007f70ec014510 DEOPT UNPACKING pc=0x00007f70dc8b8b19 sp=0x00007f70f37fafe0 mode 2 +Event: 0.293 Thread 0x00007f70ec014510 Uncommon trap: trap_request=0xffffff45 fr.pc=0x00007f70dcfb5cc4 relative=0x00000000000001a4 +Event: 0.293 Thread 0x00007f70ec014510 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00007f70dcfb5cc4 method=java.lang.String.isLatin1()Z @ 10 c2 +Event: 0.293 Thread 0x00007f70ec014510 DEOPT PACKING pc=0x00007f70dcfb5cc4 sp=0x00007f70f37fb8e0 +Event: 0.293 Thread 0x00007f70ec014510 DEOPT UNPACKING pc=0x00007f70dc8b8b19 sp=0x00007f70f37fb830 mode 2 + +Classes unloaded (0 events): +No events + +Classes redefined (0 events): +No events + +Internal exceptions (20 events): +Event: 0.198 Thread 0x00007f70ec014510 Exception (0x00000005408cf258) +thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] +Event: 0.199 Thread 0x00007f70ec014510 Exception (0x00000005408f42c8) +thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] +Event: 0.200 Thread 0x00007f70ec014510 Exception (0x00000005408f7c48) +thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] +Event: 0.200 Thread 0x00007f70ec014510 Exception (0x0000000540900108) +thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] +Event: 0.207 Thread 0x00007f70ec014510 Exception (0x00000005409873f8) +thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] +Event: 0.209 Thread 0x00007f70ec014510 Exception (0x00000005409a7340) +thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 826] +Event: 0.209 Thread 0x00007f70ec014510 Exception (0x00000005409a9fb8) +thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 826] +Event: 0.209 Thread 0x00007f70ec014510 Exception (0x00000005409b3860) +thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] +Event: 0.226 Thread 0x00007f70ec014510 Exception (0x0000000540b14b50) +thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] +Event: 0.226 Thread 0x00007f70ec014510 Exception (0x0000000540b18478) +thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 826] +Event: 0.227 Thread 0x00007f70ec014510 Exception (0x0000000540b37760) +thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] +Event: 0.232 Thread 0x00007f70ec014510 Exception (0x0000000540bb0220) +thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] +Event: 0.240 Thread 0x00007f70ec014510 Exception (0x0000000540c8db38) +thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] +Event: 0.244 Thread 0x00007f70ec014510 Exception (0x0000000540cfdd40) +thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] +Event: 0.253 Thread 0x00007f70ec014510 Exception (0x0000000540de3678) +thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] +Event: 0.263 Thread 0x00007f70ec014510 Exception (0x0000000540e97460) +thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] +Event: 0.263 Thread 0x00007f70ec014510 Exception (0x0000000540e9c018) +thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] +Event: 0.264 Thread 0x00007f70ec014510 Exception (0x0000000540ead3e0) +thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] +Event: 0.265 Thread 0x00007f70ec014510 Exception (0x0000000540eb11d8) +thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 826] +Event: 0.331 Thread 0x00007f70ec014510 Exception > (0x00000005400354a8) +thrown [./src/hotspot/share/prims/jni.cpp, line 1073] + +VM Operations (20 events): +Event: 0.110 Executing VM operation: HandshakeAllThreads +Event: 0.110 Executing VM operation: HandshakeAllThreads done +Event: 0.152 Executing VM operation: HandshakeAllThreads +Event: 0.152 Executing VM operation: HandshakeAllThreads done +Event: 0.204 Executing VM operation: HandshakeAllThreads +Event: 0.204 Executing VM operation: HandshakeAllThreads done +Event: 0.206 Executing VM operation: ICBufferFull +Event: 0.206 Executing VM operation: ICBufferFull done +Event: 0.212 Executing VM operation: HandshakeAllThreads +Event: 0.212 Executing VM operation: HandshakeAllThreads done +Event: 0.235 Executing VM operation: HandshakeAllThreads +Event: 0.235 Executing VM operation: HandshakeAllThreads done +Event: 0.244 Executing VM operation: HandshakeAllThreads +Event: 0.244 Executing VM operation: HandshakeAllThreads done +Event: 0.267 Executing VM operation: HandshakeAllThreads +Event: 0.267 Executing VM operation: HandshakeAllThreads done +Event: 0.277 Executing VM operation: HandshakeAllThreads +Event: 0.277 Executing VM operation: HandshakeAllThreads done +Event: 0.292 Executing VM operation: HandshakeAllThreads +Event: 0.292 Executing VM operation: HandshakeAllThreads done + +Events (20 events): +Event: 0.287 loading class java/lang/constant/DirectMethodHandleDesc$1 +Event: 0.287 loading class java/lang/constant/DirectMethodHandleDesc$1 done +Event: 0.287 loading class java/lang/constant/PrimitiveClassDescImpl +Event: 0.287 loading class java/lang/constant/DynamicConstantDesc +Event: 0.287 loading class java/lang/constant/DynamicConstantDesc done +Event: 0.287 loading class java/lang/constant/PrimitiveClassDescImpl done +Event: 0.288 loading class java/lang/constant/DynamicConstantDesc$AnonymousDynamicConstantDesc +Event: 0.288 loading class java/lang/constant/DynamicConstantDesc$AnonymousDynamicConstantDesc done +Event: 0.288 loading class sun/nio/fs/UnixFileModeAttribute +Event: 0.288 loading class sun/nio/fs/UnixFileModeAttribute done +Event: 0.288 loading class sun/nio/fs/UnixFileModeAttribute$1 +Event: 0.288 loading class sun/nio/fs/UnixFileModeAttribute$1 done +Event: 0.288 loading class jdk/internal/reflect/UnsafeObjectFieldAccessorImpl +Event: 0.288 loading class jdk/internal/reflect/UnsafeObjectFieldAccessorImpl done +Event: 0.291 loading class java/time/format/DateTimeParseException +Event: 0.291 loading class java/time/DateTimeException +Event: 0.291 loading class java/time/DateTimeException done +Event: 0.291 loading class java/time/format/DateTimeParseException done +Event: 0.295 loading class java/lang/UnsatisfiedLinkError +Event: 0.295 loading class java/lang/UnsatisfiedLinkError done + + +Dynamic libraries: +513000000-542000000 rw-p 00000000 00:00 0 +542000000-7ff000000 ---p 00000000 00:00 0 +7ff000000-7ff700000 rw-p 00000000 00:00 0 +7ff700000-7ff775000 rw-p 00c75000 08:14 11213468 /usr/lib/jvm/java-17-openjdk-amd64/lib/server/classes.jsa +7ff775000-7ff800000 rw-p 00000000 00:00 0 +7ff800000-7ff877000 rw-p 00bfe000 08:14 11213468 /usr/lib/jvm/java-17-openjdk-amd64/lib/server/classes.jsa +7ff877000-800000000 rw-p 00000000 00:00 0 +556ba0f6f000-556ba0f70000 r--p 00000000 08:14 11213397 /usr/lib/jvm/java-17-openjdk-amd64/bin/java +556ba0f70000-556ba0f71000 r-xp 00001000 08:14 11213397 /usr/lib/jvm/java-17-openjdk-amd64/bin/java +556ba0f71000-556ba0f72000 r--p 00002000 08:14 11213397 /usr/lib/jvm/java-17-openjdk-amd64/bin/java +556ba0f72000-556ba0f73000 r--p 00002000 08:14 11213397 /usr/lib/jvm/java-17-openjdk-amd64/bin/java +556ba0f73000-556ba0f74000 rw-p 00003000 08:14 11213397 /usr/lib/jvm/java-17-openjdk-amd64/bin/java +556ba2f54000-556ba2f9b000 rw-p 00000000 00:00 0 [heap] +7f6fcfffe000-7f6ff0021000 rw-p 00000000 00:00 0 +7f6ff0021000-7f6ff4000000 ---p 00000000 00:00 0 +7f6ff8000000-7f6ff8021000 rw-p 00000000 00:00 0 +7f6ff8021000-7f6ffc000000 ---p 00000000 00:00 0 +7f6ffc000000-7f6ffc021000 rw-p 00000000 00:00 0 +7f6ffc021000-7f7000000000 ---p 00000000 00:00 0 +7f7000000000-7f7000021000 rw-p 00000000 00:00 0 +7f7000021000-7f7004000000 ---p 00000000 00:00 0 +7f7006ffe000-7f7006fff000 ---p 00000000 00:00 0 +7f7006fff000-7f70077ff000 rw-p 00000000 00:00 0 +7f70077ff000-7f7007800000 ---p 00000000 00:00 0 +7f7007800000-7f7008109000 rw-p 00000000 00:00 0 +7f7008109000-7f700c000000 ---p 00000000 00:00 0 +7f700c000000-7f700cd75000 rw-p 00000000 00:00 0 +7f700cd75000-7f7010000000 ---p 00000000 00:00 0 +7f7010000000-7f7010bbd000 rw-p 00000000 00:00 0 +7f7010bbd000-7f7014000000 ---p 00000000 00:00 0 +7f7014000000-7f7014a6d000 rw-p 00000000 00:00 0 +7f7014a6d000-7f7018000000 ---p 00000000 00:00 0 +7f7018000000-7f7018bb3000 rw-p 00000000 00:00 0 +7f7018bb3000-7f701c000000 ---p 00000000 00:00 0 +7f701c000000-7f701c361000 rw-p 00000000 00:00 0 +7f701c361000-7f7020000000 ---p 00000000 00:00 0 +7f7020000000-7f7020021000 rw-p 00000000 00:00 0 +7f7020021000-7f7024000000 ---p 00000000 00:00 0 +7f7024000000-7f7024021000 rw-p 00000000 00:00 0 +7f7024021000-7f7028000000 ---p 00000000 00:00 0 +7f7028000000-7f7028021000 rw-p 00000000 00:00 0 +7f7028021000-7f702c000000 ---p 00000000 00:00 0 +7f702c000000-7f702c5b8000 rw-p 00000000 00:00 0 +7f702c5b8000-7f7030000000 ---p 00000000 00:00 0 +7f7030000000-7f7030021000 rw-p 00000000 00:00 0 +7f7030021000-7f7034000000 ---p 00000000 00:00 0 +7f7034000000-7f7034021000 rw-p 00000000 00:00 0 +7f7034021000-7f7038000000 ---p 00000000 00:00 0 +7f7038000000-7f7038452000 rw-p 00000000 00:00 0 +7f7038452000-7f703c000000 ---p 00000000 00:00 0 +7f703c000000-7f703c021000 rw-p 00000000 00:00 0 +7f703c021000-7f7040000000 ---p 00000000 00:00 0 +7f7040000000-7f7040021000 rw-p 00000000 00:00 0 +7f7040021000-7f7044000000 ---p 00000000 00:00 0 +7f7044000000-7f7044e54000 rw-p 00000000 00:00 0 +7f7044e54000-7f7048000000 ---p 00000000 00:00 0 +7f7048000000-7f7048021000 rw-p 00000000 00:00 0 +7f7048021000-7f704c000000 ---p 00000000 00:00 0 +7f704c000000-7f704c021000 rw-p 00000000 00:00 0 +7f704c021000-7f7050000000 ---p 00000000 00:00 0 +7f7050000000-7f7050021000 rw-p 00000000 00:00 0 +7f7050021000-7f7054000000 ---p 00000000 00:00 0 +7f7054000000-7f7054021000 rw-p 00000000 00:00 0 +7f7054021000-7f7058000000 ---p 00000000 00:00 0 +7f7058000000-7f7058021000 rw-p 00000000 00:00 0 +7f7058021000-7f705c000000 ---p 00000000 00:00 0 +7f705c3bc000-7f705c648000 rw-p 00000000 00:00 0 +7f705c648000-7f705c649000 ---p 00000000 00:00 0 +7f705c649000-7f705ce49000 rw-p 00000000 00:00 0 +7f705ce49000-7f705ce4a000 ---p 00000000 00:00 0 +7f705ce4a000-7f705d64a000 rw-p 00000000 00:00 0 +7f705d64a000-7f705d64b000 ---p 00000000 00:00 0 +7f705d64b000-7f705de4b000 rw-p 00000000 00:00 0 +7f705de4b000-7f705de4f000 r--p 00000000 08:14 10908334 /usr/lib/x86_64-linux-gnu/libzstd.so.1.5.4 +7f705de4f000-7f705deed000 r-xp 00004000 08:14 10908334 /usr/lib/x86_64-linux-gnu/libzstd.so.1.5.4 +7f705deed000-7f705defd000 r--p 000a2000 08:14 10908334 /usr/lib/x86_64-linux-gnu/libzstd.so.1.5.4 +7f705defd000-7f705defe000 r--p 000b1000 08:14 10908334 /usr/lib/x86_64-linux-gnu/libzstd.so.1.5.4 +7f705defe000-7f705deff000 rw-p 000b2000 08:14 10908334 /usr/lib/x86_64-linux-gnu/libzstd.so.1.5.4 +7f705deff000-7f705df03000 ---p 00000000 00:00 0 +7f705df03000-7f705dfff000 rw-p 00000000 00:00 0 +7f705dfff000-7f705e003000 ---p 00000000 00:00 0 +7f705e003000-7f705e0ff000 rw-p 00000000 00:00 0 +7f705e0ff000-7f705e103000 ---p 00000000 00:00 0 +7f705e103000-7f705e1ff000 rw-p 00000000 00:00 0 +7f705e1ff000-7f705e203000 ---p 00000000 00:00 0 +7f705e203000-7f705e2ff000 rw-p 00000000 00:00 0 +7f705e2ff000-7f705e303000 ---p 00000000 00:00 0 +7f705e303000-7f705e3ff000 rw-p 00000000 00:00 0 +7f705e3ff000-7f705e403000 ---p 00000000 00:00 0 +7f705e403000-7f705e4ff000 rw-p 00000000 00:00 0 +7f705e4ff000-7f705e503000 ---p 00000000 00:00 0 +7f705e503000-7f705e5ff000 rw-p 00000000 00:00 0 +7f705e5ff000-7f705e603000 ---p 00000000 00:00 0 +7f705e603000-7f705e6ff000 rw-p 00000000 00:00 0 +7f705e6ff000-7f705e703000 ---p 00000000 00:00 0 +7f705e703000-7f705e7ff000 rw-p 00000000 00:00 0 +7f705e7ff000-7f705e800000 ---p 00000000 00:00 0 +7f705e800000-7f705e900000 rw-p 00000000 00:00 0 +7f705e900000-7f705e904000 ---p 00000000 00:00 0 +7f705e904000-7f705ea00000 rw-p 00000000 00:00 0 +7f705ea00000-7f705ef74000 r--p 00000000 08:14 10879460 /usr/lib/locale/locale-archive +7f705f000000-7f705f320000 rw-p 00000000 00:00 0 +7f705f320000-7f705f400000 ---p 00000000 00:00 0 +7f705f400000-7f705f6d0000 rw-p 00000000 00:00 0 +7f705f6d0000-7f7063000000 ---p 00000000 00:00 0 +7f7063000000-7f7063bc6000 rw-p 00001000 08:14 11213468 /usr/lib/jvm/java-17-openjdk-amd64/lib/server/classes.jsa +7f7063bc6000-7f7064000000 ---p 00000000 00:00 0 +7f7064000000-7f7064030000 rw-p 00000000 00:00 0 +7f7064030000-7f7064070000 rw-p 00000000 00:00 0 +7f7064070000-7f70640d0000 rw-p 00000000 00:00 0 +7f70640d0000-7f70640f0000 rw-p 00000000 00:00 0 +7f70640f0000-7f70a4000000 ---p 00000000 00:00 0 +7f70a4000000-7f70a4021000 rw-p 00000000 00:00 0 +7f70a4021000-7f70a8000000 ---p 00000000 00:00 0 +7f70a8000000-7f70a8021000 rw-p 00000000 00:00 0 +7f70a8021000-7f70ac000000 ---p 00000000 00:00 0 +7f70ac000000-7f70ac021000 rw-p 00000000 00:00 0 +7f70ac021000-7f70b0000000 ---p 00000000 00:00 0 +7f70b0000000-7f70b0021000 rw-p 00000000 00:00 0 +7f70b0021000-7f70b4000000 ---p 00000000 00:00 0 +7f70b4000000-7f70b4021000 rw-p 00000000 00:00 0 +7f70b4021000-7f70b8000000 ---p 00000000 00:00 0 +7f70b8078000-7f70b8080000 r--p 00000000 08:14 11018131 /usr/local/lib/libtidesdb.so +7f70b8080000-7f70b80c9000 r-xp 00008000 08:14 11018131 /usr/local/lib/libtidesdb.so +7f70b80c9000-7f70b80d7000 r--p 00051000 08:14 11018131 /usr/local/lib/libtidesdb.so +7f70b80d7000-7f70b80d8000 r--p 0005e000 08:14 11018131 /usr/local/lib/libtidesdb.so +7f70b80d8000-7f70b80d9000 rw-p 0005f000 08:14 11018131 /usr/local/lib/libtidesdb.so +7f70b80d9000-7f70b80da000 rw-p 00000000 00:00 0 +7f70b80da000-7f70b80de000 ---p 00000000 00:00 0 +7f70b80de000-7f70b81da000 rw-p 00000000 00:00 0 +7f70b81da000-7f70b81de000 ---p 00000000 00:00 0 +7f70b81de000-7f70b82da000 rw-p 00000000 00:00 0 +7f70b82da000-7f70b82de000 ---p 00000000 00:00 0 +7f70b82de000-7f70b83da000 rw-p 00000000 00:00 0 +7f70b83da000-7f70b83de000 ---p 00000000 00:00 0 +7f70b83de000-7f70b84da000 rw-p 00000000 00:00 0 +7f70b84da000-7f70b84de000 ---p 00000000 00:00 0 +7f70b84de000-7f70b85da000 rw-p 00000000 00:00 0 +7f70b85da000-7f70b85de000 ---p 00000000 00:00 0 +7f70b85de000-7f70b86da000 rw-p 00000000 00:00 0 +7f70b86da000-7f70b86de000 ---p 00000000 00:00 0 +7f70b86de000-7f70b87da000 rw-p 00000000 00:00 0 +7f70b87da000-7f70b87de000 ---p 00000000 00:00 0 +7f70b87de000-7f70b88da000 rw-p 00000000 00:00 0 +7f70b88da000-7f70b88db000 ---p 00000000 00:00 0 +7f70b88db000-7f70b89db000 rw-p 00000000 00:00 0 +7f70b89db000-7f70b89e0000 r--p 00000000 08:14 11213452 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjsvml.so +7f70b89e0000-7f70b8a21000 r-xp 00005000 08:14 11213452 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjsvml.so +7f70b8a21000-7f70b8aaa000 r--p 00046000 08:14 11213452 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjsvml.so +7f70b8aaa000-7f70b8aab000 r--p 000ce000 08:14 11213452 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjsvml.so +7f70b8aab000-7f70b8aac000 rw-p 000cf000 08:14 11213452 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjsvml.so +7f70b8aac000-7f70b8aad000 ---p 00000000 00:00 0 +7f70b8aad000-7f70b8bad000 rw-p 00000000 00:00 0 +7f70b8bad000-7f70b8bae000 ---p 00000000 00:00 0 +7f70b8bae000-7f70bba70000 rw-p 00000000 00:00 0 +7f70bba70000-7f70c69b0000 ---p 00000000 00:00 0 +7f70c69b0000-7f70c75b0000 rw-p 00000000 00:00 0 +7f70c75b0000-7f70d24f0000 ---p 00000000 00:00 0 +7f70d24f0000-7f70d26a8000 rw-p 00000000 00:00 0 +7f70d26a8000-7f70d3c90000 ---p 00000000 00:00 0 +7f70d3c90000-7f70d3e10000 rw-p 00000000 00:00 0 +7f70d3e10000-7f70d53f8000 ---p 00000000 00:00 0 +7f70d53f8000-7f70d5400000 rw-p 00000000 00:00 0 +7f70d5400000-7f70d56e0000 rwxp 00000000 00:00 0 +7f70d56e0000-7f70dc85f000 ---p 00000000 00:00 0 +7f70dc85f000-7f70dcacf000 rwxp 00000000 00:00 0 +7f70dcacf000-7f70dcfa0000 ---p 00000000 00:00 0 +7f70dcfa0000-7f70dd210000 rwxp 00000000 00:00 0 +7f70dd210000-7f70e4400000 ---p 00000000 00:00 0 +7f70e4400000-7f70ebe68000 r--s 00000000 08:14 11213467 /usr/lib/jvm/java-17-openjdk-amd64/lib/modules +7f70ebe7e000-7f70effa5000 rw-p 00000000 00:00 0 +7f70effa5000-7f70f0000000 ---p 00000000 00:00 0 +7f70f0051000-7f70f0ab6000 rw-p 00000000 00:00 0 +7f70f0ab6000-7f70f0ab7000 ---p 00000000 00:00 0 +7f70f0ab7000-7f70f0bb7000 rw-p 00000000 00:00 0 +7f70f0bb7000-7f70f0bb8000 ---p 00000000 00:00 0 +7f70f0bb8000-7f70f0cb8000 rw-p 00000000 00:00 0 +7f70f0cb8000-7f70f0cb9000 ---p 00000000 00:00 0 +7f70f0cb9000-7f70f0f31000 rw-p 00000000 00:00 0 +7f70f0f31000-7f70f2519000 ---p 00000000 00:00 0 +7f70f2519000-7f70f3233000 rw-p 00000000 00:00 0 +7f70f3233000-7f70f3317000 ---p 00000000 00:00 0 +7f70f3317000-7f70f331d000 rw-p 00000000 00:00 0 +7f70f331d000-7f70f3400000 ---p 00000000 00:00 0 +7f70f3400000-7f70f349c000 r--p 00000000 08:14 10888123 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.32 +7f70f349c000-7f70f35cd000 r-xp 0009c000 08:14 10888123 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.32 +7f70f35cd000-7f70f365a000 r--p 001cd000 08:14 10888123 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.32 +7f70f365a000-7f70f3665000 r--p 0025a000 08:14 10888123 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.32 +7f70f3665000-7f70f3668000 rw-p 00265000 08:14 10888123 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.32 +7f70f3668000-7f70f366c000 rw-p 00000000 00:00 0 +7f70f3670000-7f70f3700000 rw-p 00000000 00:00 0 +7f70f3700000-7f70f3704000 ---p 00000000 00:00 0 +7f70f3704000-7f70f3800000 rw-p 00000000 00:00 0 +7f70f3800000-7f70f3a51000 r--p 00000000 08:14 11213471 /usr/lib/jvm/java-17-openjdk-amd64/lib/server/libjvm.so +7f70f3a51000-7f70f47b3000 r-xp 00251000 08:14 11213471 /usr/lib/jvm/java-17-openjdk-amd64/lib/server/libjvm.so +7f70f47b3000-7f70f4a33000 r--p 00fb3000 08:14 11213471 /usr/lib/jvm/java-17-openjdk-amd64/lib/server/libjvm.so +7f70f4a33000-7f70f4aeb000 r--p 01233000 08:14 11213471 /usr/lib/jvm/java-17-openjdk-amd64/lib/server/libjvm.so +7f70f4aeb000-7f70f4b20000 rw-p 012eb000 08:14 11213471 /usr/lib/jvm/java-17-openjdk-amd64/lib/server/libjvm.so +7f70f4b20000-7f70f4b7a000 rw-p 00000000 00:00 0 +7f70f4b7b000-7f70f4b7e000 r--p 00000000 08:14 10907948 /usr/lib/x86_64-linux-gnu/liblz4.so.1.9.4 +7f70f4b7e000-7f70f4b99000 r-xp 00003000 08:14 10907948 /usr/lib/x86_64-linux-gnu/liblz4.so.1.9.4 +7f70f4b99000-7f70f4b9c000 r--p 0001e000 08:14 10907948 /usr/lib/x86_64-linux-gnu/liblz4.so.1.9.4 +7f70f4b9c000-7f70f4b9d000 r--p 00020000 08:14 10907948 /usr/lib/x86_64-linux-gnu/liblz4.so.1.9.4 +7f70f4b9d000-7f70f4b9e000 rw-p 00021000 08:14 10907948 /usr/lib/x86_64-linux-gnu/liblz4.so.1.9.4 +7f70f4bb8000-7f70f4bbf000 r--s 00000000 08:14 10965240 /usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache +7f70f4bbf000-7f70f4c00000 rw-p 00000000 00:00 0 +7f70f4c00000-7f70f4c22000 r--p 00000000 08:14 10888103 /usr/lib/x86_64-linux-gnu/libc.so.6 +7f70f4c22000-7f70f4d9a000 r-xp 00022000 08:14 10888103 /usr/lib/x86_64-linux-gnu/libc.so.6 +7f70f4d9a000-7f70f4df2000 r--p 0019a000 08:14 10888103 /usr/lib/x86_64-linux-gnu/libc.so.6 +7f70f4df2000-7f70f4df6000 r--p 001f1000 08:14 10888103 /usr/lib/x86_64-linux-gnu/libc.so.6 +7f70f4df6000-7f70f4df8000 rw-p 001f5000 08:14 10888103 /usr/lib/x86_64-linux-gnu/libc.so.6 +7f70f4df8000-7f70f4e05000 rw-p 00000000 00:00 0 +7f70f4e09000-7f70f4e0c000 r--p 00000000 08:14 10881736 /usr/lib/x86_64-linux-gnu/libsnappy.so.1.1.9 +7f70f4e0c000-7f70f4e11000 r-xp 00003000 08:14 10881736 /usr/lib/x86_64-linux-gnu/libsnappy.so.1.1.9 +7f70f4e11000-7f70f4e12000 r--p 00008000 08:14 10881736 /usr/lib/x86_64-linux-gnu/libsnappy.so.1.1.9 +7f70f4e12000-7f70f4e13000 r--p 00009000 08:14 10881736 /usr/lib/x86_64-linux-gnu/libsnappy.so.1.1.9 +7f70f4e13000-7f70f4e14000 rw-p 0000a000 08:14 10881736 /usr/lib/x86_64-linux-gnu/libsnappy.so.1.1.9 +7f70f4e14000-7f70f4e17000 r--p 00000000 08:14 11022710 /usr/local/lib/libtidesdb_jni.so +7f70f4e17000-7f70f4e1b000 r-xp 00003000 08:14 11022710 /usr/local/lib/libtidesdb_jni.so +7f70f4e1b000-7f70f4e1c000 r--p 00007000 08:14 11022710 /usr/local/lib/libtidesdb_jni.so +7f70f4e1c000-7f70f4e1d000 r--p 00007000 08:14 11022710 /usr/local/lib/libtidesdb_jni.so +7f70f4e1d000-7f70f4e1e000 rw-p 00008000 08:14 11022710 /usr/local/lib/libtidesdb_jni.so +7f70f4e1e000-7f70f4e20000 r--p 00000000 08:14 11213456 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement_ext.so +7f70f4e20000-7f70f4e23000 r-xp 00002000 08:14 11213456 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement_ext.so +7f70f4e23000-7f70f4e25000 r--p 00005000 08:14 11213456 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement_ext.so +7f70f4e25000-7f70f4e26000 r--p 00006000 08:14 11213456 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement_ext.so +7f70f4e26000-7f70f4e27000 rw-p 00007000 08:14 11213456 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement_ext.so +7f70f4e27000-7f70f4e29000 r--p 00000000 08:14 11213454 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement.so +7f70f4e29000-7f70f4e2a000 r-xp 00002000 08:14 11213454 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement.so +7f70f4e2a000-7f70f4e2b000 r--p 00003000 08:14 11213454 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement.so +7f70f4e2b000-7f70f4e2c000 r--p 00003000 08:14 11213454 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement.so +7f70f4e2c000-7f70f4e2d000 rw-p 00004000 08:14 11213454 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement.so +7f70f4e2d000-7f70f4e31000 r--p 00000000 08:14 11213458 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnet.so +7f70f4e31000-7f70f4e3f000 r-xp 00004000 08:14 11213458 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnet.so +7f70f4e3f000-7f70f4e43000 r--p 00012000 08:14 11213458 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnet.so +7f70f4e43000-7f70f4e44000 r--p 00015000 08:14 11213458 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnet.so +7f70f4e44000-7f70f4e45000 rw-p 00016000 08:14 11213458 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnet.so +7f70f4e45000-7f70f4e4c000 r--p 00000000 08:14 11213459 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnio.so +7f70f4e4c000-7f70f4e55000 r-xp 00007000 08:14 11213459 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnio.so +7f70f4e55000-7f70f4e59000 r--p 00010000 08:14 11213459 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnio.so +7f70f4e59000-7f70f4e5a000 r--p 00014000 08:14 11213459 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnio.so +7f70f4e5a000-7f70f4e5b000 rw-p 00015000 08:14 11213459 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnio.so +7f70f4e5b000-7f70f4ebe000 rw-p 00000000 00:00 0 +7f70f4ebe000-7f70f4ec8000 ---p 00000000 00:00 0 +7f70f4ec8000-7f70f4ed4000 r--p 00000000 08:14 11213445 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjava.so +7f70f4ed4000-7f70f4ee6000 r-xp 0000c000 08:14 11213445 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjava.so +7f70f4ee6000-7f70f4eec000 r--p 0001e000 08:14 11213445 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjava.so +7f70f4eec000-7f70f4eed000 r--p 00023000 08:14 11213445 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjava.so +7f70f4eed000-7f70f4eee000 rw-p 00024000 08:14 11213445 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjava.so +7f70f4eee000-7f70f4eef000 rw-p 00000000 00:00 0 +7f70f4eef000-7f70f4ef2000 r--p 00000000 08:14 10888119 /usr/lib/x86_64-linux-gnu/libgcc_s.so.1 +7f70f4ef2000-7f70f4f0d000 r-xp 00003000 08:14 10888119 /usr/lib/x86_64-linux-gnu/libgcc_s.so.1 +7f70f4f0d000-7f70f4f11000 r--p 0001e000 08:14 10888119 /usr/lib/x86_64-linux-gnu/libgcc_s.so.1 +7f70f4f11000-7f70f4f12000 r--p 00021000 08:14 10888119 /usr/lib/x86_64-linux-gnu/libgcc_s.so.1 +7f70f4f12000-7f70f4f13000 rw-p 00022000 08:14 10888119 /usr/lib/x86_64-linux-gnu/libgcc_s.so.1 +7f70f4f13000-7f70f4f21000 r--p 00000000 08:14 10888109 /usr/lib/x86_64-linux-gnu/libm.so.6 +7f70f4f21000-7f70f4f9f000 r-xp 0000e000 08:14 10888109 /usr/lib/x86_64-linux-gnu/libm.so.6 +7f70f4f9f000-7f70f4ffa000 r--p 0008c000 08:14 10888109 /usr/lib/x86_64-linux-gnu/libm.so.6 +7f70f4ffa000-7f70f4ffb000 r--p 000e6000 08:14 10888109 /usr/lib/x86_64-linux-gnu/libm.so.6 +7f70f4ffb000-7f70f4ffc000 rw-p 000e7000 08:14 10888109 /usr/lib/x86_64-linux-gnu/libm.so.6 +7f70f4ffc000-7f70f4fff000 rw-p 00000000 00:00 0 +7f70f4fff000-7f70f5001000 r--p 00000000 08:14 11213449 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjli.so +7f70f5001000-7f70f500b000 r-xp 00002000 08:14 11213449 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjli.so +7f70f500b000-7f70f500e000 r--p 0000c000 08:14 11213449 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjli.so +7f70f500e000-7f70f500f000 r--p 0000e000 08:14 11213449 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjli.so +7f70f500f000-7f70f5010000 rw-p 0000f000 08:14 11213449 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjli.so +7f70f5010000-7f70f5013000 r--p 00000000 08:14 10908333 /usr/lib/x86_64-linux-gnu/libz.so.1.2.13 +7f70f5013000-7f70f5025000 r-xp 00003000 08:14 10908333 /usr/lib/x86_64-linux-gnu/libz.so.1.2.13 +7f70f5025000-7f70f502c000 r--p 00015000 08:14 10908333 /usr/lib/x86_64-linux-gnu/libz.so.1.2.13 +7f70f502c000-7f70f502d000 r--p 0001b000 08:14 10908333 /usr/lib/x86_64-linux-gnu/libz.so.1.2.13 +7f70f502d000-7f70f502e000 rw-p 0001c000 08:14 10908333 /usr/lib/x86_64-linux-gnu/libz.so.1.2.13 +7f70f5031000-7f70f5033000 r--p 00000000 08:14 11213466 /usr/lib/jvm/java-17-openjdk-amd64/lib/libzip.so +7f70f5033000-7f70f5038000 r-xp 00002000 08:14 11213466 /usr/lib/jvm/java-17-openjdk-amd64/lib/libzip.so +7f70f5038000-7f70f503a000 r--p 00007000 08:14 11213466 /usr/lib/jvm/java-17-openjdk-amd64/lib/libzip.so +7f70f503a000-7f70f503b000 r--p 00008000 08:14 11213466 /usr/lib/jvm/java-17-openjdk-amd64/lib/libzip.so +7f70f503b000-7f70f503c000 rw-p 00009000 08:14 11213466 /usr/lib/jvm/java-17-openjdk-amd64/lib/libzip.so +7f70f503c000-7f70f5044000 rw-s 00000000 08:14 18885538 /tmp/hsperfdata_agpmastersystem/2050292 +7f70f5044000-7f70f5045000 ---p 00000000 00:00 0 +7f70f5045000-7f70f5046000 r--p 00000000 00:00 0 +7f70f5046000-7f70f5047000 ---p 00000000 00:00 0 +7f70f5047000-7f70f5049000 r--p 00000000 08:14 11213448 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjimage.so +7f70f5049000-7f70f504c000 r-xp 00002000 08:14 11213448 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjimage.so +7f70f504c000-7f70f504d000 r--p 00005000 08:14 11213448 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjimage.so +7f70f504d000-7f70f504e000 r--p 00006000 08:14 11213448 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjimage.so +7f70f504e000-7f70f504f000 rw-p 00007000 08:14 11213448 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjimage.so +7f70f504f000-7f70f5051000 rw-p 00000000 00:00 0 +7f70f5051000-7f70f5052000 r--p 00000000 08:14 10887950 /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2 +7f70f5052000-7f70f507a000 r-xp 00001000 08:14 10887950 /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2 +7f70f507a000-7f70f5084000 r--p 00029000 08:14 10887950 /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2 +7f70f5084000-7f70f5086000 r--p 00033000 08:14 10887950 /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2 +7f70f5086000-7f70f5088000 rw-p 00035000 08:14 10887950 /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2 +7ffeb647c000-7ffeb649e000 rw-p 00000000 00:00 0 [stack] +7ffeb6521000-7ffeb6525000 r--p 00000000 00:00 0 [vvar] +7ffeb6525000-7ffeb6527000 r-xp 00000000 00:00 0 [vdso] +ffffffffff600000-ffffffffff601000 --xp 00000000 00:00 0 [vsyscall] + + +VM Arguments: +jvm_args: -Djava.library.path=/usr/local/lib +java_command: /home/agpmastersystem/bnd/tidesdb-java/target/surefire/surefirebooter-20260313005825693_3.jar /home/agpmastersystem/bnd/tidesdb-java/target/surefire 2026-03-13T00-58-25_630-jvmRun1 surefire-20260313005825693_1tmp surefire_0-20260313005825693_2tmp +java_class_path (initial): /home/agpmastersystem/bnd/tidesdb-java/target/surefire/surefirebooter-20260313005825693_3.jar +Launcher Type: SUN_STANDARD + +[Global flags] + intx CICompilerCount = 12 {product} {ergonomic} + uint ConcGCThreads = 3 {product} {ergonomic} + uint G1ConcRefinementThreads = 13 {product} {ergonomic} + size_t G1HeapRegionSize = 8388608 {product} {ergonomic} + uintx GCDrainStackTargetSize = 64 {product} {ergonomic} + size_t InitialHeapSize = 788529152 {product} {ergonomic} + size_t MarkStackSize = 4194304 {product} {ergonomic} + size_t MaxHeapSize = 12566134784 {product} {ergonomic} + size_t MaxNewSize = 7532969984 {product} {ergonomic} + size_t MinHeapDeltaBytes = 8388608 {product} {ergonomic} + size_t MinHeapSize = 8388608 {product} {ergonomic} + uintx NonNMethodCodeHeapSize = 7602480 {pd product} {ergonomic} + uintx NonProfiledCodeHeapSize = 122027880 {pd product} {ergonomic} + uintx ProfiledCodeHeapSize = 122027880 {pd product} {ergonomic} + uintx ReservedCodeCacheSize = 251658240 {pd product} {ergonomic} + bool SegmentedCodeCache = true {product} {ergonomic} + size_t SoftMaxHeapSize = 12566134784 {manageable} {ergonomic} + bool UseCompressedClassPointers = true {product lp64_product} {ergonomic} + bool UseCompressedOops = true {product lp64_product} {ergonomic} + bool UseG1GC = true {product} {ergonomic} + +Logging: +Log output configuration: + #0: stdout all=warning uptime,level,tags + #1: stderr all=off uptime,level,tags + +Environment Variables: +PATH=/home/agpmastersystem/bin:/home/agpmastersystem/flutter/flutter/bin:/home/agpmastersystem/flutter/flutter/bin:/home/agpmastersystem/development/flutter/bin:/home/agpmastersystem/.local/bin:/home/agpmastersystem/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin:/home/agpmastersystem/.dotnet/tools:/home/agpmastersystem/.dotnet/tools:/home/agpmastersystem/julia-1.10.0/bin:/opt/zig/zig-linux-x86_64-0.13.0 +USERNAME=agpmastersystem +SHELL=/bin/bash +DISPLAY=:1 +LANG=en_US.UTF-8 +TERM=xterm-256color + +Active Locale: +LC_ALL=en_US.UTF-8 +LC_COLLATE=en_US.UTF-8 +LC_CTYPE=en_US.UTF-8 +LC_MESSAGES=en_US.UTF-8 +LC_MONETARY=en_US.UTF-8 +LC_NUMERIC=en_US.UTF-8 +LC_TIME=en_US.UTF-8 + +Signal Handlers: + SIGSEGV: crash_handler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, unblocked + SIGBUS: crash_handler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, unblocked + SIGFPE: crash_handler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, unblocked + SIGPIPE: javaSignalHandler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, blocked + SIGXFSZ: javaSignalHandler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, blocked + SIGILL: crash_handler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, unblocked + SIGUSR2: SR_handler in libjvm.so, mask=00000000000000000000000000000000, flags=SA_RESTART|SA_SIGINFO, blocked + SIGHUP: UserHandler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, blocked + SIGINT: UserHandler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, blocked + SIGTERM: UserHandler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, blocked + SIGQUIT: UserHandler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, blocked + SIGTRAP: crash_handler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, unblocked + + +Periodic native trim disabled + + +--------------- S Y S T E M --------------- + +OS: +DISTRIB_ID=Ubuntu +DISTRIB_RELEASE=23.04 +DISTRIB_CODENAME=lunar +DISTRIB_DESCRIPTION="Ubuntu 23.04" +uname: Linux 6.2.0-39-generic #40-Ubuntu SMP PREEMPT_DYNAMIC Tue Nov 14 14:18:00 UTC 2023 x86_64 +OS uptime: 8 days 10:14 hours +libc: glibc 2.37 NPTL 2.37 +rlimit (soft/hard): STACK 8192k/infinity , CORE 0k/infinity , NPROC 191244/191244 , NOFILE 1048576/1048576 , AS infinity/infinity , CPU infinity/infinity , DATA infinity/infinity , FSIZE infinity/infinity , MEMLOCK 6134892k/6134892k +load average: 5.09 6.22 6.89 + +/proc/meminfo: +MemTotal: 49079140 kB +MemFree: 1065920 kB +MemAvailable: 21757920 kB +Buffers: 2054748 kB +Cached: 18516476 kB +SwapCached: 91856 kB +Active: 14776756 kB +Inactive: 30590152 kB +Active(anon): 2699424 kB +Inactive(anon): 22716668 kB +Active(file): 12077332 kB +Inactive(file): 7873484 kB +Unevictable: 1668 kB +Mlocked: 264 kB +SwapTotal: 8388604 kB +SwapFree: 5680380 kB +Zswap: 0 kB +Zswapped: 0 kB +Dirty: 2652 kB +Writeback: 0 kB +AnonPages: 24742792 kB +Mapped: 1272080 kB +Shmem: 620408 kB +KReclaimable: 1337660 kB +Slab: 1840380 kB +SReclaimable: 1337660 kB +SUnreclaim: 502720 kB +KernelStack: 44640 kB +PageTables: 184096 kB +SecPageTables: 0 kB +NFS_Unstable: 0 kB +Bounce: 0 kB +WritebackTmp: 0 kB +CommitLimit: 32928172 kB +Committed_AS: 89938420 kB +VmallocTotal: 34359738367 kB +VmallocUsed: 163660 kB +VmallocChunk: 0 kB +Percpu: 18176 kB +HardwareCorrupted: 0 kB +AnonHugePages: 10240 kB +ShmemHugePages: 2048 kB +ShmemPmdMapped: 0 kB +FileHugePages: 0 kB +FilePmdMapped: 0 kB +HugePages_Total: 0 +HugePages_Free: 0 +HugePages_Rsvd: 0 +HugePages_Surp: 0 +Hugepagesize: 2048 kB +Hugetlb: 0 kB +DirectMap4k: 2126020 kB +DirectMap2M: 41670656 kB +DirectMap1G: 7340032 kB + +/sys/kernel/mm/transparent_hugepage/enabled: always [madvise] never +/sys/kernel/mm/transparent_hugepage/defrag (defrag/compaction efforts parameter): always defer defer+madvise [madvise] never + +Process Memory: +Virtual Size: 16953036K (peak: 16953036K) +Resident Set Size: 212256K (peak: 214460K) (anon: 189180K, file: 23076K, shmem: 0K) +Swapped out: 0K +C-Heap outstanding allocations: 687607K, retained: 11036K +glibc malloc tunables: (default) + +/proc/sys/kernel/threads-max (system-wide limit on the number of threads): 382489 +/proc/sys/vm/max_map_count (maximum number of memory map areas a process may have): 65530 +/proc/sys/kernel/pid_max (system-wide limit on number of process identifiers): 4194304 + +container (cgroup) information: +container_type: cgroupv2 +cpu_cpuset_cpus: not supported +cpu_memory_nodes: not supported +active_processor_count: 16 +cpu_quota: not supported +cpu_period: not supported +cpu_shares: not supported +memory_limit_in_bytes: unlimited +memory_and_swap_limit_in_bytes: unlimited +memory_soft_limit_in_bytes: unlimited +memory_usage_in_bytes: 19929596 k +memory_max_usage_in_bytes: not supported +memory_swap_current_in_bytes: 663596 k +memory_swap_max_limit_in_bytes: unlimited +maximum number of tasks: 57373 +current number of tasks: 687 + +Steal ticks since vm start: 0 +Steal ticks percentage since vm start: 0.000 + +CPU: total 16 (initial active 16) (8 cores per cpu, 2 threads per core) family 6 model 167 stepping 1 microcode 0x5d, cx8, cmov, fxsr, ht, mmx, 3dnowpref, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, lzcnt, tsc, tscinvbit, avx, avx2, aes, erms, clmul, bmi1, bmi2, adx, avx512f, avx512dq, avx512cd, avx512bw, avx512vl, sha, fma, vzeroupper, avx512_vpopcntdq, avx512_vpclmulqdq, avx512_vaes, avx512_vnni, clflush, clflushopt, avx512_vbmi2, avx512_vbmi +CPU Model and flags from /proc/cpuinfo: +model name : 11th Gen Intel(R) Core(TM) i7-11700K @ 3.60GHz +flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid mpx avx512f avx512dq rdseed adx smap avx512ifma clflushopt intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp hwp_pkg_req avx512vbmi umip pku ospke avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg avx512_vpopcntdq rdpid fsrm md_clear flush_l1d arch_capabilities + +Online cpus: 0-15 +Offline cpus: +BIOS frequency limitation: +Frequency switch latency (ns): 0 +Available cpu frequencies: +Current governor: powersave +Core performance/turbo boost: + +Memory: 4k page, physical 49079140k(1065920k free), swap 8388604k(5680380k free) +Page Sizes: 4k + +vm_info: OpenJDK 64-Bit Server VM (17.0.9+9-Ubuntu-123.04) for linux-amd64 JRE (17.0.9+9-Ubuntu-123.04), built on Oct 19 2023 08:33:16 by "buildd" with gcc 12.3.0 + +END. diff --git a/src/main/c/com_tidesdb_TidesDB.c b/src/main/c/com_tidesdb_TidesDB.c index 3fc4f19..bdaba21 100644 --- a/src/main/c/com_tidesdb_TidesDB.c +++ b/src/main/c/com_tidesdb_TidesDB.c @@ -1117,7 +1117,7 @@ JNIEXPORT jobject JNICALL Java_com_tidesdb_TidesDB_nativeGetDbStats(JNIEnv *env, jclass dbStatsClass = (*env)->FindClass(env, "com/tidesdb/DbStats"); jmethodID constructor = - (*env)->GetMethodID(env, dbStatsClass, "", "(IJJJIIJIIJIIJJJJ)V"); + (*env)->GetMethodID(env, dbStatsClass, "", "(IJJJIIJIIJIJJJJ)V"); return (*env)->NewObject(env, dbStatsClass, constructor, (jint)db_stats.num_column_families, From a57e260f80d15387d1fdd90fc5c51ca4c10de510 Mon Sep 17 00:00:00 2001 From: Alex Gaetano Padula Date: Fri, 13 Mar 2026 01:31:11 -0400 Subject: [PATCH 3/3] rm log files --- hs_err_pid2048325.log | 1226 ---------------------------------------- hs_err_pid2048993.log | 1223 ---------------------------------------- hs_err_pid2050292.log | 1238 ----------------------------------------- 3 files changed, 3687 deletions(-) delete mode 100644 hs_err_pid2048325.log delete mode 100644 hs_err_pid2048993.log delete mode 100644 hs_err_pid2050292.log diff --git a/hs_err_pid2048325.log b/hs_err_pid2048325.log deleted file mode 100644 index 463e5dd..0000000 --- a/hs_err_pid2048325.log +++ /dev/null @@ -1,1226 +0,0 @@ -# -# A fatal error has been detected by the Java Runtime Environment: -# -# SIGSEGV (0xb) at pc=0x00007fdfae8d79e8, pid=2048325, tid=2048326 -# -# JRE version: OpenJDK Runtime Environment (17.0.9+9) (build 17.0.9+9-Ubuntu-123.04) -# Java VM: OpenJDK 64-Bit Server VM (17.0.9+9-Ubuntu-123.04, mixed mode, sharing, tiered, compressed oops, compressed class ptrs, g1 gc, linux-amd64) -# Problematic frame: -# V [libjvm.so+0x8d79e8] jni_NewObject+0x128 -# -# Core dump will be written. Default location: Core dumps may be processed with "/usr/share/apport/apport -p%p -s%s -c%c -d%d -P%P -u%u -g%g -- %E" (or dumping to /home/agpmastersystem/bnd/tidesdb-java/core.2048325) -# -# If you would like to submit a bug report, please visit: -# Unknown -# - ---------------- S U M M A R Y ------------ - -Command Line: -Djava.library.path=/usr/local/lib /home/agpmastersystem/bnd/tidesdb-java/target/surefire/surefirebooter-20260313005509935_3.jar /home/agpmastersystem/bnd/tidesdb-java/target/surefire 2026-03-13T00-55-09_884-jvmRun1 surefire-20260313005509935_1tmp surefire_0-20260313005509935_2tmp - -Host: 11th Gen Intel(R) Core(TM) i7-11700K @ 3.60GHz, 16 cores, 46G, Ubuntu 23.04 -Time: Fri Mar 13 00:55:10 2026 EDT elapsed time: 0.348350 seconds (0d 0h 0m 0s) - ---------------- T H R E A D --------------- - -Current thread (0x00007fdfa8014510): JavaThread "main" [_thread_in_vm, id=2048326, stack(0x00007fdfadf00000,0x00007fdfae000000)] - -Stack: [0x00007fdfadf00000,0x00007fdfae000000], sp=0x00007fdfadffb9b0, free space=1006k -Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code) -V [libjvm.so+0x8d79e8] jni_NewObject+0x128 -C [libtidesdb_jni.so+0x68a4] Java_com_tidesdb_TidesDB_nativeGetDbStats+0x1db -j com.tidesdb.TidesDB.nativeGetDbStats(J)Lcom/tidesdb/DbStats;+0 -j com.tidesdb.TidesDB.getDbStats()Lcom/tidesdb/DbStats;+8 -j com.tidesdb.TidesDBTest.testGetDbStats()V+179 -v ~StubRoutines::call_stub -V [libjvm.so+0x836d12] JavaCalls::call_helper(JavaValue*, methodHandle const&, JavaCallArguments*, JavaThread*)+0x302 -V [libjvm.so+0xcc5dbc] invoke(InstanceKlass*, methodHandle const&, Handle, bool, objArrayHandle, BasicType, objArrayHandle, bool, JavaThread*) [clone .constprop.0]+0x74c -V [libjvm.so+0xcc6af8] Reflection::invoke_method(oopDesc*, Handle, objArrayHandle, JavaThread*)+0x138 -V [libjvm.so+0x90daa4] JVM_InvokeMethod+0x144 -j jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+0 java.base@17.0.9 -j jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+133 java.base@17.0.9 -j jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+6 java.base@17.0.9 -j java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+59 java.base@17.0.9 -j org.junit.platform.commons.util.ReflectionUtils.invokeMethod(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+42 -j org.junit.jupiter.engine.execution.MethodInvocation.proceed()Ljava/lang/Object;+16 -j org.junit.jupiter.engine.execution.InvocationInterceptorChain$ValidatingInvocation.proceed()Ljava/lang/Object;+8 -j org.junit.jupiter.engine.extension.TimeoutExtension.intercept(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/extension/TimeoutDuration;Lorg/junit/jupiter/engine/extension/TimeoutExtension$TimeoutProvider;)Ljava/lang/Object;+28 -j org.junit.jupiter.engine.extension.TimeoutExtension.interceptTestableMethod(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/extension/TimeoutExtension$TimeoutProvider;)Ljava/lang/Object;+31 -j org.junit.jupiter.engine.extension.TimeoutExtension.interceptTestMethod(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;)V+9 -j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor$$Lambda$186+0x00007fdf1808e318.apply(Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;)V+5 -j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker$ReflectiveInterceptorCall.lambda$ofVoidMethod$0(Lorg/junit/jupiter/engine/execution/InterceptingExecutableInvoker$ReflectiveInterceptorCall$VoidMethodInterceptorCall;Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;)Ljava/lang/Void;+6 -j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker$ReflectiveInterceptorCall$$Lambda$187+0x00007fdf1808e738.apply(Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;)Ljava/lang/Object;+9 -j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.lambda$invoke$0(Lorg/junit/jupiter/engine/execution/InterceptingExecutableInvoker$ReflectiveInterceptorCall;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;)Ljava/lang/Object;+6 -j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker$$Lambda$392+0x00007fdf180c7378.apply(Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;)Ljava/lang/Object;+14 -j org.junit.jupiter.engine.execution.InvocationInterceptorChain$InterceptedInvocation.proceed()Ljava/lang/Object;+12 -j org.junit.jupiter.engine.execution.InvocationInterceptorChain.proceed(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;)Ljava/lang/Object;+1 -j org.junit.jupiter.engine.execution.InvocationInterceptorChain.chainAndInvoke(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/engine/execution/InvocationInterceptorChain$InterceptorCall;Ljava/util/List;)Ljava/lang/Object;+24 -j org.junit.jupiter.engine.execution.InvocationInterceptorChain.invoke(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/engine/extension/ExtensionRegistry;Lorg/junit/jupiter/engine/execution/InvocationInterceptorChain$InterceptorCall;)Ljava/lang/Object;+31 -j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.invoke(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/extension/ExtensionRegistry;Lorg/junit/jupiter/engine/execution/InterceptingExecutableInvoker$ReflectiveInterceptorCall;)Ljava/lang/Object;+15 -j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.invoke(Ljava/lang/reflect/Method;Ljava/lang/Object;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/extension/ExtensionRegistry;Lorg/junit/jupiter/engine/execution/InterceptingExecutableInvoker$ReflectiveInterceptorCall;)Ljava/lang/Object;+55 -j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.lambda$invokeTestMethod$7(Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/execution/JupiterEngineExecutionContext;)V+28 -j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor$$Lambda$427+0x00007fdf180cc300.execute()V+12 -j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 -j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.invokeTestMethod(Lorg/junit/jupiter/engine/execution/JupiterEngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$DynamicTestExecutor;)V+21 -j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.execute(Lorg/junit/jupiter/engine/execution/JupiterEngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$DynamicTestExecutor;)Lorg/junit/jupiter/engine/execution/JupiterEngineExecutionContext;+44 -j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.execute(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$DynamicTestExecutor;)Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;+6 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6()V+79 -j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$317+0x00007fdf180b7038.execute()V+4 -j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+15 -j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$316+0x00007fdf180b6e10.invoke(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+5 -j org.junit.platform.engine.support.hierarchical.Node.around(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$Invocation;)V+2 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9()V+14 -j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$315+0x00007fdf180b69e8.execute()V+4 -j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively()V+31 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.execute()V+55 -j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService$$Lambda$321+0x00007fdf180b7b50.accept(Ljava/lang/Object;)V+4 -j java.util.ArrayList.forEach(Ljava/util/function/Consumer;)V+46 java.base@17.0.9 -j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(Ljava/util/List;)V+6 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6()V+116 -j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$317+0x00007fdf180b7038.execute()V+4 -j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+15 -j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$316+0x00007fdf180b6e10.invoke(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+5 -j org.junit.platform.engine.support.hierarchical.Node.around(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$Invocation;)V+2 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9()V+14 -j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$315+0x00007fdf180b69e8.execute()V+4 -j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively()V+31 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.execute()V+55 -j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService$$Lambda$321+0x00007fdf180b7b50.accept(Ljava/lang/Object;)V+4 -j java.util.ArrayList.forEach(Ljava/util/function/Consumer;)V+46 java.base@17.0.9 -j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(Ljava/util/List;)V+6 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6()V+116 -j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$317+0x00007fdf180b7038.execute()V+4 -j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+15 -j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$316+0x00007fdf180b6e10.invoke(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+5 -j org.junit.platform.engine.support.hierarchical.Node.around(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$Invocation;)V+2 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9()V+14 -j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$315+0x00007fdf180b69e8.execute()V+4 -j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively()V+31 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.execute()V+55 -j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.submit(Lorg/junit/platform/engine/support/hierarchical/HierarchicalTestExecutorService$TestTask;)Ljava/util/concurrent/Future;+1 -j org.junit.platform.engine.support.hierarchical.HierarchicalTestExecutor.execute()Ljava/util/concurrent/Future;+74 -j org.junit.platform.engine.support.hierarchical.HierarchicalTestEngine.execute(Lorg/junit/platform/engine/ExecutionRequest;)V+31 -j org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(Lorg/junit/platform/engine/TestDescriptor;Lorg/junit/platform/engine/EngineExecutionListener;Lorg/junit/platform/engine/ConfigurationParameters;Lorg/junit/platform/engine/TestEngine;)V+24 -j org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(Lorg/junit/platform/launcher/core/LauncherDiscoveryResult;Lorg/junit/platform/engine/EngineExecutionListener;)V+115 -j org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(Lorg/junit/platform/launcher/core/InternalTestPlan;Lorg/junit/platform/engine/EngineExecutionListener;Lorg/junit/platform/launcher/TestExecutionListener;)V+55 -j org.junit.platform.launcher.core.EngineExecutionOrchestrator.lambda$execute$0(Lorg/junit/platform/launcher/core/InternalTestPlan;Lorg/junit/platform/launcher/TestExecutionListener;)V+6 -j org.junit.platform.launcher.core.EngineExecutionOrchestrator$$Lambda$271+0x00007fdf180a4238.accept(Ljava/lang/Object;)V+12 -j org.junit.platform.launcher.core.EngineExecutionOrchestrator.withInterceptedStreams(Lorg/junit/platform/engine/ConfigurationParameters;Lorg/junit/platform/launcher/core/ListenerRegistry;Ljava/util/function/Consumer;)V+51 -j org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(Lorg/junit/platform/launcher/core/InternalTestPlan;[Lorg/junit/platform/launcher/TestExecutionListener;)V+23 -j org.junit.platform.launcher.core.DefaultLauncher.execute(Lorg/junit/platform/launcher/core/InternalTestPlan;[Lorg/junit/platform/launcher/TestExecutionListener;)V+6 -j org.junit.platform.launcher.core.DefaultLauncher.execute(Lorg/junit/platform/launcher/LauncherDiscoveryRequest;[Lorg/junit/platform/launcher/TestExecutionListener;)V+34 -j org.junit.platform.launcher.core.DelegatingLauncher.execute(Lorg/junit/platform/launcher/LauncherDiscoveryRequest;[Lorg/junit/platform/launcher/TestExecutionListener;)V+6 -j org.apache.maven.surefire.junitplatform.LauncherAdapter.executeWithoutCancellationToken(Lorg/junit/platform/launcher/LauncherDiscoveryRequest;[Lorg/junit/platform/launcher/TestExecutionListener;)V+6 -j org.apache.maven.surefire.junitplatform.LauncherAdapter.execute(Lorg/junit/platform/launcher/LauncherDiscoveryRequest;[Lorg/junit/platform/launcher/TestExecutionListener;)V+10 -j org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.execute(Lorg/apache/maven/surefire/junitplatform/LauncherAdapter;Lorg/apache/maven/surefire/api/util/TestsToRun;Lorg/apache/maven/surefire/junitplatform/RunListenerAdapter;)V+61 -j org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.invokeAllTests(Lorg/apache/maven/surefire/junitplatform/LauncherAdapter;Lorg/apache/maven/surefire/api/util/TestsToRun;Lorg/apache/maven/surefire/junitplatform/RunListenerAdapter;)V+36 -j org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.invoke(Ljava/lang/Object;)Lorg/apache/maven/surefire/api/suite/RunResult;+144 -j org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess()V+8 -j org.apache.maven.surefire.booter.ForkedBooter.execute()V+1 -j org.apache.maven.surefire.booter.ForkedBooter.run(Lorg/apache/maven/surefire/booter/ForkedBooter;[Ljava/lang/String;)V+27 -j org.apache.maven.surefire.booter.ForkedBooter.main([Ljava/lang/String;)V+10 -v ~StubRoutines::call_stub -V [libjvm.so+0x836d12] JavaCalls::call_helper(JavaValue*, methodHandle const&, JavaCallArguments*, JavaThread*)+0x302 -...... - -Java frames: (J=compiled Java code, j=interpreted, Vv=VM code) -j com.tidesdb.TidesDB.nativeGetDbStats(J)Lcom/tidesdb/DbStats;+0 -j com.tidesdb.TidesDB.getDbStats()Lcom/tidesdb/DbStats;+8 -j com.tidesdb.TidesDBTest.testGetDbStats()V+179 -v ~StubRoutines::call_stub -j jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+0 java.base@17.0.9 -j jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+133 java.base@17.0.9 -j jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+6 java.base@17.0.9 -j java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+59 java.base@17.0.9 -j org.junit.platform.commons.util.ReflectionUtils.invokeMethod(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+42 -j org.junit.jupiter.engine.execution.MethodInvocation.proceed()Ljava/lang/Object;+16 -j org.junit.jupiter.engine.execution.InvocationInterceptorChain$ValidatingInvocation.proceed()Ljava/lang/Object;+8 -j org.junit.jupiter.engine.extension.TimeoutExtension.intercept(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/extension/TimeoutDuration;Lorg/junit/jupiter/engine/extension/TimeoutExtension$TimeoutProvider;)Ljava/lang/Object;+28 -j org.junit.jupiter.engine.extension.TimeoutExtension.interceptTestableMethod(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/extension/TimeoutExtension$TimeoutProvider;)Ljava/lang/Object;+31 -j org.junit.jupiter.engine.extension.TimeoutExtension.interceptTestMethod(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;)V+9 -j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor$$Lambda$186+0x00007fdf1808e318.apply(Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;)V+5 -j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker$ReflectiveInterceptorCall.lambda$ofVoidMethod$0(Lorg/junit/jupiter/engine/execution/InterceptingExecutableInvoker$ReflectiveInterceptorCall$VoidMethodInterceptorCall;Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;)Ljava/lang/Void;+6 -j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker$ReflectiveInterceptorCall$$Lambda$187+0x00007fdf1808e738.apply(Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;)Ljava/lang/Object;+9 -j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.lambda$invoke$0(Lorg/junit/jupiter/engine/execution/InterceptingExecutableInvoker$ReflectiveInterceptorCall;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;)Ljava/lang/Object;+6 -j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker$$Lambda$392+0x00007fdf180c7378.apply(Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;)Ljava/lang/Object;+14 -j org.junit.jupiter.engine.execution.InvocationInterceptorChain$InterceptedInvocation.proceed()Ljava/lang/Object;+12 -j org.junit.jupiter.engine.execution.InvocationInterceptorChain.proceed(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;)Ljava/lang/Object;+1 -j org.junit.jupiter.engine.execution.InvocationInterceptorChain.chainAndInvoke(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/engine/execution/InvocationInterceptorChain$InterceptorCall;Ljava/util/List;)Ljava/lang/Object;+24 -j org.junit.jupiter.engine.execution.InvocationInterceptorChain.invoke(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/engine/extension/ExtensionRegistry;Lorg/junit/jupiter/engine/execution/InvocationInterceptorChain$InterceptorCall;)Ljava/lang/Object;+31 -j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.invoke(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/extension/ExtensionRegistry;Lorg/junit/jupiter/engine/execution/InterceptingExecutableInvoker$ReflectiveInterceptorCall;)Ljava/lang/Object;+15 -j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.invoke(Ljava/lang/reflect/Method;Ljava/lang/Object;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/extension/ExtensionRegistry;Lorg/junit/jupiter/engine/execution/InterceptingExecutableInvoker$ReflectiveInterceptorCall;)Ljava/lang/Object;+55 -j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.lambda$invokeTestMethod$7(Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/execution/JupiterEngineExecutionContext;)V+28 -j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor$$Lambda$427+0x00007fdf180cc300.execute()V+12 -j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 -j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.invokeTestMethod(Lorg/junit/jupiter/engine/execution/JupiterEngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$DynamicTestExecutor;)V+21 -j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.execute(Lorg/junit/jupiter/engine/execution/JupiterEngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$DynamicTestExecutor;)Lorg/junit/jupiter/engine/execution/JupiterEngineExecutionContext;+44 -j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.execute(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$DynamicTestExecutor;)Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;+6 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6()V+79 -j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$317+0x00007fdf180b7038.execute()V+4 -j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+15 -j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$316+0x00007fdf180b6e10.invoke(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+5 -j org.junit.platform.engine.support.hierarchical.Node.around(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$Invocation;)V+2 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9()V+14 -j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$315+0x00007fdf180b69e8.execute()V+4 -j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively()V+31 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.execute()V+55 -j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService$$Lambda$321+0x00007fdf180b7b50.accept(Ljava/lang/Object;)V+4 -j java.util.ArrayList.forEach(Ljava/util/function/Consumer;)V+46 java.base@17.0.9 -j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(Ljava/util/List;)V+6 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6()V+116 -j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$317+0x00007fdf180b7038.execute()V+4 -j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+15 -j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$316+0x00007fdf180b6e10.invoke(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+5 -j org.junit.platform.engine.support.hierarchical.Node.around(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$Invocation;)V+2 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9()V+14 -j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$315+0x00007fdf180b69e8.execute()V+4 -j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively()V+31 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.execute()V+55 -j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService$$Lambda$321+0x00007fdf180b7b50.accept(Ljava/lang/Object;)V+4 -j java.util.ArrayList.forEach(Ljava/util/function/Consumer;)V+46 java.base@17.0.9 -j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(Ljava/util/List;)V+6 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6()V+116 -j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$317+0x00007fdf180b7038.execute()V+4 -j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+15 -j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$316+0x00007fdf180b6e10.invoke(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+5 -j org.junit.platform.engine.support.hierarchical.Node.around(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$Invocation;)V+2 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9()V+14 -j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$315+0x00007fdf180b69e8.execute()V+4 -j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively()V+31 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.execute()V+55 -j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.submit(Lorg/junit/platform/engine/support/hierarchical/HierarchicalTestExecutorService$TestTask;)Ljava/util/concurrent/Future;+1 -j org.junit.platform.engine.support.hierarchical.HierarchicalTestExecutor.execute()Ljava/util/concurrent/Future;+74 -j org.junit.platform.engine.support.hierarchical.HierarchicalTestEngine.execute(Lorg/junit/platform/engine/ExecutionRequest;)V+31 -j org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(Lorg/junit/platform/engine/TestDescriptor;Lorg/junit/platform/engine/EngineExecutionListener;Lorg/junit/platform/engine/ConfigurationParameters;Lorg/junit/platform/engine/TestEngine;)V+24 -j org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(Lorg/junit/platform/launcher/core/LauncherDiscoveryResult;Lorg/junit/platform/engine/EngineExecutionListener;)V+115 -j org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(Lorg/junit/platform/launcher/core/InternalTestPlan;Lorg/junit/platform/engine/EngineExecutionListener;Lorg/junit/platform/launcher/TestExecutionListener;)V+55 -j org.junit.platform.launcher.core.EngineExecutionOrchestrator.lambda$execute$0(Lorg/junit/platform/launcher/core/InternalTestPlan;Lorg/junit/platform/launcher/TestExecutionListener;)V+6 -j org.junit.platform.launcher.core.EngineExecutionOrchestrator$$Lambda$271+0x00007fdf180a4238.accept(Ljava/lang/Object;)V+12 -j org.junit.platform.launcher.core.EngineExecutionOrchestrator.withInterceptedStreams(Lorg/junit/platform/engine/ConfigurationParameters;Lorg/junit/platform/launcher/core/ListenerRegistry;Ljava/util/function/Consumer;)V+51 -j org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(Lorg/junit/platform/launcher/core/InternalTestPlan;[Lorg/junit/platform/launcher/TestExecutionListener;)V+23 -j org.junit.platform.launcher.core.DefaultLauncher.execute(Lorg/junit/platform/launcher/core/InternalTestPlan;[Lorg/junit/platform/launcher/TestExecutionListener;)V+6 -j org.junit.platform.launcher.core.DefaultLauncher.execute(Lorg/junit/platform/launcher/LauncherDiscoveryRequest;[Lorg/junit/platform/launcher/TestExecutionListener;)V+34 -j org.junit.platform.launcher.core.DelegatingLauncher.execute(Lorg/junit/platform/launcher/LauncherDiscoveryRequest;[Lorg/junit/platform/launcher/TestExecutionListener;)V+6 -j org.apache.maven.surefire.junitplatform.LauncherAdapter.executeWithoutCancellationToken(Lorg/junit/platform/launcher/LauncherDiscoveryRequest;[Lorg/junit/platform/launcher/TestExecutionListener;)V+6 -j org.apache.maven.surefire.junitplatform.LauncherAdapter.execute(Lorg/junit/platform/launcher/LauncherDiscoveryRequest;[Lorg/junit/platform/launcher/TestExecutionListener;)V+10 -j org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.execute(Lorg/apache/maven/surefire/junitplatform/LauncherAdapter;Lorg/apache/maven/surefire/api/util/TestsToRun;Lorg/apache/maven/surefire/junitplatform/RunListenerAdapter;)V+61 -j org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.invokeAllTests(Lorg/apache/maven/surefire/junitplatform/LauncherAdapter;Lorg/apache/maven/surefire/api/util/TestsToRun;Lorg/apache/maven/surefire/junitplatform/RunListenerAdapter;)V+36 -j org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.invoke(Ljava/lang/Object;)Lorg/apache/maven/surefire/api/suite/RunResult;+144 -j org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess()V+8 -j org.apache.maven.surefire.booter.ForkedBooter.execute()V+1 -j org.apache.maven.surefire.booter.ForkedBooter.run(Lorg/apache/maven/surefire/booter/ForkedBooter;[Ljava/lang/String;)V+27 -j org.apache.maven.surefire.booter.ForkedBooter.main([Ljava/lang/String;)V+10 -v ~StubRoutines::call_stub - -siginfo: si_signo: 11 (SIGSEGV), si_code: 1 (SEGV_MAPERR), si_addr: 0x0000000000000000 - -Registers: -RAX=0x00007fdfa81b5b28, RBX=0x00007fdfa8014510, RCX=0x0000000000000002, RDX=0x00007fdfa81b5b20 -RSP=0x00007fdfadffb9b0, RBP=0x00007fdfadffbb20, RSI=0x0000000540085570, RDI=0x00007fdfa81b5b28 -R8 =0x0000000bb38d9000, R9 =0x0000000501cd6000, R10=0x00007fdfae8d78c0, R11=0x0000000000000000 -R12=0x0000000000000000, R13=0x0000000000000000, R14=0x0000000000000000, R15=0x00007fdfadffba00 -RIP=0x00007fdfae8d79e8, EFLAGS=0x0000000000010206, CSGSFS=0x002b000000000033, ERR=0x0000000000000004 - TRAPNO=0x000000000000000e - - -Register to memory mapping: - -RAX=0x00007fdfa81b5b28 points into unknown readable memory: 0x0000000540085570 | 70 55 08 40 05 00 00 00 -RBX=0x00007fdfa8014510 is a thread -RCX=0x0000000000000002 is an unknown value -RDX=0x00007fdfa81b5b20 points into unknown readable memory: 0x0000000540084c08 | 08 4c 08 40 05 00 00 00 -RSP=0x00007fdfadffb9b0 is pointing into the stack for thread: 0x00007fdfa8014510 -RBP=0x00007fdfadffbb20 is pointing into the stack for thread: 0x00007fdfa8014510 -RSI=0x0000000540085570 is an oop: com.tidesdb.DbStats -{0x0000000540085570} - klass: 'com/tidesdb/DbStats' - - ---- fields (total size 14 words): - - private final 'numColumnFamilies' 'I' @12 0 - - private final 'totalMemory' 'J' @16 0 (0 0) - - private final 'availableMemory' 'J' @24 0 (0 0) - - private final 'resolvedMemoryLimit' 'J' @32 0 (0 0) - - private final 'totalMemtableBytes' 'J' @40 0 (0 0) - - private final 'totalDataSizeBytes' 'J' @48 0 (0 0) - - private final 'globalSeq' 'J' @56 0 (0 0) - - private final 'txnMemoryBytes' 'J' @64 0 (0 0) - - private final 'compactionQueueSize' 'J' @72 0 (0 0) - - private final 'flushQueueSize' 'J' @80 0 (0 0) - - private final 'memoryPressureLevel' 'I' @88 0 - - private final 'flushPendingCount' 'I' @92 0 - - private final 'totalImmutableCount' 'I' @96 0 - - private final 'totalSstableCount' 'I' @100 0 - - private final 'numOpenSstables' 'I' @104 0 -RDI=0x00007fdfa81b5b28 points into unknown readable memory: 0x0000000540085570 | 70 55 08 40 05 00 00 00 -R8 =0x0000000bb38d9000 is an unknown value -R9 =0x0000000501cd6000 is an unknown value -R10=0x00007fdfae8d78c0: in /usr/lib/jvm/java-17-openjdk-amd64/lib/server/libjvm.so at 0x00007fdfae000000 -R11=0x0 is NULL -R12=0x0 is NULL -R13=0x0 is NULL -R14=0x0 is NULL -R15=0x00007fdfadffba00 is pointing into the stack for thread: 0x00007fdfa8014510 - - -Top of Stack: (sp=0x00007fdfadffb9b0) -0x00007fdfadffb9b0: 00000000a8014f50 00007fdfaf3903ab -0x00007fdfadffb9c0: 00007fdfa8015038 00000000000000d8 -0x00007fdfadffb9d0: 00007fdfadffbec0 0000000000000000 -0x00007fdfadffb9e0: 00007fdfa8014510 00007fdfa8014f80 -0x00007fdfadffb9f0: 0000000000000431 00007fdfaf004d88 -0x00007fdfadffba00: 0000000000000013 00007fdfa8014f88 -0x00007fdfadffba10: 00007fdfadffbaa0 00007fdfaee64d6e -0x00007fdfadffba20: 0000000000000000 0000000000000000 -0x00007fdfadffba30: 0000000000000000 00007fdfaee521a7 -0x00007fdfadffba40: 4141414141414141 0000000000000000 -0x00007fdfadffba50: 00007fdfa8014510 0000000000000002 -0x00007fdfadffba60: 0000000bb38d9000 0000000501cd6000 -0x00007fdfadffba70: 0000000000000001 00007fdf180d4000 -0x00007fdfadffba80: 0000000000000001 00007fdfae8ff4d3 -0x00007fdfadffba90: 00007fdfa8014f88 00000007ff7560a0 -0x00007fdfadffbaa0: 00007fdfadffbad0 00007fdfa8014510 -0x00007fdfadffbab0: 00007fdfa8463dc0 00007fdfa80147c0 -0x00007fdfadffbac0: 00007fdfa8014f88 00000007ff7560a0 -0x00007fdfadffbad0: 00007fdfa8014510 00007fdfa8014510 -0x00007fdfadffbae0: 00007fdfadffbb80 00007fdfae8ccb35 -0x00007fdfadffbaf0: 0000000000000000 0000000000000000 -0x00007fdfadffbb00: 0000000000000000 0000000000000000 -0x00007fdfadffbb10: 0000000000000000 0000000000000000 -0x00007fdfadffbb20: 00007fdfadffbc90 00007fdfaf38f8a4 -0x00007fdfadffbb30: 00000005d9c6c800 0000000000000000 -0x00007fdfadffbb40: 0000000000000000 0000000000000000 -0x00007fdfadffbb50: 0000000000000000 0000000000000000 -0x00007fdfadffbb60: 0000000000000000 0000000000000000 -0x00007fdfadffbb70: 0000000000000002 0000000000000000 -0x00007fdfadffbb80: 0000000000000000 0000000000000000 -0x00007fdfadffbb90: 0000000bb38d9000 0000000501cd6000 -0x00007fdfadffbba0: 00000005d9c6c800 0000000000000000 - -Instructions: (pc=0x00007fdfae8d79e8) -0x00007fdfae8d78e8: 40 ff ff ff 4c 89 8d 48 ff ff ff 84 c0 74 29 0f -0x00007fdfae8d78f8: 29 85 50 ff ff ff 0f 29 8d 60 ff ff ff 0f 29 95 -0x00007fdfae8d7908: 70 ff ff ff 0f 29 5d 80 0f 29 65 90 0f 29 6d a0 -0x00007fdfae8d7918: 0f 29 75 b0 0f 29 7d c0 48 8d 9f 50 fd ff ff 8b -0x00007fdfae8d7928: 83 68 03 00 00 2d ab de 00 00 83 f8 01 0f 87 15 -0x00007fdfae8d7938: 02 00 00 c7 83 40 03 00 00 05 00 00 00 f0 83 04 -0x00007fdfae8d7948: 24 00 48 8b 83 48 03 00 00 a8 01 0f 85 df 01 00 -0x00007fdfae8d7958: 00 8b 83 34 03 00 00 85 c0 0f 85 a9 01 00 00 8b -0x00007fdfae8d7968: 83 30 03 00 00 a8 0c 0f 85 9b 01 00 00 48 83 7b -0x00007fdfae8d7978: 08 00 c7 83 40 03 00 00 06 00 00 00 48 89 9d c0 -0x00007fdfae8d7988: fe ff ff 48 c7 85 c8 fe ff ff 00 00 00 00 74 0c -0x00007fdfae8d7998: 48 8d bd c0 fe ff ff e8 ac 49 3b 00 41 f6 c4 01 -0x00007fdfae8d79a8: 0f 84 72 01 00 00 49 8d 7c 24 ff ff 15 07 78 a1 -0x00007fdfae8d79b8: 00 48 89 c7 48 89 de 45 31 ed e8 49 87 00 00 4c -0x00007fdfae8d79c8: 8b 63 08 4d 85 e4 0f 85 ad 00 00 00 31 d2 48 89 -0x00007fdfae8d79d8: c6 4c 8d bd e0 fe ff ff 48 89 df e8 28 7d 02 00 -0x00007fdfae8d79e8: 49 8b 36 4c 89 ff c7 85 a8 fe ff ff 18 00 00 00 -0x00007fdfae8d79f8: c7 85 ac fe ff ff 30 00 00 00 49 89 c5 48 8d 45 -0x00007fdfae8d7a08: 10 48 89 85 b0 fe ff ff 48 8d 85 20 ff ff ff 48 -0x00007fdfae8d7a18: 89 85 b8 fe ff ff c7 85 90 fe ff ff 0e 00 00 00 -0x00007fdfae8d7a28: e8 f3 90 00 00 4c 89 ee 49 89 d8 4c 89 f9 48 8d -0x00007fdfae8d7a38: 05 1b a3 96 00 f3 0f 6f 85 a8 fe ff ff 48 8d bd -0x00007fdfae8d7a48: 90 fe ff ff 4c 89 f2 48 89 85 e0 fe ff ff 48 8b -0x00007fdfae8d7a58: 85 b8 fe ff ff 0f 11 85 08 ff ff ff 48 89 85 18 -0x00007fdfae8d7a68: ff ff ff e8 10 f7 ff ff 48 83 7b 08 00 4c 89 ff -0x00007fdfae8d7a78: 4d 0f 45 ec e8 bf 87 00 00 48 83 bd c8 fe ff ff -0x00007fdfae8d7a88: 00 74 0c 48 8d bd c0 fe ff ff e8 59 49 3b 00 4c -0x00007fdfae8d7a98: 8b a3 e8 00 00 00 49 8b 44 24 10 48 83 38 00 74 -0x00007fdfae8d7aa8: 0d 4c 89 e7 e8 ef ef ee ff 49 8b 44 24 10 49 8b -0x00007fdfae8d7ab8: 54 24 08 48 8d bb 90 02 00 00 48 89 42 10 49 8b -0x00007fdfae8d7ac8: 44 24 08 49 8b 54 24 18 48 89 50 18 49 8b 44 24 -0x00007fdfae8d7ad8: 08 49 8b 54 24 20 48 89 50 20 e8 69 c4 df ff c7 - - -Stack slot to memory mapping: -stack at sp + 0 slots: 0x00000000a8014f50 is an unknown value -stack at sp + 1 slots: 0x00007fdfaf3903ab: in /usr/local/lib/libtidesdb_jni.so at 0x00007fdfaf389000 -stack at sp + 2 slots: 0x00007fdfa8015038 points into unknown readable memory: 0x0000000000000025 | 25 00 00 00 00 00 00 00 -stack at sp + 3 slots: 0x00000000000000d8 is an unknown value -stack at sp + 4 slots: 0x00007fdfadffbec0 is pointing into the stack for thread: 0x00007fdfa8014510 -stack at sp + 5 slots: 0x0 is NULL -stack at sp + 6 slots: 0x00007fdfa8014510 is a thread -stack at sp + 7 slots: 0x00007fdfa8014f80 points into unknown readable memory: 0x0000000540084d50 | 50 4d 08 40 05 00 00 00 - - ---------------- P R O C E S S --------------- - -Threads class SMR info: -_java_thread_list=0x00007fdef025de10, length=17, elements={ -0x00007fdfa8014510, 0x00007fdfa81b7e10, 0x00007fdfa81b9200, 0x00007fdfa81be770, -0x00007fdfa81bfb30, 0x00007fdfa81c0f50, 0x00007fdfa81c2990, 0x00007fdfa81c3ed0, -0x00007fdfa81c5350, 0x00007fdfa81cc920, 0x00007fdfa81d01b0, 0x00007fdef0025170, -0x00007fdfa830c6a0, 0x00007fdfa831c650, 0x00007fdee40eec70, 0x00007fdef025bc90, -0x00007fdef025ce20 -} - -Java Threads: ( => current thread ) -=>0x00007fdfa8014510 JavaThread "main" [_thread_in_vm, id=2048326, stack(0x00007fdfadf00000,0x00007fdfae000000)] - 0x00007fdfa81b7e10 JavaThread "Reference Handler" daemon [_thread_blocked, id=2048336, stack(0x00007fdf74ef0000,0x00007fdf74ff0000)] - 0x00007fdfa81b9200 JavaThread "Finalizer" daemon [_thread_blocked, id=2048337, stack(0x00007fdf74df0000,0x00007fdf74ef0000)] - 0x00007fdfa81be770 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=2048340, stack(0x00007fdf74700000,0x00007fdf74800000)] - 0x00007fdfa81bfb30 JavaThread "Service Thread" daemon [_thread_blocked, id=2048341, stack(0x00007fdf74600000,0x00007fdf74700000)] - 0x00007fdfa81c0f50 JavaThread "Monitor Deflation Thread" daemon [_thread_blocked, id=2048342, stack(0x00007fdf74500000,0x00007fdf74600000)] - 0x00007fdfa81c2990 JavaThread "C2 CompilerThread0" daemon [_thread_in_native, id=2048343, stack(0x00007fdf74400000,0x00007fdf74500000)] - 0x00007fdfa81c3ed0 JavaThread "C1 CompilerThread0" daemon [_thread_blocked, id=2048344, stack(0x00007fdf74300000,0x00007fdf74400000)] - 0x00007fdfa81c5350 JavaThread "Sweeper thread" daemon [_thread_blocked, id=2048345, stack(0x00007fdf74200000,0x00007fdf74300000)] - 0x00007fdfa81cc920 JavaThread "Notification Thread" daemon [_thread_blocked, id=2048346, stack(0x00007fdf74100000,0x00007fdf74200000)] - 0x00007fdfa81d01b0 JavaThread "Common-Cleaner" daemon [_thread_blocked, id=2048349, stack(0x00007fdf74000000,0x00007fdf74100000)] - 0x00007fdef0025170 JavaThread "C1 CompilerThread1" daemon [_thread_blocked, id=2048350, stack(0x00007fdf65dff000,0x00007fdf65eff000)] - 0x00007fdfa830c6a0 JavaThread "surefire-forkedjvm-stream-flusher" daemon [_thread_blocked, id=2048351, stack(0x00007fdf65cff000,0x00007fdf65dff000)] - 0x00007fdfa831c650 JavaThread "surefire-forkedjvm-command-thread" daemon [_thread_in_native, id=2048352, stack(0x00007fdf65bff000,0x00007fdf65cff000)] - 0x00007fdee40eec70 JavaThread "C2 CompilerThread1" daemon [_thread_in_native, id=2048358, stack(0x00007fdf65aff000,0x00007fdf65bff000)] - 0x00007fdef025bc90 JavaThread "C1 CompilerThread2" daemon [_thread_blocked, id=2048359, stack(0x00007fdf659ff000,0x00007fdf65aff000)] - 0x00007fdef025ce20 JavaThread "C1 CompilerThread3" daemon [_thread_blocked, id=2048360, stack(0x00007fdf658ff000,0x00007fdf659ff000)] - -Other Threads: - 0x00007fdfa81b3e80 VMThread "VM Thread" [stack: 0x00007fdf74ff1000,0x00007fdf750f1000] [id=2048335] - 0x00007fdfa81ce270 WatcherThread [stack: 0x00007fdf65f00000,0x00007fdf66000000] [id=2048348] - 0x00007fdfa8070ce0 GCTaskThread "GC Thread#0" [stack: 0x00007fdfacb91000,0x00007fdfacc91000] [id=2048328] - 0x00007fdfa807ddd0 ConcurrentGCThread "G1 Main Marker" [stack: 0x00007fdfaca90000,0x00007fdfacb90000] [id=2048329] - 0x00007fdfa807ed40 ConcurrentGCThread "G1 Conc#0" [stack: 0x00007fdfac98f000,0x00007fdfaca8f000] [id=2048330] - 0x00007fdfa8182f50 ConcurrentGCThread "G1 Refine#0" [stack: 0x00007fdf75345000,0x00007fdf75445000] [id=2048332] - 0x00007fdfa8183e50 ConcurrentGCThread "G1 Service" [stack: 0x00007fdf75244000,0x00007fdf75344000] [id=2048333] - -Threads with active compile tasks: -C2 CompilerThread0 352 1157 4 java.util.function.Predicate$$Lambda$90/0x00007fdf1805ebe8::test (15 bytes) -C2 CompilerThread1 352 1162 4 org.junit.jupiter.engine.discovery.predicates.IsTestableMethod::test (49 bytes) - -VM state: not at safepoint (normal execution) - -VM Mutex/Monitor currently owned by a thread: None - -Heap address: 0x0000000513000000, size: 11984 MB, Compressed Oops mode: Zero based, Oop shift amount: 3 - -CDS archive(s) mapped at: [0x00007fdf17000000-0x00007fdf17bc6000-0x00007fdf17bc6000), size 12345344, SharedBaseAddress: 0x00007fdf17000000, ArchiveRelocationMode: 1. -Compressed class space mapped at: 0x00007fdf18000000-0x00007fdf58000000, reserved size: 1073741824 -Narrow klass base: 0x00007fdf17000000, Narrow klass shift: 0, Narrow klass range: 0x100000000 - -GC Precious Log: - CPUs: 16 total, 16 available - Memory: 47928M - Large Page Support: Disabled - NUMA Support: Disabled - Compressed Oops: Enabled (Zero based) - Heap Region Size: 8M - Heap Min Capacity: 8M - Heap Initial Capacity: 752M - Heap Max Capacity: 11984M - Pre-touch: Disabled - Parallel Workers: 13 - Concurrent Workers: 3 - Concurrent Refinement Workers: 13 - Periodic GC: Disabled - -Heap: - garbage-first heap total 786432K, used 32688K [0x0000000513000000, 0x0000000800000000) - region size 8192K, 4 young (32768K), 0 survivors (0K) - Metaspace used 6810K, committed 7040K, reserved 1114112K - class space used 866K, committed 960K, reserved 1048576K - -Heap Regions: E=young(eden), S=young(survivor), O=old, HS=humongous(starts), HC=humongous(continues), CS=collection set, F=free, OA=open archive, CA=closed archive, TAMS=top-at-mark-start (previous, next) -| 0|0x0000000513000000, 0x0000000513000000, 0x0000000513800000| 0%| F| |TAMS 0x0000000513000000, 0x0000000513000000| Untracked -| 1|0x0000000513800000, 0x0000000513800000, 0x0000000514000000| 0%| F| |TAMS 0x0000000513800000, 0x0000000513800000| Untracked -| 2|0x0000000514000000, 0x0000000514000000, 0x0000000514800000| 0%| F| |TAMS 0x0000000514000000, 0x0000000514000000| Untracked -| 3|0x0000000514800000, 0x0000000514800000, 0x0000000515000000| 0%| F| |TAMS 0x0000000514800000, 0x0000000514800000| Untracked -| 4|0x0000000515000000, 0x0000000515000000, 0x0000000515800000| 0%| F| |TAMS 0x0000000515000000, 0x0000000515000000| Untracked -| 5|0x0000000515800000, 0x0000000515800000, 0x0000000516000000| 0%| F| |TAMS 0x0000000515800000, 0x0000000515800000| Untracked -| 6|0x0000000516000000, 0x0000000516000000, 0x0000000516800000| 0%| F| |TAMS 0x0000000516000000, 0x0000000516000000| Untracked -| 7|0x0000000516800000, 0x0000000516800000, 0x0000000517000000| 0%| F| |TAMS 0x0000000516800000, 0x0000000516800000| Untracked -| 8|0x0000000517000000, 0x0000000517000000, 0x0000000517800000| 0%| F| |TAMS 0x0000000517000000, 0x0000000517000000| Untracked -| 9|0x0000000517800000, 0x0000000517800000, 0x0000000518000000| 0%| F| |TAMS 0x0000000517800000, 0x0000000517800000| Untracked -| 10|0x0000000518000000, 0x0000000518000000, 0x0000000518800000| 0%| F| |TAMS 0x0000000518000000, 0x0000000518000000| Untracked -| 11|0x0000000518800000, 0x0000000518800000, 0x0000000519000000| 0%| F| |TAMS 0x0000000518800000, 0x0000000518800000| Untracked -| 12|0x0000000519000000, 0x0000000519000000, 0x0000000519800000| 0%| F| |TAMS 0x0000000519000000, 0x0000000519000000| Untracked -| 13|0x0000000519800000, 0x0000000519800000, 0x000000051a000000| 0%| F| |TAMS 0x0000000519800000, 0x0000000519800000| Untracked -| 14|0x000000051a000000, 0x000000051a000000, 0x000000051a800000| 0%| F| |TAMS 0x000000051a000000, 0x000000051a000000| Untracked -| 15|0x000000051a800000, 0x000000051a800000, 0x000000051b000000| 0%| F| |TAMS 0x000000051a800000, 0x000000051a800000| Untracked -| 16|0x000000051b000000, 0x000000051b000000, 0x000000051b800000| 0%| F| |TAMS 0x000000051b000000, 0x000000051b000000| Untracked -| 17|0x000000051b800000, 0x000000051b800000, 0x000000051c000000| 0%| F| |TAMS 0x000000051b800000, 0x000000051b800000| Untracked -| 18|0x000000051c000000, 0x000000051c000000, 0x000000051c800000| 0%| F| |TAMS 0x000000051c000000, 0x000000051c000000| Untracked -| 19|0x000000051c800000, 0x000000051c800000, 0x000000051d000000| 0%| F| |TAMS 0x000000051c800000, 0x000000051c800000| Untracked -| 20|0x000000051d000000, 0x000000051d000000, 0x000000051d800000| 0%| F| |TAMS 0x000000051d000000, 0x000000051d000000| Untracked -| 21|0x000000051d800000, 0x000000051d800000, 0x000000051e000000| 0%| F| |TAMS 0x000000051d800000, 0x000000051d800000| Untracked -| 22|0x000000051e000000, 0x000000051e000000, 0x000000051e800000| 0%| F| |TAMS 0x000000051e000000, 0x000000051e000000| Untracked -| 23|0x000000051e800000, 0x000000051e800000, 0x000000051f000000| 0%| F| |TAMS 0x000000051e800000, 0x000000051e800000| Untracked -| 24|0x000000051f000000, 0x000000051f000000, 0x000000051f800000| 0%| F| |TAMS 0x000000051f000000, 0x000000051f000000| Untracked -| 25|0x000000051f800000, 0x000000051f800000, 0x0000000520000000| 0%| F| |TAMS 0x000000051f800000, 0x000000051f800000| Untracked -| 26|0x0000000520000000, 0x0000000520000000, 0x0000000520800000| 0%| F| |TAMS 0x0000000520000000, 0x0000000520000000| Untracked -| 27|0x0000000520800000, 0x0000000520800000, 0x0000000521000000| 0%| F| |TAMS 0x0000000520800000, 0x0000000520800000| Untracked -| 28|0x0000000521000000, 0x0000000521000000, 0x0000000521800000| 0%| F| |TAMS 0x0000000521000000, 0x0000000521000000| Untracked -| 29|0x0000000521800000, 0x0000000521800000, 0x0000000522000000| 0%| F| |TAMS 0x0000000521800000, 0x0000000521800000| Untracked -| 30|0x0000000522000000, 0x0000000522000000, 0x0000000522800000| 0%| F| |TAMS 0x0000000522000000, 0x0000000522000000| Untracked -| 31|0x0000000522800000, 0x0000000522800000, 0x0000000523000000| 0%| F| |TAMS 0x0000000522800000, 0x0000000522800000| Untracked -| 32|0x0000000523000000, 0x0000000523000000, 0x0000000523800000| 0%| F| |TAMS 0x0000000523000000, 0x0000000523000000| Untracked -| 33|0x0000000523800000, 0x0000000523800000, 0x0000000524000000| 0%| F| |TAMS 0x0000000523800000, 0x0000000523800000| Untracked -| 34|0x0000000524000000, 0x0000000524000000, 0x0000000524800000| 0%| F| |TAMS 0x0000000524000000, 0x0000000524000000| Untracked -| 35|0x0000000524800000, 0x0000000524800000, 0x0000000525000000| 0%| F| |TAMS 0x0000000524800000, 0x0000000524800000| Untracked -| 36|0x0000000525000000, 0x0000000525000000, 0x0000000525800000| 0%| F| |TAMS 0x0000000525000000, 0x0000000525000000| Untracked -| 37|0x0000000525800000, 0x0000000525800000, 0x0000000526000000| 0%| F| |TAMS 0x0000000525800000, 0x0000000525800000| Untracked -| 38|0x0000000526000000, 0x0000000526000000, 0x0000000526800000| 0%| F| |TAMS 0x0000000526000000, 0x0000000526000000| Untracked -| 39|0x0000000526800000, 0x0000000526800000, 0x0000000527000000| 0%| F| |TAMS 0x0000000526800000, 0x0000000526800000| Untracked -| 40|0x0000000527000000, 0x0000000527000000, 0x0000000527800000| 0%| F| |TAMS 0x0000000527000000, 0x0000000527000000| Untracked -| 41|0x0000000527800000, 0x0000000527800000, 0x0000000528000000| 0%| F| |TAMS 0x0000000527800000, 0x0000000527800000| Untracked -| 42|0x0000000528000000, 0x0000000528000000, 0x0000000528800000| 0%| F| |TAMS 0x0000000528000000, 0x0000000528000000| Untracked -| 43|0x0000000528800000, 0x0000000528800000, 0x0000000529000000| 0%| F| |TAMS 0x0000000528800000, 0x0000000528800000| Untracked -| 44|0x0000000529000000, 0x0000000529000000, 0x0000000529800000| 0%| F| |TAMS 0x0000000529000000, 0x0000000529000000| Untracked -| 45|0x0000000529800000, 0x0000000529800000, 0x000000052a000000| 0%| F| |TAMS 0x0000000529800000, 0x0000000529800000| Untracked -| 46|0x000000052a000000, 0x000000052a000000, 0x000000052a800000| 0%| F| |TAMS 0x000000052a000000, 0x000000052a000000| Untracked -| 47|0x000000052a800000, 0x000000052a800000, 0x000000052b000000| 0%| F| |TAMS 0x000000052a800000, 0x000000052a800000| Untracked -| 48|0x000000052b000000, 0x000000052b000000, 0x000000052b800000| 0%| F| |TAMS 0x000000052b000000, 0x000000052b000000| Untracked -| 49|0x000000052b800000, 0x000000052b800000, 0x000000052c000000| 0%| F| |TAMS 0x000000052b800000, 0x000000052b800000| Untracked -| 50|0x000000052c000000, 0x000000052c000000, 0x000000052c800000| 0%| F| |TAMS 0x000000052c000000, 0x000000052c000000| Untracked -| 51|0x000000052c800000, 0x000000052c800000, 0x000000052d000000| 0%| F| |TAMS 0x000000052c800000, 0x000000052c800000| Untracked -| 52|0x000000052d000000, 0x000000052d000000, 0x000000052d800000| 0%| F| |TAMS 0x000000052d000000, 0x000000052d000000| Untracked -| 53|0x000000052d800000, 0x000000052d800000, 0x000000052e000000| 0%| F| |TAMS 0x000000052d800000, 0x000000052d800000| Untracked -| 54|0x000000052e000000, 0x000000052e000000, 0x000000052e800000| 0%| F| |TAMS 0x000000052e000000, 0x000000052e000000| Untracked -| 55|0x000000052e800000, 0x000000052e800000, 0x000000052f000000| 0%| F| |TAMS 0x000000052e800000, 0x000000052e800000| Untracked -| 56|0x000000052f000000, 0x000000052f000000, 0x000000052f800000| 0%| F| |TAMS 0x000000052f000000, 0x000000052f000000| Untracked -| 57|0x000000052f800000, 0x000000052f800000, 0x0000000530000000| 0%| F| |TAMS 0x000000052f800000, 0x000000052f800000| Untracked -| 58|0x0000000530000000, 0x0000000530000000, 0x0000000530800000| 0%| F| |TAMS 0x0000000530000000, 0x0000000530000000| Untracked -| 59|0x0000000530800000, 0x0000000530800000, 0x0000000531000000| 0%| F| |TAMS 0x0000000530800000, 0x0000000530800000| Untracked -| 60|0x0000000531000000, 0x0000000531000000, 0x0000000531800000| 0%| F| |TAMS 0x0000000531000000, 0x0000000531000000| Untracked -| 61|0x0000000531800000, 0x0000000531800000, 0x0000000532000000| 0%| F| |TAMS 0x0000000531800000, 0x0000000531800000| Untracked -| 62|0x0000000532000000, 0x0000000532000000, 0x0000000532800000| 0%| F| |TAMS 0x0000000532000000, 0x0000000532000000| Untracked -| 63|0x0000000532800000, 0x0000000532800000, 0x0000000533000000| 0%| F| |TAMS 0x0000000532800000, 0x0000000532800000| Untracked -| 64|0x0000000533000000, 0x0000000533000000, 0x0000000533800000| 0%| F| |TAMS 0x0000000533000000, 0x0000000533000000| Untracked -| 65|0x0000000533800000, 0x0000000533800000, 0x0000000534000000| 0%| F| |TAMS 0x0000000533800000, 0x0000000533800000| Untracked -| 66|0x0000000534000000, 0x0000000534000000, 0x0000000534800000| 0%| F| |TAMS 0x0000000534000000, 0x0000000534000000| Untracked -| 67|0x0000000534800000, 0x0000000534800000, 0x0000000535000000| 0%| F| |TAMS 0x0000000534800000, 0x0000000534800000| Untracked -| 68|0x0000000535000000, 0x0000000535000000, 0x0000000535800000| 0%| F| |TAMS 0x0000000535000000, 0x0000000535000000| Untracked -| 69|0x0000000535800000, 0x0000000535800000, 0x0000000536000000| 0%| F| |TAMS 0x0000000535800000, 0x0000000535800000| Untracked -| 70|0x0000000536000000, 0x0000000536000000, 0x0000000536800000| 0%| F| |TAMS 0x0000000536000000, 0x0000000536000000| Untracked -| 71|0x0000000536800000, 0x0000000536800000, 0x0000000537000000| 0%| F| |TAMS 0x0000000536800000, 0x0000000536800000| Untracked -| 72|0x0000000537000000, 0x0000000537000000, 0x0000000537800000| 0%| F| |TAMS 0x0000000537000000, 0x0000000537000000| Untracked -| 73|0x0000000537800000, 0x0000000537800000, 0x0000000538000000| 0%| F| |TAMS 0x0000000537800000, 0x0000000537800000| Untracked -| 74|0x0000000538000000, 0x0000000538000000, 0x0000000538800000| 0%| F| |TAMS 0x0000000538000000, 0x0000000538000000| Untracked -| 75|0x0000000538800000, 0x0000000538800000, 0x0000000539000000| 0%| F| |TAMS 0x0000000538800000, 0x0000000538800000| Untracked -| 76|0x0000000539000000, 0x0000000539000000, 0x0000000539800000| 0%| F| |TAMS 0x0000000539000000, 0x0000000539000000| Untracked -| 77|0x0000000539800000, 0x0000000539800000, 0x000000053a000000| 0%| F| |TAMS 0x0000000539800000, 0x0000000539800000| Untracked -| 78|0x000000053a000000, 0x000000053a000000, 0x000000053a800000| 0%| F| |TAMS 0x000000053a000000, 0x000000053a000000| Untracked -| 79|0x000000053a800000, 0x000000053a800000, 0x000000053b000000| 0%| F| |TAMS 0x000000053a800000, 0x000000053a800000| Untracked -| 80|0x000000053b000000, 0x000000053b000000, 0x000000053b800000| 0%| F| |TAMS 0x000000053b000000, 0x000000053b000000| Untracked -| 81|0x000000053b800000, 0x000000053b800000, 0x000000053c000000| 0%| F| |TAMS 0x000000053b800000, 0x000000053b800000| Untracked -| 82|0x000000053c000000, 0x000000053c000000, 0x000000053c800000| 0%| F| |TAMS 0x000000053c000000, 0x000000053c000000| Untracked -| 83|0x000000053c800000, 0x000000053c800000, 0x000000053d000000| 0%| F| |TAMS 0x000000053c800000, 0x000000053c800000| Untracked -| 84|0x000000053d000000, 0x000000053d000000, 0x000000053d800000| 0%| F| |TAMS 0x000000053d000000, 0x000000053d000000| Untracked -| 85|0x000000053d800000, 0x000000053d800000, 0x000000053e000000| 0%| F| |TAMS 0x000000053d800000, 0x000000053d800000| Untracked -| 86|0x000000053e000000, 0x000000053e000000, 0x000000053e800000| 0%| F| |TAMS 0x000000053e000000, 0x000000053e000000| Untracked -| 87|0x000000053e800000, 0x000000053e800000, 0x000000053f000000| 0%| F| |TAMS 0x000000053e800000, 0x000000053e800000| Untracked -| 88|0x000000053f000000, 0x000000053f000000, 0x000000053f800000| 0%| F| |TAMS 0x000000053f000000, 0x000000053f000000| Untracked -| 89|0x000000053f800000, 0x000000053f800000, 0x0000000540000000| 0%| F| |TAMS 0x000000053f800000, 0x000000053f800000| Untracked -| 90|0x0000000540000000, 0x00000005400a4600, 0x0000000540800000| 8%| E| |TAMS 0x0000000540000000, 0x0000000540000000| Complete -| 91|0x0000000540800000, 0x0000000541000000, 0x0000000541000000|100%| E|CS|TAMS 0x0000000540800000, 0x0000000540800000| Complete -| 92|0x0000000541000000, 0x0000000541800000, 0x0000000541800000|100%| E|CS|TAMS 0x0000000541000000, 0x0000000541000000| Complete -| 93|0x0000000541800000, 0x0000000542000000, 0x0000000542000000|100%| E|CS|TAMS 0x0000000541800000, 0x0000000541800000| Complete -|1496|0x00000007ff000000, 0x00000007ff775000, 0x00000007ff800000| 93%|OA| |TAMS 0x00000007ff000000, 0x00000007ff000000| Untracked -|1497|0x00000007ff800000, 0x00000007ff877000, 0x0000000800000000| 5%|CA| |TAMS 0x00000007ff800000, 0x00000007ff800000| Untracked - -Card table byte_map: [0x00007fdf8e530000,0x00007fdf8fc98000] _byte_map_base: 0x00007fdf8bc98000 - -Marking Bits (Prev, Next): (CMBitMap*) 0x00007fdfa8071770, (CMBitMap*) 0x00007fdfa80717b0 - Prev Bits: [0x00007fdf81288000, 0x00007fdf8cdc8000) - Next Bits: [0x00007fdf75748000, 0x00007fdf81288000) - -Polling page: 0x00007fdfaf760000 - -Metaspace: - -Usage: - Non-class: 5.80 MB used. - Class: 866.89 KB used. - Both: 6.65 MB used. - -Virtual space: - Non-class space: 64.00 MB reserved, 5.94 MB ( 9%) committed, 1 nodes. - Class space: 1.00 GB reserved, 960.00 KB ( <1%) committed, 1 nodes. - Both: 1.06 GB reserved, 6.88 MB ( <1%) committed. - -Chunk freelists: - Non-Class: 9.23 MB - Class: 15.04 MB - Both: 24.28 MB - -MaxMetaspaceSize: unlimited -CompressedClassSpaceSize: 1.00 GB -Initial GC threshold: 21.00 MB -Current GC threshold: 21.00 MB -CDS: on -MetaspaceReclaimPolicy: balanced - - commit_granule_bytes: 65536. - - commit_granule_words: 8192. - - virtual_space_node_default_size: 8388608. - - enlarge_chunks_in_place: 1. - - new_chunks_are_fully_committed: 0. - - uncommit_free_chunks: 1. - - use_allocation_guard: 0. - - handle_deallocations: 1. - - -Internal statistics: - -num_allocs_failed_limit: 0. -num_arena_births: 118. -num_arena_deaths: 0. -num_vsnodes_births: 2. -num_vsnodes_deaths: 0. -num_space_committed: 110. -num_space_uncommitted: 0. -num_chunks_returned_to_freelist: 0. -num_chunks_taken_from_freelist: 346. -num_chunk_merges: 0. -num_chunk_splits: 190. -num_chunks_enlarged: 106. -num_inconsistent_stats: 0. - -CodeHeap 'non-profiled nmethods': size=119168Kb used=335Kb max_used=335Kb free=118832Kb - bounds [0x00007fdf98fa0000, 0x00007fdf99210000, 0x00007fdfa0400000] -CodeHeap 'profiled nmethods': size=119164Kb used=2917Kb max_used=2917Kb free=116246Kb - bounds [0x00007fdf91400000, 0x00007fdf916e0000, 0x00007fdf9885f000] -CodeHeap 'non-nmethods': size=7428Kb used=2844Kb max_used=2855Kb free=4583Kb - bounds [0x00007fdf9885f000, 0x00007fdf98b2f000, 0x00007fdf98fa0000] - total_blobs=1835 nmethods=1404 adapters=341 - compilation: enabled - stopped_count=0, restarted_count=0 - full_count=0 - -Compilation events (20 events): -Event: 0.327 Thread 0x00007fdef025bc90 1401 3 java.lang.invoke.DirectMethodHandle::make (275 bytes) -Event: 0.327 Thread 0x00007fdfa81c3ed0 1403 3 java.lang.invoke.InvokerBytecodeGenerator::emitLoadInsn (21 bytes) -Event: 0.327 Thread 0x00007fdef0025170 1404 3 java.lang.invoke.InvokerBytecodeGenerator::loadInsnOpcode (98 bytes) -Event: 0.327 Thread 0x00007fdef025ce20 1405 3 java.lang.invoke.InvokerBytecodeGenerator::emitPushArgument (150 bytes) -Event: 0.327 Thread 0x00007fdfa81c3ed0 nmethod 1403 0x00007fdf916d2190 code [0x00007fdf916d2340, 0x00007fdf916d2590] -Event: 0.328 Thread 0x00007fdfa81c3ed0 1409 3 java.lang.invoke.LambdaForm$NamedFunction::returnType (11 bytes) -Event: 0.328 Thread 0x00007fdef0025170 nmethod 1404 0x00007fdf916d2710 code [0x00007fdf916d2980, 0x00007fdf916d3370] -Event: 0.328 Thread 0x00007fdef025ce20 nmethod 1405 0x00007fdf916d3690 code [0x00007fdf916d3980, 0x00007fdf916d4860] -Event: 0.328 Thread 0x00007fdfa81c3ed0 nmethod 1409 0x00007fdf916d4c10 code [0x00007fdf916d4e00, 0x00007fdf916d5280] -Event: 0.328 Thread 0x00007fdef025bc90 nmethod 1401 0x00007fdf916d5490 code [0x00007fdf916d5820, 0x00007fdf916d6cd0] -Event: 0.328 Thread 0x00007fdef025bc90 1413 3 java.lang.invoke.DirectMethodHandle::shouldBeInitialized (127 bytes) -Event: 0.328 Thread 0x00007fdfa81c3ed0 1415 3 sun.invoke.util.Wrapper::isSubwordOrInt (20 bytes) -Event: 0.328 Thread 0x00007fdef025ce20 1416 3 sun.invoke.util.Wrapper::isIntegral (23 bytes) -Event: 0.328 Thread 0x00007fdef0025170 1417 3 sun.invoke.util.Wrapper::isNumeric (16 bytes) -Event: 0.328 Thread 0x00007fdef0025170 nmethod 1417 0x00007fdf916d7510 code [0x00007fdf916d76a0, 0x00007fdf916d7810] -Event: 0.328 Thread 0x00007fdef025ce20 nmethod 1416 0x00007fdf916d7890 code [0x00007fdf916d7a40, 0x00007fdf916d7c90] -Event: 0.328 Thread 0x00007fdfa81c3ed0 nmethod 1415 0x00007fdf916d7d10 code [0x00007fdf916d7ee0, 0x00007fdf916d82f0] -Event: 0.328 Thread 0x00007fdef025bc90 nmethod 1413 0x00007fdf916d8410 code [0x00007fdf916d86a0, 0x00007fdf916d9070] -Event: 0.329 Thread 0x00007fdfa81c3ed0 1420 3 java.util.ImmutableCollections$ListN::size (6 bytes) -Event: 0.329 Thread 0x00007fdfa81c3ed0 nmethod 1420 0x00007fdf916d9310 code [0x00007fdf916d94a0, 0x00007fdf916d95b0] - -GC Heap History (0 events): -No events - -Dll operation events (8 events): -Event: 0.001 Loaded shared library /usr/lib/jvm/java-17-openjdk-amd64/lib/libjava.so -Event: 0.010 Loaded shared library /usr/lib/jvm/java-17-openjdk-amd64/lib/libjsvml.so -Event: 0.017 Loaded shared library /usr/lib/jvm/java-17-openjdk-amd64/lib/libnio.so -Event: 0.018 Loaded shared library /usr/lib/jvm/java-17-openjdk-amd64/lib/libzip.so -Event: 0.037 Loaded shared library /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement.so -Event: 0.039 Loaded shared library /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement_ext.so -Event: 0.047 Loaded shared library /usr/lib/jvm/java-17-openjdk-amd64/lib/libjimage.so -Event: 0.287 Loaded shared library /usr/local/lib/libtidesdb_jni.so - -Deoptimization events (20 events): -Event: 0.249 Thread 0x00007fdfa8014510 DEOPT PACKING pc=0x00007fdf98fe57a0 sp=0x00007fdfadffcb40 -Event: 0.249 Thread 0x00007fdfa8014510 DEOPT UNPACKING pc=0x00007fdf988b8b19 sp=0x00007fdfadffca68 mode 2 -Event: 0.256 Thread 0x00007fdfa8014510 Uncommon trap: trap_request=0xffffff45 fr.pc=0x00007fdf98fd5080 relative=0x0000000000000260 -Event: 0.256 Thread 0x00007fdfa8014510 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00007fdf98fd5080 method=java.util.concurrent.ConcurrentHashMap.get(Ljava/lang/Object;)Ljava/lang/Object; @ 86 c2 -Event: 0.256 Thread 0x00007fdfa8014510 DEOPT PACKING pc=0x00007fdf98fd5080 sp=0x00007fdfadffca90 -Event: 0.256 Thread 0x00007fdfa8014510 DEOPT UNPACKING pc=0x00007fdf988b8b19 sp=0x00007fdfadffca28 mode 2 -Event: 0.268 Thread 0x00007fdfa8014510 DEOPT PACKING pc=0x00007fdf914e0a23 sp=0x00007fdfadffb7f0 -Event: 0.268 Thread 0x00007fdfa8014510 DEOPT UNPACKING pc=0x00007fdf988b964f sp=0x00007fdfadffac70 mode 0 -Event: 0.274 Thread 0x00007fdfa8014510 Uncommon trap: trap_request=0xffffff45 fr.pc=0x00007fdf98fbe0b8 relative=0x0000000000000218 -Event: 0.274 Thread 0x00007fdfa8014510 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00007fdf98fbe0b8 method=java.lang.String.startsWith(Ljava/lang/String;I)Z @ 1 c2 -Event: 0.274 Thread 0x00007fdfa8014510 DEOPT PACKING pc=0x00007fdf98fbe0b8 sp=0x00007fdfadffaa50 -Event: 0.274 Thread 0x00007fdfa8014510 DEOPT UNPACKING pc=0x00007fdf988b8b19 sp=0x00007fdfadffa9d8 mode 2 -Event: 0.285 Thread 0x00007fdfa8014510 Uncommon trap: trap_request=0xffffff45 fr.pc=0x00007fdf98fce068 relative=0x0000000000000048 -Event: 0.285 Thread 0x00007fdfa8014510 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00007fdf98fce068 method=java.lang.CharacterData.of(I)Ljava/lang/CharacterData; @ 4 c2 -Event: 0.285 Thread 0x00007fdfa8014510 DEOPT PACKING pc=0x00007fdf98fce068 sp=0x00007fdfadffb020 -Event: 0.285 Thread 0x00007fdfa8014510 DEOPT UNPACKING pc=0x00007fdf988b8b19 sp=0x00007fdfadffafe0 mode 2 -Event: 0.286 Thread 0x00007fdfa8014510 Uncommon trap: trap_request=0xffffff45 fr.pc=0x00007fdf98fb5cc0 relative=0x00000000000001a0 -Event: 0.286 Thread 0x00007fdfa8014510 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00007fdf98fb5cc0 method=java.lang.String.isLatin1()Z @ 10 c2 -Event: 0.286 Thread 0x00007fdfa8014510 DEOPT PACKING pc=0x00007fdf98fb5cc0 sp=0x00007fdfadffb890 -Event: 0.286 Thread 0x00007fdfa8014510 DEOPT UNPACKING pc=0x00007fdf988b8b19 sp=0x00007fdfadffb7e0 mode 2 - -Classes unloaded (0 events): -No events - -Classes redefined (0 events): -No events - -Internal exceptions (20 events): -Event: 0.196 Thread 0x00007fdfa8014510 Exception (0x00000005408cf268) -thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] -Event: 0.198 Thread 0x00007fdfa8014510 Exception (0x00000005408f42d8) -thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] -Event: 0.198 Thread 0x00007fdfa8014510 Exception (0x00000005408f7c58) -thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] -Event: 0.198 Thread 0x00007fdfa8014510 Exception (0x0000000540900118) -thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] -Event: 0.204 Thread 0x00007fdfa8014510 Exception (0x0000000540987408) -thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] -Event: 0.207 Thread 0x00007fdfa8014510 Exception (0x00000005409a7350) -thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 826] -Event: 0.207 Thread 0x00007fdfa8014510 Exception (0x00000005409a9fc8) -thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 826] -Event: 0.207 Thread 0x00007fdfa8014510 Exception (0x00000005409b3870) -thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] -Event: 0.223 Thread 0x00007fdfa8014510 Exception (0x0000000540b14b60) -thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] -Event: 0.223 Thread 0x00007fdfa8014510 Exception (0x0000000540b18488) -thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 826] -Event: 0.225 Thread 0x00007fdfa8014510 Exception (0x0000000540b37770) -thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] -Event: 0.231 Thread 0x00007fdfa8014510 Exception (0x0000000540bb0230) -thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] -Event: 0.240 Thread 0x00007fdfa8014510 Exception (0x0000000540c8db48) -thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] -Event: 0.244 Thread 0x00007fdfa8014510 Exception (0x0000000540cfdd50) -thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] -Event: 0.254 Thread 0x00007fdfa8014510 Exception (0x0000000540de3688) -thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] -Event: 0.263 Thread 0x00007fdfa8014510 Exception (0x0000000540e97470) -thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] -Event: 0.263 Thread 0x00007fdfa8014510 Exception (0x0000000540e9c028) -thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] -Event: 0.264 Thread 0x00007fdfa8014510 Exception (0x0000000540ead3f0) -thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] -Event: 0.265 Thread 0x00007fdfa8014510 Exception (0x0000000540eb11e8) -thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 826] -Event: 0.335 Thread 0x00007fdfa8014510 Exception > (0x0000000540084d50) -thrown [./src/hotspot/share/prims/jni.cpp, line 1073] - -VM Operations (20 events): -Event: 0.109 Executing VM operation: HandshakeAllThreads -Event: 0.109 Executing VM operation: HandshakeAllThreads done -Event: 0.153 Executing VM operation: HandshakeAllThreads -Event: 0.153 Executing VM operation: HandshakeAllThreads done -Event: 0.201 Executing VM operation: ICBufferFull -Event: 0.201 Executing VM operation: ICBufferFull done -Event: 0.202 Executing VM operation: HandshakeAllThreads -Event: 0.202 Executing VM operation: HandshakeAllThreads done -Event: 0.210 Executing VM operation: HandshakeAllThreads -Event: 0.210 Executing VM operation: HandshakeAllThreads done -Event: 0.235 Executing VM operation: HandshakeAllThreads -Event: 0.235 Executing VM operation: HandshakeAllThreads done -Event: 0.245 Executing VM operation: HandshakeAllThreads -Event: 0.245 Executing VM operation: HandshakeAllThreads done -Event: 0.267 Executing VM operation: HandshakeAllThreads -Event: 0.267 Executing VM operation: HandshakeAllThreads done -Event: 0.274 Executing VM operation: HandshakeAllThreads -Event: 0.274 Executing VM operation: HandshakeAllThreads done -Event: 0.285 Executing VM operation: HandshakeAllThreads -Event: 0.285 Executing VM operation: HandshakeAllThreads done - -Events (20 events): -Event: 0.282 loading class java/lang/constant/DirectMethodHandleDesc$1 -Event: 0.282 loading class java/lang/constant/DirectMethodHandleDesc$1 done -Event: 0.282 loading class java/lang/constant/PrimitiveClassDescImpl -Event: 0.282 loading class java/lang/constant/DynamicConstantDesc -Event: 0.282 loading class java/lang/constant/DynamicConstantDesc done -Event: 0.282 loading class java/lang/constant/PrimitiveClassDescImpl done -Event: 0.282 loading class java/lang/constant/DynamicConstantDesc$AnonymousDynamicConstantDesc -Event: 0.282 loading class java/lang/constant/DynamicConstantDesc$AnonymousDynamicConstantDesc done -Event: 0.282 loading class sun/nio/fs/UnixFileModeAttribute -Event: 0.282 loading class sun/nio/fs/UnixFileModeAttribute done -Event: 0.283 loading class sun/nio/fs/UnixFileModeAttribute$1 -Event: 0.283 loading class sun/nio/fs/UnixFileModeAttribute$1 done -Event: 0.283 loading class jdk/internal/reflect/UnsafeObjectFieldAccessorImpl -Event: 0.283 loading class jdk/internal/reflect/UnsafeObjectFieldAccessorImpl done -Event: 0.284 loading class java/time/format/DateTimeParseException -Event: 0.284 loading class java/time/DateTimeException -Event: 0.284 loading class java/time/DateTimeException done -Event: 0.284 loading class java/time/format/DateTimeParseException done -Event: 0.287 loading class java/lang/UnsatisfiedLinkError -Event: 0.287 loading class java/lang/UnsatisfiedLinkError done - - -Dynamic libraries: -513000000-542000000 rw-p 00000000 00:00 0 -542000000-7ff000000 ---p 00000000 00:00 0 -7ff000000-7ff700000 rw-p 00000000 00:00 0 -7ff700000-7ff775000 rw-p 00c75000 08:14 11213468 /usr/lib/jvm/java-17-openjdk-amd64/lib/server/classes.jsa -7ff775000-7ff800000 rw-p 00000000 00:00 0 -7ff800000-7ff877000 rw-p 00bfe000 08:14 11213468 /usr/lib/jvm/java-17-openjdk-amd64/lib/server/classes.jsa -7ff877000-800000000 rw-p 00000000 00:00 0 -5608965ab000-5608965ac000 r--p 00000000 08:14 11213397 /usr/lib/jvm/java-17-openjdk-amd64/bin/java -5608965ac000-5608965ad000 r-xp 00001000 08:14 11213397 /usr/lib/jvm/java-17-openjdk-amd64/bin/java -5608965ad000-5608965ae000 r--p 00002000 08:14 11213397 /usr/lib/jvm/java-17-openjdk-amd64/bin/java -5608965ae000-5608965af000 r--p 00002000 08:14 11213397 /usr/lib/jvm/java-17-openjdk-amd64/bin/java -5608965af000-5608965b0000 rw-p 00003000 08:14 11213397 /usr/lib/jvm/java-17-openjdk-amd64/bin/java -5608983cf000-560898416000 rw-p 00000000 00:00 0 [heap] -7fde97ffe000-7fdeb8021000 rw-p 00000000 00:00 0 -7fdeb8021000-7fdebc000000 ---p 00000000 00:00 0 -7fdebc000000-7fdebc021000 rw-p 00000000 00:00 0 -7fdebc021000-7fdec0000000 ---p 00000000 00:00 0 -7fdec0000000-7fdec0021000 rw-p 00000000 00:00 0 -7fdec0021000-7fdec4000000 ---p 00000000 00:00 0 -7fdec4000000-7fdec4021000 rw-p 00000000 00:00 0 -7fdec4021000-7fdec8000000 ---p 00000000 00:00 0 -7fdec8000000-7fdec818d000 rw-p 00000000 00:00 0 -7fdec818d000-7fdecc000000 ---p 00000000 00:00 0 -7fdecc000000-7fdeccc2e000 rw-p 00000000 00:00 0 -7fdeccc2e000-7fded0000000 ---p 00000000 00:00 0 -7fded0000000-7fded0be8000 rw-p 00000000 00:00 0 -7fded0be8000-7fded4000000 ---p 00000000 00:00 0 -7fded4000000-7fded4176000 rw-p 00000000 00:00 0 -7fded4176000-7fded8000000 ---p 00000000 00:00 0 -7fded8000000-7fded8021000 rw-p 00000000 00:00 0 -7fded8021000-7fdedc000000 ---p 00000000 00:00 0 -7fdedc000000-7fdedc021000 rw-p 00000000 00:00 0 -7fdedc021000-7fdee0000000 ---p 00000000 00:00 0 -7fdee0000000-7fdee0021000 rw-p 00000000 00:00 0 -7fdee0021000-7fdee4000000 ---p 00000000 00:00 0 -7fdee4000000-7fdee43a4000 rw-p 00000000 00:00 0 -7fdee43a4000-7fdee8000000 ---p 00000000 00:00 0 -7fdee8000000-7fdee8021000 rw-p 00000000 00:00 0 -7fdee8021000-7fdeec000000 ---p 00000000 00:00 0 -7fdeec000000-7fdeec021000 rw-p 00000000 00:00 0 -7fdeec021000-7fdef0000000 ---p 00000000 00:00 0 -7fdef0000000-7fdef03c9000 rw-p 00000000 00:00 0 -7fdef03c9000-7fdef4000000 ---p 00000000 00:00 0 -7fdef4000000-7fdef4021000 rw-p 00000000 00:00 0 -7fdef4021000-7fdef8000000 ---p 00000000 00:00 0 -7fdef8000000-7fdef8021000 rw-p 00000000 00:00 0 -7fdef8021000-7fdefc000000 ---p 00000000 00:00 0 -7fdefc000000-7fdefd038000 rw-p 00000000 00:00 0 -7fdefd038000-7fdf00000000 ---p 00000000 00:00 0 -7fdf00000000-7fdf00021000 rw-p 00000000 00:00 0 -7fdf00021000-7fdf04000000 ---p 00000000 00:00 0 -7fdf04000000-7fdf04021000 rw-p 00000000 00:00 0 -7fdf04021000-7fdf08000000 ---p 00000000 00:00 0 -7fdf08000000-7fdf08021000 rw-p 00000000 00:00 0 -7fdf08021000-7fdf0c000000 ---p 00000000 00:00 0 -7fdf0c000000-7fdf0c021000 rw-p 00000000 00:00 0 -7fdf0c021000-7fdf10000000 ---p 00000000 00:00 0 -7fdf10000000-7fdf10021000 rw-p 00000000 00:00 0 -7fdf10021000-7fdf14000000 ---p 00000000 00:00 0 -7fdf15d72000-7fdf15ffe000 rw-p 00000000 00:00 0 -7fdf15ffe000-7fdf15fff000 ---p 00000000 00:00 0 -7fdf15fff000-7fdf167ff000 rw-p 00000000 00:00 0 -7fdf167ff000-7fdf16800000 ---p 00000000 00:00 0 -7fdf16800000-7fdf17000000 rw-p 00000000 00:00 0 -7fdf17000000-7fdf17bc6000 rw-p 00001000 08:14 11213468 /usr/lib/jvm/java-17-openjdk-amd64/lib/server/classes.jsa -7fdf17bc6000-7fdf18000000 ---p 00000000 00:00 0 -7fdf18000000-7fdf18030000 rw-p 00000000 00:00 0 -7fdf18030000-7fdf18070000 rw-p 00000000 00:00 0 -7fdf18070000-7fdf180d0000 rw-p 00000000 00:00 0 -7fdf180d0000-7fdf180f0000 rw-p 00000000 00:00 0 -7fdf180f0000-7fdf58000000 ---p 00000000 00:00 0 -7fdf58000000-7fdf58021000 rw-p 00000000 00:00 0 -7fdf58021000-7fdf5c000000 ---p 00000000 00:00 0 -7fdf5c000000-7fdf5c320000 rw-p 00000000 00:00 0 -7fdf5c320000-7fdf5c400000 ---p 00000000 00:00 0 -7fdf5c400000-7fdf5c6d0000 rw-p 00000000 00:00 0 -7fdf5c6d0000-7fdf60000000 ---p 00000000 00:00 0 -7fdf60000000-7fdf60021000 rw-p 00000000 00:00 0 -7fdf60021000-7fdf64000000 ---p 00000000 00:00 0 -7fdf64048000-7fdf64049000 ---p 00000000 00:00 0 -7fdf64049000-7fdf64849000 rw-p 00000000 00:00 0 -7fdf64849000-7fdf6484a000 ---p 00000000 00:00 0 -7fdf6484a000-7fdf6504a000 rw-p 00000000 00:00 0 -7fdf6504a000-7fdf6504b000 ---p 00000000 00:00 0 -7fdf6504b000-7fdf6584b000 rw-p 00000000 00:00 0 -7fdf6584b000-7fdf6584f000 r--p 00000000 08:14 10908334 /usr/lib/x86_64-linux-gnu/libzstd.so.1.5.4 -7fdf6584f000-7fdf658ed000 r-xp 00004000 08:14 10908334 /usr/lib/x86_64-linux-gnu/libzstd.so.1.5.4 -7fdf658ed000-7fdf658fd000 r--p 000a2000 08:14 10908334 /usr/lib/x86_64-linux-gnu/libzstd.so.1.5.4 -7fdf658fd000-7fdf658fe000 r--p 000b1000 08:14 10908334 /usr/lib/x86_64-linux-gnu/libzstd.so.1.5.4 -7fdf658fe000-7fdf658ff000 rw-p 000b2000 08:14 10908334 /usr/lib/x86_64-linux-gnu/libzstd.so.1.5.4 -7fdf658ff000-7fdf65903000 ---p 00000000 00:00 0 -7fdf65903000-7fdf659ff000 rw-p 00000000 00:00 0 -7fdf659ff000-7fdf65a03000 ---p 00000000 00:00 0 -7fdf65a03000-7fdf65aff000 rw-p 00000000 00:00 0 -7fdf65aff000-7fdf65b03000 ---p 00000000 00:00 0 -7fdf65b03000-7fdf65bff000 rw-p 00000000 00:00 0 -7fdf65bff000-7fdf65c03000 ---p 00000000 00:00 0 -7fdf65c03000-7fdf65cff000 rw-p 00000000 00:00 0 -7fdf65cff000-7fdf65d03000 ---p 00000000 00:00 0 -7fdf65d03000-7fdf65dff000 rw-p 00000000 00:00 0 -7fdf65dff000-7fdf65e03000 ---p 00000000 00:00 0 -7fdf65e03000-7fdf65eff000 rw-p 00000000 00:00 0 -7fdf65eff000-7fdf65f00000 ---p 00000000 00:00 0 -7fdf65f00000-7fdf68021000 rw-p 00000000 00:00 0 -7fdf68021000-7fdf6c000000 ---p 00000000 00:00 0 -7fdf6c000000-7fdf6c021000 rw-p 00000000 00:00 0 -7fdf6c021000-7fdf70000000 ---p 00000000 00:00 0 -7fdf70000000-7fdf70021000 rw-p 00000000 00:00 0 -7fdf70021000-7fdf74000000 ---p 00000000 00:00 0 -7fdf74000000-7fdf74004000 ---p 00000000 00:00 0 -7fdf74004000-7fdf74100000 rw-p 00000000 00:00 0 -7fdf74100000-7fdf74104000 ---p 00000000 00:00 0 -7fdf74104000-7fdf74200000 rw-p 00000000 00:00 0 -7fdf74200000-7fdf74204000 ---p 00000000 00:00 0 -7fdf74204000-7fdf74300000 rw-p 00000000 00:00 0 -7fdf74300000-7fdf74304000 ---p 00000000 00:00 0 -7fdf74304000-7fdf74400000 rw-p 00000000 00:00 0 -7fdf74400000-7fdf74404000 ---p 00000000 00:00 0 -7fdf74404000-7fdf74500000 rw-p 00000000 00:00 0 -7fdf74500000-7fdf74504000 ---p 00000000 00:00 0 -7fdf74504000-7fdf74600000 rw-p 00000000 00:00 0 -7fdf74600000-7fdf74604000 ---p 00000000 00:00 0 -7fdf74604000-7fdf74700000 rw-p 00000000 00:00 0 -7fdf74700000-7fdf74704000 ---p 00000000 00:00 0 -7fdf74704000-7fdf74800000 rw-p 00000000 00:00 0 -7fdf74800000-7fdf74d74000 r--p 00000000 08:14 10879460 /usr/lib/locale/locale-archive -7fdf74d8e000-7fdf74d96000 r--p 00000000 08:14 11018131 /usr/local/lib/libtidesdb.so -7fdf74d96000-7fdf74ddf000 r-xp 00008000 08:14 11018131 /usr/local/lib/libtidesdb.so -7fdf74ddf000-7fdf74ded000 r--p 00051000 08:14 11018131 /usr/local/lib/libtidesdb.so -7fdf74ded000-7fdf74dee000 r--p 0005e000 08:14 11018131 /usr/local/lib/libtidesdb.so -7fdf74dee000-7fdf74def000 rw-p 0005f000 08:14 11018131 /usr/local/lib/libtidesdb.so -7fdf74def000-7fdf74df0000 rw-p 00000000 00:00 0 -7fdf74df0000-7fdf74df4000 ---p 00000000 00:00 0 -7fdf74df4000-7fdf74ef0000 rw-p 00000000 00:00 0 -7fdf74ef0000-7fdf74ef4000 ---p 00000000 00:00 0 -7fdf74ef4000-7fdf74ff0000 rw-p 00000000 00:00 0 -7fdf74ff0000-7fdf74ff1000 ---p 00000000 00:00 0 -7fdf74ff1000-7fdf750f1000 rw-p 00000000 00:00 0 -7fdf750f1000-7fdf750f6000 r--p 00000000 08:14 11213452 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjsvml.so -7fdf750f6000-7fdf75137000 r-xp 00005000 08:14 11213452 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjsvml.so -7fdf75137000-7fdf751c0000 r--p 00046000 08:14 11213452 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjsvml.so -7fdf751c0000-7fdf751c1000 r--p 000ce000 08:14 11213452 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjsvml.so -7fdf751c1000-7fdf751c2000 rw-p 000cf000 08:14 11213452 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjsvml.so -7fdf751c2000-7fdf75243000 rw-p 00000000 00:00 0 -7fdf75243000-7fdf75244000 ---p 00000000 00:00 0 -7fdf75244000-7fdf75344000 rw-p 00000000 00:00 0 -7fdf75344000-7fdf75345000 ---p 00000000 00:00 0 -7fdf75345000-7fdf76308000 rw-p 00000000 00:00 0 -7fdf76308000-7fdf81248000 ---p 00000000 00:00 0 -7fdf81248000-7fdf81e48000 rw-p 00000000 00:00 0 -7fdf81e48000-7fdf8cd88000 ---p 00000000 00:00 0 -7fdf8cd88000-7fdf8cf40000 rw-p 00000000 00:00 0 -7fdf8cf40000-7fdf8e528000 ---p 00000000 00:00 0 -7fdf8e528000-7fdf8e6a8000 rw-p 00000000 00:00 0 -7fdf8e6a8000-7fdf8fc90000 ---p 00000000 00:00 0 -7fdf8fc90000-7fdf8fe10000 rw-p 00000000 00:00 0 -7fdf8fe10000-7fdf913f8000 ---p 00000000 00:00 0 -7fdf913f8000-7fdf91400000 rw-p 00000000 00:00 0 -7fdf91400000-7fdf916e0000 rwxp 00000000 00:00 0 -7fdf916e0000-7fdf9885f000 ---p 00000000 00:00 0 -7fdf9885f000-7fdf98b2f000 rwxp 00000000 00:00 0 -7fdf98b2f000-7fdf98fa0000 ---p 00000000 00:00 0 -7fdf98fa0000-7fdf99210000 rwxp 00000000 00:00 0 -7fdf99210000-7fdfa0400000 ---p 00000000 00:00 0 -7fdfa0400000-7fdfa7e68000 r--s 00000000 08:14 11213467 /usr/lib/jvm/java-17-openjdk-amd64/lib/modules -7fdfa7ea4000-7fdfabfe5000 rw-p 00000000 00:00 0 -7fdfabfe5000-7fdfac000000 ---p 00000000 00:00 0 -7fdfac021000-7fdfac024000 r--p 00000000 08:14 10907948 /usr/lib/x86_64-linux-gnu/liblz4.so.1.9.4 -7fdfac024000-7fdfac03f000 r-xp 00003000 08:14 10907948 /usr/lib/x86_64-linux-gnu/liblz4.so.1.9.4 -7fdfac03f000-7fdfac042000 r--p 0001e000 08:14 10907948 /usr/lib/x86_64-linux-gnu/liblz4.so.1.9.4 -7fdfac042000-7fdfac043000 r--p 00020000 08:14 10907948 /usr/lib/x86_64-linux-gnu/liblz4.so.1.9.4 -7fdfac043000-7fdfac044000 rw-p 00021000 08:14 10907948 /usr/lib/x86_64-linux-gnu/liblz4.so.1.9.4 -7fdfac044000-7fdfac98e000 rw-p 00000000 00:00 0 -7fdfac98e000-7fdfac98f000 ---p 00000000 00:00 0 -7fdfac98f000-7fdfaca8f000 rw-p 00000000 00:00 0 -7fdfaca8f000-7fdfaca90000 ---p 00000000 00:00 0 -7fdfaca90000-7fdfacb90000 rw-p 00000000 00:00 0 -7fdfacb90000-7fdfacb91000 ---p 00000000 00:00 0 -7fdfacb91000-7fdfada33000 rw-p 00000000 00:00 0 -7fdfada33000-7fdfadb17000 ---p 00000000 00:00 0 -7fdfadb17000-7fdfadb1d000 rw-p 00000000 00:00 0 -7fdfadb1d000-7fdfadc00000 ---p 00000000 00:00 0 -7fdfadc00000-7fdfadc9c000 r--p 00000000 08:14 10888123 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.32 -7fdfadc9c000-7fdfaddcd000 r-xp 0009c000 08:14 10888123 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.32 -7fdfaddcd000-7fdfade5a000 r--p 001cd000 08:14 10888123 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.32 -7fdfade5a000-7fdfade65000 r--p 0025a000 08:14 10888123 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.32 -7fdfade65000-7fdfade68000 rw-p 00265000 08:14 10888123 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.32 -7fdfade68000-7fdfade6c000 rw-p 00000000 00:00 0 -7fdfade9b000-7fdfadea2000 r--s 00000000 08:14 10965240 /usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache -7fdfadea2000-7fdfadf00000 rw-p 00000000 00:00 0 -7fdfadf00000-7fdfadf04000 ---p 00000000 00:00 0 -7fdfadf04000-7fdfae000000 rw-p 00000000 00:00 0 -7fdfae000000-7fdfae251000 r--p 00000000 08:14 11213471 /usr/lib/jvm/java-17-openjdk-amd64/lib/server/libjvm.so -7fdfae251000-7fdfaefb3000 r-xp 00251000 08:14 11213471 /usr/lib/jvm/java-17-openjdk-amd64/lib/server/libjvm.so -7fdfaefb3000-7fdfaf233000 r--p 00fb3000 08:14 11213471 /usr/lib/jvm/java-17-openjdk-amd64/lib/server/libjvm.so -7fdfaf233000-7fdfaf2eb000 r--p 01233000 08:14 11213471 /usr/lib/jvm/java-17-openjdk-amd64/lib/server/libjvm.so -7fdfaf2eb000-7fdfaf320000 rw-p 012eb000 08:14 11213471 /usr/lib/jvm/java-17-openjdk-amd64/lib/server/libjvm.so -7fdfaf320000-7fdfaf37a000 rw-p 00000000 00:00 0 -7fdfaf37e000-7fdfaf381000 r--p 00000000 08:14 10881736 /usr/lib/x86_64-linux-gnu/libsnappy.so.1.1.9 -7fdfaf381000-7fdfaf386000 r-xp 00003000 08:14 10881736 /usr/lib/x86_64-linux-gnu/libsnappy.so.1.1.9 -7fdfaf386000-7fdfaf387000 r--p 00008000 08:14 10881736 /usr/lib/x86_64-linux-gnu/libsnappy.so.1.1.9 -7fdfaf387000-7fdfaf388000 r--p 00009000 08:14 10881736 /usr/lib/x86_64-linux-gnu/libsnappy.so.1.1.9 -7fdfaf388000-7fdfaf389000 rw-p 0000a000 08:14 10881736 /usr/lib/x86_64-linux-gnu/libsnappy.so.1.1.9 -7fdfaf389000-7fdfaf38c000 r--p 00000000 08:14 11022710 /usr/local/lib/libtidesdb_jni.so -7fdfaf38c000-7fdfaf390000 r-xp 00003000 08:14 11022710 /usr/local/lib/libtidesdb_jni.so -7fdfaf390000-7fdfaf391000 r--p 00007000 08:14 11022710 /usr/local/lib/libtidesdb_jni.so -7fdfaf391000-7fdfaf392000 r--p 00007000 08:14 11022710 /usr/local/lib/libtidesdb_jni.so -7fdfaf392000-7fdfaf393000 rw-p 00008000 08:14 11022710 /usr/local/lib/libtidesdb_jni.so -7fdfaf393000-7fdfaf395000 r--p 00000000 08:14 11213456 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement_ext.so -7fdfaf395000-7fdfaf398000 r-xp 00002000 08:14 11213456 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement_ext.so -7fdfaf398000-7fdfaf39a000 r--p 00005000 08:14 11213456 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement_ext.so -7fdfaf39a000-7fdfaf39b000 r--p 00006000 08:14 11213456 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement_ext.so -7fdfaf39b000-7fdfaf39c000 rw-p 00007000 08:14 11213456 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement_ext.so -7fdfaf39c000-7fdfaf3a0000 r--p 00000000 08:14 11213458 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnet.so -7fdfaf3a0000-7fdfaf3ae000 r-xp 00004000 08:14 11213458 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnet.so -7fdfaf3ae000-7fdfaf3b2000 r--p 00012000 08:14 11213458 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnet.so -7fdfaf3b2000-7fdfaf3b3000 r--p 00015000 08:14 11213458 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnet.so -7fdfaf3b3000-7fdfaf3b4000 rw-p 00016000 08:14 11213458 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnet.so -7fdfaf3b4000-7fdfaf3bb000 r--p 00000000 08:14 11213459 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnio.so -7fdfaf3bb000-7fdfaf3c4000 r-xp 00007000 08:14 11213459 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnio.so -7fdfaf3c4000-7fdfaf3c8000 r--p 00010000 08:14 11213459 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnio.so -7fdfaf3c8000-7fdfaf3c9000 r--p 00014000 08:14 11213459 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnio.so -7fdfaf3c9000-7fdfaf3ca000 rw-p 00015000 08:14 11213459 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnio.so -7fdfaf3ca000-7fdfaf3d0000 rw-p 00000000 00:00 0 -7fdfaf3d0000-7fdfaf3d9000 ---p 00000000 00:00 0 -7fdfaf3d9000-7fdfaf3e5000 r--p 00000000 08:14 11213445 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjava.so -7fdfaf3e5000-7fdfaf3f7000 r-xp 0000c000 08:14 11213445 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjava.so -7fdfaf3f7000-7fdfaf3fd000 r--p 0001e000 08:14 11213445 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjava.so -7fdfaf3fd000-7fdfaf3fe000 r--p 00023000 08:14 11213445 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjava.so -7fdfaf3fe000-7fdfaf3ff000 rw-p 00024000 08:14 11213445 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjava.so -7fdfaf3ff000-7fdfaf400000 rw-p 00000000 00:00 0 -7fdfaf400000-7fdfaf422000 r--p 00000000 08:14 10888103 /usr/lib/x86_64-linux-gnu/libc.so.6 -7fdfaf422000-7fdfaf59a000 r-xp 00022000 08:14 10888103 /usr/lib/x86_64-linux-gnu/libc.so.6 -7fdfaf59a000-7fdfaf5f2000 r--p 0019a000 08:14 10888103 /usr/lib/x86_64-linux-gnu/libc.so.6 -7fdfaf5f2000-7fdfaf5f6000 r--p 001f1000 08:14 10888103 /usr/lib/x86_64-linux-gnu/libc.so.6 -7fdfaf5f6000-7fdfaf5f8000 rw-p 001f5000 08:14 10888103 /usr/lib/x86_64-linux-gnu/libc.so.6 -7fdfaf5f8000-7fdfaf605000 rw-p 00000000 00:00 0 -7fdfaf605000-7fdfaf607000 r--p 00000000 08:14 11213454 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement.so -7fdfaf607000-7fdfaf608000 r-xp 00002000 08:14 11213454 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement.so -7fdfaf608000-7fdfaf609000 r--p 00003000 08:14 11213454 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement.so -7fdfaf609000-7fdfaf60a000 r--p 00003000 08:14 11213454 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement.so -7fdfaf60a000-7fdfaf60b000 rw-p 00004000 08:14 11213454 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement.so -7fdfaf60b000-7fdfaf60e000 r--p 00000000 08:14 10888119 /usr/lib/x86_64-linux-gnu/libgcc_s.so.1 -7fdfaf60e000-7fdfaf629000 r-xp 00003000 08:14 10888119 /usr/lib/x86_64-linux-gnu/libgcc_s.so.1 -7fdfaf629000-7fdfaf62d000 r--p 0001e000 08:14 10888119 /usr/lib/x86_64-linux-gnu/libgcc_s.so.1 -7fdfaf62d000-7fdfaf62e000 r--p 00021000 08:14 10888119 /usr/lib/x86_64-linux-gnu/libgcc_s.so.1 -7fdfaf62e000-7fdfaf62f000 rw-p 00022000 08:14 10888119 /usr/lib/x86_64-linux-gnu/libgcc_s.so.1 -7fdfaf62f000-7fdfaf63d000 r--p 00000000 08:14 10888109 /usr/lib/x86_64-linux-gnu/libm.so.6 -7fdfaf63d000-7fdfaf6bb000 r-xp 0000e000 08:14 10888109 /usr/lib/x86_64-linux-gnu/libm.so.6 -7fdfaf6bb000-7fdfaf716000 r--p 0008c000 08:14 10888109 /usr/lib/x86_64-linux-gnu/libm.so.6 -7fdfaf716000-7fdfaf717000 r--p 000e6000 08:14 10888109 /usr/lib/x86_64-linux-gnu/libm.so.6 -7fdfaf717000-7fdfaf718000 rw-p 000e7000 08:14 10888109 /usr/lib/x86_64-linux-gnu/libm.so.6 -7fdfaf718000-7fdfaf71b000 rw-p 00000000 00:00 0 -7fdfaf71b000-7fdfaf71d000 r--p 00000000 08:14 11213449 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjli.so -7fdfaf71d000-7fdfaf727000 r-xp 00002000 08:14 11213449 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjli.so -7fdfaf727000-7fdfaf72a000 r--p 0000c000 08:14 11213449 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjli.so -7fdfaf72a000-7fdfaf72b000 r--p 0000e000 08:14 11213449 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjli.so -7fdfaf72b000-7fdfaf72c000 rw-p 0000f000 08:14 11213449 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjli.so -7fdfaf72c000-7fdfaf72f000 r--p 00000000 08:14 10908333 /usr/lib/x86_64-linux-gnu/libz.so.1.2.13 -7fdfaf72f000-7fdfaf741000 r-xp 00003000 08:14 10908333 /usr/lib/x86_64-linux-gnu/libz.so.1.2.13 -7fdfaf741000-7fdfaf748000 r--p 00015000 08:14 10908333 /usr/lib/x86_64-linux-gnu/libz.so.1.2.13 -7fdfaf748000-7fdfaf749000 r--p 0001b000 08:14 10908333 /usr/lib/x86_64-linux-gnu/libz.so.1.2.13 -7fdfaf749000-7fdfaf74a000 rw-p 0001c000 08:14 10908333 /usr/lib/x86_64-linux-gnu/libz.so.1.2.13 -7fdfaf74d000-7fdfaf74f000 r--p 00000000 08:14 11213466 /usr/lib/jvm/java-17-openjdk-amd64/lib/libzip.so -7fdfaf74f000-7fdfaf754000 r-xp 00002000 08:14 11213466 /usr/lib/jvm/java-17-openjdk-amd64/lib/libzip.so -7fdfaf754000-7fdfaf756000 r--p 00007000 08:14 11213466 /usr/lib/jvm/java-17-openjdk-amd64/lib/libzip.so -7fdfaf756000-7fdfaf757000 r--p 00008000 08:14 11213466 /usr/lib/jvm/java-17-openjdk-amd64/lib/libzip.so -7fdfaf757000-7fdfaf758000 rw-p 00009000 08:14 11213466 /usr/lib/jvm/java-17-openjdk-amd64/lib/libzip.so -7fdfaf758000-7fdfaf760000 rw-s 00000000 08:14 18885539 /tmp/hsperfdata_agpmastersystem/2048325 -7fdfaf760000-7fdfaf761000 ---p 00000000 00:00 0 -7fdfaf761000-7fdfaf762000 r--p 00000000 00:00 0 -7fdfaf762000-7fdfaf763000 ---p 00000000 00:00 0 -7fdfaf763000-7fdfaf765000 r--p 00000000 08:14 11213448 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjimage.so -7fdfaf765000-7fdfaf768000 r-xp 00002000 08:14 11213448 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjimage.so -7fdfaf768000-7fdfaf769000 r--p 00005000 08:14 11213448 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjimage.so -7fdfaf769000-7fdfaf76a000 r--p 00006000 08:14 11213448 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjimage.so -7fdfaf76a000-7fdfaf76b000 rw-p 00007000 08:14 11213448 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjimage.so -7fdfaf76b000-7fdfaf76d000 rw-p 00000000 00:00 0 -7fdfaf76d000-7fdfaf76e000 r--p 00000000 08:14 10887950 /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2 -7fdfaf76e000-7fdfaf796000 r-xp 00001000 08:14 10887950 /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2 -7fdfaf796000-7fdfaf7a0000 r--p 00029000 08:14 10887950 /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2 -7fdfaf7a0000-7fdfaf7a2000 r--p 00033000 08:14 10887950 /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2 -7fdfaf7a2000-7fdfaf7a4000 rw-p 00035000 08:14 10887950 /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2 -7fff848d9000-7fff848fb000 rw-p 00000000 00:00 0 [stack] -7fff849d7000-7fff849db000 r--p 00000000 00:00 0 [vvar] -7fff849db000-7fff849dd000 r-xp 00000000 00:00 0 [vdso] -ffffffffff600000-ffffffffff601000 --xp 00000000 00:00 0 [vsyscall] - - -VM Arguments: -jvm_args: -Djava.library.path=/usr/local/lib -java_command: /home/agpmastersystem/bnd/tidesdb-java/target/surefire/surefirebooter-20260313005509935_3.jar /home/agpmastersystem/bnd/tidesdb-java/target/surefire 2026-03-13T00-55-09_884-jvmRun1 surefire-20260313005509935_1tmp surefire_0-20260313005509935_2tmp -java_class_path (initial): /home/agpmastersystem/bnd/tidesdb-java/target/surefire/surefirebooter-20260313005509935_3.jar -Launcher Type: SUN_STANDARD - -[Global flags] - intx CICompilerCount = 12 {product} {ergonomic} - uint ConcGCThreads = 3 {product} {ergonomic} - uint G1ConcRefinementThreads = 13 {product} {ergonomic} - size_t G1HeapRegionSize = 8388608 {product} {ergonomic} - uintx GCDrainStackTargetSize = 64 {product} {ergonomic} - size_t InitialHeapSize = 788529152 {product} {ergonomic} - size_t MarkStackSize = 4194304 {product} {ergonomic} - size_t MaxHeapSize = 12566134784 {product} {ergonomic} - size_t MaxNewSize = 7532969984 {product} {ergonomic} - size_t MinHeapDeltaBytes = 8388608 {product} {ergonomic} - size_t MinHeapSize = 8388608 {product} {ergonomic} - uintx NonNMethodCodeHeapSize = 7602480 {pd product} {ergonomic} - uintx NonProfiledCodeHeapSize = 122027880 {pd product} {ergonomic} - uintx ProfiledCodeHeapSize = 122027880 {pd product} {ergonomic} - uintx ReservedCodeCacheSize = 251658240 {pd product} {ergonomic} - bool SegmentedCodeCache = true {product} {ergonomic} - size_t SoftMaxHeapSize = 12566134784 {manageable} {ergonomic} - bool UseCompressedClassPointers = true {product lp64_product} {ergonomic} - bool UseCompressedOops = true {product lp64_product} {ergonomic} - bool UseG1GC = true {product} {ergonomic} - -Logging: -Log output configuration: - #0: stdout all=warning uptime,level,tags - #1: stderr all=off uptime,level,tags - -Environment Variables: -PATH=/home/agpmastersystem/bin:/home/agpmastersystem/flutter/flutter/bin:/home/agpmastersystem/flutter/flutter/bin:/home/agpmastersystem/development/flutter/bin:/home/agpmastersystem/.local/bin:/home/agpmastersystem/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin:/home/agpmastersystem/.dotnet/tools:/home/agpmastersystem/.dotnet/tools:/home/agpmastersystem/julia-1.10.0/bin:/opt/zig/zig-linux-x86_64-0.13.0 -USERNAME=agpmastersystem -SHELL=/bin/bash -DISPLAY=:1 -LANG=en_US.UTF-8 -TERM=xterm-256color - -Active Locale: -LC_ALL=en_US.UTF-8 -LC_COLLATE=en_US.UTF-8 -LC_CTYPE=en_US.UTF-8 -LC_MESSAGES=en_US.UTF-8 -LC_MONETARY=en_US.UTF-8 -LC_NUMERIC=en_US.UTF-8 -LC_TIME=en_US.UTF-8 - -Signal Handlers: - SIGSEGV: crash_handler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, unblocked - SIGBUS: crash_handler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, unblocked - SIGFPE: crash_handler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, unblocked - SIGPIPE: javaSignalHandler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, blocked - SIGXFSZ: javaSignalHandler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, blocked - SIGILL: crash_handler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, unblocked - SIGUSR2: SR_handler in libjvm.so, mask=00000000000000000000000000000000, flags=SA_RESTART|SA_SIGINFO, blocked - SIGHUP: UserHandler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, blocked - SIGINT: UserHandler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, blocked - SIGTERM: UserHandler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, blocked - SIGQUIT: UserHandler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, blocked - SIGTRAP: crash_handler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, unblocked - - -Periodic native trim disabled - - ---------------- S Y S T E M --------------- - -OS: -DISTRIB_ID=Ubuntu -DISTRIB_RELEASE=23.04 -DISTRIB_CODENAME=lunar -DISTRIB_DESCRIPTION="Ubuntu 23.04" -uname: Linux 6.2.0-39-generic #40-Ubuntu SMP PREEMPT_DYNAMIC Tue Nov 14 14:18:00 UTC 2023 x86_64 -OS uptime: 8 days 10:11 hours -libc: glibc 2.37 NPTL 2.37 -rlimit (soft/hard): STACK 8192k/infinity , CORE 0k/infinity , NPROC 191244/191244 , NOFILE 1048576/1048576 , AS infinity/infinity , CPU infinity/infinity , DATA infinity/infinity , FSIZE infinity/infinity , MEMLOCK 6134892k/6134892k -load average: 5.12 5.31 6.67 - -/proc/meminfo: -MemTotal: 49079140 kB -MemFree: 445144 kB -MemAvailable: 20908832 kB -Buffers: 2064396 kB -Cached: 18416124 kB -SwapCached: 112372 kB -Active: 14739160 kB -Inactive: 31259668 kB -Active(anon): 2687800 kB -Inactive(anon): 23445264 kB -Active(file): 12051360 kB -Inactive(file): 7814404 kB -Unevictable: 1668 kB -Mlocked: 264 kB -SwapTotal: 8388604 kB -SwapFree: 5695484 kB -Zswap: 0 kB -Zswapped: 0 kB -Dirty: 5696 kB -Writeback: 16 kB -AnonPages: 25444804 kB -Mapped: 1261704 kB -Shmem: 614756 kB -KReclaimable: 1337760 kB -Slab: 1840504 kB -SReclaimable: 1337760 kB -SUnreclaim: 502744 kB -KernelStack: 44616 kB -PageTables: 184500 kB -SecPageTables: 0 kB -NFS_Unstable: 0 kB -Bounce: 0 kB -WritebackTmp: 0 kB -CommitLimit: 32928172 kB -Committed_AS: 90441240 kB -VmallocTotal: 34359738367 kB -VmallocUsed: 163580 kB -VmallocChunk: 0 kB -Percpu: 18176 kB -HardwareCorrupted: 0 kB -AnonHugePages: 10240 kB -ShmemHugePages: 2048 kB -ShmemPmdMapped: 0 kB -FileHugePages: 0 kB -FilePmdMapped: 0 kB -HugePages_Total: 0 -HugePages_Free: 0 -HugePages_Rsvd: 0 -HugePages_Surp: 0 -Hugepagesize: 2048 kB -Hugetlb: 0 kB -DirectMap4k: 2126020 kB -DirectMap2M: 41670656 kB -DirectMap1G: 7340032 kB - -/sys/kernel/mm/transparent_hugepage/enabled: always [madvise] never -/sys/kernel/mm/transparent_hugepage/defrag (defrag/compaction efforts parameter): always defer defer+madvise [madvise] never - -Process Memory: -Virtual Size: 16819916K (peak: 16819916K) -Resident Set Size: 190040K (peak: 190040K) (anon: 167512K, file: 22528K, shmem: 0K) -Swapped out: 0K -C-Heap outstanding allocations: 669781K, retained: 5826K -glibc malloc tunables: (default) - -/proc/sys/kernel/threads-max (system-wide limit on the number of threads): 382489 -/proc/sys/vm/max_map_count (maximum number of memory map areas a process may have): 65530 -/proc/sys/kernel/pid_max (system-wide limit on number of process identifiers): 4194304 - -container (cgroup) information: -container_type: cgroupv2 -cpu_cpuset_cpus: not supported -cpu_memory_nodes: not supported -active_processor_count: 16 -cpu_quota: not supported -cpu_period: not supported -cpu_shares: not supported -memory_limit_in_bytes: unlimited -memory_and_swap_limit_in_bytes: unlimited -memory_soft_limit_in_bytes: unlimited -memory_usage_in_bytes: 20275492 k -memory_max_usage_in_bytes: not supported -memory_swap_current_in_bytes: 651156 k -memory_swap_max_limit_in_bytes: unlimited -maximum number of tasks: 57373 -current number of tasks: 685 - -Steal ticks since vm start: 0 -Steal ticks percentage since vm start: 0.000 - -CPU: total 16 (initial active 16) (8 cores per cpu, 2 threads per core) family 6 model 167 stepping 1 microcode 0x5d, cx8, cmov, fxsr, ht, mmx, 3dnowpref, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, lzcnt, tsc, tscinvbit, avx, avx2, aes, erms, clmul, bmi1, bmi2, adx, avx512f, avx512dq, avx512cd, avx512bw, avx512vl, sha, fma, vzeroupper, avx512_vpopcntdq, avx512_vpclmulqdq, avx512_vaes, avx512_vnni, clflush, clflushopt, avx512_vbmi2, avx512_vbmi -CPU Model and flags from /proc/cpuinfo: -model name : 11th Gen Intel(R) Core(TM) i7-11700K @ 3.60GHz -flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid mpx avx512f avx512dq rdseed adx smap avx512ifma clflushopt intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp hwp_pkg_req avx512vbmi umip pku ospke avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg avx512_vpopcntdq rdpid fsrm md_clear flush_l1d arch_capabilities - -Online cpus: 0-15 -Offline cpus: -BIOS frequency limitation: -Frequency switch latency (ns): 0 -Available cpu frequencies: -Current governor: powersave -Core performance/turbo boost: - -Memory: 4k page, physical 49079140k(445144k free), swap 8388604k(5695484k free) -Page Sizes: 4k - -vm_info: OpenJDK 64-Bit Server VM (17.0.9+9-Ubuntu-123.04) for linux-amd64 JRE (17.0.9+9-Ubuntu-123.04), built on Oct 19 2023 08:33:16 by "buildd" with gcc 12.3.0 - -END. diff --git a/hs_err_pid2048993.log b/hs_err_pid2048993.log deleted file mode 100644 index bfa6826..0000000 --- a/hs_err_pid2048993.log +++ /dev/null @@ -1,1223 +0,0 @@ -# -# A fatal error has been detected by the Java Runtime Environment: -# -# SIGSEGV (0xb) at pc=0x00007fd5d5ad79e8, pid=2048993, tid=2048994 -# -# JRE version: OpenJDK Runtime Environment (17.0.9+9) (build 17.0.9+9-Ubuntu-123.04) -# Java VM: OpenJDK 64-Bit Server VM (17.0.9+9-Ubuntu-123.04, mixed mode, sharing, tiered, compressed oops, compressed class ptrs, g1 gc, linux-amd64) -# Problematic frame: -# V [libjvm.so+0x8d79e8] jni_NewObject+0x128 -# -# Core dump will be written. Default location: Core dumps may be processed with "/usr/share/apport/apport -p%p -s%s -c%c -d%d -P%P -u%u -g%g -- %E" (or dumping to /home/agpmastersystem/bnd/tidesdb-java/core.2048993) -# -# If you would like to submit a bug report, please visit: -# Unknown -# - ---------------- S U M M A R Y ------------ - -Command Line: -Djava.library.path=/usr/local/lib /home/agpmastersystem/bnd/tidesdb-java/target/surefire/surefirebooter-20260313005533920_3.jar /home/agpmastersystem/bnd/tidesdb-java/target/surefire 2026-03-13T00-55-33_849-jvmRun1 surefire-20260313005533920_1tmp surefire_0-20260313005533920_2tmp - -Host: 11th Gen Intel(R) Core(TM) i7-11700K @ 3.60GHz, 16 cores, 46G, Ubuntu 23.04 -Time: Fri Mar 13 00:55:34 2026 EDT elapsed time: 0.315125 seconds (0d 0h 0m 0s) - ---------------- T H R E A D --------------- - -Current thread (0x00007fd5d0014510): JavaThread "main" [_thread_in_vm, id=2048994, stack(0x00007fd5d5100000,0x00007fd5d5200000)] - -Stack: [0x00007fd5d5100000,0x00007fd5d5200000], sp=0x00007fd5d51fb9b0, free space=1006k -Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code) -V [libjvm.so+0x8d79e8] jni_NewObject+0x128 -C [libtidesdb_jni.so+0x68a4] Java_com_tidesdb_TidesDB_nativeGetDbStats+0x1db -j com.tidesdb.TidesDB.nativeGetDbStats(J)Lcom/tidesdb/DbStats;+0 -j com.tidesdb.TidesDB.getDbStats()Lcom/tidesdb/DbStats;+8 -j com.tidesdb.TidesDBTest.testGetDbStats()V+179 -v ~StubRoutines::call_stub -V [libjvm.so+0x836d12] JavaCalls::call_helper(JavaValue*, methodHandle const&, JavaCallArguments*, JavaThread*)+0x302 -V [libjvm.so+0xcc5dbc] invoke(InstanceKlass*, methodHandle const&, Handle, bool, objArrayHandle, BasicType, objArrayHandle, bool, JavaThread*) [clone .constprop.0]+0x74c -V [libjvm.so+0xcc6af8] Reflection::invoke_method(oopDesc*, Handle, objArrayHandle, JavaThread*)+0x138 -V [libjvm.so+0x90daa4] JVM_InvokeMethod+0x144 -j jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+0 java.base@17.0.9 -j jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+133 java.base@17.0.9 -j jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+6 java.base@17.0.9 -j java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+59 java.base@17.0.9 -j org.junit.platform.commons.util.ReflectionUtils.invokeMethod(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+42 -j org.junit.jupiter.engine.execution.MethodInvocation.proceed()Ljava/lang/Object;+16 -j org.junit.jupiter.engine.execution.InvocationInterceptorChain$ValidatingInvocation.proceed()Ljava/lang/Object;+8 -j org.junit.jupiter.engine.extension.TimeoutExtension.intercept(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/extension/TimeoutDuration;Lorg/junit/jupiter/engine/extension/TimeoutExtension$TimeoutProvider;)Ljava/lang/Object;+28 -j org.junit.jupiter.engine.extension.TimeoutExtension.interceptTestableMethod(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/extension/TimeoutExtension$TimeoutProvider;)Ljava/lang/Object;+31 -j org.junit.jupiter.engine.extension.TimeoutExtension.interceptTestMethod(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;)V+9 -j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor$$Lambda$186+0x00007fd54008e318.apply(Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;)V+5 -j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker$ReflectiveInterceptorCall.lambda$ofVoidMethod$0(Lorg/junit/jupiter/engine/execution/InterceptingExecutableInvoker$ReflectiveInterceptorCall$VoidMethodInterceptorCall;Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;)Ljava/lang/Void;+6 -j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker$ReflectiveInterceptorCall$$Lambda$187+0x00007fd54008e738.apply(Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;)Ljava/lang/Object;+9 -j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.lambda$invoke$0(Lorg/junit/jupiter/engine/execution/InterceptingExecutableInvoker$ReflectiveInterceptorCall;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;)Ljava/lang/Object;+6 -j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker$$Lambda$392+0x00007fd5400c7378.apply(Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;)Ljava/lang/Object;+14 -j org.junit.jupiter.engine.execution.InvocationInterceptorChain$InterceptedInvocation.proceed()Ljava/lang/Object;+12 -j org.junit.jupiter.engine.execution.InvocationInterceptorChain.proceed(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;)Ljava/lang/Object;+1 -j org.junit.jupiter.engine.execution.InvocationInterceptorChain.chainAndInvoke(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/engine/execution/InvocationInterceptorChain$InterceptorCall;Ljava/util/List;)Ljava/lang/Object;+24 -j org.junit.jupiter.engine.execution.InvocationInterceptorChain.invoke(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/engine/extension/ExtensionRegistry;Lorg/junit/jupiter/engine/execution/InvocationInterceptorChain$InterceptorCall;)Ljava/lang/Object;+31 -j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.invoke(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/extension/ExtensionRegistry;Lorg/junit/jupiter/engine/execution/InterceptingExecutableInvoker$ReflectiveInterceptorCall;)Ljava/lang/Object;+15 -j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.invoke(Ljava/lang/reflect/Method;Ljava/lang/Object;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/extension/ExtensionRegistry;Lorg/junit/jupiter/engine/execution/InterceptingExecutableInvoker$ReflectiveInterceptorCall;)Ljava/lang/Object;+55 -j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.lambda$invokeTestMethod$7(Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/execution/JupiterEngineExecutionContext;)V+28 -j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor$$Lambda$427+0x00007fd5400cc300.execute()V+12 -j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 -j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.invokeTestMethod(Lorg/junit/jupiter/engine/execution/JupiterEngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$DynamicTestExecutor;)V+21 -j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.execute(Lorg/junit/jupiter/engine/execution/JupiterEngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$DynamicTestExecutor;)Lorg/junit/jupiter/engine/execution/JupiterEngineExecutionContext;+44 -j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.execute(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$DynamicTestExecutor;)Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;+6 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6()V+79 -j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$317+0x00007fd5400b7038.execute()V+4 -j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+15 -j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$316+0x00007fd5400b6e10.invoke(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+5 -j org.junit.platform.engine.support.hierarchical.Node.around(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$Invocation;)V+2 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9()V+14 -j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$315+0x00007fd5400b69e8.execute()V+4 -j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively()V+31 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.execute()V+55 -j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService$$Lambda$321+0x00007fd5400b7b50.accept(Ljava/lang/Object;)V+4 -j java.util.ArrayList.forEach(Ljava/util/function/Consumer;)V+46 java.base@17.0.9 -j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(Ljava/util/List;)V+6 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6()V+116 -j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$317+0x00007fd5400b7038.execute()V+4 -j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+15 -j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$316+0x00007fd5400b6e10.invoke(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+5 -j org.junit.platform.engine.support.hierarchical.Node.around(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$Invocation;)V+2 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9()V+14 -j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$315+0x00007fd5400b69e8.execute()V+4 -j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively()V+31 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.execute()V+55 -j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService$$Lambda$321+0x00007fd5400b7b50.accept(Ljava/lang/Object;)V+4 -j java.util.ArrayList.forEach(Ljava/util/function/Consumer;)V+46 java.base@17.0.9 -j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(Ljava/util/List;)V+6 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6()V+116 -j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$317+0x00007fd5400b7038.execute()V+4 -j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+15 -j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$316+0x00007fd5400b6e10.invoke(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+5 -j org.junit.platform.engine.support.hierarchical.Node.around(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$Invocation;)V+2 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9()V+14 -j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$315+0x00007fd5400b69e8.execute()V+4 -j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively()V+31 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.execute()V+55 -j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.submit(Lorg/junit/platform/engine/support/hierarchical/HierarchicalTestExecutorService$TestTask;)Ljava/util/concurrent/Future;+1 -j org.junit.platform.engine.support.hierarchical.HierarchicalTestExecutor.execute()Ljava/util/concurrent/Future;+74 -j org.junit.platform.engine.support.hierarchical.HierarchicalTestEngine.execute(Lorg/junit/platform/engine/ExecutionRequest;)V+31 -j org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(Lorg/junit/platform/engine/TestDescriptor;Lorg/junit/platform/engine/EngineExecutionListener;Lorg/junit/platform/engine/ConfigurationParameters;Lorg/junit/platform/engine/TestEngine;)V+24 -j org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(Lorg/junit/platform/launcher/core/LauncherDiscoveryResult;Lorg/junit/platform/engine/EngineExecutionListener;)V+115 -j org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(Lorg/junit/platform/launcher/core/InternalTestPlan;Lorg/junit/platform/engine/EngineExecutionListener;Lorg/junit/platform/launcher/TestExecutionListener;)V+55 -j org.junit.platform.launcher.core.EngineExecutionOrchestrator.lambda$execute$0(Lorg/junit/platform/launcher/core/InternalTestPlan;Lorg/junit/platform/launcher/TestExecutionListener;)V+6 -j org.junit.platform.launcher.core.EngineExecutionOrchestrator$$Lambda$271+0x00007fd5400a4238.accept(Ljava/lang/Object;)V+12 -j org.junit.platform.launcher.core.EngineExecutionOrchestrator.withInterceptedStreams(Lorg/junit/platform/engine/ConfigurationParameters;Lorg/junit/platform/launcher/core/ListenerRegistry;Ljava/util/function/Consumer;)V+51 -j org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(Lorg/junit/platform/launcher/core/InternalTestPlan;[Lorg/junit/platform/launcher/TestExecutionListener;)V+23 -j org.junit.platform.launcher.core.DefaultLauncher.execute(Lorg/junit/platform/launcher/core/InternalTestPlan;[Lorg/junit/platform/launcher/TestExecutionListener;)V+6 -j org.junit.platform.launcher.core.DefaultLauncher.execute(Lorg/junit/platform/launcher/LauncherDiscoveryRequest;[Lorg/junit/platform/launcher/TestExecutionListener;)V+34 -j org.junit.platform.launcher.core.DelegatingLauncher.execute(Lorg/junit/platform/launcher/LauncherDiscoveryRequest;[Lorg/junit/platform/launcher/TestExecutionListener;)V+6 -j org.apache.maven.surefire.junitplatform.LauncherAdapter.executeWithoutCancellationToken(Lorg/junit/platform/launcher/LauncherDiscoveryRequest;[Lorg/junit/platform/launcher/TestExecutionListener;)V+6 -j org.apache.maven.surefire.junitplatform.LauncherAdapter.execute(Lorg/junit/platform/launcher/LauncherDiscoveryRequest;[Lorg/junit/platform/launcher/TestExecutionListener;)V+10 -j org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.execute(Lorg/apache/maven/surefire/junitplatform/LauncherAdapter;Lorg/apache/maven/surefire/api/util/TestsToRun;Lorg/apache/maven/surefire/junitplatform/RunListenerAdapter;)V+61 -j org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.invokeAllTests(Lorg/apache/maven/surefire/junitplatform/LauncherAdapter;Lorg/apache/maven/surefire/api/util/TestsToRun;Lorg/apache/maven/surefire/junitplatform/RunListenerAdapter;)V+36 -j org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.invoke(Ljava/lang/Object;)Lorg/apache/maven/surefire/api/suite/RunResult;+144 -j org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess()V+8 -j org.apache.maven.surefire.booter.ForkedBooter.execute()V+1 -j org.apache.maven.surefire.booter.ForkedBooter.run(Lorg/apache/maven/surefire/booter/ForkedBooter;[Ljava/lang/String;)V+27 -j org.apache.maven.surefire.booter.ForkedBooter.main([Ljava/lang/String;)V+10 -v ~StubRoutines::call_stub -V [libjvm.so+0x836d12] JavaCalls::call_helper(JavaValue*, methodHandle const&, JavaCallArguments*, JavaThread*)+0x302 -...... - -Java frames: (J=compiled Java code, j=interpreted, Vv=VM code) -j com.tidesdb.TidesDB.nativeGetDbStats(J)Lcom/tidesdb/DbStats;+0 -j com.tidesdb.TidesDB.getDbStats()Lcom/tidesdb/DbStats;+8 -j com.tidesdb.TidesDBTest.testGetDbStats()V+179 -v ~StubRoutines::call_stub -j jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+0 java.base@17.0.9 -j jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+133 java.base@17.0.9 -j jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+6 java.base@17.0.9 -j java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+59 java.base@17.0.9 -j org.junit.platform.commons.util.ReflectionUtils.invokeMethod(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+42 -j org.junit.jupiter.engine.execution.MethodInvocation.proceed()Ljava/lang/Object;+16 -j org.junit.jupiter.engine.execution.InvocationInterceptorChain$ValidatingInvocation.proceed()Ljava/lang/Object;+8 -j org.junit.jupiter.engine.extension.TimeoutExtension.intercept(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/extension/TimeoutDuration;Lorg/junit/jupiter/engine/extension/TimeoutExtension$TimeoutProvider;)Ljava/lang/Object;+28 -j org.junit.jupiter.engine.extension.TimeoutExtension.interceptTestableMethod(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/extension/TimeoutExtension$TimeoutProvider;)Ljava/lang/Object;+31 -j org.junit.jupiter.engine.extension.TimeoutExtension.interceptTestMethod(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;)V+9 -j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor$$Lambda$186+0x00007fd54008e318.apply(Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;)V+5 -j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker$ReflectiveInterceptorCall.lambda$ofVoidMethod$0(Lorg/junit/jupiter/engine/execution/InterceptingExecutableInvoker$ReflectiveInterceptorCall$VoidMethodInterceptorCall;Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;)Ljava/lang/Void;+6 -j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker$ReflectiveInterceptorCall$$Lambda$187+0x00007fd54008e738.apply(Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;)Ljava/lang/Object;+9 -j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.lambda$invoke$0(Lorg/junit/jupiter/engine/execution/InterceptingExecutableInvoker$ReflectiveInterceptorCall;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;)Ljava/lang/Object;+6 -j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker$$Lambda$392+0x00007fd5400c7378.apply(Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;)Ljava/lang/Object;+14 -j org.junit.jupiter.engine.execution.InvocationInterceptorChain$InterceptedInvocation.proceed()Ljava/lang/Object;+12 -j org.junit.jupiter.engine.execution.InvocationInterceptorChain.proceed(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;)Ljava/lang/Object;+1 -j org.junit.jupiter.engine.execution.InvocationInterceptorChain.chainAndInvoke(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/engine/execution/InvocationInterceptorChain$InterceptorCall;Ljava/util/List;)Ljava/lang/Object;+24 -j org.junit.jupiter.engine.execution.InvocationInterceptorChain.invoke(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/engine/extension/ExtensionRegistry;Lorg/junit/jupiter/engine/execution/InvocationInterceptorChain$InterceptorCall;)Ljava/lang/Object;+31 -j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.invoke(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/extension/ExtensionRegistry;Lorg/junit/jupiter/engine/execution/InterceptingExecutableInvoker$ReflectiveInterceptorCall;)Ljava/lang/Object;+15 -j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.invoke(Ljava/lang/reflect/Method;Ljava/lang/Object;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/extension/ExtensionRegistry;Lorg/junit/jupiter/engine/execution/InterceptingExecutableInvoker$ReflectiveInterceptorCall;)Ljava/lang/Object;+55 -j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.lambda$invokeTestMethod$7(Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/execution/JupiterEngineExecutionContext;)V+28 -j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor$$Lambda$427+0x00007fd5400cc300.execute()V+12 -j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 -j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.invokeTestMethod(Lorg/junit/jupiter/engine/execution/JupiterEngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$DynamicTestExecutor;)V+21 -j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.execute(Lorg/junit/jupiter/engine/execution/JupiterEngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$DynamicTestExecutor;)Lorg/junit/jupiter/engine/execution/JupiterEngineExecutionContext;+44 -j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.execute(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$DynamicTestExecutor;)Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;+6 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6()V+79 -j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$317+0x00007fd5400b7038.execute()V+4 -j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+15 -j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$316+0x00007fd5400b6e10.invoke(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+5 -j org.junit.platform.engine.support.hierarchical.Node.around(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$Invocation;)V+2 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9()V+14 -j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$315+0x00007fd5400b69e8.execute()V+4 -j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively()V+31 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.execute()V+55 -j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService$$Lambda$321+0x00007fd5400b7b50.accept(Ljava/lang/Object;)V+4 -j java.util.ArrayList.forEach(Ljava/util/function/Consumer;)V+46 java.base@17.0.9 -j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(Ljava/util/List;)V+6 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6()V+116 -j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$317+0x00007fd5400b7038.execute()V+4 -j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+15 -j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$316+0x00007fd5400b6e10.invoke(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+5 -j org.junit.platform.engine.support.hierarchical.Node.around(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$Invocation;)V+2 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9()V+14 -j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$315+0x00007fd5400b69e8.execute()V+4 -j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively()V+31 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.execute()V+55 -j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService$$Lambda$321+0x00007fd5400b7b50.accept(Ljava/lang/Object;)V+4 -j java.util.ArrayList.forEach(Ljava/util/function/Consumer;)V+46 java.base@17.0.9 -j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(Ljava/util/List;)V+6 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6()V+116 -j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$317+0x00007fd5400b7038.execute()V+4 -j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+15 -j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$316+0x00007fd5400b6e10.invoke(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+5 -j org.junit.platform.engine.support.hierarchical.Node.around(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$Invocation;)V+2 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9()V+14 -j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$315+0x00007fd5400b69e8.execute()V+4 -j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively()V+31 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.execute()V+55 -j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.submit(Lorg/junit/platform/engine/support/hierarchical/HierarchicalTestExecutorService$TestTask;)Ljava/util/concurrent/Future;+1 -j org.junit.platform.engine.support.hierarchical.HierarchicalTestExecutor.execute()Ljava/util/concurrent/Future;+74 -j org.junit.platform.engine.support.hierarchical.HierarchicalTestEngine.execute(Lorg/junit/platform/engine/ExecutionRequest;)V+31 -j org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(Lorg/junit/platform/engine/TestDescriptor;Lorg/junit/platform/engine/EngineExecutionListener;Lorg/junit/platform/engine/ConfigurationParameters;Lorg/junit/platform/engine/TestEngine;)V+24 -j org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(Lorg/junit/platform/launcher/core/LauncherDiscoveryResult;Lorg/junit/platform/engine/EngineExecutionListener;)V+115 -j org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(Lorg/junit/platform/launcher/core/InternalTestPlan;Lorg/junit/platform/engine/EngineExecutionListener;Lorg/junit/platform/launcher/TestExecutionListener;)V+55 -j org.junit.platform.launcher.core.EngineExecutionOrchestrator.lambda$execute$0(Lorg/junit/platform/launcher/core/InternalTestPlan;Lorg/junit/platform/launcher/TestExecutionListener;)V+6 -j org.junit.platform.launcher.core.EngineExecutionOrchestrator$$Lambda$271+0x00007fd5400a4238.accept(Ljava/lang/Object;)V+12 -j org.junit.platform.launcher.core.EngineExecutionOrchestrator.withInterceptedStreams(Lorg/junit/platform/engine/ConfigurationParameters;Lorg/junit/platform/launcher/core/ListenerRegistry;Ljava/util/function/Consumer;)V+51 -j org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(Lorg/junit/platform/launcher/core/InternalTestPlan;[Lorg/junit/platform/launcher/TestExecutionListener;)V+23 -j org.junit.platform.launcher.core.DefaultLauncher.execute(Lorg/junit/platform/launcher/core/InternalTestPlan;[Lorg/junit/platform/launcher/TestExecutionListener;)V+6 -j org.junit.platform.launcher.core.DefaultLauncher.execute(Lorg/junit/platform/launcher/LauncherDiscoveryRequest;[Lorg/junit/platform/launcher/TestExecutionListener;)V+34 -j org.junit.platform.launcher.core.DelegatingLauncher.execute(Lorg/junit/platform/launcher/LauncherDiscoveryRequest;[Lorg/junit/platform/launcher/TestExecutionListener;)V+6 -j org.apache.maven.surefire.junitplatform.LauncherAdapter.executeWithoutCancellationToken(Lorg/junit/platform/launcher/LauncherDiscoveryRequest;[Lorg/junit/platform/launcher/TestExecutionListener;)V+6 -j org.apache.maven.surefire.junitplatform.LauncherAdapter.execute(Lorg/junit/platform/launcher/LauncherDiscoveryRequest;[Lorg/junit/platform/launcher/TestExecutionListener;)V+10 -j org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.execute(Lorg/apache/maven/surefire/junitplatform/LauncherAdapter;Lorg/apache/maven/surefire/api/util/TestsToRun;Lorg/apache/maven/surefire/junitplatform/RunListenerAdapter;)V+61 -j org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.invokeAllTests(Lorg/apache/maven/surefire/junitplatform/LauncherAdapter;Lorg/apache/maven/surefire/api/util/TestsToRun;Lorg/apache/maven/surefire/junitplatform/RunListenerAdapter;)V+36 -j org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.invoke(Ljava/lang/Object;)Lorg/apache/maven/surefire/api/suite/RunResult;+144 -j org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess()V+8 -j org.apache.maven.surefire.booter.ForkedBooter.execute()V+1 -j org.apache.maven.surefire.booter.ForkedBooter.run(Lorg/apache/maven/surefire/booter/ForkedBooter;[Ljava/lang/String;)V+27 -j org.apache.maven.surefire.booter.ForkedBooter.main([Ljava/lang/String;)V+10 -v ~StubRoutines::call_stub - -siginfo: si_signo: 11 (SIGSEGV), si_code: 1 (SEGV_MAPERR), si_addr: 0x0000000000000000 - -Registers: -RAX=0x00007fd5d01b5b28, RBX=0x00007fd5d0014510, RCX=0x0000000000000002, RDX=0x00007fd5d01b5b20 -RSP=0x00007fd5d51fb9b0, RBP=0x00007fd5d51fbb20, RSI=0x0000000540035cc8, RDI=0x00007fd5d01b5b28 -R8 =0x0000000bb38d9000, R9 =0x0000000513968000, R10=0x00007fd5d5ad78c0, R11=0x0000000000000000 -R12=0x0000000000000000, R13=0x0000000000000000, R14=0x0000000000000000, R15=0x00007fd5d51fba00 -RIP=0x00007fd5d5ad79e8, EFLAGS=0x0000000000010206, CSGSFS=0x002b000000000033, ERR=0x0000000000000004 - TRAPNO=0x000000000000000e - - -Register to memory mapping: - -RAX=0x00007fd5d01b5b28 points into unknown readable memory: 0x0000000540035cc8 | c8 5c 03 40 05 00 00 00 -RBX=0x00007fd5d0014510 is a thread -RCX=0x0000000000000002 is an unknown value -RDX=0x00007fd5d01b5b20 points into unknown readable memory: 0x0000000540035360 | 60 53 03 40 05 00 00 00 -RSP=0x00007fd5d51fb9b0 is pointing into the stack for thread: 0x00007fd5d0014510 -RBP=0x00007fd5d51fbb20 is pointing into the stack for thread: 0x00007fd5d0014510 -RSI=0x0000000540035cc8 is an oop: com.tidesdb.DbStats -{0x0000000540035cc8} - klass: 'com/tidesdb/DbStats' - - ---- fields (total size 14 words): - - private final 'numColumnFamilies' 'I' @12 0 - - private final 'totalMemory' 'J' @16 0 (0 0) - - private final 'availableMemory' 'J' @24 0 (0 0) - - private final 'resolvedMemoryLimit' 'J' @32 0 (0 0) - - private final 'totalMemtableBytes' 'J' @40 0 (0 0) - - private final 'totalDataSizeBytes' 'J' @48 0 (0 0) - - private final 'globalSeq' 'J' @56 0 (0 0) - - private final 'txnMemoryBytes' 'J' @64 0 (0 0) - - private final 'compactionQueueSize' 'J' @72 0 (0 0) - - private final 'flushQueueSize' 'J' @80 0 (0 0) - - private final 'memoryPressureLevel' 'I' @88 0 - - private final 'flushPendingCount' 'I' @92 0 - - private final 'totalImmutableCount' 'I' @96 0 - - private final 'totalSstableCount' 'I' @100 0 - - private final 'numOpenSstables' 'I' @104 0 -RDI=0x00007fd5d01b5b28 points into unknown readable memory: 0x0000000540035cc8 | c8 5c 03 40 05 00 00 00 -R8 =0x0000000bb38d9000 is an unknown value -R9 =0x0000000513968000 points into unknown readable memory: 0x0000000000000000 | 00 00 00 00 00 00 00 00 -R10=0x00007fd5d5ad78c0: in /usr/lib/jvm/java-17-openjdk-amd64/lib/server/libjvm.so at 0x00007fd5d5200000 -R11=0x0 is NULL -R12=0x0 is NULL -R13=0x0 is NULL -R14=0x0 is NULL -R15=0x00007fd5d51fba00 is pointing into the stack for thread: 0x00007fd5d0014510 - - -Top of Stack: (sp=0x00007fd5d51fb9b0) -0x00007fd5d51fb9b0: 00000000d0014f50 00007fd5cfee43ab -0x00007fd5d51fb9c0: 00007fd5d0015038 00000000000000d8 -0x00007fd5d51fb9d0: 00007fd5d51fbec0 0000000000000000 -0x00007fd5d51fb9e0: 00007fd5d0014510 00007fd5d0014f80 -0x00007fd5d51fb9f0: 0000000000000431 00007fd5d6204d88 -0x00007fd5d51fba00: 0000000000000013 00007fd5d0014f88 -0x00007fd5d51fba10: 00007fd5d51fbaa0 00007fd5d6064d6e -0x00007fd5d51fba20: 0000000000000000 0000000000000000 -0x00007fd5d51fba30: 0000000000000000 00007fd5d60521a7 -0x00007fd5d51fba40: 4141414141414141 0000000000000000 -0x00007fd5d51fba50: 00007fd5d0014510 0000000000000002 -0x00007fd5d51fba60: 0000000bb38d9000 0000000513968000 -0x00007fd5d51fba70: 0000000000000001 00007fd5400d4000 -0x00007fd5d51fba80: 0000000000000001 00007fd5d5aff4d3 -0x00007fd5d51fba90: 00007fd5d0014f88 00000007ff7560a0 -0x00007fd5d51fbaa0: 00007fd5d51fbad0 00007fd5d0014510 -0x00007fd5d51fbab0: 00007fd5d0423980 00007fd5d00147c0 -0x00007fd5d51fbac0: 00007fd5d0014f88 00000007ff7560a0 -0x00007fd5d51fbad0: 00007fd5d0014510 00007fd5d0014510 -0x00007fd5d51fbae0: 00007fd5d51fbb80 00007fd5d5accb35 -0x00007fd5d51fbaf0: 0000000000000000 0000000000000000 -0x00007fd5d51fbb00: 0000000000000000 0000000000000000 -0x00007fd5d51fbb10: 0000000000000000 0000000000000000 -0x00007fd5d51fbb20: 00007fd5d51fbc90 00007fd5cfee38a4 -0x00007fd5d51fbb30: 00000005d9c6c800 0000000000000000 -0x00007fd5d51fbb40: 0000000000000000 0000000000000000 -0x00007fd5d51fbb50: 0000000000000000 0000000000000000 -0x00007fd5d51fbb60: 0000000000000000 0000000000000000 -0x00007fd5d51fbb70: 0000000000000002 0000000000000000 -0x00007fd5d51fbb80: 0000000000000000 0000000000000000 -0x00007fd5d51fbb90: 0000000bb38d9000 0000000513968000 -0x00007fd5d51fbba0: 00000005d9c6c800 0000000000000000 - -Instructions: (pc=0x00007fd5d5ad79e8) -0x00007fd5d5ad78e8: 40 ff ff ff 4c 89 8d 48 ff ff ff 84 c0 74 29 0f -0x00007fd5d5ad78f8: 29 85 50 ff ff ff 0f 29 8d 60 ff ff ff 0f 29 95 -0x00007fd5d5ad7908: 70 ff ff ff 0f 29 5d 80 0f 29 65 90 0f 29 6d a0 -0x00007fd5d5ad7918: 0f 29 75 b0 0f 29 7d c0 48 8d 9f 50 fd ff ff 8b -0x00007fd5d5ad7928: 83 68 03 00 00 2d ab de 00 00 83 f8 01 0f 87 15 -0x00007fd5d5ad7938: 02 00 00 c7 83 40 03 00 00 05 00 00 00 f0 83 04 -0x00007fd5d5ad7948: 24 00 48 8b 83 48 03 00 00 a8 01 0f 85 df 01 00 -0x00007fd5d5ad7958: 00 8b 83 34 03 00 00 85 c0 0f 85 a9 01 00 00 8b -0x00007fd5d5ad7968: 83 30 03 00 00 a8 0c 0f 85 9b 01 00 00 48 83 7b -0x00007fd5d5ad7978: 08 00 c7 83 40 03 00 00 06 00 00 00 48 89 9d c0 -0x00007fd5d5ad7988: fe ff ff 48 c7 85 c8 fe ff ff 00 00 00 00 74 0c -0x00007fd5d5ad7998: 48 8d bd c0 fe ff ff e8 ac 49 3b 00 41 f6 c4 01 -0x00007fd5d5ad79a8: 0f 84 72 01 00 00 49 8d 7c 24 ff ff 15 07 78 a1 -0x00007fd5d5ad79b8: 00 48 89 c7 48 89 de 45 31 ed e8 49 87 00 00 4c -0x00007fd5d5ad79c8: 8b 63 08 4d 85 e4 0f 85 ad 00 00 00 31 d2 48 89 -0x00007fd5d5ad79d8: c6 4c 8d bd e0 fe ff ff 48 89 df e8 28 7d 02 00 -0x00007fd5d5ad79e8: 49 8b 36 4c 89 ff c7 85 a8 fe ff ff 18 00 00 00 -0x00007fd5d5ad79f8: c7 85 ac fe ff ff 30 00 00 00 49 89 c5 48 8d 45 -0x00007fd5d5ad7a08: 10 48 89 85 b0 fe ff ff 48 8d 85 20 ff ff ff 48 -0x00007fd5d5ad7a18: 89 85 b8 fe ff ff c7 85 90 fe ff ff 0e 00 00 00 -0x00007fd5d5ad7a28: e8 f3 90 00 00 4c 89 ee 49 89 d8 4c 89 f9 48 8d -0x00007fd5d5ad7a38: 05 1b a3 96 00 f3 0f 6f 85 a8 fe ff ff 48 8d bd -0x00007fd5d5ad7a48: 90 fe ff ff 4c 89 f2 48 89 85 e0 fe ff ff 48 8b -0x00007fd5d5ad7a58: 85 b8 fe ff ff 0f 11 85 08 ff ff ff 48 89 85 18 -0x00007fd5d5ad7a68: ff ff ff e8 10 f7 ff ff 48 83 7b 08 00 4c 89 ff -0x00007fd5d5ad7a78: 4d 0f 45 ec e8 bf 87 00 00 48 83 bd c8 fe ff ff -0x00007fd5d5ad7a88: 00 74 0c 48 8d bd c0 fe ff ff e8 59 49 3b 00 4c -0x00007fd5d5ad7a98: 8b a3 e8 00 00 00 49 8b 44 24 10 48 83 38 00 74 -0x00007fd5d5ad7aa8: 0d 4c 89 e7 e8 ef ef ee ff 49 8b 44 24 10 49 8b -0x00007fd5d5ad7ab8: 54 24 08 48 8d bb 90 02 00 00 48 89 42 10 49 8b -0x00007fd5d5ad7ac8: 44 24 08 49 8b 54 24 18 48 89 50 18 49 8b 44 24 -0x00007fd5d5ad7ad8: 08 49 8b 54 24 20 48 89 50 20 e8 69 c4 df ff c7 - - -Stack slot to memory mapping: -stack at sp + 0 slots: 0x00000000d0014f50 is an unknown value -stack at sp + 1 slots: 0x00007fd5cfee43ab: in /usr/local/lib/libtidesdb_jni.so at 0x00007fd5cfedd000 -stack at sp + 2 slots: 0x00007fd5d0015038 points into unknown readable memory: 0x0000000000000025 | 25 00 00 00 00 00 00 00 -stack at sp + 3 slots: 0x00000000000000d8 is an unknown value -stack at sp + 4 slots: 0x00007fd5d51fbec0 is pointing into the stack for thread: 0x00007fd5d0014510 -stack at sp + 5 slots: 0x0 is NULL -stack at sp + 6 slots: 0x00007fd5d0014510 is a thread -stack at sp + 7 slots: 0x00007fd5d0014f80 points into unknown readable memory: 0x00000005400354a8 | a8 54 03 40 05 00 00 00 - - ---------------- P R O C E S S --------------- - -Threads class SMR info: -_java_thread_list=0x00007fd50c1efb50, length=16, elements={ -0x00007fd5d0014510, 0x00007fd5d01b7e10, 0x00007fd5d01b9200, 0x00007fd5d01be770, -0x00007fd5d01bfb30, 0x00007fd5d01c0f50, 0x00007fd5d01c2990, 0x00007fd5d01c3ed0, -0x00007fd5d01c5350, 0x00007fd5d01cc920, 0x00007fd5d01cfdc0, 0x00007fd51802d1b0, -0x00007fd5d031c110, 0x00007fd5d032c0c0, 0x00007fd518135130, 0x00007fd50c1eeb50 -} - -Java Threads: ( => current thread ) -=>0x00007fd5d0014510 JavaThread "main" [_thread_in_vm, id=2048994, stack(0x00007fd5d5100000,0x00007fd5d5200000)] - 0x00007fd5d01b7e10 JavaThread "Reference Handler" daemon [_thread_blocked, id=2049005, stack(0x00007fd59c188000,0x00007fd59c288000)] - 0x00007fd5d01b9200 JavaThread "Finalizer" daemon [_thread_blocked, id=2049006, stack(0x00007fd59c088000,0x00007fd59c188000)] - 0x00007fd5d01be770 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=2049008, stack(0x00007fd58d900000,0x00007fd58da00000)] - 0x00007fd5d01bfb30 JavaThread "Service Thread" daemon [_thread_blocked, id=2049009, stack(0x00007fd58d800000,0x00007fd58d900000)] - 0x00007fd5d01c0f50 JavaThread "Monitor Deflation Thread" daemon [_thread_blocked, id=2049010, stack(0x00007fd58d700000,0x00007fd58d800000)] - 0x00007fd5d01c2990 JavaThread "C2 CompilerThread0" daemon [_thread_in_native, id=2049011, stack(0x00007fd58d600000,0x00007fd58d700000)] - 0x00007fd5d01c3ed0 JavaThread "C1 CompilerThread0" daemon [_thread_blocked, id=2049012, stack(0x00007fd58d500000,0x00007fd58d600000)] - 0x00007fd5d01c5350 JavaThread "Sweeper thread" daemon [_thread_blocked, id=2049013, stack(0x00007fd58d400000,0x00007fd58d500000)] - 0x00007fd5d01cc920 JavaThread "Notification Thread" daemon [_thread_blocked, id=2049015, stack(0x00007fd58d300000,0x00007fd58d400000)] - 0x00007fd5d01cfdc0 JavaThread "Common-Cleaner" daemon [_thread_blocked, id=2049017, stack(0x00007fd58d0ff000,0x00007fd58d1ff000)] - 0x00007fd51802d1b0 JavaThread "C1 CompilerThread1" daemon [_thread_blocked, id=2049018, stack(0x00007fd58cfff000,0x00007fd58d0ff000)] - 0x00007fd5d031c110 JavaThread "surefire-forkedjvm-stream-flusher" daemon [_thread_blocked, id=2049019, stack(0x00007fd58ceff000,0x00007fd58cfff000)] - 0x00007fd5d032c0c0 JavaThread "surefire-forkedjvm-command-thread" daemon [_thread_in_native, id=2049020, stack(0x00007fd58cdff000,0x00007fd58ceff000)] - 0x00007fd518135130 JavaThread "C2 CompilerThread1" daemon [_thread_in_native, id=2049031, stack(0x00007fd58ccff000,0x00007fd58cdff000)] - 0x00007fd50c1eeb50 JavaThread "C1 CompilerThread2" daemon [_thread_blocked, id=2049032, stack(0x00007fd58cbff000,0x00007fd58ccff000)] - -Other Threads: - 0x00007fd5d01b3e80 VMThread "VM Thread" [stack: 0x00007fd59c289000,0x00007fd59c389000] [id=2049003] - 0x00007fd5d01ce270 WatcherThread [stack: 0x00007fd58d200000,0x00007fd58d300000] [id=2049016] - 0x00007fd5d0070ce0 GCTaskThread "GC Thread#0" [stack: 0x00007fd59d648000,0x00007fd59d748000] [id=2048995] - 0x00007fd5d007ddd0 ConcurrentGCThread "G1 Main Marker" [stack: 0x00007fd59d547000,0x00007fd59d647000] [id=2048996] - 0x00007fd5d007ed40 ConcurrentGCThread "G1 Conc#0" [stack: 0x00007fd59d446000,0x00007fd59d546000] [id=2048997] - 0x00007fd5d0182f50 ConcurrentGCThread "G1 Refine#0" [stack: 0x00007fd59c638000,0x00007fd59c738000] [id=2048999] - 0x00007fd5d0183e50 ConcurrentGCThread "G1 Service" [stack: 0x00007fd59c537000,0x00007fd59c637000] [id=2049000] - -Threads with active compile tasks: -C2 CompilerThread0 320 1165 4 java.util.function.Predicate$$Lambda$90/0x00007fd54005ebe8::test (15 bytes) -C2 CompilerThread1 320 1171 4 org.junit.jupiter.engine.discovery.predicates.IsTestableMethod::test (49 bytes) - -VM state: not at safepoint (normal execution) - -VM Mutex/Monitor currently owned by a thread: None - -Heap address: 0x0000000513000000, size: 11984 MB, Compressed Oops mode: Zero based, Oop shift amount: 3 - -CDS archive(s) mapped at: [0x00007fd53f000000-0x00007fd53fbc6000-0x00007fd53fbc6000), size 12345344, SharedBaseAddress: 0x00007fd53f000000, ArchiveRelocationMode: 1. -Compressed class space mapped at: 0x00007fd540000000-0x00007fd580000000, reserved size: 1073741824 -Narrow klass base: 0x00007fd53f000000, Narrow klass shift: 0, Narrow klass range: 0x100000000 - -GC Precious Log: - CPUs: 16 total, 16 available - Memory: 47928M - Large Page Support: Disabled - NUMA Support: Disabled - Compressed Oops: Enabled (Zero based) - Heap Region Size: 8M - Heap Min Capacity: 8M - Heap Initial Capacity: 752M - Heap Max Capacity: 11984M - Pre-touch: Disabled - Parallel Workers: 13 - Concurrent Workers: 3 - Concurrent Refinement Workers: 13 - Periodic GC: Disabled - -Heap: - garbage-first heap total 786432K, used 32688K [0x0000000513000000, 0x0000000800000000) - region size 8192K, 4 young (32768K), 0 survivors (0K) - Metaspace used 6811K, committed 7040K, reserved 1114112K - class space used 866K, committed 960K, reserved 1048576K - -Heap Regions: E=young(eden), S=young(survivor), O=old, HS=humongous(starts), HC=humongous(continues), CS=collection set, F=free, OA=open archive, CA=closed archive, TAMS=top-at-mark-start (previous, next) -| 0|0x0000000513000000, 0x0000000513000000, 0x0000000513800000| 0%| F| |TAMS 0x0000000513000000, 0x0000000513000000| Untracked -| 1|0x0000000513800000, 0x0000000513800000, 0x0000000514000000| 0%| F| |TAMS 0x0000000513800000, 0x0000000513800000| Untracked -| 2|0x0000000514000000, 0x0000000514000000, 0x0000000514800000| 0%| F| |TAMS 0x0000000514000000, 0x0000000514000000| Untracked -| 3|0x0000000514800000, 0x0000000514800000, 0x0000000515000000| 0%| F| |TAMS 0x0000000514800000, 0x0000000514800000| Untracked -| 4|0x0000000515000000, 0x0000000515000000, 0x0000000515800000| 0%| F| |TAMS 0x0000000515000000, 0x0000000515000000| Untracked -| 5|0x0000000515800000, 0x0000000515800000, 0x0000000516000000| 0%| F| |TAMS 0x0000000515800000, 0x0000000515800000| Untracked -| 6|0x0000000516000000, 0x0000000516000000, 0x0000000516800000| 0%| F| |TAMS 0x0000000516000000, 0x0000000516000000| Untracked -| 7|0x0000000516800000, 0x0000000516800000, 0x0000000517000000| 0%| F| |TAMS 0x0000000516800000, 0x0000000516800000| Untracked -| 8|0x0000000517000000, 0x0000000517000000, 0x0000000517800000| 0%| F| |TAMS 0x0000000517000000, 0x0000000517000000| Untracked -| 9|0x0000000517800000, 0x0000000517800000, 0x0000000518000000| 0%| F| |TAMS 0x0000000517800000, 0x0000000517800000| Untracked -| 10|0x0000000518000000, 0x0000000518000000, 0x0000000518800000| 0%| F| |TAMS 0x0000000518000000, 0x0000000518000000| Untracked -| 11|0x0000000518800000, 0x0000000518800000, 0x0000000519000000| 0%| F| |TAMS 0x0000000518800000, 0x0000000518800000| Untracked -| 12|0x0000000519000000, 0x0000000519000000, 0x0000000519800000| 0%| F| |TAMS 0x0000000519000000, 0x0000000519000000| Untracked -| 13|0x0000000519800000, 0x0000000519800000, 0x000000051a000000| 0%| F| |TAMS 0x0000000519800000, 0x0000000519800000| Untracked -| 14|0x000000051a000000, 0x000000051a000000, 0x000000051a800000| 0%| F| |TAMS 0x000000051a000000, 0x000000051a000000| Untracked -| 15|0x000000051a800000, 0x000000051a800000, 0x000000051b000000| 0%| F| |TAMS 0x000000051a800000, 0x000000051a800000| Untracked -| 16|0x000000051b000000, 0x000000051b000000, 0x000000051b800000| 0%| F| |TAMS 0x000000051b000000, 0x000000051b000000| Untracked -| 17|0x000000051b800000, 0x000000051b800000, 0x000000051c000000| 0%| F| |TAMS 0x000000051b800000, 0x000000051b800000| Untracked -| 18|0x000000051c000000, 0x000000051c000000, 0x000000051c800000| 0%| F| |TAMS 0x000000051c000000, 0x000000051c000000| Untracked -| 19|0x000000051c800000, 0x000000051c800000, 0x000000051d000000| 0%| F| |TAMS 0x000000051c800000, 0x000000051c800000| Untracked -| 20|0x000000051d000000, 0x000000051d000000, 0x000000051d800000| 0%| F| |TAMS 0x000000051d000000, 0x000000051d000000| Untracked -| 21|0x000000051d800000, 0x000000051d800000, 0x000000051e000000| 0%| F| |TAMS 0x000000051d800000, 0x000000051d800000| Untracked -| 22|0x000000051e000000, 0x000000051e000000, 0x000000051e800000| 0%| F| |TAMS 0x000000051e000000, 0x000000051e000000| Untracked -| 23|0x000000051e800000, 0x000000051e800000, 0x000000051f000000| 0%| F| |TAMS 0x000000051e800000, 0x000000051e800000| Untracked -| 24|0x000000051f000000, 0x000000051f000000, 0x000000051f800000| 0%| F| |TAMS 0x000000051f000000, 0x000000051f000000| Untracked -| 25|0x000000051f800000, 0x000000051f800000, 0x0000000520000000| 0%| F| |TAMS 0x000000051f800000, 0x000000051f800000| Untracked -| 26|0x0000000520000000, 0x0000000520000000, 0x0000000520800000| 0%| F| |TAMS 0x0000000520000000, 0x0000000520000000| Untracked -| 27|0x0000000520800000, 0x0000000520800000, 0x0000000521000000| 0%| F| |TAMS 0x0000000520800000, 0x0000000520800000| Untracked -| 28|0x0000000521000000, 0x0000000521000000, 0x0000000521800000| 0%| F| |TAMS 0x0000000521000000, 0x0000000521000000| Untracked -| 29|0x0000000521800000, 0x0000000521800000, 0x0000000522000000| 0%| F| |TAMS 0x0000000521800000, 0x0000000521800000| Untracked -| 30|0x0000000522000000, 0x0000000522000000, 0x0000000522800000| 0%| F| |TAMS 0x0000000522000000, 0x0000000522000000| Untracked -| 31|0x0000000522800000, 0x0000000522800000, 0x0000000523000000| 0%| F| |TAMS 0x0000000522800000, 0x0000000522800000| Untracked -| 32|0x0000000523000000, 0x0000000523000000, 0x0000000523800000| 0%| F| |TAMS 0x0000000523000000, 0x0000000523000000| Untracked -| 33|0x0000000523800000, 0x0000000523800000, 0x0000000524000000| 0%| F| |TAMS 0x0000000523800000, 0x0000000523800000| Untracked -| 34|0x0000000524000000, 0x0000000524000000, 0x0000000524800000| 0%| F| |TAMS 0x0000000524000000, 0x0000000524000000| Untracked -| 35|0x0000000524800000, 0x0000000524800000, 0x0000000525000000| 0%| F| |TAMS 0x0000000524800000, 0x0000000524800000| Untracked -| 36|0x0000000525000000, 0x0000000525000000, 0x0000000525800000| 0%| F| |TAMS 0x0000000525000000, 0x0000000525000000| Untracked -| 37|0x0000000525800000, 0x0000000525800000, 0x0000000526000000| 0%| F| |TAMS 0x0000000525800000, 0x0000000525800000| Untracked -| 38|0x0000000526000000, 0x0000000526000000, 0x0000000526800000| 0%| F| |TAMS 0x0000000526000000, 0x0000000526000000| Untracked -| 39|0x0000000526800000, 0x0000000526800000, 0x0000000527000000| 0%| F| |TAMS 0x0000000526800000, 0x0000000526800000| Untracked -| 40|0x0000000527000000, 0x0000000527000000, 0x0000000527800000| 0%| F| |TAMS 0x0000000527000000, 0x0000000527000000| Untracked -| 41|0x0000000527800000, 0x0000000527800000, 0x0000000528000000| 0%| F| |TAMS 0x0000000527800000, 0x0000000527800000| Untracked -| 42|0x0000000528000000, 0x0000000528000000, 0x0000000528800000| 0%| F| |TAMS 0x0000000528000000, 0x0000000528000000| Untracked -| 43|0x0000000528800000, 0x0000000528800000, 0x0000000529000000| 0%| F| |TAMS 0x0000000528800000, 0x0000000528800000| Untracked -| 44|0x0000000529000000, 0x0000000529000000, 0x0000000529800000| 0%| F| |TAMS 0x0000000529000000, 0x0000000529000000| Untracked -| 45|0x0000000529800000, 0x0000000529800000, 0x000000052a000000| 0%| F| |TAMS 0x0000000529800000, 0x0000000529800000| Untracked -| 46|0x000000052a000000, 0x000000052a000000, 0x000000052a800000| 0%| F| |TAMS 0x000000052a000000, 0x000000052a000000| Untracked -| 47|0x000000052a800000, 0x000000052a800000, 0x000000052b000000| 0%| F| |TAMS 0x000000052a800000, 0x000000052a800000| Untracked -| 48|0x000000052b000000, 0x000000052b000000, 0x000000052b800000| 0%| F| |TAMS 0x000000052b000000, 0x000000052b000000| Untracked -| 49|0x000000052b800000, 0x000000052b800000, 0x000000052c000000| 0%| F| |TAMS 0x000000052b800000, 0x000000052b800000| Untracked -| 50|0x000000052c000000, 0x000000052c000000, 0x000000052c800000| 0%| F| |TAMS 0x000000052c000000, 0x000000052c000000| Untracked -| 51|0x000000052c800000, 0x000000052c800000, 0x000000052d000000| 0%| F| |TAMS 0x000000052c800000, 0x000000052c800000| Untracked -| 52|0x000000052d000000, 0x000000052d000000, 0x000000052d800000| 0%| F| |TAMS 0x000000052d000000, 0x000000052d000000| Untracked -| 53|0x000000052d800000, 0x000000052d800000, 0x000000052e000000| 0%| F| |TAMS 0x000000052d800000, 0x000000052d800000| Untracked -| 54|0x000000052e000000, 0x000000052e000000, 0x000000052e800000| 0%| F| |TAMS 0x000000052e000000, 0x000000052e000000| Untracked -| 55|0x000000052e800000, 0x000000052e800000, 0x000000052f000000| 0%| F| |TAMS 0x000000052e800000, 0x000000052e800000| Untracked -| 56|0x000000052f000000, 0x000000052f000000, 0x000000052f800000| 0%| F| |TAMS 0x000000052f000000, 0x000000052f000000| Untracked -| 57|0x000000052f800000, 0x000000052f800000, 0x0000000530000000| 0%| F| |TAMS 0x000000052f800000, 0x000000052f800000| Untracked -| 58|0x0000000530000000, 0x0000000530000000, 0x0000000530800000| 0%| F| |TAMS 0x0000000530000000, 0x0000000530000000| Untracked -| 59|0x0000000530800000, 0x0000000530800000, 0x0000000531000000| 0%| F| |TAMS 0x0000000530800000, 0x0000000530800000| Untracked -| 60|0x0000000531000000, 0x0000000531000000, 0x0000000531800000| 0%| F| |TAMS 0x0000000531000000, 0x0000000531000000| Untracked -| 61|0x0000000531800000, 0x0000000531800000, 0x0000000532000000| 0%| F| |TAMS 0x0000000531800000, 0x0000000531800000| Untracked -| 62|0x0000000532000000, 0x0000000532000000, 0x0000000532800000| 0%| F| |TAMS 0x0000000532000000, 0x0000000532000000| Untracked -| 63|0x0000000532800000, 0x0000000532800000, 0x0000000533000000| 0%| F| |TAMS 0x0000000532800000, 0x0000000532800000| Untracked -| 64|0x0000000533000000, 0x0000000533000000, 0x0000000533800000| 0%| F| |TAMS 0x0000000533000000, 0x0000000533000000| Untracked -| 65|0x0000000533800000, 0x0000000533800000, 0x0000000534000000| 0%| F| |TAMS 0x0000000533800000, 0x0000000533800000| Untracked -| 66|0x0000000534000000, 0x0000000534000000, 0x0000000534800000| 0%| F| |TAMS 0x0000000534000000, 0x0000000534000000| Untracked -| 67|0x0000000534800000, 0x0000000534800000, 0x0000000535000000| 0%| F| |TAMS 0x0000000534800000, 0x0000000534800000| Untracked -| 68|0x0000000535000000, 0x0000000535000000, 0x0000000535800000| 0%| F| |TAMS 0x0000000535000000, 0x0000000535000000| Untracked -| 69|0x0000000535800000, 0x0000000535800000, 0x0000000536000000| 0%| F| |TAMS 0x0000000535800000, 0x0000000535800000| Untracked -| 70|0x0000000536000000, 0x0000000536000000, 0x0000000536800000| 0%| F| |TAMS 0x0000000536000000, 0x0000000536000000| Untracked -| 71|0x0000000536800000, 0x0000000536800000, 0x0000000537000000| 0%| F| |TAMS 0x0000000536800000, 0x0000000536800000| Untracked -| 72|0x0000000537000000, 0x0000000537000000, 0x0000000537800000| 0%| F| |TAMS 0x0000000537000000, 0x0000000537000000| Untracked -| 73|0x0000000537800000, 0x0000000537800000, 0x0000000538000000| 0%| F| |TAMS 0x0000000537800000, 0x0000000537800000| Untracked -| 74|0x0000000538000000, 0x0000000538000000, 0x0000000538800000| 0%| F| |TAMS 0x0000000538000000, 0x0000000538000000| Untracked -| 75|0x0000000538800000, 0x0000000538800000, 0x0000000539000000| 0%| F| |TAMS 0x0000000538800000, 0x0000000538800000| Untracked -| 76|0x0000000539000000, 0x0000000539000000, 0x0000000539800000| 0%| F| |TAMS 0x0000000539000000, 0x0000000539000000| Untracked -| 77|0x0000000539800000, 0x0000000539800000, 0x000000053a000000| 0%| F| |TAMS 0x0000000539800000, 0x0000000539800000| Untracked -| 78|0x000000053a000000, 0x000000053a000000, 0x000000053a800000| 0%| F| |TAMS 0x000000053a000000, 0x000000053a000000| Untracked -| 79|0x000000053a800000, 0x000000053a800000, 0x000000053b000000| 0%| F| |TAMS 0x000000053a800000, 0x000000053a800000| Untracked -| 80|0x000000053b000000, 0x000000053b000000, 0x000000053b800000| 0%| F| |TAMS 0x000000053b000000, 0x000000053b000000| Untracked -| 81|0x000000053b800000, 0x000000053b800000, 0x000000053c000000| 0%| F| |TAMS 0x000000053b800000, 0x000000053b800000| Untracked -| 82|0x000000053c000000, 0x000000053c000000, 0x000000053c800000| 0%| F| |TAMS 0x000000053c000000, 0x000000053c000000| Untracked -| 83|0x000000053c800000, 0x000000053c800000, 0x000000053d000000| 0%| F| |TAMS 0x000000053c800000, 0x000000053c800000| Untracked -| 84|0x000000053d000000, 0x000000053d000000, 0x000000053d800000| 0%| F| |TAMS 0x000000053d000000, 0x000000053d000000| Untracked -| 85|0x000000053d800000, 0x000000053d800000, 0x000000053e000000| 0%| F| |TAMS 0x000000053d800000, 0x000000053d800000| Untracked -| 86|0x000000053e000000, 0x000000053e000000, 0x000000053e800000| 0%| F| |TAMS 0x000000053e000000, 0x000000053e000000| Untracked -| 87|0x000000053e800000, 0x000000053e800000, 0x000000053f000000| 0%| F| |TAMS 0x000000053e800000, 0x000000053e800000| Untracked -| 88|0x000000053f000000, 0x000000053f000000, 0x000000053f800000| 0%| F| |TAMS 0x000000053f000000, 0x000000053f000000| Untracked -| 89|0x000000053f800000, 0x000000053f800000, 0x0000000540000000| 0%| F| |TAMS 0x000000053f800000, 0x000000053f800000| Untracked -| 90|0x0000000540000000, 0x00000005400a5bc0, 0x0000000540800000| 8%| E| |TAMS 0x0000000540000000, 0x0000000540000000| Complete -| 91|0x0000000540800000, 0x0000000541000000, 0x0000000541000000|100%| E|CS|TAMS 0x0000000540800000, 0x0000000540800000| Complete -| 92|0x0000000541000000, 0x0000000541800000, 0x0000000541800000|100%| E|CS|TAMS 0x0000000541000000, 0x0000000541000000| Complete -| 93|0x0000000541800000, 0x0000000542000000, 0x0000000542000000|100%| E|CS|TAMS 0x0000000541800000, 0x0000000541800000| Complete -|1496|0x00000007ff000000, 0x00000007ff775000, 0x00000007ff800000| 93%|OA| |TAMS 0x00000007ff000000, 0x00000007ff000000| Untracked -|1497|0x00000007ff800000, 0x00000007ff877000, 0x0000000800000000| 5%|CA| |TAMS 0x00000007ff800000, 0x00000007ff800000| Untracked - -Card table byte_map: [0x00007fd5b6530000,0x00007fd5b7c98000] _byte_map_base: 0x00007fd5b3c98000 - -Marking Bits (Prev, Next): (CMBitMap*) 0x00007fd5d0071770, (CMBitMap*) 0x00007fd5d00717b0 - Prev Bits: [0x00007fd5a9288000, 0x00007fd5b4dc8000) - Next Bits: [0x00007fd59d748000, 0x00007fd5a9288000) - -Polling page: 0x00007fd5d6976000 - -Metaspace: - -Usage: - Non-class: 5.81 MB used. - Class: 866.89 KB used. - Both: 6.65 MB used. - -Virtual space: - Non-class space: 64.00 MB reserved, 5.94 MB ( 9%) committed, 1 nodes. - Class space: 1.00 GB reserved, 960.00 KB ( <1%) committed, 1 nodes. - Both: 1.06 GB reserved, 6.88 MB ( <1%) committed. - -Chunk freelists: - Non-Class: 9.23 MB - Class: 15.04 MB - Both: 24.28 MB - -MaxMetaspaceSize: unlimited -CompressedClassSpaceSize: 1.00 GB -Initial GC threshold: 21.00 MB -Current GC threshold: 21.00 MB -CDS: on -MetaspaceReclaimPolicy: balanced - - commit_granule_bytes: 65536. - - commit_granule_words: 8192. - - virtual_space_node_default_size: 8388608. - - enlarge_chunks_in_place: 1. - - new_chunks_are_fully_committed: 0. - - uncommit_free_chunks: 1. - - use_allocation_guard: 0. - - handle_deallocations: 1. - - -Internal statistics: - -num_allocs_failed_limit: 0. -num_arena_births: 118. -num_arena_deaths: 0. -num_vsnodes_births: 2. -num_vsnodes_deaths: 0. -num_space_committed: 110. -num_space_uncommitted: 0. -num_chunks_returned_to_freelist: 0. -num_chunks_taken_from_freelist: 346. -num_chunk_merges: 0. -num_chunk_splits: 190. -num_chunks_enlarged: 106. -num_inconsistent_stats: 0. - -CodeHeap 'non-profiled nmethods': size=119168Kb used=343Kb max_used=343Kb free=118825Kb - bounds [0x00007fd5c0fa0000, 0x00007fd5c1210000, 0x00007fd5c8400000] -CodeHeap 'profiled nmethods': size=119164Kb used=2917Kb max_used=2917Kb free=116246Kb - bounds [0x00007fd5b9400000, 0x00007fd5b96e0000, 0x00007fd5c085f000] -CodeHeap 'non-nmethods': size=7428Kb used=2280Kb max_used=2291Kb free=5148Kb - bounds [0x00007fd5c085f000, 0x00007fd5c0acf000, 0x00007fd5c0fa0000] - total_blobs=1840 nmethods=1410 adapters=341 - compilation: enabled - stopped_count=0, restarted_count=0 - full_count=0 - -Compilation events (20 events): -Event: 0.277 Thread 0x00007fd51802d1b0 nmethod 1399 0x00007fd5b96d2790 code [0x00007fd5b96d29a0, 0x00007fd5b96d2fc0] -Event: 0.277 Thread 0x00007fd50c1eeb50 nmethod 1398 0x00007fd5b96d3210 code [0x00007fd5b96d3480, 0x00007fd5b96d3f90] -Event: 0.310 Thread 0x00007fd51802d1b0 1408 3 java.lang.invoke.InvokerBytecodeGenerator::emitLoadInsn (21 bytes) -Event: 0.310 Thread 0x00007fd50c1eeb50 1409 3 java.lang.invoke.InvokerBytecodeGenerator::loadInsnOpcode (98 bytes) -Event: 0.310 Thread 0x00007fd5d01c3ed0 1410 3 java.lang.invoke.InvokerBytecodeGenerator::emitPushArgument (150 bytes) -Event: 0.310 Thread 0x00007fd51802d1b0 nmethod 1408 0x00007fd5b96d4310 code [0x00007fd5b96d44c0, 0x00007fd5b96d4710] -Event: 0.310 Thread 0x00007fd51802d1b0 1414 3 java.lang.invoke.LambdaForm$NamedFunction::returnType (11 bytes) -Event: 0.310 Thread 0x00007fd50c1eeb50 nmethod 1409 0x00007fd5b96d4890 code [0x00007fd5b96d4b00, 0x00007fd5b96d54f0] -Event: 0.310 Thread 0x00007fd51802d1b0 nmethod 1414 0x00007fd5b96d5810 code [0x00007fd5b96d5a00, 0x00007fd5b96d5e80] -Event: 0.310 Thread 0x00007fd5d01c3ed0 nmethod 1410 0x00007fd5b96d6090 code [0x00007fd5b96d6380, 0x00007fd5b96d7260] -Event: 0.310 Thread 0x00007fd51802d1b0 1418 3 java.lang.invoke.DirectMethodHandle::shouldBeInitialized (127 bytes) -Event: 0.310 Thread 0x00007fd50c1eeb50 1420 3 sun.invoke.util.Wrapper::isSubwordOrInt (20 bytes) -Event: 0.310 Thread 0x00007fd5d01c3ed0 1421 3 sun.invoke.util.Wrapper::isIntegral (23 bytes) -Event: 0.310 Thread 0x00007fd5d01c3ed0 nmethod 1421 0x00007fd5b96d7610 code [0x00007fd5b96d77c0, 0x00007fd5b96d7a10] -Event: 0.310 Thread 0x00007fd5d01c3ed0 1422 3 sun.invoke.util.Wrapper::isNumeric (16 bytes) -Event: 0.310 Thread 0x00007fd51802d1b0 nmethod 1418 0x00007fd5b96d7a90 code [0x00007fd5b96d7d20, 0x00007fd5b96d86f0] -Event: 0.310 Thread 0x00007fd50c1eeb50 nmethod 1420 0x00007fd5b96d8990 code [0x00007fd5b96d8b60, 0x00007fd5b96d8f70] -Event: 0.310 Thread 0x00007fd5d01c3ed0 nmethod 1422 0x00007fd5b96d9090 code [0x00007fd5b96d9220, 0x00007fd5b96d9390] -Event: 0.311 Thread 0x00007fd51802d1b0 1425 3 java.util.ImmutableCollections$ListN::size (6 bytes) -Event: 0.311 Thread 0x00007fd51802d1b0 nmethod 1425 0x00007fd5b96d9410 code [0x00007fd5b96d95a0, 0x00007fd5b96d96b0] - -GC Heap History (0 events): -No events - -Dll operation events (8 events): -Event: 0.001 Loaded shared library /usr/lib/jvm/java-17-openjdk-amd64/lib/libjava.so -Event: 0.010 Loaded shared library /usr/lib/jvm/java-17-openjdk-amd64/lib/libjsvml.so -Event: 0.018 Loaded shared library /usr/lib/jvm/java-17-openjdk-amd64/lib/libnio.so -Event: 0.019 Loaded shared library /usr/lib/jvm/java-17-openjdk-amd64/lib/libzip.so -Event: 0.039 Loaded shared library /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement.so -Event: 0.041 Loaded shared library /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement_ext.so -Event: 0.048 Loaded shared library /usr/lib/jvm/java-17-openjdk-amd64/lib/libjimage.so -Event: 0.278 Loaded shared library /usr/local/lib/libtidesdb_jni.so - -Deoptimization events (20 events): -Event: 0.238 Thread 0x00007fd5d0014510 DEOPT PACKING pc=0x00007fd5c0fe71a0 sp=0x00007fd5d51fcb40 -Event: 0.238 Thread 0x00007fd5d0014510 DEOPT UNPACKING pc=0x00007fd5c08b8b19 sp=0x00007fd5d51fca68 mode 2 -Event: 0.246 Thread 0x00007fd5d0014510 Uncommon trap: trap_request=0xffffff45 fr.pc=0x00007fd5c0fd5dfc relative=0x000000000000025c -Event: 0.246 Thread 0x00007fd5d0014510 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00007fd5c0fd5dfc method=java.util.concurrent.ConcurrentHashMap.get(Ljava/lang/Object;)Ljava/lang/Object; @ 86 c2 -Event: 0.246 Thread 0x00007fd5d0014510 DEOPT PACKING pc=0x00007fd5c0fd5dfc sp=0x00007fd5d51fca90 -Event: 0.246 Thread 0x00007fd5d0014510 DEOPT UNPACKING pc=0x00007fd5c08b8b19 sp=0x00007fd5d51fca28 mode 2 -Event: 0.257 Thread 0x00007fd5d0014510 DEOPT PACKING pc=0x00007fd5b94e0a23 sp=0x00007fd5d51fb7f0 -Event: 0.257 Thread 0x00007fd5d0014510 DEOPT UNPACKING pc=0x00007fd5c08b964f sp=0x00007fd5d51fac70 mode 0 -Event: 0.264 Thread 0x00007fd5d0014510 Uncommon trap: trap_request=0xffffff45 fr.pc=0x00007fd5c0fbe8b8 relative=0x0000000000000218 -Event: 0.264 Thread 0x00007fd5d0014510 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00007fd5c0fbe8b8 method=java.lang.String.startsWith(Ljava/lang/String;I)Z @ 1 c2 -Event: 0.264 Thread 0x00007fd5d0014510 DEOPT PACKING pc=0x00007fd5c0fbe8b8 sp=0x00007fd5d51faa50 -Event: 0.264 Thread 0x00007fd5d0014510 DEOPT UNPACKING pc=0x00007fd5c08b8b19 sp=0x00007fd5d51fa9d8 mode 2 -Event: 0.275 Thread 0x00007fd5d0014510 Uncommon trap: trap_request=0xffffff45 fr.pc=0x00007fd5c0fcede8 relative=0x0000000000000048 -Event: 0.275 Thread 0x00007fd5d0014510 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00007fd5c0fcede8 method=java.lang.CharacterData.of(I)Ljava/lang/CharacterData; @ 4 c2 -Event: 0.275 Thread 0x00007fd5d0014510 DEOPT PACKING pc=0x00007fd5c0fcede8 sp=0x00007fd5d51fb020 -Event: 0.275 Thread 0x00007fd5d0014510 DEOPT UNPACKING pc=0x00007fd5c08b8b19 sp=0x00007fd5d51fafe0 mode 2 -Event: 0.276 Thread 0x00007fd5d0014510 Uncommon trap: trap_request=0xffffff45 fr.pc=0x00007fd5c0fb60c0 relative=0x00000000000001a0 -Event: 0.276 Thread 0x00007fd5d0014510 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00007fd5c0fb60c0 method=java.lang.String.isLatin1()Z @ 10 c2 -Event: 0.276 Thread 0x00007fd5d0014510 DEOPT PACKING pc=0x00007fd5c0fb60c0 sp=0x00007fd5d51fb890 -Event: 0.276 Thread 0x00007fd5d0014510 DEOPT UNPACKING pc=0x00007fd5c08b8b19 sp=0x00007fd5d51fb7e0 mode 2 - -Classes unloaded (0 events): -No events - -Classes redefined (0 events): -No events - -Internal exceptions (20 events): -Event: 0.190 Thread 0x00007fd5d0014510 Exception (0x00000005408cf258) -thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] -Event: 0.192 Thread 0x00007fd5d0014510 Exception (0x00000005408f42c8) -thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] -Event: 0.192 Thread 0x00007fd5d0014510 Exception (0x00000005408f7c48) -thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] -Event: 0.192 Thread 0x00007fd5d0014510 Exception (0x0000000540900108) -thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] -Event: 0.199 Thread 0x00007fd5d0014510 Exception (0x00000005409873f8) -thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] -Event: 0.201 Thread 0x00007fd5d0014510 Exception (0x00000005409a7340) -thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 826] -Event: 0.201 Thread 0x00007fd5d0014510 Exception (0x00000005409a9fb8) -thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 826] -Event: 0.202 Thread 0x00007fd5d0014510 Exception (0x00000005409b3860) -thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] -Event: 0.217 Thread 0x00007fd5d0014510 Exception (0x0000000540b14b50) -thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] -Event: 0.217 Thread 0x00007fd5d0014510 Exception (0x0000000540b18478) -thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 826] -Event: 0.218 Thread 0x00007fd5d0014510 Exception (0x0000000540b37760) -thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] -Event: 0.222 Thread 0x00007fd5d0014510 Exception (0x0000000540bb0220) -thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] -Event: 0.231 Thread 0x00007fd5d0014510 Exception (0x0000000540c8db38) -thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] -Event: 0.234 Thread 0x00007fd5d0014510 Exception (0x0000000540cfdd40) -thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] -Event: 0.245 Thread 0x00007fd5d0014510 Exception (0x0000000540de3678) -thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] -Event: 0.253 Thread 0x00007fd5d0014510 Exception (0x0000000540e97460) -thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] -Event: 0.253 Thread 0x00007fd5d0014510 Exception (0x0000000540e9c018) -thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] -Event: 0.254 Thread 0x00007fd5d0014510 Exception (0x0000000540ead3e0) -thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] -Event: 0.254 Thread 0x00007fd5d0014510 Exception (0x0000000540eb11d8) -thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 826] -Event: 0.313 Thread 0x00007fd5d0014510 Exception > (0x00000005400354a8) -thrown [./src/hotspot/share/prims/jni.cpp, line 1073] - -VM Operations (20 events): -Event: 0.109 Executing VM operation: HandshakeAllThreads -Event: 0.109 Executing VM operation: HandshakeAllThreads done -Event: 0.148 Executing VM operation: HandshakeAllThreads -Event: 0.148 Executing VM operation: HandshakeAllThreads done -Event: 0.195 Executing VM operation: ICBufferFull -Event: 0.195 Executing VM operation: ICBufferFull done -Event: 0.197 Executing VM operation: HandshakeAllThreads -Event: 0.197 Executing VM operation: HandshakeAllThreads done -Event: 0.205 Executing VM operation: HandshakeAllThreads -Event: 0.205 Executing VM operation: HandshakeAllThreads done -Event: 0.227 Executing VM operation: HandshakeAllThreads -Event: 0.227 Executing VM operation: HandshakeAllThreads done -Event: 0.235 Executing VM operation: HandshakeAllThreads -Event: 0.235 Executing VM operation: HandshakeAllThreads done -Event: 0.256 Executing VM operation: HandshakeAllThreads -Event: 0.256 Executing VM operation: HandshakeAllThreads done -Event: 0.264 Executing VM operation: HandshakeAllThreads -Event: 0.264 Executing VM operation: HandshakeAllThreads done -Event: 0.275 Executing VM operation: HandshakeAllThreads -Event: 0.275 Executing VM operation: HandshakeAllThreads done - -Events (20 events): -Event: 0.271 loading class java/lang/constant/DirectMethodHandleDesc$1 -Event: 0.271 loading class java/lang/constant/DirectMethodHandleDesc$1 done -Event: 0.271 loading class java/lang/constant/PrimitiveClassDescImpl -Event: 0.271 loading class java/lang/constant/DynamicConstantDesc -Event: 0.271 loading class java/lang/constant/DynamicConstantDesc done -Event: 0.271 loading class java/lang/constant/PrimitiveClassDescImpl done -Event: 0.271 loading class java/lang/constant/DynamicConstantDesc$AnonymousDynamicConstantDesc -Event: 0.271 loading class java/lang/constant/DynamicConstantDesc$AnonymousDynamicConstantDesc done -Event: 0.272 loading class sun/nio/fs/UnixFileModeAttribute -Event: 0.272 loading class sun/nio/fs/UnixFileModeAttribute done -Event: 0.272 loading class sun/nio/fs/UnixFileModeAttribute$1 -Event: 0.272 loading class sun/nio/fs/UnixFileModeAttribute$1 done -Event: 0.272 loading class jdk/internal/reflect/UnsafeObjectFieldAccessorImpl -Event: 0.272 loading class jdk/internal/reflect/UnsafeObjectFieldAccessorImpl done -Event: 0.275 loading class java/time/format/DateTimeParseException -Event: 0.275 loading class java/time/DateTimeException -Event: 0.275 loading class java/time/DateTimeException done -Event: 0.275 loading class java/time/format/DateTimeParseException done -Event: 0.277 loading class java/lang/UnsatisfiedLinkError -Event: 0.277 loading class java/lang/UnsatisfiedLinkError done - - -Dynamic libraries: -513000000-542000000 rw-p 00000000 00:00 0 -542000000-7ff000000 ---p 00000000 00:00 0 -7ff000000-7ff700000 rw-p 00000000 00:00 0 -7ff700000-7ff775000 rw-p 00c75000 08:14 11213468 /usr/lib/jvm/java-17-openjdk-amd64/lib/server/classes.jsa -7ff775000-7ff800000 rw-p 00000000 00:00 0 -7ff800000-7ff877000 rw-p 00bfe000 08:14 11213468 /usr/lib/jvm/java-17-openjdk-amd64/lib/server/classes.jsa -7ff877000-800000000 rw-p 00000000 00:00 0 -559dee519000-559dee51a000 r--p 00000000 08:14 11213397 /usr/lib/jvm/java-17-openjdk-amd64/bin/java -559dee51a000-559dee51b000 r-xp 00001000 08:14 11213397 /usr/lib/jvm/java-17-openjdk-amd64/bin/java -559dee51b000-559dee51c000 r--p 00002000 08:14 11213397 /usr/lib/jvm/java-17-openjdk-amd64/bin/java -559dee51c000-559dee51d000 r--p 00002000 08:14 11213397 /usr/lib/jvm/java-17-openjdk-amd64/bin/java -559dee51d000-559dee51e000 rw-p 00003000 08:14 11213397 /usr/lib/jvm/java-17-openjdk-amd64/bin/java -559dee88d000-559dee8d4000 rw-p 00000000 00:00 0 [heap] -7fd4bfffe000-7fd4e0021000 rw-p 00000000 00:00 0 -7fd4e0021000-7fd4e4000000 ---p 00000000 00:00 0 -7fd4e8000000-7fd4e8021000 rw-p 00000000 00:00 0 -7fd4e8021000-7fd4ec000000 ---p 00000000 00:00 0 -7fd4ec000000-7fd4ec021000 rw-p 00000000 00:00 0 -7fd4ec021000-7fd4f0000000 ---p 00000000 00:00 0 -7fd4f0000000-7fd4f0c86000 rw-p 00000000 00:00 0 -7fd4f0c86000-7fd4f4000000 ---p 00000000 00:00 0 -7fd4f4000000-7fd4f4021000 rw-p 00000000 00:00 0 -7fd4f4021000-7fd4f8000000 ---p 00000000 00:00 0 -7fd4f8000000-7fd4f8c4f000 rw-p 00000000 00:00 0 -7fd4f8c4f000-7fd4fc000000 ---p 00000000 00:00 0 -7fd4fc000000-7fd4fc15d000 rw-p 00000000 00:00 0 -7fd4fc15d000-7fd500000000 ---p 00000000 00:00 0 -7fd500000000-7fd500021000 rw-p 00000000 00:00 0 -7fd500021000-7fd504000000 ---p 00000000 00:00 0 -7fd504000000-7fd504021000 rw-p 00000000 00:00 0 -7fd504021000-7fd508000000 ---p 00000000 00:00 0 -7fd508000000-7fd508021000 rw-p 00000000 00:00 0 -7fd508021000-7fd50c000000 ---p 00000000 00:00 0 -7fd50c000000-7fd50c2bd000 rw-p 00000000 00:00 0 -7fd50c2bd000-7fd510000000 ---p 00000000 00:00 0 -7fd510000000-7fd510021000 rw-p 00000000 00:00 0 -7fd510021000-7fd514000000 ---p 00000000 00:00 0 -7fd514000000-7fd514021000 rw-p 00000000 00:00 0 -7fd514021000-7fd518000000 ---p 00000000 00:00 0 -7fd518000000-7fd5183ab000 rw-p 00000000 00:00 0 -7fd5183ab000-7fd51c000000 ---p 00000000 00:00 0 -7fd51c000000-7fd51c021000 rw-p 00000000 00:00 0 -7fd51c021000-7fd520000000 ---p 00000000 00:00 0 -7fd520000000-7fd520021000 rw-p 00000000 00:00 0 -7fd520021000-7fd524000000 ---p 00000000 00:00 0 -7fd524000000-7fd524e02000 rw-p 00000000 00:00 0 -7fd524e02000-7fd528000000 ---p 00000000 00:00 0 -7fd528000000-7fd528021000 rw-p 00000000 00:00 0 -7fd528021000-7fd52c000000 ---p 00000000 00:00 0 -7fd52c000000-7fd52c021000 rw-p 00000000 00:00 0 -7fd52c021000-7fd530000000 ---p 00000000 00:00 0 -7fd530000000-7fd530021000 rw-p 00000000 00:00 0 -7fd530021000-7fd534000000 ---p 00000000 00:00 0 -7fd534000000-7fd534021000 rw-p 00000000 00:00 0 -7fd534021000-7fd538000000 ---p 00000000 00:00 0 -7fd538000000-7fd538021000 rw-p 00000000 00:00 0 -7fd538021000-7fd53c000000 ---p 00000000 00:00 0 -7fd53cffc000-7fd53cffd000 ---p 00000000 00:00 0 -7fd53cffd000-7fd53d7fd000 rw-p 00000000 00:00 0 -7fd53d7fd000-7fd53d7fe000 ---p 00000000 00:00 0 -7fd53d7fe000-7fd53dffe000 rw-p 00000000 00:00 0 -7fd53dffe000-7fd53dfff000 ---p 00000000 00:00 0 -7fd53dfff000-7fd53e7ff000 rw-p 00000000 00:00 0 -7fd53e7ff000-7fd53e800000 ---p 00000000 00:00 0 -7fd53e800000-7fd53f000000 rw-p 00000000 00:00 0 -7fd53f000000-7fd53fbc6000 rw-p 00001000 08:14 11213468 /usr/lib/jvm/java-17-openjdk-amd64/lib/server/classes.jsa -7fd53fbc6000-7fd540000000 ---p 00000000 00:00 0 -7fd540000000-7fd540030000 rw-p 00000000 00:00 0 -7fd540030000-7fd540070000 rw-p 00000000 00:00 0 -7fd540070000-7fd5400d0000 rw-p 00000000 00:00 0 -7fd5400d0000-7fd5400f0000 rw-p 00000000 00:00 0 -7fd5400f0000-7fd580000000 ---p 00000000 00:00 0 -7fd580000000-7fd580021000 rw-p 00000000 00:00 0 -7fd580021000-7fd584000000 ---p 00000000 00:00 0 -7fd584000000-7fd584320000 rw-p 00000000 00:00 0 -7fd584320000-7fd584400000 ---p 00000000 00:00 0 -7fd584400000-7fd5846d0000 rw-p 00000000 00:00 0 -7fd5846d0000-7fd588000000 ---p 00000000 00:00 0 -7fd588000000-7fd588021000 rw-p 00000000 00:00 0 -7fd588021000-7fd58c000000 ---p 00000000 00:00 0 -7fd58c0be000-7fd58c34a000 rw-p 00000000 00:00 0 -7fd58c34a000-7fd58c34b000 ---p 00000000 00:00 0 -7fd58c34b000-7fd58cb4b000 rw-p 00000000 00:00 0 -7fd58cb4b000-7fd58cb4f000 r--p 00000000 08:14 10908334 /usr/lib/x86_64-linux-gnu/libzstd.so.1.5.4 -7fd58cb4f000-7fd58cbed000 r-xp 00004000 08:14 10908334 /usr/lib/x86_64-linux-gnu/libzstd.so.1.5.4 -7fd58cbed000-7fd58cbfd000 r--p 000a2000 08:14 10908334 /usr/lib/x86_64-linux-gnu/libzstd.so.1.5.4 -7fd58cbfd000-7fd58cbfe000 r--p 000b1000 08:14 10908334 /usr/lib/x86_64-linux-gnu/libzstd.so.1.5.4 -7fd58cbfe000-7fd58cbff000 rw-p 000b2000 08:14 10908334 /usr/lib/x86_64-linux-gnu/libzstd.so.1.5.4 -7fd58cbff000-7fd58cc03000 ---p 00000000 00:00 0 -7fd58cc03000-7fd58ccff000 rw-p 00000000 00:00 0 -7fd58ccff000-7fd58cd03000 ---p 00000000 00:00 0 -7fd58cd03000-7fd58cdff000 rw-p 00000000 00:00 0 -7fd58cdff000-7fd58ce03000 ---p 00000000 00:00 0 -7fd58ce03000-7fd58ceff000 rw-p 00000000 00:00 0 -7fd58ceff000-7fd58cf03000 ---p 00000000 00:00 0 -7fd58cf03000-7fd58cfff000 rw-p 00000000 00:00 0 -7fd58cfff000-7fd58d003000 ---p 00000000 00:00 0 -7fd58d003000-7fd58d0ff000 rw-p 00000000 00:00 0 -7fd58d0ff000-7fd58d103000 ---p 00000000 00:00 0 -7fd58d103000-7fd58d1ff000 rw-p 00000000 00:00 0 -7fd58d1ff000-7fd58d200000 ---p 00000000 00:00 0 -7fd58d200000-7fd58d300000 rw-p 00000000 00:00 0 -7fd58d300000-7fd58d304000 ---p 00000000 00:00 0 -7fd58d304000-7fd58d400000 rw-p 00000000 00:00 0 -7fd58d400000-7fd58d404000 ---p 00000000 00:00 0 -7fd58d404000-7fd58d500000 rw-p 00000000 00:00 0 -7fd58d500000-7fd58d504000 ---p 00000000 00:00 0 -7fd58d504000-7fd58d600000 rw-p 00000000 00:00 0 -7fd58d600000-7fd58d604000 ---p 00000000 00:00 0 -7fd58d604000-7fd58d700000 rw-p 00000000 00:00 0 -7fd58d700000-7fd58d704000 ---p 00000000 00:00 0 -7fd58d704000-7fd58d800000 rw-p 00000000 00:00 0 -7fd58d800000-7fd58d804000 ---p 00000000 00:00 0 -7fd58d804000-7fd58d900000 rw-p 00000000 00:00 0 -7fd58d900000-7fd58d904000 ---p 00000000 00:00 0 -7fd58d904000-7fd58da00000 rw-p 00000000 00:00 0 -7fd58da00000-7fd58df74000 r--p 00000000 08:14 10879460 /usr/lib/locale/locale-archive -7fd58dfdd000-7fd58dfe0000 r--p 00000000 08:14 10907948 /usr/lib/x86_64-linux-gnu/liblz4.so.1.9.4 -7fd58dfe0000-7fd58dffb000 r-xp 00003000 08:14 10907948 /usr/lib/x86_64-linux-gnu/liblz4.so.1.9.4 -7fd58dffb000-7fd58dffe000 r--p 0001e000 08:14 10907948 /usr/lib/x86_64-linux-gnu/liblz4.so.1.9.4 -7fd58dffe000-7fd58dfff000 r--p 00020000 08:14 10907948 /usr/lib/x86_64-linux-gnu/liblz4.so.1.9.4 -7fd58dfff000-7fd58e000000 rw-p 00021000 08:14 10907948 /usr/lib/x86_64-linux-gnu/liblz4.so.1.9.4 -7fd58e000000-7fd590021000 rw-p 00000000 00:00 0 -7fd590021000-7fd594000000 ---p 00000000 00:00 0 -7fd594000000-7fd594021000 rw-p 00000000 00:00 0 -7fd594021000-7fd598000000 ---p 00000000 00:00 0 -7fd598000000-7fd598021000 rw-p 00000000 00:00 0 -7fd598021000-7fd59c000000 ---p 00000000 00:00 0 -7fd59c005000-7fd59c00d000 r--p 00000000 08:14 11018131 /usr/local/lib/libtidesdb.so -7fd59c00d000-7fd59c056000 r-xp 00008000 08:14 11018131 /usr/local/lib/libtidesdb.so -7fd59c056000-7fd59c064000 r--p 00051000 08:14 11018131 /usr/local/lib/libtidesdb.so -7fd59c064000-7fd59c065000 r--p 0005e000 08:14 11018131 /usr/local/lib/libtidesdb.so -7fd59c065000-7fd59c066000 rw-p 0005f000 08:14 11018131 /usr/local/lib/libtidesdb.so -7fd59c066000-7fd59c067000 rw-p 00000000 00:00 0 -7fd59c088000-7fd59c08c000 ---p 00000000 00:00 0 -7fd59c08c000-7fd59c188000 rw-p 00000000 00:00 0 -7fd59c188000-7fd59c18c000 ---p 00000000 00:00 0 -7fd59c18c000-7fd59c288000 rw-p 00000000 00:00 0 -7fd59c288000-7fd59c289000 ---p 00000000 00:00 0 -7fd59c289000-7fd59c389000 rw-p 00000000 00:00 0 -7fd59c389000-7fd59c38e000 r--p 00000000 08:14 11213452 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjsvml.so -7fd59c38e000-7fd59c3cf000 r-xp 00005000 08:14 11213452 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjsvml.so -7fd59c3cf000-7fd59c458000 r--p 00046000 08:14 11213452 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjsvml.so -7fd59c458000-7fd59c459000 r--p 000ce000 08:14 11213452 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjsvml.so -7fd59c459000-7fd59c45a000 rw-p 000cf000 08:14 11213452 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjsvml.so -7fd59c45a000-7fd59c536000 rw-p 00000000 00:00 0 -7fd59c536000-7fd59c537000 ---p 00000000 00:00 0 -7fd59c537000-7fd59c637000 rw-p 00000000 00:00 0 -7fd59c637000-7fd59c638000 ---p 00000000 00:00 0 -7fd59c638000-7fd59d445000 rw-p 00000000 00:00 0 -7fd59d445000-7fd59d446000 ---p 00000000 00:00 0 -7fd59d446000-7fd59d546000 rw-p 00000000 00:00 0 -7fd59d546000-7fd59d547000 ---p 00000000 00:00 0 -7fd59d547000-7fd59d647000 rw-p 00000000 00:00 0 -7fd59d647000-7fd59d648000 ---p 00000000 00:00 0 -7fd59d648000-7fd59e308000 rw-p 00000000 00:00 0 -7fd59e308000-7fd5a9248000 ---p 00000000 00:00 0 -7fd5a9248000-7fd5a9e48000 rw-p 00000000 00:00 0 -7fd5a9e48000-7fd5b4d88000 ---p 00000000 00:00 0 -7fd5b4d88000-7fd5b4f40000 rw-p 00000000 00:00 0 -7fd5b4f40000-7fd5b6528000 ---p 00000000 00:00 0 -7fd5b6528000-7fd5b66a8000 rw-p 00000000 00:00 0 -7fd5b66a8000-7fd5b7c90000 ---p 00000000 00:00 0 -7fd5b7c90000-7fd5b7e10000 rw-p 00000000 00:00 0 -7fd5b7e10000-7fd5b93f8000 ---p 00000000 00:00 0 -7fd5b93f8000-7fd5b9400000 rw-p 00000000 00:00 0 -7fd5b9400000-7fd5b96e0000 rwxp 00000000 00:00 0 -7fd5b96e0000-7fd5c085f000 ---p 00000000 00:00 0 -7fd5c085f000-7fd5c0acf000 rwxp 00000000 00:00 0 -7fd5c0acf000-7fd5c0fa0000 ---p 00000000 00:00 0 -7fd5c0fa0000-7fd5c1210000 rwxp 00000000 00:00 0 -7fd5c1210000-7fd5c8400000 ---p 00000000 00:00 0 -7fd5c8400000-7fd5cfe68000 r--s 00000000 08:14 11213467 /usr/lib/jvm/java-17-openjdk-amd64/lib/modules -7fd5cfe87000-7fd5cfec8000 rw-p 00000000 00:00 0 -7fd5cfed2000-7fd5cfed5000 r--p 00000000 08:14 10881736 /usr/lib/x86_64-linux-gnu/libsnappy.so.1.1.9 -7fd5cfed5000-7fd5cfeda000 r-xp 00003000 08:14 10881736 /usr/lib/x86_64-linux-gnu/libsnappy.so.1.1.9 -7fd5cfeda000-7fd5cfedb000 r--p 00008000 08:14 10881736 /usr/lib/x86_64-linux-gnu/libsnappy.so.1.1.9 -7fd5cfedb000-7fd5cfedc000 r--p 00009000 08:14 10881736 /usr/lib/x86_64-linux-gnu/libsnappy.so.1.1.9 -7fd5cfedc000-7fd5cfedd000 rw-p 0000a000 08:14 10881736 /usr/lib/x86_64-linux-gnu/libsnappy.so.1.1.9 -7fd5cfedd000-7fd5cfee0000 r--p 00000000 08:14 11022710 /usr/local/lib/libtidesdb_jni.so -7fd5cfee0000-7fd5cfee4000 r-xp 00003000 08:14 11022710 /usr/local/lib/libtidesdb_jni.so -7fd5cfee4000-7fd5cfee5000 r--p 00007000 08:14 11022710 /usr/local/lib/libtidesdb_jni.so -7fd5cfee5000-7fd5cfee6000 r--p 00007000 08:14 11022710 /usr/local/lib/libtidesdb_jni.so -7fd5cfee6000-7fd5cfee7000 rw-p 00008000 08:14 11022710 /usr/local/lib/libtidesdb_jni.so -7fd5cfee7000-7fd5cfeeb000 r--p 00000000 08:14 11213458 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnet.so -7fd5cfeeb000-7fd5cfef9000 r-xp 00004000 08:14 11213458 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnet.so -7fd5cfef9000-7fd5cfefd000 r--p 00012000 08:14 11213458 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnet.so -7fd5cfefd000-7fd5cfefe000 r--p 00015000 08:14 11213458 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnet.so -7fd5cfefe000-7fd5cfeff000 rw-p 00016000 08:14 11213458 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnet.so -7fd5cfeff000-7fd5d3fa5000 rw-p 00000000 00:00 0 -7fd5d3fa5000-7fd5d4000000 ---p 00000000 00:00 0 -7fd5d4003000-7fd5d4005000 r--p 00000000 08:14 11213456 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement_ext.so -7fd5d4005000-7fd5d4008000 r-xp 00002000 08:14 11213456 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement_ext.so -7fd5d4008000-7fd5d400a000 r--p 00005000 08:14 11213456 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement_ext.so -7fd5d400a000-7fd5d400b000 r--p 00006000 08:14 11213456 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement_ext.so -7fd5d400b000-7fd5d400c000 rw-p 00007000 08:14 11213456 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement_ext.so -7fd5d400c000-7fd5d4013000 r--p 00000000 08:14 11213459 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnio.so -7fd5d4013000-7fd5d401c000 r-xp 00007000 08:14 11213459 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnio.so -7fd5d401c000-7fd5d4020000 r--p 00010000 08:14 11213459 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnio.so -7fd5d4020000-7fd5d4021000 r--p 00014000 08:14 11213459 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnio.so -7fd5d4021000-7fd5d4022000 rw-p 00015000 08:14 11213459 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnio.so -7fd5d4022000-7fd5d4c33000 rw-p 00000000 00:00 0 -7fd5d4c33000-7fd5d4d17000 ---p 00000000 00:00 0 -7fd5d4d17000-7fd5d4d1d000 rw-p 00000000 00:00 0 -7fd5d4d1d000-7fd5d4e00000 ---p 00000000 00:00 0 -7fd5d4e00000-7fd5d4e9c000 r--p 00000000 08:14 10888123 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.32 -7fd5d4e9c000-7fd5d4fcd000 r-xp 0009c000 08:14 10888123 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.32 -7fd5d4fcd000-7fd5d505a000 r--p 001cd000 08:14 10888123 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.32 -7fd5d505a000-7fd5d5065000 r--p 0025a000 08:14 10888123 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.32 -7fd5d5065000-7fd5d5068000 rw-p 00265000 08:14 10888123 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.32 -7fd5d5068000-7fd5d506c000 rw-p 00000000 00:00 0 -7fd5d5070000-7fd5d5100000 rw-p 00000000 00:00 0 -7fd5d5100000-7fd5d5104000 ---p 00000000 00:00 0 -7fd5d5104000-7fd5d5200000 rw-p 00000000 00:00 0 -7fd5d5200000-7fd5d5451000 r--p 00000000 08:14 11213471 /usr/lib/jvm/java-17-openjdk-amd64/lib/server/libjvm.so -7fd5d5451000-7fd5d61b3000 r-xp 00251000 08:14 11213471 /usr/lib/jvm/java-17-openjdk-amd64/lib/server/libjvm.so -7fd5d61b3000-7fd5d6433000 r--p 00fb3000 08:14 11213471 /usr/lib/jvm/java-17-openjdk-amd64/lib/server/libjvm.so -7fd5d6433000-7fd5d64eb000 r--p 01233000 08:14 11213471 /usr/lib/jvm/java-17-openjdk-amd64/lib/server/libjvm.so -7fd5d64eb000-7fd5d6520000 rw-p 012eb000 08:14 11213471 /usr/lib/jvm/java-17-openjdk-amd64/lib/server/libjvm.so -7fd5d6520000-7fd5d657a000 rw-p 00000000 00:00 0 -7fd5d657b000-7fd5d65d9000 rw-p 00000000 00:00 0 -7fd5d65d9000-7fd5d65e5000 r--p 00000000 08:14 11213445 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjava.so -7fd5d65e5000-7fd5d65f7000 r-xp 0000c000 08:14 11213445 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjava.so -7fd5d65f7000-7fd5d65fd000 r--p 0001e000 08:14 11213445 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjava.so -7fd5d65fd000-7fd5d65fe000 r--p 00023000 08:14 11213445 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjava.so -7fd5d65fe000-7fd5d65ff000 rw-p 00024000 08:14 11213445 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjava.so -7fd5d65ff000-7fd5d6600000 rw-p 00000000 00:00 0 -7fd5d6600000-7fd5d6622000 r--p 00000000 08:14 10888103 /usr/lib/x86_64-linux-gnu/libc.so.6 -7fd5d6622000-7fd5d679a000 r-xp 00022000 08:14 10888103 /usr/lib/x86_64-linux-gnu/libc.so.6 -7fd5d679a000-7fd5d67f2000 r--p 0019a000 08:14 10888103 /usr/lib/x86_64-linux-gnu/libc.so.6 -7fd5d67f2000-7fd5d67f6000 r--p 001f1000 08:14 10888103 /usr/lib/x86_64-linux-gnu/libc.so.6 -7fd5d67f6000-7fd5d67f8000 rw-p 001f5000 08:14 10888103 /usr/lib/x86_64-linux-gnu/libc.so.6 -7fd5d67f8000-7fd5d6805000 rw-p 00000000 00:00 0 -7fd5d6805000-7fd5d680c000 r--s 00000000 08:14 10965240 /usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache -7fd5d680c000-7fd5d680e000 r--p 00000000 08:14 11213454 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement.so -7fd5d680e000-7fd5d680f000 r-xp 00002000 08:14 11213454 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement.so -7fd5d680f000-7fd5d6810000 r--p 00003000 08:14 11213454 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement.so -7fd5d6810000-7fd5d6811000 r--p 00003000 08:14 11213454 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement.so -7fd5d6811000-7fd5d6812000 rw-p 00004000 08:14 11213454 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement.so -7fd5d6812000-7fd5d6817000 rw-p 00000000 00:00 0 -7fd5d6817000-7fd5d6821000 ---p 00000000 00:00 0 -7fd5d6821000-7fd5d6824000 r--p 00000000 08:14 10888119 /usr/lib/x86_64-linux-gnu/libgcc_s.so.1 -7fd5d6824000-7fd5d683f000 r-xp 00003000 08:14 10888119 /usr/lib/x86_64-linux-gnu/libgcc_s.so.1 -7fd5d683f000-7fd5d6843000 r--p 0001e000 08:14 10888119 /usr/lib/x86_64-linux-gnu/libgcc_s.so.1 -7fd5d6843000-7fd5d6844000 r--p 00021000 08:14 10888119 /usr/lib/x86_64-linux-gnu/libgcc_s.so.1 -7fd5d6844000-7fd5d6845000 rw-p 00022000 08:14 10888119 /usr/lib/x86_64-linux-gnu/libgcc_s.so.1 -7fd5d6845000-7fd5d6853000 r--p 00000000 08:14 10888109 /usr/lib/x86_64-linux-gnu/libm.so.6 -7fd5d6853000-7fd5d68d1000 r-xp 0000e000 08:14 10888109 /usr/lib/x86_64-linux-gnu/libm.so.6 -7fd5d68d1000-7fd5d692c000 r--p 0008c000 08:14 10888109 /usr/lib/x86_64-linux-gnu/libm.so.6 -7fd5d692c000-7fd5d692d000 r--p 000e6000 08:14 10888109 /usr/lib/x86_64-linux-gnu/libm.so.6 -7fd5d692d000-7fd5d692e000 rw-p 000e7000 08:14 10888109 /usr/lib/x86_64-linux-gnu/libm.so.6 -7fd5d692e000-7fd5d6931000 rw-p 00000000 00:00 0 -7fd5d6931000-7fd5d6933000 r--p 00000000 08:14 11213449 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjli.so -7fd5d6933000-7fd5d693d000 r-xp 00002000 08:14 11213449 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjli.so -7fd5d693d000-7fd5d6940000 r--p 0000c000 08:14 11213449 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjli.so -7fd5d6940000-7fd5d6941000 r--p 0000e000 08:14 11213449 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjli.so -7fd5d6941000-7fd5d6942000 rw-p 0000f000 08:14 11213449 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjli.so -7fd5d6942000-7fd5d6945000 r--p 00000000 08:14 10908333 /usr/lib/x86_64-linux-gnu/libz.so.1.2.13 -7fd5d6945000-7fd5d6957000 r-xp 00003000 08:14 10908333 /usr/lib/x86_64-linux-gnu/libz.so.1.2.13 -7fd5d6957000-7fd5d695e000 r--p 00015000 08:14 10908333 /usr/lib/x86_64-linux-gnu/libz.so.1.2.13 -7fd5d695e000-7fd5d695f000 r--p 0001b000 08:14 10908333 /usr/lib/x86_64-linux-gnu/libz.so.1.2.13 -7fd5d695f000-7fd5d6960000 rw-p 0001c000 08:14 10908333 /usr/lib/x86_64-linux-gnu/libz.so.1.2.13 -7fd5d6963000-7fd5d6965000 r--p 00000000 08:14 11213466 /usr/lib/jvm/java-17-openjdk-amd64/lib/libzip.so -7fd5d6965000-7fd5d696a000 r-xp 00002000 08:14 11213466 /usr/lib/jvm/java-17-openjdk-amd64/lib/libzip.so -7fd5d696a000-7fd5d696c000 r--p 00007000 08:14 11213466 /usr/lib/jvm/java-17-openjdk-amd64/lib/libzip.so -7fd5d696c000-7fd5d696d000 r--p 00008000 08:14 11213466 /usr/lib/jvm/java-17-openjdk-amd64/lib/libzip.so -7fd5d696d000-7fd5d696e000 rw-p 00009000 08:14 11213466 /usr/lib/jvm/java-17-openjdk-amd64/lib/libzip.so -7fd5d696e000-7fd5d6976000 rw-s 00000000 08:14 18885538 /tmp/hsperfdata_agpmastersystem/2048993 -7fd5d6976000-7fd5d6977000 ---p 00000000 00:00 0 -7fd5d6977000-7fd5d6978000 r--p 00000000 00:00 0 -7fd5d6978000-7fd5d6979000 ---p 00000000 00:00 0 -7fd5d6979000-7fd5d697b000 r--p 00000000 08:14 11213448 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjimage.so -7fd5d697b000-7fd5d697e000 r-xp 00002000 08:14 11213448 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjimage.so -7fd5d697e000-7fd5d697f000 r--p 00005000 08:14 11213448 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjimage.so -7fd5d697f000-7fd5d6980000 r--p 00006000 08:14 11213448 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjimage.so -7fd5d6980000-7fd5d6981000 rw-p 00007000 08:14 11213448 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjimage.so -7fd5d6981000-7fd5d6983000 rw-p 00000000 00:00 0 -7fd5d6983000-7fd5d6984000 r--p 00000000 08:14 10887950 /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2 -7fd5d6984000-7fd5d69ac000 r-xp 00001000 08:14 10887950 /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2 -7fd5d69ac000-7fd5d69b6000 r--p 00029000 08:14 10887950 /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2 -7fd5d69b6000-7fd5d69b8000 r--p 00033000 08:14 10887950 /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2 -7fd5d69b8000-7fd5d69ba000 rw-p 00035000 08:14 10887950 /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2 -7fff63bfe000-7fff63c20000 rw-p 00000000 00:00 0 [stack] -7fff63cb8000-7fff63cbc000 r--p 00000000 00:00 0 [vvar] -7fff63cbc000-7fff63cbe000 r-xp 00000000 00:00 0 [vdso] -ffffffffff600000-ffffffffff601000 --xp 00000000 00:00 0 [vsyscall] - - -VM Arguments: -jvm_args: -Djava.library.path=/usr/local/lib -java_command: /home/agpmastersystem/bnd/tidesdb-java/target/surefire/surefirebooter-20260313005533920_3.jar /home/agpmastersystem/bnd/tidesdb-java/target/surefire 2026-03-13T00-55-33_849-jvmRun1 surefire-20260313005533920_1tmp surefire_0-20260313005533920_2tmp -java_class_path (initial): /home/agpmastersystem/bnd/tidesdb-java/target/surefire/surefirebooter-20260313005533920_3.jar -Launcher Type: SUN_STANDARD - -[Global flags] - intx CICompilerCount = 12 {product} {ergonomic} - uint ConcGCThreads = 3 {product} {ergonomic} - uint G1ConcRefinementThreads = 13 {product} {ergonomic} - size_t G1HeapRegionSize = 8388608 {product} {ergonomic} - uintx GCDrainStackTargetSize = 64 {product} {ergonomic} - size_t InitialHeapSize = 788529152 {product} {ergonomic} - size_t MarkStackSize = 4194304 {product} {ergonomic} - size_t MaxHeapSize = 12566134784 {product} {ergonomic} - size_t MaxNewSize = 7532969984 {product} {ergonomic} - size_t MinHeapDeltaBytes = 8388608 {product} {ergonomic} - size_t MinHeapSize = 8388608 {product} {ergonomic} - uintx NonNMethodCodeHeapSize = 7602480 {pd product} {ergonomic} - uintx NonProfiledCodeHeapSize = 122027880 {pd product} {ergonomic} - uintx ProfiledCodeHeapSize = 122027880 {pd product} {ergonomic} - uintx ReservedCodeCacheSize = 251658240 {pd product} {ergonomic} - bool SegmentedCodeCache = true {product} {ergonomic} - size_t SoftMaxHeapSize = 12566134784 {manageable} {ergonomic} - bool UseCompressedClassPointers = true {product lp64_product} {ergonomic} - bool UseCompressedOops = true {product lp64_product} {ergonomic} - bool UseG1GC = true {product} {ergonomic} - -Logging: -Log output configuration: - #0: stdout all=warning uptime,level,tags - #1: stderr all=off uptime,level,tags - -Environment Variables: -PATH=/home/agpmastersystem/bin:/home/agpmastersystem/flutter/flutter/bin:/home/agpmastersystem/flutter/flutter/bin:/home/agpmastersystem/development/flutter/bin:/home/agpmastersystem/.local/bin:/home/agpmastersystem/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin:/home/agpmastersystem/.dotnet/tools:/home/agpmastersystem/.dotnet/tools:/home/agpmastersystem/julia-1.10.0/bin:/opt/zig/zig-linux-x86_64-0.13.0 -USERNAME=agpmastersystem -SHELL=/bin/bash -DISPLAY=:1 -LANG=en_US.UTF-8 -TERM=xterm-256color - -Active Locale: -LC_ALL=en_US.UTF-8 -LC_COLLATE=en_US.UTF-8 -LC_CTYPE=en_US.UTF-8 -LC_MESSAGES=en_US.UTF-8 -LC_MONETARY=en_US.UTF-8 -LC_NUMERIC=en_US.UTF-8 -LC_TIME=en_US.UTF-8 - -Signal Handlers: - SIGSEGV: crash_handler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, unblocked - SIGBUS: crash_handler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, unblocked - SIGFPE: crash_handler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, unblocked - SIGPIPE: javaSignalHandler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, blocked - SIGXFSZ: javaSignalHandler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, blocked - SIGILL: crash_handler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, unblocked - SIGUSR2: SR_handler in libjvm.so, mask=00000000000000000000000000000000, flags=SA_RESTART|SA_SIGINFO, blocked - SIGHUP: UserHandler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, blocked - SIGINT: UserHandler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, blocked - SIGTERM: UserHandler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, blocked - SIGQUIT: UserHandler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, blocked - SIGTRAP: crash_handler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, unblocked - - -Periodic native trim disabled - - ---------------- S Y S T E M --------------- - -OS: -DISTRIB_ID=Ubuntu -DISTRIB_RELEASE=23.04 -DISTRIB_CODENAME=lunar -DISTRIB_DESCRIPTION="Ubuntu 23.04" -uname: Linux 6.2.0-39-generic #40-Ubuntu SMP PREEMPT_DYNAMIC Tue Nov 14 14:18:00 UTC 2023 x86_64 -OS uptime: 8 days 10:11 hours -libc: glibc 2.37 NPTL 2.37 -rlimit (soft/hard): STACK 8192k/infinity , CORE 0k/infinity , NPROC 191244/191244 , NOFILE 1048576/1048576 , AS infinity/infinity , CPU infinity/infinity , DATA infinity/infinity , FSIZE infinity/infinity , MEMLOCK 6134892k/6134892k -load average: 9.14 6.28 6.96 - -/proc/meminfo: -MemTotal: 49079140 kB -MemFree: 486224 kB -MemAvailable: 21208312 kB -Buffers: 2057320 kB -Cached: 18530208 kB -SwapCached: 93336 kB -Active: 14683080 kB -Inactive: 31289092 kB -Active(anon): 2692248 kB -Inactive(anon): 23299044 kB -Active(file): 11990832 kB -Inactive(file): 7990048 kB -Unevictable: 1668 kB -Mlocked: 264 kB -SwapTotal: 8388604 kB -SwapFree: 5683452 kB -Zswap: 0 kB -Zswapped: 0 kB -Dirty: 2852 kB -Writeback: 0 kB -AnonPages: 25330160 kB -Mapped: 1259560 kB -Shmem: 606640 kB -KReclaimable: 1337684 kB -Slab: 1840348 kB -SReclaimable: 1337684 kB -SUnreclaim: 502664 kB -KernelStack: 44568 kB -PageTables: 183668 kB -SecPageTables: 0 kB -NFS_Unstable: 0 kB -Bounce: 0 kB -WritebackTmp: 0 kB -CommitLimit: 32928172 kB -Committed_AS: 89715620 kB -VmallocTotal: 34359738367 kB -VmallocUsed: 163524 kB -VmallocChunk: 0 kB -Percpu: 18176 kB -HardwareCorrupted: 0 kB -AnonHugePages: 10240 kB -ShmemHugePages: 2048 kB -ShmemPmdMapped: 0 kB -FileHugePages: 0 kB -FilePmdMapped: 0 kB -HugePages_Total: 0 -HugePages_Free: 0 -HugePages_Rsvd: 0 -HugePages_Surp: 0 -Hugepagesize: 2048 kB -Hugetlb: 0 kB -DirectMap4k: 2126020 kB -DirectMap2M: 41670656 kB -DirectMap1G: 7340032 kB - -/sys/kernel/mm/transparent_hugepage/enabled: always [madvise] never -/sys/kernel/mm/transparent_hugepage/defrag (defrag/compaction efforts parameter): always defer defer+madvise [madvise] never - -Process Memory: -Virtual Size: 16753356K (peak: 16753356K) -Resident Set Size: 185496K (peak: 185496K) (anon: 162452K, file: 23044K, shmem: 0K) -Swapped out: 0K -C-Heap outstanding allocations: 664549K, retained: 6570K -glibc malloc tunables: (default) - -/proc/sys/kernel/threads-max (system-wide limit on the number of threads): 382489 -/proc/sys/vm/max_map_count (maximum number of memory map areas a process may have): 65530 -/proc/sys/kernel/pid_max (system-wide limit on number of process identifiers): 4194304 - -container (cgroup) information: -container_type: cgroupv2 -cpu_cpuset_cpus: not supported -cpu_memory_nodes: not supported -active_processor_count: 16 -cpu_quota: not supported -cpu_period: not supported -cpu_shares: not supported -memory_limit_in_bytes: unlimited -memory_and_swap_limit_in_bytes: unlimited -memory_soft_limit_in_bytes: unlimited -memory_usage_in_bytes: 20302984 k -memory_max_usage_in_bytes: not supported -memory_swap_current_in_bytes: 661184 k -memory_swap_max_limit_in_bytes: unlimited -maximum number of tasks: 57373 -current number of tasks: 684 - -Steal ticks since vm start: 0 -Steal ticks percentage since vm start: 0.000 - -CPU: total 16 (initial active 16) (8 cores per cpu, 2 threads per core) family 6 model 167 stepping 1 microcode 0x5d, cx8, cmov, fxsr, ht, mmx, 3dnowpref, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, lzcnt, tsc, tscinvbit, avx, avx2, aes, erms, clmul, bmi1, bmi2, adx, avx512f, avx512dq, avx512cd, avx512bw, avx512vl, sha, fma, vzeroupper, avx512_vpopcntdq, avx512_vpclmulqdq, avx512_vaes, avx512_vnni, clflush, clflushopt, avx512_vbmi2, avx512_vbmi -CPU Model and flags from /proc/cpuinfo: -model name : 11th Gen Intel(R) Core(TM) i7-11700K @ 3.60GHz -flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid mpx avx512f avx512dq rdseed adx smap avx512ifma clflushopt intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp hwp_pkg_req avx512vbmi umip pku ospke avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg avx512_vpopcntdq rdpid fsrm md_clear flush_l1d arch_capabilities - -Online cpus: 0-15 -Offline cpus: -BIOS frequency limitation: -Frequency switch latency (ns): 0 -Available cpu frequencies: -Current governor: powersave -Core performance/turbo boost: - -Memory: 4k page, physical 49079140k(486712k free), swap 8388604k(5683452k free) -Page Sizes: 4k - -vm_info: OpenJDK 64-Bit Server VM (17.0.9+9-Ubuntu-123.04) for linux-amd64 JRE (17.0.9+9-Ubuntu-123.04), built on Oct 19 2023 08:33:16 by "buildd" with gcc 12.3.0 - -END. diff --git a/hs_err_pid2050292.log b/hs_err_pid2050292.log deleted file mode 100644 index 662ae99..0000000 --- a/hs_err_pid2050292.log +++ /dev/null @@ -1,1238 +0,0 @@ -# -# A fatal error has been detected by the Java Runtime Environment: -# -# SIGSEGV (0xb) at pc=0x00007f70f40d79e8, pid=2050292, tid=2050293 -# -# JRE version: OpenJDK Runtime Environment (17.0.9+9) (build 17.0.9+9-Ubuntu-123.04) -# Java VM: OpenJDK 64-Bit Server VM (17.0.9+9-Ubuntu-123.04, mixed mode, sharing, tiered, compressed oops, compressed class ptrs, g1 gc, linux-amd64) -# Problematic frame: -# V [libjvm.so+0x8d79e8] jni_NewObject+0x128 -# -# Core dump will be written. Default location: Core dumps may be processed with "/usr/share/apport/apport -p%p -s%s -c%c -d%d -P%P -u%u -g%g -- %E" (or dumping to /home/agpmastersystem/bnd/tidesdb-java/core.2050292) -# -# If you would like to submit a bug report, please visit: -# Unknown -# - ---------------- S U M M A R Y ------------ - -Command Line: -Djava.library.path=/usr/local/lib /home/agpmastersystem/bnd/tidesdb-java/target/surefire/surefirebooter-20260313005825693_3.jar /home/agpmastersystem/bnd/tidesdb-java/target/surefire 2026-03-13T00-58-25_630-jvmRun1 surefire-20260313005825693_1tmp surefire_0-20260313005825693_2tmp - -Host: 11th Gen Intel(R) Core(TM) i7-11700K @ 3.60GHz, 16 cores, 46G, Ubuntu 23.04 -Time: Fri Mar 13 00:58:26 2026 EDT elapsed time: 0.332531 seconds (0d 0h 0m 0s) - ---------------- T H R E A D --------------- - -Current thread (0x00007f70ec014510): JavaThread "main" [_thread_in_vm, id=2050293, stack(0x00007f70f3700000,0x00007f70f3800000)] - -Stack: [0x00007f70f3700000,0x00007f70f3800000], sp=0x00007f70f37fb9b0, free space=1006k -Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code) -V [libjvm.so+0x8d79e8] jni_NewObject+0x128 -C [libtidesdb_jni.so+0x68a4] Java_com_tidesdb_TidesDB_nativeGetDbStats+0x1db -j com.tidesdb.TidesDB.nativeGetDbStats(J)Lcom/tidesdb/DbStats;+0 -j com.tidesdb.TidesDB.getDbStats()Lcom/tidesdb/DbStats;+8 -j com.tidesdb.TidesDBTest.testGetDbStats()V+179 -v ~StubRoutines::call_stub -V [libjvm.so+0x836d12] JavaCalls::call_helper(JavaValue*, methodHandle const&, JavaCallArguments*, JavaThread*)+0x302 -V [libjvm.so+0xcc5dbc] invoke(InstanceKlass*, methodHandle const&, Handle, bool, objArrayHandle, BasicType, objArrayHandle, bool, JavaThread*) [clone .constprop.0]+0x74c -V [libjvm.so+0xcc6af8] Reflection::invoke_method(oopDesc*, Handle, objArrayHandle, JavaThread*)+0x138 -V [libjvm.so+0x90daa4] JVM_InvokeMethod+0x144 -j jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+0 java.base@17.0.9 -j jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+133 java.base@17.0.9 -j jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+6 java.base@17.0.9 -j java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+59 java.base@17.0.9 -j org.junit.platform.commons.util.ReflectionUtils.invokeMethod(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+42 -j org.junit.jupiter.engine.execution.MethodInvocation.proceed()Ljava/lang/Object;+16 -j org.junit.jupiter.engine.execution.InvocationInterceptorChain$ValidatingInvocation.proceed()Ljava/lang/Object;+8 -j org.junit.jupiter.engine.extension.TimeoutExtension.intercept(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/extension/TimeoutDuration;Lorg/junit/jupiter/engine/extension/TimeoutExtension$TimeoutProvider;)Ljava/lang/Object;+28 -j org.junit.jupiter.engine.extension.TimeoutExtension.interceptTestableMethod(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/extension/TimeoutExtension$TimeoutProvider;)Ljava/lang/Object;+31 -j org.junit.jupiter.engine.extension.TimeoutExtension.interceptTestMethod(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;)V+9 -j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor$$Lambda$186+0x00007f706408e318.apply(Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;)V+5 -j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker$ReflectiveInterceptorCall.lambda$ofVoidMethod$0(Lorg/junit/jupiter/engine/execution/InterceptingExecutableInvoker$ReflectiveInterceptorCall$VoidMethodInterceptorCall;Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;)Ljava/lang/Void;+6 -j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker$ReflectiveInterceptorCall$$Lambda$187+0x00007f706408e738.apply(Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;)Ljava/lang/Object;+9 -j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.lambda$invoke$0(Lorg/junit/jupiter/engine/execution/InterceptingExecutableInvoker$ReflectiveInterceptorCall;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;)Ljava/lang/Object;+6 -j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker$$Lambda$392+0x00007f70640c7378.apply(Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;)Ljava/lang/Object;+14 -j org.junit.jupiter.engine.execution.InvocationInterceptorChain$InterceptedInvocation.proceed()Ljava/lang/Object;+12 -j org.junit.jupiter.engine.execution.InvocationInterceptorChain.proceed(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;)Ljava/lang/Object;+1 -j org.junit.jupiter.engine.execution.InvocationInterceptorChain.chainAndInvoke(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/engine/execution/InvocationInterceptorChain$InterceptorCall;Ljava/util/List;)Ljava/lang/Object;+24 -j org.junit.jupiter.engine.execution.InvocationInterceptorChain.invoke(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/engine/extension/ExtensionRegistry;Lorg/junit/jupiter/engine/execution/InvocationInterceptorChain$InterceptorCall;)Ljava/lang/Object;+31 -j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.invoke(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/extension/ExtensionRegistry;Lorg/junit/jupiter/engine/execution/InterceptingExecutableInvoker$ReflectiveInterceptorCall;)Ljava/lang/Object;+15 -j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.invoke(Ljava/lang/reflect/Method;Ljava/lang/Object;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/extension/ExtensionRegistry;Lorg/junit/jupiter/engine/execution/InterceptingExecutableInvoker$ReflectiveInterceptorCall;)Ljava/lang/Object;+55 -j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.lambda$invokeTestMethod$7(Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/execution/JupiterEngineExecutionContext;)V+28 -j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor$$Lambda$427+0x00007f70640cc300.execute()V+12 -j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 -j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.invokeTestMethod(Lorg/junit/jupiter/engine/execution/JupiterEngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$DynamicTestExecutor;)V+21 -j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.execute(Lorg/junit/jupiter/engine/execution/JupiterEngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$DynamicTestExecutor;)Lorg/junit/jupiter/engine/execution/JupiterEngineExecutionContext;+44 -j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.execute(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$DynamicTestExecutor;)Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;+6 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6()V+79 -j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$317+0x00007f70640b7038.execute()V+4 -j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+15 -j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$316+0x00007f70640b6e10.invoke(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+5 -j org.junit.platform.engine.support.hierarchical.Node.around(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$Invocation;)V+2 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9()V+14 -j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$315+0x00007f70640b69e8.execute()V+4 -j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively()V+31 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.execute()V+55 -j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService$$Lambda$321+0x00007f70640b7b50.accept(Ljava/lang/Object;)V+4 -j java.util.ArrayList.forEach(Ljava/util/function/Consumer;)V+46 java.base@17.0.9 -j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(Ljava/util/List;)V+6 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6()V+116 -j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$317+0x00007f70640b7038.execute()V+4 -j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+15 -j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$316+0x00007f70640b6e10.invoke(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+5 -j org.junit.platform.engine.support.hierarchical.Node.around(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$Invocation;)V+2 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9()V+14 -j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$315+0x00007f70640b69e8.execute()V+4 -j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively()V+31 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.execute()V+55 -j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService$$Lambda$321+0x00007f70640b7b50.accept(Ljava/lang/Object;)V+4 -j java.util.ArrayList.forEach(Ljava/util/function/Consumer;)V+46 java.base@17.0.9 -j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(Ljava/util/List;)V+6 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6()V+116 -j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$317+0x00007f70640b7038.execute()V+4 -j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+15 -j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$316+0x00007f70640b6e10.invoke(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+5 -j org.junit.platform.engine.support.hierarchical.Node.around(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$Invocation;)V+2 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9()V+14 -j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$315+0x00007f70640b69e8.execute()V+4 -j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively()V+31 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.execute()V+55 -j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.submit(Lorg/junit/platform/engine/support/hierarchical/HierarchicalTestExecutorService$TestTask;)Ljava/util/concurrent/Future;+1 -j org.junit.platform.engine.support.hierarchical.HierarchicalTestExecutor.execute()Ljava/util/concurrent/Future;+74 -j org.junit.platform.engine.support.hierarchical.HierarchicalTestEngine.execute(Lorg/junit/platform/engine/ExecutionRequest;)V+31 -j org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(Lorg/junit/platform/engine/TestDescriptor;Lorg/junit/platform/engine/EngineExecutionListener;Lorg/junit/platform/engine/ConfigurationParameters;Lorg/junit/platform/engine/TestEngine;)V+24 -j org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(Lorg/junit/platform/launcher/core/LauncherDiscoveryResult;Lorg/junit/platform/engine/EngineExecutionListener;)V+115 -j org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(Lorg/junit/platform/launcher/core/InternalTestPlan;Lorg/junit/platform/engine/EngineExecutionListener;Lorg/junit/platform/launcher/TestExecutionListener;)V+55 -j org.junit.platform.launcher.core.EngineExecutionOrchestrator.lambda$execute$0(Lorg/junit/platform/launcher/core/InternalTestPlan;Lorg/junit/platform/launcher/TestExecutionListener;)V+6 -j org.junit.platform.launcher.core.EngineExecutionOrchestrator$$Lambda$271+0x00007f70640a4238.accept(Ljava/lang/Object;)V+12 -j org.junit.platform.launcher.core.EngineExecutionOrchestrator.withInterceptedStreams(Lorg/junit/platform/engine/ConfigurationParameters;Lorg/junit/platform/launcher/core/ListenerRegistry;Ljava/util/function/Consumer;)V+51 -j org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(Lorg/junit/platform/launcher/core/InternalTestPlan;[Lorg/junit/platform/launcher/TestExecutionListener;)V+23 -j org.junit.platform.launcher.core.DefaultLauncher.execute(Lorg/junit/platform/launcher/core/InternalTestPlan;[Lorg/junit/platform/launcher/TestExecutionListener;)V+6 -j org.junit.platform.launcher.core.DefaultLauncher.execute(Lorg/junit/platform/launcher/LauncherDiscoveryRequest;[Lorg/junit/platform/launcher/TestExecutionListener;)V+34 -j org.junit.platform.launcher.core.DelegatingLauncher.execute(Lorg/junit/platform/launcher/LauncherDiscoveryRequest;[Lorg/junit/platform/launcher/TestExecutionListener;)V+6 -j org.apache.maven.surefire.junitplatform.LauncherAdapter.executeWithoutCancellationToken(Lorg/junit/platform/launcher/LauncherDiscoveryRequest;[Lorg/junit/platform/launcher/TestExecutionListener;)V+6 -j org.apache.maven.surefire.junitplatform.LauncherAdapter.execute(Lorg/junit/platform/launcher/LauncherDiscoveryRequest;[Lorg/junit/platform/launcher/TestExecutionListener;)V+10 -j org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.execute(Lorg/apache/maven/surefire/junitplatform/LauncherAdapter;Lorg/apache/maven/surefire/api/util/TestsToRun;Lorg/apache/maven/surefire/junitplatform/RunListenerAdapter;)V+61 -j org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.invokeAllTests(Lorg/apache/maven/surefire/junitplatform/LauncherAdapter;Lorg/apache/maven/surefire/api/util/TestsToRun;Lorg/apache/maven/surefire/junitplatform/RunListenerAdapter;)V+36 -j org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.invoke(Ljava/lang/Object;)Lorg/apache/maven/surefire/api/suite/RunResult;+144 -j org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess()V+8 -j org.apache.maven.surefire.booter.ForkedBooter.execute()V+1 -j org.apache.maven.surefire.booter.ForkedBooter.run(Lorg/apache/maven/surefire/booter/ForkedBooter;[Ljava/lang/String;)V+27 -j org.apache.maven.surefire.booter.ForkedBooter.main([Ljava/lang/String;)V+10 -v ~StubRoutines::call_stub -V [libjvm.so+0x836d12] JavaCalls::call_helper(JavaValue*, methodHandle const&, JavaCallArguments*, JavaThread*)+0x302 -...... - -Java frames: (J=compiled Java code, j=interpreted, Vv=VM code) -j com.tidesdb.TidesDB.nativeGetDbStats(J)Lcom/tidesdb/DbStats;+0 -j com.tidesdb.TidesDB.getDbStats()Lcom/tidesdb/DbStats;+8 -j com.tidesdb.TidesDBTest.testGetDbStats()V+179 -v ~StubRoutines::call_stub -j jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+0 java.base@17.0.9 -j jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+133 java.base@17.0.9 -j jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+6 java.base@17.0.9 -j java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+59 java.base@17.0.9 -j org.junit.platform.commons.util.ReflectionUtils.invokeMethod(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+42 -j org.junit.jupiter.engine.execution.MethodInvocation.proceed()Ljava/lang/Object;+16 -j org.junit.jupiter.engine.execution.InvocationInterceptorChain$ValidatingInvocation.proceed()Ljava/lang/Object;+8 -j org.junit.jupiter.engine.extension.TimeoutExtension.intercept(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/extension/TimeoutDuration;Lorg/junit/jupiter/engine/extension/TimeoutExtension$TimeoutProvider;)Ljava/lang/Object;+28 -j org.junit.jupiter.engine.extension.TimeoutExtension.interceptTestableMethod(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/extension/TimeoutExtension$TimeoutProvider;)Ljava/lang/Object;+31 -j org.junit.jupiter.engine.extension.TimeoutExtension.interceptTestMethod(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;)V+9 -j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor$$Lambda$186+0x00007f706408e318.apply(Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;)V+5 -j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker$ReflectiveInterceptorCall.lambda$ofVoidMethod$0(Lorg/junit/jupiter/engine/execution/InterceptingExecutableInvoker$ReflectiveInterceptorCall$VoidMethodInterceptorCall;Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;)Ljava/lang/Void;+6 -j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker$ReflectiveInterceptorCall$$Lambda$187+0x00007f706408e738.apply(Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;)Ljava/lang/Object;+9 -j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.lambda$invoke$0(Lorg/junit/jupiter/engine/execution/InterceptingExecutableInvoker$ReflectiveInterceptorCall;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;)Ljava/lang/Object;+6 -j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker$$Lambda$392+0x00007f70640c7378.apply(Lorg/junit/jupiter/api/extension/InvocationInterceptor;Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;)Ljava/lang/Object;+14 -j org.junit.jupiter.engine.execution.InvocationInterceptorChain$InterceptedInvocation.proceed()Ljava/lang/Object;+12 -j org.junit.jupiter.engine.execution.InvocationInterceptorChain.proceed(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;)Ljava/lang/Object;+1 -j org.junit.jupiter.engine.execution.InvocationInterceptorChain.chainAndInvoke(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/engine/execution/InvocationInterceptorChain$InterceptorCall;Ljava/util/List;)Ljava/lang/Object;+24 -j org.junit.jupiter.engine.execution.InvocationInterceptorChain.invoke(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/engine/extension/ExtensionRegistry;Lorg/junit/jupiter/engine/execution/InvocationInterceptorChain$InterceptorCall;)Ljava/lang/Object;+31 -j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.invoke(Lorg/junit/jupiter/api/extension/InvocationInterceptor$Invocation;Lorg/junit/jupiter/api/extension/ReflectiveInvocationContext;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/extension/ExtensionRegistry;Lorg/junit/jupiter/engine/execution/InterceptingExecutableInvoker$ReflectiveInterceptorCall;)Ljava/lang/Object;+15 -j org.junit.jupiter.engine.execution.InterceptingExecutableInvoker.invoke(Ljava/lang/reflect/Method;Ljava/lang/Object;Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/extension/ExtensionRegistry;Lorg/junit/jupiter/engine/execution/InterceptingExecutableInvoker$ReflectiveInterceptorCall;)Ljava/lang/Object;+55 -j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.lambda$invokeTestMethod$7(Lorg/junit/jupiter/api/extension/ExtensionContext;Lorg/junit/jupiter/engine/execution/JupiterEngineExecutionContext;)V+28 -j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor$$Lambda$427+0x00007f70640cc300.execute()V+12 -j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 -j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.invokeTestMethod(Lorg/junit/jupiter/engine/execution/JupiterEngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$DynamicTestExecutor;)V+21 -j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.execute(Lorg/junit/jupiter/engine/execution/JupiterEngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$DynamicTestExecutor;)Lorg/junit/jupiter/engine/execution/JupiterEngineExecutionContext;+44 -j org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.execute(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$DynamicTestExecutor;)Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;+6 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6()V+79 -j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$317+0x00007f70640b7038.execute()V+4 -j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+15 -j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$316+0x00007f70640b6e10.invoke(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+5 -j org.junit.platform.engine.support.hierarchical.Node.around(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$Invocation;)V+2 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9()V+14 -j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$315+0x00007f70640b69e8.execute()V+4 -j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively()V+31 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.execute()V+55 -j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService$$Lambda$321+0x00007f70640b7b50.accept(Ljava/lang/Object;)V+4 -j java.util.ArrayList.forEach(Ljava/util/function/Consumer;)V+46 java.base@17.0.9 -j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(Ljava/util/List;)V+6 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6()V+116 -j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$317+0x00007f70640b7038.execute()V+4 -j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+15 -j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$316+0x00007f70640b6e10.invoke(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+5 -j org.junit.platform.engine.support.hierarchical.Node.around(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$Invocation;)V+2 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9()V+14 -j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$315+0x00007f70640b69e8.execute()V+4 -j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively()V+31 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.execute()V+55 -j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService$$Lambda$321+0x00007f70640b7b50.accept(Ljava/lang/Object;)V+4 -j java.util.ArrayList.forEach(Ljava/util/function/Consumer;)V+46 java.base@17.0.9 -j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(Ljava/util/List;)V+6 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6()V+116 -j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$317+0x00007f70640b7038.execute()V+4 -j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+15 -j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$316+0x00007f70640b6e10.invoke(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;)V+5 -j org.junit.platform.engine.support.hierarchical.Node.around(Lorg/junit/platform/engine/support/hierarchical/EngineExecutionContext;Lorg/junit/platform/engine/support/hierarchical/Node$Invocation;)V+2 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9()V+14 -j org.junit.platform.engine.support.hierarchical.NodeTestTask$$Lambda$315+0x00007f70640b69e8.execute()V+4 -j org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(Lorg/junit/platform/engine/support/hierarchical/ThrowableCollector$Executable;)V+1 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively()V+31 -j org.junit.platform.engine.support.hierarchical.NodeTestTask.execute()V+55 -j org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.submit(Lorg/junit/platform/engine/support/hierarchical/HierarchicalTestExecutorService$TestTask;)Ljava/util/concurrent/Future;+1 -j org.junit.platform.engine.support.hierarchical.HierarchicalTestExecutor.execute()Ljava/util/concurrent/Future;+74 -j org.junit.platform.engine.support.hierarchical.HierarchicalTestEngine.execute(Lorg/junit/platform/engine/ExecutionRequest;)V+31 -j org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(Lorg/junit/platform/engine/TestDescriptor;Lorg/junit/platform/engine/EngineExecutionListener;Lorg/junit/platform/engine/ConfigurationParameters;Lorg/junit/platform/engine/TestEngine;)V+24 -j org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(Lorg/junit/platform/launcher/core/LauncherDiscoveryResult;Lorg/junit/platform/engine/EngineExecutionListener;)V+115 -j org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(Lorg/junit/platform/launcher/core/InternalTestPlan;Lorg/junit/platform/engine/EngineExecutionListener;Lorg/junit/platform/launcher/TestExecutionListener;)V+55 -j org.junit.platform.launcher.core.EngineExecutionOrchestrator.lambda$execute$0(Lorg/junit/platform/launcher/core/InternalTestPlan;Lorg/junit/platform/launcher/TestExecutionListener;)V+6 -j org.junit.platform.launcher.core.EngineExecutionOrchestrator$$Lambda$271+0x00007f70640a4238.accept(Ljava/lang/Object;)V+12 -j org.junit.platform.launcher.core.EngineExecutionOrchestrator.withInterceptedStreams(Lorg/junit/platform/engine/ConfigurationParameters;Lorg/junit/platform/launcher/core/ListenerRegistry;Ljava/util/function/Consumer;)V+51 -j org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(Lorg/junit/platform/launcher/core/InternalTestPlan;[Lorg/junit/platform/launcher/TestExecutionListener;)V+23 -j org.junit.platform.launcher.core.DefaultLauncher.execute(Lorg/junit/platform/launcher/core/InternalTestPlan;[Lorg/junit/platform/launcher/TestExecutionListener;)V+6 -j org.junit.platform.launcher.core.DefaultLauncher.execute(Lorg/junit/platform/launcher/LauncherDiscoveryRequest;[Lorg/junit/platform/launcher/TestExecutionListener;)V+34 -j org.junit.platform.launcher.core.DelegatingLauncher.execute(Lorg/junit/platform/launcher/LauncherDiscoveryRequest;[Lorg/junit/platform/launcher/TestExecutionListener;)V+6 -j org.apache.maven.surefire.junitplatform.LauncherAdapter.executeWithoutCancellationToken(Lorg/junit/platform/launcher/LauncherDiscoveryRequest;[Lorg/junit/platform/launcher/TestExecutionListener;)V+6 -j org.apache.maven.surefire.junitplatform.LauncherAdapter.execute(Lorg/junit/platform/launcher/LauncherDiscoveryRequest;[Lorg/junit/platform/launcher/TestExecutionListener;)V+10 -j org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.execute(Lorg/apache/maven/surefire/junitplatform/LauncherAdapter;Lorg/apache/maven/surefire/api/util/TestsToRun;Lorg/apache/maven/surefire/junitplatform/RunListenerAdapter;)V+61 -j org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.invokeAllTests(Lorg/apache/maven/surefire/junitplatform/LauncherAdapter;Lorg/apache/maven/surefire/api/util/TestsToRun;Lorg/apache/maven/surefire/junitplatform/RunListenerAdapter;)V+36 -j org.apache.maven.surefire.junitplatform.JUnitPlatformProvider.invoke(Ljava/lang/Object;)Lorg/apache/maven/surefire/api/suite/RunResult;+144 -j org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess()V+8 -j org.apache.maven.surefire.booter.ForkedBooter.execute()V+1 -j org.apache.maven.surefire.booter.ForkedBooter.run(Lorg/apache/maven/surefire/booter/ForkedBooter;[Ljava/lang/String;)V+27 -j org.apache.maven.surefire.booter.ForkedBooter.main([Ljava/lang/String;)V+10 -v ~StubRoutines::call_stub - -siginfo: si_signo: 11 (SIGSEGV), si_code: 1 (SEGV_MAPERR), si_addr: 0x0000000000000000 - -Registers: -RAX=0x00007f70ec1b5b28, RBX=0x00007f70ec014510, RCX=0x0000000000000002, RDX=0x00007f70ec1b5b20 -RSP=0x00007f70f37fb9b0, RBP=0x00007f70f37fbb20, RSI=0x0000000540035cc8, RDI=0x00007f70ec1b5b28 -R8 =0x0000000bb38d9000, R9 =0x0000000535d7b000, R10=0x00007f70f40d78c0, R11=0x0000000000000000 -R12=0x0000000000000000, R13=0x0000000000000000, R14=0x0000000000000000, R15=0x00007f70f37fba00 -RIP=0x00007f70f40d79e8, EFLAGS=0x0000000000010206, CSGSFS=0x002b000000000033, ERR=0x0000000000000004 - TRAPNO=0x000000000000000e - - -Register to memory mapping: - -RAX=0x00007f70ec1b5b28 points into unknown readable memory: 0x0000000540035cc8 | c8 5c 03 40 05 00 00 00 -RBX=0x00007f70ec014510 is a thread -RCX=0x0000000000000002 is an unknown value -RDX=0x00007f70ec1b5b20 points into unknown readable memory: 0x0000000540035360 | 60 53 03 40 05 00 00 00 -RSP=0x00007f70f37fb9b0 is pointing into the stack for thread: 0x00007f70ec014510 -RBP=0x00007f70f37fbb20 is pointing into the stack for thread: 0x00007f70ec014510 -RSI=0x0000000540035cc8 is an oop: com.tidesdb.DbStats -{0x0000000540035cc8} - klass: 'com/tidesdb/DbStats' - - ---- fields (total size 14 words): - - private final 'numColumnFamilies' 'I' @12 0 - - private final 'totalMemory' 'J' @16 0 (0 0) - - private final 'availableMemory' 'J' @24 0 (0 0) - - private final 'resolvedMemoryLimit' 'J' @32 0 (0 0) - - private final 'totalMemtableBytes' 'J' @40 0 (0 0) - - private final 'totalDataSizeBytes' 'J' @48 0 (0 0) - - private final 'globalSeq' 'J' @56 0 (0 0) - - private final 'txnMemoryBytes' 'J' @64 0 (0 0) - - private final 'compactionQueueSize' 'J' @72 0 (0 0) - - private final 'flushQueueSize' 'J' @80 0 (0 0) - - private final 'memoryPressureLevel' 'I' @88 0 - - private final 'flushPendingCount' 'I' @92 0 - - private final 'totalImmutableCount' 'I' @96 0 - - private final 'totalSstableCount' 'I' @100 0 - - private final 'numOpenSstables' 'I' @104 0 -RDI=0x00007f70ec1b5b28 points into unknown readable memory: 0x0000000540035cc8 | c8 5c 03 40 05 00 00 00 -R8 =0x0000000bb38d9000 is an unknown value -R9 =0x0000000535d7b000 points into unknown readable memory: 0x0000000000000000 | 00 00 00 00 00 00 00 00 -R10=0x00007f70f40d78c0: in /usr/lib/jvm/java-17-openjdk-amd64/lib/server/libjvm.so at 0x00007f70f3800000 -R11=0x0 is NULL -R12=0x0 is NULL -R13=0x0 is NULL -R14=0x0 is NULL -R15=0x00007f70f37fba00 is pointing into the stack for thread: 0x00007f70ec014510 - - -Top of Stack: (sp=0x00007f70f37fb9b0) -0x00007f70f37fb9b0: 00000000ec014f50 00007f70f4e1b3ab -0x00007f70f37fb9c0: 00007f70ec015038 00000000000000d8 -0x00007f70f37fb9d0: 00007f70f37fbec0 0000000000000000 -0x00007f70f37fb9e0: 00007f70ec014510 00007f70ec014f80 -0x00007f70f37fb9f0: 0000000000000431 00007f70f4804d88 -0x00007f70f37fba00: 0000000000000013 00007f70ec014f88 -0x00007f70f37fba10: 00007f70f37fbaa0 00007f70f4664d6e -0x00007f70f37fba20: 0000000000000000 0000000000000000 -0x00007f70f37fba30: 0000000000000000 00007f70f46521a7 -0x00007f70f37fba40: 4141414141414141 0000000000000000 -0x00007f70f37fba50: 00007f70ec014510 0000000000000002 -0x00007f70f37fba60: 0000000bb38d9000 0000000535d7b000 -0x00007f70f37fba70: 0000000000000001 00007f70640d4000 -0x00007f70f37fba80: 0000000000000001 00007f70f40ff4d3 -0x00007f70f37fba90: 00007f70ec014f88 00000007ff7560a0 -0x00007f70f37fbaa0: 00007f70f37fbad0 00007f70ec014510 -0x00007f70f37fbab0: 00007f70ec413e40 00007f70ec0147c0 -0x00007f70f37fbac0: 00007f70ec014f88 00000007ff7560a0 -0x00007f70f37fbad0: 00007f70ec014510 00007f70ec014510 -0x00007f70f37fbae0: 00007f70f37fbb80 00007f70f40ccb35 -0x00007f70f37fbaf0: 0000000000000000 0000000000000000 -0x00007f70f37fbb00: 0000000000000000 0000000000000000 -0x00007f70f37fbb10: 0000000000000000 0000000000000000 -0x00007f70f37fbb20: 00007f70f37fbc90 00007f70f4e1a8a4 -0x00007f70f37fbb30: 00000005d9c6c800 0000000000000000 -0x00007f70f37fbb40: 0000000000000000 0000000000000000 -0x00007f70f37fbb50: 0000000000000000 0000000000000000 -0x00007f70f37fbb60: 0000000000000000 0000000000000000 -0x00007f70f37fbb70: 0000000000000002 0000000000000000 -0x00007f70f37fbb80: 0000000000000000 0000000000000000 -0x00007f70f37fbb90: 0000000bb38d9000 0000000535d7b000 -0x00007f70f37fbba0: 00000005d9c6c800 0000000000000000 - -Instructions: (pc=0x00007f70f40d79e8) -0x00007f70f40d78e8: 40 ff ff ff 4c 89 8d 48 ff ff ff 84 c0 74 29 0f -0x00007f70f40d78f8: 29 85 50 ff ff ff 0f 29 8d 60 ff ff ff 0f 29 95 -0x00007f70f40d7908: 70 ff ff ff 0f 29 5d 80 0f 29 65 90 0f 29 6d a0 -0x00007f70f40d7918: 0f 29 75 b0 0f 29 7d c0 48 8d 9f 50 fd ff ff 8b -0x00007f70f40d7928: 83 68 03 00 00 2d ab de 00 00 83 f8 01 0f 87 15 -0x00007f70f40d7938: 02 00 00 c7 83 40 03 00 00 05 00 00 00 f0 83 04 -0x00007f70f40d7948: 24 00 48 8b 83 48 03 00 00 a8 01 0f 85 df 01 00 -0x00007f70f40d7958: 00 8b 83 34 03 00 00 85 c0 0f 85 a9 01 00 00 8b -0x00007f70f40d7968: 83 30 03 00 00 a8 0c 0f 85 9b 01 00 00 48 83 7b -0x00007f70f40d7978: 08 00 c7 83 40 03 00 00 06 00 00 00 48 89 9d c0 -0x00007f70f40d7988: fe ff ff 48 c7 85 c8 fe ff ff 00 00 00 00 74 0c -0x00007f70f40d7998: 48 8d bd c0 fe ff ff e8 ac 49 3b 00 41 f6 c4 01 -0x00007f70f40d79a8: 0f 84 72 01 00 00 49 8d 7c 24 ff ff 15 07 78 a1 -0x00007f70f40d79b8: 00 48 89 c7 48 89 de 45 31 ed e8 49 87 00 00 4c -0x00007f70f40d79c8: 8b 63 08 4d 85 e4 0f 85 ad 00 00 00 31 d2 48 89 -0x00007f70f40d79d8: c6 4c 8d bd e0 fe ff ff 48 89 df e8 28 7d 02 00 -0x00007f70f40d79e8: 49 8b 36 4c 89 ff c7 85 a8 fe ff ff 18 00 00 00 -0x00007f70f40d79f8: c7 85 ac fe ff ff 30 00 00 00 49 89 c5 48 8d 45 -0x00007f70f40d7a08: 10 48 89 85 b0 fe ff ff 48 8d 85 20 ff ff ff 48 -0x00007f70f40d7a18: 89 85 b8 fe ff ff c7 85 90 fe ff ff 0e 00 00 00 -0x00007f70f40d7a28: e8 f3 90 00 00 4c 89 ee 49 89 d8 4c 89 f9 48 8d -0x00007f70f40d7a38: 05 1b a3 96 00 f3 0f 6f 85 a8 fe ff ff 48 8d bd -0x00007f70f40d7a48: 90 fe ff ff 4c 89 f2 48 89 85 e0 fe ff ff 48 8b -0x00007f70f40d7a58: 85 b8 fe ff ff 0f 11 85 08 ff ff ff 48 89 85 18 -0x00007f70f40d7a68: ff ff ff e8 10 f7 ff ff 48 83 7b 08 00 4c 89 ff -0x00007f70f40d7a78: 4d 0f 45 ec e8 bf 87 00 00 48 83 bd c8 fe ff ff -0x00007f70f40d7a88: 00 74 0c 48 8d bd c0 fe ff ff e8 59 49 3b 00 4c -0x00007f70f40d7a98: 8b a3 e8 00 00 00 49 8b 44 24 10 48 83 38 00 74 -0x00007f70f40d7aa8: 0d 4c 89 e7 e8 ef ef ee ff 49 8b 44 24 10 49 8b -0x00007f70f40d7ab8: 54 24 08 48 8d bb 90 02 00 00 48 89 42 10 49 8b -0x00007f70f40d7ac8: 44 24 08 49 8b 54 24 18 48 89 50 18 49 8b 44 24 -0x00007f70f40d7ad8: 08 49 8b 54 24 20 48 89 50 20 e8 69 c4 df ff c7 - - -Stack slot to memory mapping: -stack at sp + 0 slots: 0x00000000ec014f50 is an unknown value -stack at sp + 1 slots: 0x00007f70f4e1b3ab: in /usr/local/lib/libtidesdb_jni.so at 0x00007f70f4e14000 -stack at sp + 2 slots: 0x00007f70ec015038 points into unknown readable memory: 0x0000000000000025 | 25 00 00 00 00 00 00 00 -stack at sp + 3 slots: 0x00000000000000d8 is an unknown value -stack at sp + 4 slots: 0x00007f70f37fbec0 is pointing into the stack for thread: 0x00007f70ec014510 -stack at sp + 5 slots: 0x0 is NULL -stack at sp + 6 slots: 0x00007f70ec014510 is a thread -stack at sp + 7 slots: 0x00007f70ec014f80 points into unknown readable memory: 0x00000005400354a8 | a8 54 03 40 05 00 00 00 - - ---------------- P R O C E S S --------------- - -Threads class SMR info: -_java_thread_list=0x00007f702c555fc0, length=19, elements={ -0x00007f70ec014510, 0x00007f70ec1b7e10, 0x00007f70ec1b9200, 0x00007f70ec1be770, -0x00007f70ec1bfb30, 0x00007f70ec1c0f50, 0x00007f70ec1c2990, 0x00007f70ec1c3ed0, -0x00007f70ec1c5350, 0x00007f70ec1cc920, 0x00007f70ec1d01b0, 0x00007f70380b01d0, -0x00007f70ec30c540, 0x00007f70ec31c4f0, 0x00007f702c0e5d60, 0x00007f702c134ef0, -0x00007f702c136ee0, 0x00007f701c17b750, 0x00007f702c554fc0 -} - -Java Threads: ( => current thread ) -=>0x00007f70ec014510 JavaThread "main" [_thread_in_vm, id=2050293, stack(0x00007f70f3700000,0x00007f70f3800000)] - 0x00007f70ec1b7e10 JavaThread "Reference Handler" daemon [_thread_blocked, id=2050303, stack(0x00007f70b87da000,0x00007f70b88da000)] - 0x00007f70ec1b9200 JavaThread "Finalizer" daemon [_thread_blocked, id=2050304, stack(0x00007f70b86da000,0x00007f70b87da000)] - 0x00007f70ec1be770 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=2050307, stack(0x00007f70b85da000,0x00007f70b86da000)] - 0x00007f70ec1bfb30 JavaThread "Service Thread" daemon [_thread_blocked, id=2050308, stack(0x00007f70b84da000,0x00007f70b85da000)] - 0x00007f70ec1c0f50 JavaThread "Monitor Deflation Thread" daemon [_thread_blocked, id=2050309, stack(0x00007f70b83da000,0x00007f70b84da000)] - 0x00007f70ec1c2990 JavaThread "C2 CompilerThread0" daemon [_thread_in_native, id=2050310, stack(0x00007f70b82da000,0x00007f70b83da000)] - 0x00007f70ec1c3ed0 JavaThread "C1 CompilerThread0" daemon [_thread_blocked, id=2050311, stack(0x00007f70b81da000,0x00007f70b82da000)] - 0x00007f70ec1c5350 JavaThread "Sweeper thread" daemon [_thread_blocked, id=2050312, stack(0x00007f70b80da000,0x00007f70b81da000)] - 0x00007f70ec1cc920 JavaThread "Notification Thread" daemon [_thread_blocked, id=2050314, stack(0x00007f705e900000,0x00007f705ea00000)] - 0x00007f70ec1d01b0 JavaThread "Common-Cleaner" daemon [_thread_blocked, id=2050316, stack(0x00007f705e6ff000,0x00007f705e7ff000)] - 0x00007f70380b01d0 JavaThread "C1 CompilerThread1" daemon [_thread_blocked, id=2050317, stack(0x00007f705e5ff000,0x00007f705e6ff000)] - 0x00007f70ec30c540 JavaThread "surefire-forkedjvm-stream-flusher" daemon [_thread_blocked, id=2050318, stack(0x00007f705e4ff000,0x00007f705e5ff000)] - 0x00007f70ec31c4f0 JavaThread "surefire-forkedjvm-command-thread" daemon [_thread_in_native, id=2050319, stack(0x00007f705e3ff000,0x00007f705e4ff000)] - 0x00007f702c0e5d60 JavaThread "C2 CompilerThread1" daemon [_thread_in_native, id=2050320, stack(0x00007f705e2ff000,0x00007f705e3ff000)] - 0x00007f702c134ef0 JavaThread "C1 CompilerThread2" daemon [_thread_blocked, id=2050321, stack(0x00007f705e1ff000,0x00007f705e2ff000)] - 0x00007f702c136ee0 JavaThread "C2 CompilerThread2" daemon [_thread_in_native, id=2050322, stack(0x00007f705e0ff000,0x00007f705e1ff000)] - 0x00007f701c17b750 JavaThread "C2 CompilerThread3" daemon [_thread_in_native, id=2050323, stack(0x00007f705dfff000,0x00007f705e0ff000)] - 0x00007f702c554fc0 JavaThread "C2 CompilerThread4" daemon [_thread_blocked, id=2050324, stack(0x00007f705deff000,0x00007f705dfff000)] - -Other Threads: - 0x00007f70ec1b3e80 VMThread "VM Thread" [stack: 0x00007f70b88db000,0x00007f70b89db000] [id=2050302] - 0x00007f70ec1ce270 WatcherThread [stack: 0x00007f705e800000,0x00007f705e900000] [id=2050315] - 0x00007f70ec070ce0 GCTaskThread "GC Thread#0" [stack: 0x00007f70f0cb9000,0x00007f70f0db9000] [id=2050294] - 0x00007f70ec07ddd0 ConcurrentGCThread "G1 Main Marker" [stack: 0x00007f70f0bb8000,0x00007f70f0cb8000] [id=2050295] - 0x00007f70ec07ed40 ConcurrentGCThread "G1 Conc#0" [stack: 0x00007f70f0ab7000,0x00007f70f0bb7000] [id=2050296] - 0x00007f70ec182f50 ConcurrentGCThread "G1 Refine#0" [stack: 0x00007f70b8bae000,0x00007f70b8cae000] [id=2050298] - 0x00007f70ec183e50 ConcurrentGCThread "G1 Service" [stack: 0x00007f70b8aad000,0x00007f70b8bad000] [id=2050299] - -Threads with active compile tasks: -C2 CompilerThread0 336 1166 4 org.junit.jupiter.engine.discovery.predicates.IsTestableMethod::test (49 bytes) -C2 CompilerThread1 336 1162 4 java.util.function.Predicate$$Lambda$90/0x00007f706405ebe8::test (15 bytes) -C2 CompilerThread2 336 1295 4 org.junit.platform.commons.util.AnnotationUtils::findMetaAnnotation (84 bytes) -C2 CompilerThread3 336 1294 4 org.junit.platform.commons.util.AnnotationUtils::findAnnotation (193 bytes) - -VM state: not at safepoint (normal execution) - -VM Mutex/Monitor currently owned by a thread: None - -Heap address: 0x0000000513000000, size: 11984 MB, Compressed Oops mode: Zero based, Oop shift amount: 3 - -CDS archive(s) mapped at: [0x00007f7063000000-0x00007f7063bc6000-0x00007f7063bc6000), size 12345344, SharedBaseAddress: 0x00007f7063000000, ArchiveRelocationMode: 1. -Compressed class space mapped at: 0x00007f7064000000-0x00007f70a4000000, reserved size: 1073741824 -Narrow klass base: 0x00007f7063000000, Narrow klass shift: 0, Narrow klass range: 0x100000000 - -GC Precious Log: - CPUs: 16 total, 16 available - Memory: 47928M - Large Page Support: Disabled - NUMA Support: Disabled - Compressed Oops: Enabled (Zero based) - Heap Region Size: 8M - Heap Min Capacity: 8M - Heap Initial Capacity: 752M - Heap Max Capacity: 11984M - Pre-touch: Disabled - Parallel Workers: 13 - Concurrent Workers: 3 - Concurrent Refinement Workers: 13 - Periodic GC: Disabled - -Heap: - garbage-first heap total 786432K, used 32688K [0x0000000513000000, 0x0000000800000000) - region size 8192K, 4 young (32768K), 0 survivors (0K) - Metaspace used 6811K, committed 7040K, reserved 1114112K - class space used 866K, committed 960K, reserved 1048576K - -Heap Regions: E=young(eden), S=young(survivor), O=old, HS=humongous(starts), HC=humongous(continues), CS=collection set, F=free, OA=open archive, CA=closed archive, TAMS=top-at-mark-start (previous, next) -| 0|0x0000000513000000, 0x0000000513000000, 0x0000000513800000| 0%| F| |TAMS 0x0000000513000000, 0x0000000513000000| Untracked -| 1|0x0000000513800000, 0x0000000513800000, 0x0000000514000000| 0%| F| |TAMS 0x0000000513800000, 0x0000000513800000| Untracked -| 2|0x0000000514000000, 0x0000000514000000, 0x0000000514800000| 0%| F| |TAMS 0x0000000514000000, 0x0000000514000000| Untracked -| 3|0x0000000514800000, 0x0000000514800000, 0x0000000515000000| 0%| F| |TAMS 0x0000000514800000, 0x0000000514800000| Untracked -| 4|0x0000000515000000, 0x0000000515000000, 0x0000000515800000| 0%| F| |TAMS 0x0000000515000000, 0x0000000515000000| Untracked -| 5|0x0000000515800000, 0x0000000515800000, 0x0000000516000000| 0%| F| |TAMS 0x0000000515800000, 0x0000000515800000| Untracked -| 6|0x0000000516000000, 0x0000000516000000, 0x0000000516800000| 0%| F| |TAMS 0x0000000516000000, 0x0000000516000000| Untracked -| 7|0x0000000516800000, 0x0000000516800000, 0x0000000517000000| 0%| F| |TAMS 0x0000000516800000, 0x0000000516800000| Untracked -| 8|0x0000000517000000, 0x0000000517000000, 0x0000000517800000| 0%| F| |TAMS 0x0000000517000000, 0x0000000517000000| Untracked -| 9|0x0000000517800000, 0x0000000517800000, 0x0000000518000000| 0%| F| |TAMS 0x0000000517800000, 0x0000000517800000| Untracked -| 10|0x0000000518000000, 0x0000000518000000, 0x0000000518800000| 0%| F| |TAMS 0x0000000518000000, 0x0000000518000000| Untracked -| 11|0x0000000518800000, 0x0000000518800000, 0x0000000519000000| 0%| F| |TAMS 0x0000000518800000, 0x0000000518800000| Untracked -| 12|0x0000000519000000, 0x0000000519000000, 0x0000000519800000| 0%| F| |TAMS 0x0000000519000000, 0x0000000519000000| Untracked -| 13|0x0000000519800000, 0x0000000519800000, 0x000000051a000000| 0%| F| |TAMS 0x0000000519800000, 0x0000000519800000| Untracked -| 14|0x000000051a000000, 0x000000051a000000, 0x000000051a800000| 0%| F| |TAMS 0x000000051a000000, 0x000000051a000000| Untracked -| 15|0x000000051a800000, 0x000000051a800000, 0x000000051b000000| 0%| F| |TAMS 0x000000051a800000, 0x000000051a800000| Untracked -| 16|0x000000051b000000, 0x000000051b000000, 0x000000051b800000| 0%| F| |TAMS 0x000000051b000000, 0x000000051b000000| Untracked -| 17|0x000000051b800000, 0x000000051b800000, 0x000000051c000000| 0%| F| |TAMS 0x000000051b800000, 0x000000051b800000| Untracked -| 18|0x000000051c000000, 0x000000051c000000, 0x000000051c800000| 0%| F| |TAMS 0x000000051c000000, 0x000000051c000000| Untracked -| 19|0x000000051c800000, 0x000000051c800000, 0x000000051d000000| 0%| F| |TAMS 0x000000051c800000, 0x000000051c800000| Untracked -| 20|0x000000051d000000, 0x000000051d000000, 0x000000051d800000| 0%| F| |TAMS 0x000000051d000000, 0x000000051d000000| Untracked -| 21|0x000000051d800000, 0x000000051d800000, 0x000000051e000000| 0%| F| |TAMS 0x000000051d800000, 0x000000051d800000| Untracked -| 22|0x000000051e000000, 0x000000051e000000, 0x000000051e800000| 0%| F| |TAMS 0x000000051e000000, 0x000000051e000000| Untracked -| 23|0x000000051e800000, 0x000000051e800000, 0x000000051f000000| 0%| F| |TAMS 0x000000051e800000, 0x000000051e800000| Untracked -| 24|0x000000051f000000, 0x000000051f000000, 0x000000051f800000| 0%| F| |TAMS 0x000000051f000000, 0x000000051f000000| Untracked -| 25|0x000000051f800000, 0x000000051f800000, 0x0000000520000000| 0%| F| |TAMS 0x000000051f800000, 0x000000051f800000| Untracked -| 26|0x0000000520000000, 0x0000000520000000, 0x0000000520800000| 0%| F| |TAMS 0x0000000520000000, 0x0000000520000000| Untracked -| 27|0x0000000520800000, 0x0000000520800000, 0x0000000521000000| 0%| F| |TAMS 0x0000000520800000, 0x0000000520800000| Untracked -| 28|0x0000000521000000, 0x0000000521000000, 0x0000000521800000| 0%| F| |TAMS 0x0000000521000000, 0x0000000521000000| Untracked -| 29|0x0000000521800000, 0x0000000521800000, 0x0000000522000000| 0%| F| |TAMS 0x0000000521800000, 0x0000000521800000| Untracked -| 30|0x0000000522000000, 0x0000000522000000, 0x0000000522800000| 0%| F| |TAMS 0x0000000522000000, 0x0000000522000000| Untracked -| 31|0x0000000522800000, 0x0000000522800000, 0x0000000523000000| 0%| F| |TAMS 0x0000000522800000, 0x0000000522800000| Untracked -| 32|0x0000000523000000, 0x0000000523000000, 0x0000000523800000| 0%| F| |TAMS 0x0000000523000000, 0x0000000523000000| Untracked -| 33|0x0000000523800000, 0x0000000523800000, 0x0000000524000000| 0%| F| |TAMS 0x0000000523800000, 0x0000000523800000| Untracked -| 34|0x0000000524000000, 0x0000000524000000, 0x0000000524800000| 0%| F| |TAMS 0x0000000524000000, 0x0000000524000000| Untracked -| 35|0x0000000524800000, 0x0000000524800000, 0x0000000525000000| 0%| F| |TAMS 0x0000000524800000, 0x0000000524800000| Untracked -| 36|0x0000000525000000, 0x0000000525000000, 0x0000000525800000| 0%| F| |TAMS 0x0000000525000000, 0x0000000525000000| Untracked -| 37|0x0000000525800000, 0x0000000525800000, 0x0000000526000000| 0%| F| |TAMS 0x0000000525800000, 0x0000000525800000| Untracked -| 38|0x0000000526000000, 0x0000000526000000, 0x0000000526800000| 0%| F| |TAMS 0x0000000526000000, 0x0000000526000000| Untracked -| 39|0x0000000526800000, 0x0000000526800000, 0x0000000527000000| 0%| F| |TAMS 0x0000000526800000, 0x0000000526800000| Untracked -| 40|0x0000000527000000, 0x0000000527000000, 0x0000000527800000| 0%| F| |TAMS 0x0000000527000000, 0x0000000527000000| Untracked -| 41|0x0000000527800000, 0x0000000527800000, 0x0000000528000000| 0%| F| |TAMS 0x0000000527800000, 0x0000000527800000| Untracked -| 42|0x0000000528000000, 0x0000000528000000, 0x0000000528800000| 0%| F| |TAMS 0x0000000528000000, 0x0000000528000000| Untracked -| 43|0x0000000528800000, 0x0000000528800000, 0x0000000529000000| 0%| F| |TAMS 0x0000000528800000, 0x0000000528800000| Untracked -| 44|0x0000000529000000, 0x0000000529000000, 0x0000000529800000| 0%| F| |TAMS 0x0000000529000000, 0x0000000529000000| Untracked -| 45|0x0000000529800000, 0x0000000529800000, 0x000000052a000000| 0%| F| |TAMS 0x0000000529800000, 0x0000000529800000| Untracked -| 46|0x000000052a000000, 0x000000052a000000, 0x000000052a800000| 0%| F| |TAMS 0x000000052a000000, 0x000000052a000000| Untracked -| 47|0x000000052a800000, 0x000000052a800000, 0x000000052b000000| 0%| F| |TAMS 0x000000052a800000, 0x000000052a800000| Untracked -| 48|0x000000052b000000, 0x000000052b000000, 0x000000052b800000| 0%| F| |TAMS 0x000000052b000000, 0x000000052b000000| Untracked -| 49|0x000000052b800000, 0x000000052b800000, 0x000000052c000000| 0%| F| |TAMS 0x000000052b800000, 0x000000052b800000| Untracked -| 50|0x000000052c000000, 0x000000052c000000, 0x000000052c800000| 0%| F| |TAMS 0x000000052c000000, 0x000000052c000000| Untracked -| 51|0x000000052c800000, 0x000000052c800000, 0x000000052d000000| 0%| F| |TAMS 0x000000052c800000, 0x000000052c800000| Untracked -| 52|0x000000052d000000, 0x000000052d000000, 0x000000052d800000| 0%| F| |TAMS 0x000000052d000000, 0x000000052d000000| Untracked -| 53|0x000000052d800000, 0x000000052d800000, 0x000000052e000000| 0%| F| |TAMS 0x000000052d800000, 0x000000052d800000| Untracked -| 54|0x000000052e000000, 0x000000052e000000, 0x000000052e800000| 0%| F| |TAMS 0x000000052e000000, 0x000000052e000000| Untracked -| 55|0x000000052e800000, 0x000000052e800000, 0x000000052f000000| 0%| F| |TAMS 0x000000052e800000, 0x000000052e800000| Untracked -| 56|0x000000052f000000, 0x000000052f000000, 0x000000052f800000| 0%| F| |TAMS 0x000000052f000000, 0x000000052f000000| Untracked -| 57|0x000000052f800000, 0x000000052f800000, 0x0000000530000000| 0%| F| |TAMS 0x000000052f800000, 0x000000052f800000| Untracked -| 58|0x0000000530000000, 0x0000000530000000, 0x0000000530800000| 0%| F| |TAMS 0x0000000530000000, 0x0000000530000000| Untracked -| 59|0x0000000530800000, 0x0000000530800000, 0x0000000531000000| 0%| F| |TAMS 0x0000000530800000, 0x0000000530800000| Untracked -| 60|0x0000000531000000, 0x0000000531000000, 0x0000000531800000| 0%| F| |TAMS 0x0000000531000000, 0x0000000531000000| Untracked -| 61|0x0000000531800000, 0x0000000531800000, 0x0000000532000000| 0%| F| |TAMS 0x0000000531800000, 0x0000000531800000| Untracked -| 62|0x0000000532000000, 0x0000000532000000, 0x0000000532800000| 0%| F| |TAMS 0x0000000532000000, 0x0000000532000000| Untracked -| 63|0x0000000532800000, 0x0000000532800000, 0x0000000533000000| 0%| F| |TAMS 0x0000000532800000, 0x0000000532800000| Untracked -| 64|0x0000000533000000, 0x0000000533000000, 0x0000000533800000| 0%| F| |TAMS 0x0000000533000000, 0x0000000533000000| Untracked -| 65|0x0000000533800000, 0x0000000533800000, 0x0000000534000000| 0%| F| |TAMS 0x0000000533800000, 0x0000000533800000| Untracked -| 66|0x0000000534000000, 0x0000000534000000, 0x0000000534800000| 0%| F| |TAMS 0x0000000534000000, 0x0000000534000000| Untracked -| 67|0x0000000534800000, 0x0000000534800000, 0x0000000535000000| 0%| F| |TAMS 0x0000000534800000, 0x0000000534800000| Untracked -| 68|0x0000000535000000, 0x0000000535000000, 0x0000000535800000| 0%| F| |TAMS 0x0000000535000000, 0x0000000535000000| Untracked -| 69|0x0000000535800000, 0x0000000535800000, 0x0000000536000000| 0%| F| |TAMS 0x0000000535800000, 0x0000000535800000| Untracked -| 70|0x0000000536000000, 0x0000000536000000, 0x0000000536800000| 0%| F| |TAMS 0x0000000536000000, 0x0000000536000000| Untracked -| 71|0x0000000536800000, 0x0000000536800000, 0x0000000537000000| 0%| F| |TAMS 0x0000000536800000, 0x0000000536800000| Untracked -| 72|0x0000000537000000, 0x0000000537000000, 0x0000000537800000| 0%| F| |TAMS 0x0000000537000000, 0x0000000537000000| Untracked -| 73|0x0000000537800000, 0x0000000537800000, 0x0000000538000000| 0%| F| |TAMS 0x0000000537800000, 0x0000000537800000| Untracked -| 74|0x0000000538000000, 0x0000000538000000, 0x0000000538800000| 0%| F| |TAMS 0x0000000538000000, 0x0000000538000000| Untracked -| 75|0x0000000538800000, 0x0000000538800000, 0x0000000539000000| 0%| F| |TAMS 0x0000000538800000, 0x0000000538800000| Untracked -| 76|0x0000000539000000, 0x0000000539000000, 0x0000000539800000| 0%| F| |TAMS 0x0000000539000000, 0x0000000539000000| Untracked -| 77|0x0000000539800000, 0x0000000539800000, 0x000000053a000000| 0%| F| |TAMS 0x0000000539800000, 0x0000000539800000| Untracked -| 78|0x000000053a000000, 0x000000053a000000, 0x000000053a800000| 0%| F| |TAMS 0x000000053a000000, 0x000000053a000000| Untracked -| 79|0x000000053a800000, 0x000000053a800000, 0x000000053b000000| 0%| F| |TAMS 0x000000053a800000, 0x000000053a800000| Untracked -| 80|0x000000053b000000, 0x000000053b000000, 0x000000053b800000| 0%| F| |TAMS 0x000000053b000000, 0x000000053b000000| Untracked -| 81|0x000000053b800000, 0x000000053b800000, 0x000000053c000000| 0%| F| |TAMS 0x000000053b800000, 0x000000053b800000| Untracked -| 82|0x000000053c000000, 0x000000053c000000, 0x000000053c800000| 0%| F| |TAMS 0x000000053c000000, 0x000000053c000000| Untracked -| 83|0x000000053c800000, 0x000000053c800000, 0x000000053d000000| 0%| F| |TAMS 0x000000053c800000, 0x000000053c800000| Untracked -| 84|0x000000053d000000, 0x000000053d000000, 0x000000053d800000| 0%| F| |TAMS 0x000000053d000000, 0x000000053d000000| Untracked -| 85|0x000000053d800000, 0x000000053d800000, 0x000000053e000000| 0%| F| |TAMS 0x000000053d800000, 0x000000053d800000| Untracked -| 86|0x000000053e000000, 0x000000053e000000, 0x000000053e800000| 0%| F| |TAMS 0x000000053e000000, 0x000000053e000000| Untracked -| 87|0x000000053e800000, 0x000000053e800000, 0x000000053f000000| 0%| F| |TAMS 0x000000053e800000, 0x000000053e800000| Untracked -| 88|0x000000053f000000, 0x000000053f000000, 0x000000053f800000| 0%| F| |TAMS 0x000000053f000000, 0x000000053f000000| Untracked -| 89|0x000000053f800000, 0x000000053f800000, 0x0000000540000000| 0%| F| |TAMS 0x000000053f800000, 0x000000053f800000| Untracked -| 90|0x0000000540000000, 0x00000005400a5bc0, 0x0000000540800000| 8%| E| |TAMS 0x0000000540000000, 0x0000000540000000| Complete -| 91|0x0000000540800000, 0x0000000541000000, 0x0000000541000000|100%| E|CS|TAMS 0x0000000540800000, 0x0000000540800000| Complete -| 92|0x0000000541000000, 0x0000000541800000, 0x0000000541800000|100%| E|CS|TAMS 0x0000000541000000, 0x0000000541000000| Complete -| 93|0x0000000541800000, 0x0000000542000000, 0x0000000542000000|100%| E|CS|TAMS 0x0000000541800000, 0x0000000541800000| Complete -|1496|0x00000007ff000000, 0x00000007ff775000, 0x00000007ff800000| 93%|OA| |TAMS 0x00000007ff000000, 0x00000007ff000000| Untracked -|1497|0x00000007ff800000, 0x00000007ff877000, 0x0000000800000000| 5%|CA| |TAMS 0x00000007ff800000, 0x00000007ff800000| Untracked - -Card table byte_map: [0x00007f70d3c98000,0x00007f70d5400000] _byte_map_base: 0x00007f70d1400000 - -Marking Bits (Prev, Next): (CMBitMap*) 0x00007f70ec071770, (CMBitMap*) 0x00007f70ec0717b0 - Prev Bits: [0x00007f70c69f0000, 0x00007f70d2530000) - Next Bits: [0x00007f70baeb0000, 0x00007f70c69f0000) - -Polling page: 0x00007f70f5044000 - -Metaspace: - -Usage: - Non-class: 5.81 MB used. - Class: 866.89 KB used. - Both: 6.65 MB used. - -Virtual space: - Non-class space: 64.00 MB reserved, 5.94 MB ( 9%) committed, 1 nodes. - Class space: 1.00 GB reserved, 960.00 KB ( <1%) committed, 1 nodes. - Both: 1.06 GB reserved, 6.88 MB ( <1%) committed. - -Chunk freelists: - Non-Class: 9.23 MB - Class: 15.04 MB - Both: 24.28 MB - -MaxMetaspaceSize: unlimited -CompressedClassSpaceSize: 1.00 GB -Initial GC threshold: 21.00 MB -Current GC threshold: 21.00 MB -CDS: on -MetaspaceReclaimPolicy: balanced - - commit_granule_bytes: 65536. - - commit_granule_words: 8192. - - virtual_space_node_default_size: 8388608. - - enlarge_chunks_in_place: 1. - - new_chunks_are_fully_committed: 0. - - uncommit_free_chunks: 1. - - use_allocation_guard: 0. - - handle_deallocations: 1. - - -Internal statistics: - -num_allocs_failed_limit: 0. -num_arena_births: 118. -num_arena_deaths: 0. -num_vsnodes_births: 2. -num_vsnodes_deaths: 0. -num_space_committed: 110. -num_space_uncommitted: 0. -num_chunks_returned_to_freelist: 0. -num_chunks_taken_from_freelist: 345. -num_chunk_merges: 0. -num_chunk_splits: 190. -num_chunks_enlarged: 107. -num_inconsistent_stats: 0. - -CodeHeap 'non-profiled nmethods': size=119168Kb used=363Kb max_used=363Kb free=118804Kb - bounds [0x00007f70dcfa0000, 0x00007f70dd210000, 0x00007f70e4400000] -CodeHeap 'profiled nmethods': size=119164Kb used=2923Kb max_used=2923Kb free=116240Kb - bounds [0x00007f70d5400000, 0x00007f70d56e0000, 0x00007f70dc85f000] -CodeHeap 'non-nmethods': size=7428Kb used=2280Kb max_used=2294Kb free=5147Kb - bounds [0x00007f70dc85f000, 0x00007f70dcacf000, 0x00007f70dcfa0000] - total_blobs=1860 nmethods=1430 adapters=341 - compilation: enabled - stopped_count=0, restarted_count=0 - full_count=0 - -Compilation events (20 events): -Event: 0.327 Thread 0x00007f70380b01d0 nmethod 1414 0x00007f70d56d3e90 code [0x00007f70d56d4100, 0x00007f70d56d4af0] -Event: 0.327 Thread 0x00007f70380b01d0 1419 3 java.lang.invoke.LambdaForm$NamedFunction::returnType (11 bytes) -Event: 0.328 Thread 0x00007f70380b01d0 nmethod 1419 0x00007f70d56d4e10 code [0x00007f70d56d5000, 0x00007f70d56d5480] -Event: 0.328 Thread 0x00007f70ec1c3ed0 nmethod 1411 0x00007f70d56d5690 code [0x00007f70d56d5a20, 0x00007f70d56d6ed0] -Event: 0.328 Thread 0x00007f702c134ef0 nmethod 1415 0x00007f70d56d7710 code [0x00007f70d56d7a00, 0x00007f70d56d88e0] -Event: 0.328 Thread 0x00007f70ec1c3ed0 1423 3 java.lang.invoke.DirectMethodHandle::shouldBeInitialized (127 bytes) -Event: 0.328 Thread 0x00007f702c554fc0 1424 4 java.lang.invoke.MethodType::hashCode (53 bytes) -Event: 0.328 Thread 0x00007f70380b01d0 1426 3 sun.invoke.util.Wrapper::isSubwordOrInt (20 bytes) -Event: 0.328 Thread 0x00007f702c134ef0 1427 3 sun.invoke.util.Wrapper::isIntegral (23 bytes) -Event: 0.328 Thread 0x00007f702c134ef0 nmethod 1427 0x00007f70d56d8c90 code [0x00007f70d56d8e40, 0x00007f70d56d9090] -Event: 0.328 Thread 0x00007f702c134ef0 1428 3 sun.invoke.util.Wrapper::isNumeric (16 bytes) -Event: 0.328 Thread 0x00007f70380b01d0 nmethod 1426 0x00007f70d56d9110 code [0x00007f70d56d92e0, 0x00007f70d56d96f0] -Event: 0.328 Thread 0x00007f702c134ef0 nmethod 1428 0x00007f70d56d9810 code [0x00007f70d56d99a0, 0x00007f70d56d9b10] -Event: 0.328 Thread 0x00007f70ec1c3ed0 nmethod 1423 0x00007f70d56d9b90 code [0x00007f70d56d9e20, 0x00007f70d56da7f0] -Event: 0.328 Thread 0x00007f702c134ef0 1431 3 java.util.ImmutableCollections$ListN::size (6 bytes) -Event: 0.328 Thread 0x00007f702c134ef0 nmethod 1431 0x00007f70d56daa90 code [0x00007f70d56dac20, 0x00007f70d56dad30] -Event: 0.329 Thread 0x00007f702c554fc0 nmethod 1424 0x00007f70dcffa190 code [0x00007f70dcffa340, 0x00007f70dcffa4f8] -Event: 0.329 Thread 0x00007f702c554fc0 1434 4 java.lang.StringCoding::hasNegatives (25 bytes) -Event: 0.330 Thread 0x00007f702c554fc0 nmethod 1434 0x00007f70dcffa690 code [0x00007f70dcffa820, 0x00007f70dcffa978] -Event: 0.330 Thread 0x00007f702c554fc0 1430 4 java.lang.StringBuilder:: (7 bytes) - -GC Heap History (0 events): -No events - -Dll operation events (8 events): -Event: 0.001 Loaded shared library /usr/lib/jvm/java-17-openjdk-amd64/lib/libjava.so -Event: 0.013 Loaded shared library /usr/lib/jvm/java-17-openjdk-amd64/lib/libjsvml.so -Event: 0.019 Loaded shared library /usr/lib/jvm/java-17-openjdk-amd64/lib/libnio.so -Event: 0.020 Loaded shared library /usr/lib/jvm/java-17-openjdk-amd64/lib/libzip.so -Event: 0.039 Loaded shared library /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement.so -Event: 0.040 Loaded shared library /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement_ext.so -Event: 0.048 Loaded shared library /usr/lib/jvm/java-17-openjdk-amd64/lib/libjimage.so -Event: 0.295 Loaded shared library /usr/local/lib/libtidesdb_jni.so - -Deoptimization events (20 events): -Event: 0.269 Thread 0x00007f70ec014510 DEOPT PACKING pc=0x00007f70dcff1464 sp=0x00007f70f37fbed0 -Event: 0.269 Thread 0x00007f70ec014510 DEOPT UNPACKING pc=0x00007f70dc8b8b19 sp=0x00007f70f37fbe88 mode 2 -Event: 0.269 Thread 0x00007f70ec014510 Uncommon trap: trap_request=0xffffffbe fr.pc=0x00007f70dcff1464 relative=0x00000000000001c4 -Event: 0.269 Thread 0x00007f70ec014510 Uncommon trap: reason=profile_predicate action=maybe_recompile pc=0x00007f70dcff1464 method=java.util.LinkedHashMap.valuesToArray([Ljava/lang/Object;)[Ljava/lang/Object; @ 12 c2 -Event: 0.269 Thread 0x00007f70ec014510 DEOPT PACKING pc=0x00007f70dcff1464 sp=0x00007f70f37fc160 -Event: 0.269 Thread 0x00007f70ec014510 DEOPT UNPACKING pc=0x00007f70dc8b8b19 sp=0x00007f70f37fc118 mode 2 -Event: 0.273 Thread 0x00007f70ec014510 DEOPT PACKING pc=0x00007f70d54dffa3 sp=0x00007f70f37fbbc0 -Event: 0.273 Thread 0x00007f70ec014510 DEOPT UNPACKING pc=0x00007f70dc8b964f sp=0x00007f70f37fb040 mode 0 -Event: 0.278 Thread 0x00007f70ec014510 Uncommon trap: trap_request=0xffffff45 fr.pc=0x00007f70dcfbe038 relative=0x0000000000000218 -Event: 0.278 Thread 0x00007f70ec014510 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00007f70dcfbe038 method=java.lang.String.startsWith(Ljava/lang/String;I)Z @ 1 c2 -Event: 0.278 Thread 0x00007f70ec014510 DEOPT PACKING pc=0x00007f70dcfbe038 sp=0x00007f70f37faa50 -Event: 0.278 Thread 0x00007f70ec014510 DEOPT UNPACKING pc=0x00007f70dc8b8b19 sp=0x00007f70f37fa9d8 mode 2 -Event: 0.291 Thread 0x00007f70ec014510 Uncommon trap: trap_request=0xffffff45 fr.pc=0x00007f70dcfce0e8 relative=0x0000000000000048 -Event: 0.291 Thread 0x00007f70ec014510 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00007f70dcfce0e8 method=java.lang.CharacterData.of(I)Ljava/lang/CharacterData; @ 4 c2 -Event: 0.291 Thread 0x00007f70ec014510 DEOPT PACKING pc=0x00007f70dcfce0e8 sp=0x00007f70f37fb020 -Event: 0.291 Thread 0x00007f70ec014510 DEOPT UNPACKING pc=0x00007f70dc8b8b19 sp=0x00007f70f37fafe0 mode 2 -Event: 0.293 Thread 0x00007f70ec014510 Uncommon trap: trap_request=0xffffff45 fr.pc=0x00007f70dcfb5cc4 relative=0x00000000000001a4 -Event: 0.293 Thread 0x00007f70ec014510 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00007f70dcfb5cc4 method=java.lang.String.isLatin1()Z @ 10 c2 -Event: 0.293 Thread 0x00007f70ec014510 DEOPT PACKING pc=0x00007f70dcfb5cc4 sp=0x00007f70f37fb8e0 -Event: 0.293 Thread 0x00007f70ec014510 DEOPT UNPACKING pc=0x00007f70dc8b8b19 sp=0x00007f70f37fb830 mode 2 - -Classes unloaded (0 events): -No events - -Classes redefined (0 events): -No events - -Internal exceptions (20 events): -Event: 0.198 Thread 0x00007f70ec014510 Exception (0x00000005408cf258) -thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] -Event: 0.199 Thread 0x00007f70ec014510 Exception (0x00000005408f42c8) -thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] -Event: 0.200 Thread 0x00007f70ec014510 Exception (0x00000005408f7c48) -thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] -Event: 0.200 Thread 0x00007f70ec014510 Exception (0x0000000540900108) -thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] -Event: 0.207 Thread 0x00007f70ec014510 Exception (0x00000005409873f8) -thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] -Event: 0.209 Thread 0x00007f70ec014510 Exception (0x00000005409a7340) -thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 826] -Event: 0.209 Thread 0x00007f70ec014510 Exception (0x00000005409a9fb8) -thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 826] -Event: 0.209 Thread 0x00007f70ec014510 Exception (0x00000005409b3860) -thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] -Event: 0.226 Thread 0x00007f70ec014510 Exception (0x0000000540b14b50) -thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] -Event: 0.226 Thread 0x00007f70ec014510 Exception (0x0000000540b18478) -thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 826] -Event: 0.227 Thread 0x00007f70ec014510 Exception (0x0000000540b37760) -thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] -Event: 0.232 Thread 0x00007f70ec014510 Exception (0x0000000540bb0220) -thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] -Event: 0.240 Thread 0x00007f70ec014510 Exception (0x0000000540c8db38) -thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] -Event: 0.244 Thread 0x00007f70ec014510 Exception (0x0000000540cfdd40) -thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] -Event: 0.253 Thread 0x00007f70ec014510 Exception (0x0000000540de3678) -thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] -Event: 0.263 Thread 0x00007f70ec014510 Exception (0x0000000540e97460) -thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] -Event: 0.263 Thread 0x00007f70ec014510 Exception (0x0000000540e9c018) -thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] -Event: 0.264 Thread 0x00007f70ec014510 Exception (0x0000000540ead3e0) -thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 758] -Event: 0.265 Thread 0x00007f70ec014510 Exception (0x0000000540eb11d8) -thrown [./src/hotspot/share/interpreter/linkResolver.cpp, line 826] -Event: 0.331 Thread 0x00007f70ec014510 Exception > (0x00000005400354a8) -thrown [./src/hotspot/share/prims/jni.cpp, line 1073] - -VM Operations (20 events): -Event: 0.110 Executing VM operation: HandshakeAllThreads -Event: 0.110 Executing VM operation: HandshakeAllThreads done -Event: 0.152 Executing VM operation: HandshakeAllThreads -Event: 0.152 Executing VM operation: HandshakeAllThreads done -Event: 0.204 Executing VM operation: HandshakeAllThreads -Event: 0.204 Executing VM operation: HandshakeAllThreads done -Event: 0.206 Executing VM operation: ICBufferFull -Event: 0.206 Executing VM operation: ICBufferFull done -Event: 0.212 Executing VM operation: HandshakeAllThreads -Event: 0.212 Executing VM operation: HandshakeAllThreads done -Event: 0.235 Executing VM operation: HandshakeAllThreads -Event: 0.235 Executing VM operation: HandshakeAllThreads done -Event: 0.244 Executing VM operation: HandshakeAllThreads -Event: 0.244 Executing VM operation: HandshakeAllThreads done -Event: 0.267 Executing VM operation: HandshakeAllThreads -Event: 0.267 Executing VM operation: HandshakeAllThreads done -Event: 0.277 Executing VM operation: HandshakeAllThreads -Event: 0.277 Executing VM operation: HandshakeAllThreads done -Event: 0.292 Executing VM operation: HandshakeAllThreads -Event: 0.292 Executing VM operation: HandshakeAllThreads done - -Events (20 events): -Event: 0.287 loading class java/lang/constant/DirectMethodHandleDesc$1 -Event: 0.287 loading class java/lang/constant/DirectMethodHandleDesc$1 done -Event: 0.287 loading class java/lang/constant/PrimitiveClassDescImpl -Event: 0.287 loading class java/lang/constant/DynamicConstantDesc -Event: 0.287 loading class java/lang/constant/DynamicConstantDesc done -Event: 0.287 loading class java/lang/constant/PrimitiveClassDescImpl done -Event: 0.288 loading class java/lang/constant/DynamicConstantDesc$AnonymousDynamicConstantDesc -Event: 0.288 loading class java/lang/constant/DynamicConstantDesc$AnonymousDynamicConstantDesc done -Event: 0.288 loading class sun/nio/fs/UnixFileModeAttribute -Event: 0.288 loading class sun/nio/fs/UnixFileModeAttribute done -Event: 0.288 loading class sun/nio/fs/UnixFileModeAttribute$1 -Event: 0.288 loading class sun/nio/fs/UnixFileModeAttribute$1 done -Event: 0.288 loading class jdk/internal/reflect/UnsafeObjectFieldAccessorImpl -Event: 0.288 loading class jdk/internal/reflect/UnsafeObjectFieldAccessorImpl done -Event: 0.291 loading class java/time/format/DateTimeParseException -Event: 0.291 loading class java/time/DateTimeException -Event: 0.291 loading class java/time/DateTimeException done -Event: 0.291 loading class java/time/format/DateTimeParseException done -Event: 0.295 loading class java/lang/UnsatisfiedLinkError -Event: 0.295 loading class java/lang/UnsatisfiedLinkError done - - -Dynamic libraries: -513000000-542000000 rw-p 00000000 00:00 0 -542000000-7ff000000 ---p 00000000 00:00 0 -7ff000000-7ff700000 rw-p 00000000 00:00 0 -7ff700000-7ff775000 rw-p 00c75000 08:14 11213468 /usr/lib/jvm/java-17-openjdk-amd64/lib/server/classes.jsa -7ff775000-7ff800000 rw-p 00000000 00:00 0 -7ff800000-7ff877000 rw-p 00bfe000 08:14 11213468 /usr/lib/jvm/java-17-openjdk-amd64/lib/server/classes.jsa -7ff877000-800000000 rw-p 00000000 00:00 0 -556ba0f6f000-556ba0f70000 r--p 00000000 08:14 11213397 /usr/lib/jvm/java-17-openjdk-amd64/bin/java -556ba0f70000-556ba0f71000 r-xp 00001000 08:14 11213397 /usr/lib/jvm/java-17-openjdk-amd64/bin/java -556ba0f71000-556ba0f72000 r--p 00002000 08:14 11213397 /usr/lib/jvm/java-17-openjdk-amd64/bin/java -556ba0f72000-556ba0f73000 r--p 00002000 08:14 11213397 /usr/lib/jvm/java-17-openjdk-amd64/bin/java -556ba0f73000-556ba0f74000 rw-p 00003000 08:14 11213397 /usr/lib/jvm/java-17-openjdk-amd64/bin/java -556ba2f54000-556ba2f9b000 rw-p 00000000 00:00 0 [heap] -7f6fcfffe000-7f6ff0021000 rw-p 00000000 00:00 0 -7f6ff0021000-7f6ff4000000 ---p 00000000 00:00 0 -7f6ff8000000-7f6ff8021000 rw-p 00000000 00:00 0 -7f6ff8021000-7f6ffc000000 ---p 00000000 00:00 0 -7f6ffc000000-7f6ffc021000 rw-p 00000000 00:00 0 -7f6ffc021000-7f7000000000 ---p 00000000 00:00 0 -7f7000000000-7f7000021000 rw-p 00000000 00:00 0 -7f7000021000-7f7004000000 ---p 00000000 00:00 0 -7f7006ffe000-7f7006fff000 ---p 00000000 00:00 0 -7f7006fff000-7f70077ff000 rw-p 00000000 00:00 0 -7f70077ff000-7f7007800000 ---p 00000000 00:00 0 -7f7007800000-7f7008109000 rw-p 00000000 00:00 0 -7f7008109000-7f700c000000 ---p 00000000 00:00 0 -7f700c000000-7f700cd75000 rw-p 00000000 00:00 0 -7f700cd75000-7f7010000000 ---p 00000000 00:00 0 -7f7010000000-7f7010bbd000 rw-p 00000000 00:00 0 -7f7010bbd000-7f7014000000 ---p 00000000 00:00 0 -7f7014000000-7f7014a6d000 rw-p 00000000 00:00 0 -7f7014a6d000-7f7018000000 ---p 00000000 00:00 0 -7f7018000000-7f7018bb3000 rw-p 00000000 00:00 0 -7f7018bb3000-7f701c000000 ---p 00000000 00:00 0 -7f701c000000-7f701c361000 rw-p 00000000 00:00 0 -7f701c361000-7f7020000000 ---p 00000000 00:00 0 -7f7020000000-7f7020021000 rw-p 00000000 00:00 0 -7f7020021000-7f7024000000 ---p 00000000 00:00 0 -7f7024000000-7f7024021000 rw-p 00000000 00:00 0 -7f7024021000-7f7028000000 ---p 00000000 00:00 0 -7f7028000000-7f7028021000 rw-p 00000000 00:00 0 -7f7028021000-7f702c000000 ---p 00000000 00:00 0 -7f702c000000-7f702c5b8000 rw-p 00000000 00:00 0 -7f702c5b8000-7f7030000000 ---p 00000000 00:00 0 -7f7030000000-7f7030021000 rw-p 00000000 00:00 0 -7f7030021000-7f7034000000 ---p 00000000 00:00 0 -7f7034000000-7f7034021000 rw-p 00000000 00:00 0 -7f7034021000-7f7038000000 ---p 00000000 00:00 0 -7f7038000000-7f7038452000 rw-p 00000000 00:00 0 -7f7038452000-7f703c000000 ---p 00000000 00:00 0 -7f703c000000-7f703c021000 rw-p 00000000 00:00 0 -7f703c021000-7f7040000000 ---p 00000000 00:00 0 -7f7040000000-7f7040021000 rw-p 00000000 00:00 0 -7f7040021000-7f7044000000 ---p 00000000 00:00 0 -7f7044000000-7f7044e54000 rw-p 00000000 00:00 0 -7f7044e54000-7f7048000000 ---p 00000000 00:00 0 -7f7048000000-7f7048021000 rw-p 00000000 00:00 0 -7f7048021000-7f704c000000 ---p 00000000 00:00 0 -7f704c000000-7f704c021000 rw-p 00000000 00:00 0 -7f704c021000-7f7050000000 ---p 00000000 00:00 0 -7f7050000000-7f7050021000 rw-p 00000000 00:00 0 -7f7050021000-7f7054000000 ---p 00000000 00:00 0 -7f7054000000-7f7054021000 rw-p 00000000 00:00 0 -7f7054021000-7f7058000000 ---p 00000000 00:00 0 -7f7058000000-7f7058021000 rw-p 00000000 00:00 0 -7f7058021000-7f705c000000 ---p 00000000 00:00 0 -7f705c3bc000-7f705c648000 rw-p 00000000 00:00 0 -7f705c648000-7f705c649000 ---p 00000000 00:00 0 -7f705c649000-7f705ce49000 rw-p 00000000 00:00 0 -7f705ce49000-7f705ce4a000 ---p 00000000 00:00 0 -7f705ce4a000-7f705d64a000 rw-p 00000000 00:00 0 -7f705d64a000-7f705d64b000 ---p 00000000 00:00 0 -7f705d64b000-7f705de4b000 rw-p 00000000 00:00 0 -7f705de4b000-7f705de4f000 r--p 00000000 08:14 10908334 /usr/lib/x86_64-linux-gnu/libzstd.so.1.5.4 -7f705de4f000-7f705deed000 r-xp 00004000 08:14 10908334 /usr/lib/x86_64-linux-gnu/libzstd.so.1.5.4 -7f705deed000-7f705defd000 r--p 000a2000 08:14 10908334 /usr/lib/x86_64-linux-gnu/libzstd.so.1.5.4 -7f705defd000-7f705defe000 r--p 000b1000 08:14 10908334 /usr/lib/x86_64-linux-gnu/libzstd.so.1.5.4 -7f705defe000-7f705deff000 rw-p 000b2000 08:14 10908334 /usr/lib/x86_64-linux-gnu/libzstd.so.1.5.4 -7f705deff000-7f705df03000 ---p 00000000 00:00 0 -7f705df03000-7f705dfff000 rw-p 00000000 00:00 0 -7f705dfff000-7f705e003000 ---p 00000000 00:00 0 -7f705e003000-7f705e0ff000 rw-p 00000000 00:00 0 -7f705e0ff000-7f705e103000 ---p 00000000 00:00 0 -7f705e103000-7f705e1ff000 rw-p 00000000 00:00 0 -7f705e1ff000-7f705e203000 ---p 00000000 00:00 0 -7f705e203000-7f705e2ff000 rw-p 00000000 00:00 0 -7f705e2ff000-7f705e303000 ---p 00000000 00:00 0 -7f705e303000-7f705e3ff000 rw-p 00000000 00:00 0 -7f705e3ff000-7f705e403000 ---p 00000000 00:00 0 -7f705e403000-7f705e4ff000 rw-p 00000000 00:00 0 -7f705e4ff000-7f705e503000 ---p 00000000 00:00 0 -7f705e503000-7f705e5ff000 rw-p 00000000 00:00 0 -7f705e5ff000-7f705e603000 ---p 00000000 00:00 0 -7f705e603000-7f705e6ff000 rw-p 00000000 00:00 0 -7f705e6ff000-7f705e703000 ---p 00000000 00:00 0 -7f705e703000-7f705e7ff000 rw-p 00000000 00:00 0 -7f705e7ff000-7f705e800000 ---p 00000000 00:00 0 -7f705e800000-7f705e900000 rw-p 00000000 00:00 0 -7f705e900000-7f705e904000 ---p 00000000 00:00 0 -7f705e904000-7f705ea00000 rw-p 00000000 00:00 0 -7f705ea00000-7f705ef74000 r--p 00000000 08:14 10879460 /usr/lib/locale/locale-archive -7f705f000000-7f705f320000 rw-p 00000000 00:00 0 -7f705f320000-7f705f400000 ---p 00000000 00:00 0 -7f705f400000-7f705f6d0000 rw-p 00000000 00:00 0 -7f705f6d0000-7f7063000000 ---p 00000000 00:00 0 -7f7063000000-7f7063bc6000 rw-p 00001000 08:14 11213468 /usr/lib/jvm/java-17-openjdk-amd64/lib/server/classes.jsa -7f7063bc6000-7f7064000000 ---p 00000000 00:00 0 -7f7064000000-7f7064030000 rw-p 00000000 00:00 0 -7f7064030000-7f7064070000 rw-p 00000000 00:00 0 -7f7064070000-7f70640d0000 rw-p 00000000 00:00 0 -7f70640d0000-7f70640f0000 rw-p 00000000 00:00 0 -7f70640f0000-7f70a4000000 ---p 00000000 00:00 0 -7f70a4000000-7f70a4021000 rw-p 00000000 00:00 0 -7f70a4021000-7f70a8000000 ---p 00000000 00:00 0 -7f70a8000000-7f70a8021000 rw-p 00000000 00:00 0 -7f70a8021000-7f70ac000000 ---p 00000000 00:00 0 -7f70ac000000-7f70ac021000 rw-p 00000000 00:00 0 -7f70ac021000-7f70b0000000 ---p 00000000 00:00 0 -7f70b0000000-7f70b0021000 rw-p 00000000 00:00 0 -7f70b0021000-7f70b4000000 ---p 00000000 00:00 0 -7f70b4000000-7f70b4021000 rw-p 00000000 00:00 0 -7f70b4021000-7f70b8000000 ---p 00000000 00:00 0 -7f70b8078000-7f70b8080000 r--p 00000000 08:14 11018131 /usr/local/lib/libtidesdb.so -7f70b8080000-7f70b80c9000 r-xp 00008000 08:14 11018131 /usr/local/lib/libtidesdb.so -7f70b80c9000-7f70b80d7000 r--p 00051000 08:14 11018131 /usr/local/lib/libtidesdb.so -7f70b80d7000-7f70b80d8000 r--p 0005e000 08:14 11018131 /usr/local/lib/libtidesdb.so -7f70b80d8000-7f70b80d9000 rw-p 0005f000 08:14 11018131 /usr/local/lib/libtidesdb.so -7f70b80d9000-7f70b80da000 rw-p 00000000 00:00 0 -7f70b80da000-7f70b80de000 ---p 00000000 00:00 0 -7f70b80de000-7f70b81da000 rw-p 00000000 00:00 0 -7f70b81da000-7f70b81de000 ---p 00000000 00:00 0 -7f70b81de000-7f70b82da000 rw-p 00000000 00:00 0 -7f70b82da000-7f70b82de000 ---p 00000000 00:00 0 -7f70b82de000-7f70b83da000 rw-p 00000000 00:00 0 -7f70b83da000-7f70b83de000 ---p 00000000 00:00 0 -7f70b83de000-7f70b84da000 rw-p 00000000 00:00 0 -7f70b84da000-7f70b84de000 ---p 00000000 00:00 0 -7f70b84de000-7f70b85da000 rw-p 00000000 00:00 0 -7f70b85da000-7f70b85de000 ---p 00000000 00:00 0 -7f70b85de000-7f70b86da000 rw-p 00000000 00:00 0 -7f70b86da000-7f70b86de000 ---p 00000000 00:00 0 -7f70b86de000-7f70b87da000 rw-p 00000000 00:00 0 -7f70b87da000-7f70b87de000 ---p 00000000 00:00 0 -7f70b87de000-7f70b88da000 rw-p 00000000 00:00 0 -7f70b88da000-7f70b88db000 ---p 00000000 00:00 0 -7f70b88db000-7f70b89db000 rw-p 00000000 00:00 0 -7f70b89db000-7f70b89e0000 r--p 00000000 08:14 11213452 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjsvml.so -7f70b89e0000-7f70b8a21000 r-xp 00005000 08:14 11213452 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjsvml.so -7f70b8a21000-7f70b8aaa000 r--p 00046000 08:14 11213452 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjsvml.so -7f70b8aaa000-7f70b8aab000 r--p 000ce000 08:14 11213452 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjsvml.so -7f70b8aab000-7f70b8aac000 rw-p 000cf000 08:14 11213452 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjsvml.so -7f70b8aac000-7f70b8aad000 ---p 00000000 00:00 0 -7f70b8aad000-7f70b8bad000 rw-p 00000000 00:00 0 -7f70b8bad000-7f70b8bae000 ---p 00000000 00:00 0 -7f70b8bae000-7f70bba70000 rw-p 00000000 00:00 0 -7f70bba70000-7f70c69b0000 ---p 00000000 00:00 0 -7f70c69b0000-7f70c75b0000 rw-p 00000000 00:00 0 -7f70c75b0000-7f70d24f0000 ---p 00000000 00:00 0 -7f70d24f0000-7f70d26a8000 rw-p 00000000 00:00 0 -7f70d26a8000-7f70d3c90000 ---p 00000000 00:00 0 -7f70d3c90000-7f70d3e10000 rw-p 00000000 00:00 0 -7f70d3e10000-7f70d53f8000 ---p 00000000 00:00 0 -7f70d53f8000-7f70d5400000 rw-p 00000000 00:00 0 -7f70d5400000-7f70d56e0000 rwxp 00000000 00:00 0 -7f70d56e0000-7f70dc85f000 ---p 00000000 00:00 0 -7f70dc85f000-7f70dcacf000 rwxp 00000000 00:00 0 -7f70dcacf000-7f70dcfa0000 ---p 00000000 00:00 0 -7f70dcfa0000-7f70dd210000 rwxp 00000000 00:00 0 -7f70dd210000-7f70e4400000 ---p 00000000 00:00 0 -7f70e4400000-7f70ebe68000 r--s 00000000 08:14 11213467 /usr/lib/jvm/java-17-openjdk-amd64/lib/modules -7f70ebe7e000-7f70effa5000 rw-p 00000000 00:00 0 -7f70effa5000-7f70f0000000 ---p 00000000 00:00 0 -7f70f0051000-7f70f0ab6000 rw-p 00000000 00:00 0 -7f70f0ab6000-7f70f0ab7000 ---p 00000000 00:00 0 -7f70f0ab7000-7f70f0bb7000 rw-p 00000000 00:00 0 -7f70f0bb7000-7f70f0bb8000 ---p 00000000 00:00 0 -7f70f0bb8000-7f70f0cb8000 rw-p 00000000 00:00 0 -7f70f0cb8000-7f70f0cb9000 ---p 00000000 00:00 0 -7f70f0cb9000-7f70f0f31000 rw-p 00000000 00:00 0 -7f70f0f31000-7f70f2519000 ---p 00000000 00:00 0 -7f70f2519000-7f70f3233000 rw-p 00000000 00:00 0 -7f70f3233000-7f70f3317000 ---p 00000000 00:00 0 -7f70f3317000-7f70f331d000 rw-p 00000000 00:00 0 -7f70f331d000-7f70f3400000 ---p 00000000 00:00 0 -7f70f3400000-7f70f349c000 r--p 00000000 08:14 10888123 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.32 -7f70f349c000-7f70f35cd000 r-xp 0009c000 08:14 10888123 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.32 -7f70f35cd000-7f70f365a000 r--p 001cd000 08:14 10888123 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.32 -7f70f365a000-7f70f3665000 r--p 0025a000 08:14 10888123 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.32 -7f70f3665000-7f70f3668000 rw-p 00265000 08:14 10888123 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.32 -7f70f3668000-7f70f366c000 rw-p 00000000 00:00 0 -7f70f3670000-7f70f3700000 rw-p 00000000 00:00 0 -7f70f3700000-7f70f3704000 ---p 00000000 00:00 0 -7f70f3704000-7f70f3800000 rw-p 00000000 00:00 0 -7f70f3800000-7f70f3a51000 r--p 00000000 08:14 11213471 /usr/lib/jvm/java-17-openjdk-amd64/lib/server/libjvm.so -7f70f3a51000-7f70f47b3000 r-xp 00251000 08:14 11213471 /usr/lib/jvm/java-17-openjdk-amd64/lib/server/libjvm.so -7f70f47b3000-7f70f4a33000 r--p 00fb3000 08:14 11213471 /usr/lib/jvm/java-17-openjdk-amd64/lib/server/libjvm.so -7f70f4a33000-7f70f4aeb000 r--p 01233000 08:14 11213471 /usr/lib/jvm/java-17-openjdk-amd64/lib/server/libjvm.so -7f70f4aeb000-7f70f4b20000 rw-p 012eb000 08:14 11213471 /usr/lib/jvm/java-17-openjdk-amd64/lib/server/libjvm.so -7f70f4b20000-7f70f4b7a000 rw-p 00000000 00:00 0 -7f70f4b7b000-7f70f4b7e000 r--p 00000000 08:14 10907948 /usr/lib/x86_64-linux-gnu/liblz4.so.1.9.4 -7f70f4b7e000-7f70f4b99000 r-xp 00003000 08:14 10907948 /usr/lib/x86_64-linux-gnu/liblz4.so.1.9.4 -7f70f4b99000-7f70f4b9c000 r--p 0001e000 08:14 10907948 /usr/lib/x86_64-linux-gnu/liblz4.so.1.9.4 -7f70f4b9c000-7f70f4b9d000 r--p 00020000 08:14 10907948 /usr/lib/x86_64-linux-gnu/liblz4.so.1.9.4 -7f70f4b9d000-7f70f4b9e000 rw-p 00021000 08:14 10907948 /usr/lib/x86_64-linux-gnu/liblz4.so.1.9.4 -7f70f4bb8000-7f70f4bbf000 r--s 00000000 08:14 10965240 /usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache -7f70f4bbf000-7f70f4c00000 rw-p 00000000 00:00 0 -7f70f4c00000-7f70f4c22000 r--p 00000000 08:14 10888103 /usr/lib/x86_64-linux-gnu/libc.so.6 -7f70f4c22000-7f70f4d9a000 r-xp 00022000 08:14 10888103 /usr/lib/x86_64-linux-gnu/libc.so.6 -7f70f4d9a000-7f70f4df2000 r--p 0019a000 08:14 10888103 /usr/lib/x86_64-linux-gnu/libc.so.6 -7f70f4df2000-7f70f4df6000 r--p 001f1000 08:14 10888103 /usr/lib/x86_64-linux-gnu/libc.so.6 -7f70f4df6000-7f70f4df8000 rw-p 001f5000 08:14 10888103 /usr/lib/x86_64-linux-gnu/libc.so.6 -7f70f4df8000-7f70f4e05000 rw-p 00000000 00:00 0 -7f70f4e09000-7f70f4e0c000 r--p 00000000 08:14 10881736 /usr/lib/x86_64-linux-gnu/libsnappy.so.1.1.9 -7f70f4e0c000-7f70f4e11000 r-xp 00003000 08:14 10881736 /usr/lib/x86_64-linux-gnu/libsnappy.so.1.1.9 -7f70f4e11000-7f70f4e12000 r--p 00008000 08:14 10881736 /usr/lib/x86_64-linux-gnu/libsnappy.so.1.1.9 -7f70f4e12000-7f70f4e13000 r--p 00009000 08:14 10881736 /usr/lib/x86_64-linux-gnu/libsnappy.so.1.1.9 -7f70f4e13000-7f70f4e14000 rw-p 0000a000 08:14 10881736 /usr/lib/x86_64-linux-gnu/libsnappy.so.1.1.9 -7f70f4e14000-7f70f4e17000 r--p 00000000 08:14 11022710 /usr/local/lib/libtidesdb_jni.so -7f70f4e17000-7f70f4e1b000 r-xp 00003000 08:14 11022710 /usr/local/lib/libtidesdb_jni.so -7f70f4e1b000-7f70f4e1c000 r--p 00007000 08:14 11022710 /usr/local/lib/libtidesdb_jni.so -7f70f4e1c000-7f70f4e1d000 r--p 00007000 08:14 11022710 /usr/local/lib/libtidesdb_jni.so -7f70f4e1d000-7f70f4e1e000 rw-p 00008000 08:14 11022710 /usr/local/lib/libtidesdb_jni.so -7f70f4e1e000-7f70f4e20000 r--p 00000000 08:14 11213456 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement_ext.so -7f70f4e20000-7f70f4e23000 r-xp 00002000 08:14 11213456 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement_ext.so -7f70f4e23000-7f70f4e25000 r--p 00005000 08:14 11213456 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement_ext.so -7f70f4e25000-7f70f4e26000 r--p 00006000 08:14 11213456 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement_ext.so -7f70f4e26000-7f70f4e27000 rw-p 00007000 08:14 11213456 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement_ext.so -7f70f4e27000-7f70f4e29000 r--p 00000000 08:14 11213454 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement.so -7f70f4e29000-7f70f4e2a000 r-xp 00002000 08:14 11213454 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement.so -7f70f4e2a000-7f70f4e2b000 r--p 00003000 08:14 11213454 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement.so -7f70f4e2b000-7f70f4e2c000 r--p 00003000 08:14 11213454 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement.so -7f70f4e2c000-7f70f4e2d000 rw-p 00004000 08:14 11213454 /usr/lib/jvm/java-17-openjdk-amd64/lib/libmanagement.so -7f70f4e2d000-7f70f4e31000 r--p 00000000 08:14 11213458 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnet.so -7f70f4e31000-7f70f4e3f000 r-xp 00004000 08:14 11213458 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnet.so -7f70f4e3f000-7f70f4e43000 r--p 00012000 08:14 11213458 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnet.so -7f70f4e43000-7f70f4e44000 r--p 00015000 08:14 11213458 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnet.so -7f70f4e44000-7f70f4e45000 rw-p 00016000 08:14 11213458 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnet.so -7f70f4e45000-7f70f4e4c000 r--p 00000000 08:14 11213459 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnio.so -7f70f4e4c000-7f70f4e55000 r-xp 00007000 08:14 11213459 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnio.so -7f70f4e55000-7f70f4e59000 r--p 00010000 08:14 11213459 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnio.so -7f70f4e59000-7f70f4e5a000 r--p 00014000 08:14 11213459 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnio.so -7f70f4e5a000-7f70f4e5b000 rw-p 00015000 08:14 11213459 /usr/lib/jvm/java-17-openjdk-amd64/lib/libnio.so -7f70f4e5b000-7f70f4ebe000 rw-p 00000000 00:00 0 -7f70f4ebe000-7f70f4ec8000 ---p 00000000 00:00 0 -7f70f4ec8000-7f70f4ed4000 r--p 00000000 08:14 11213445 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjava.so -7f70f4ed4000-7f70f4ee6000 r-xp 0000c000 08:14 11213445 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjava.so -7f70f4ee6000-7f70f4eec000 r--p 0001e000 08:14 11213445 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjava.so -7f70f4eec000-7f70f4eed000 r--p 00023000 08:14 11213445 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjava.so -7f70f4eed000-7f70f4eee000 rw-p 00024000 08:14 11213445 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjava.so -7f70f4eee000-7f70f4eef000 rw-p 00000000 00:00 0 -7f70f4eef000-7f70f4ef2000 r--p 00000000 08:14 10888119 /usr/lib/x86_64-linux-gnu/libgcc_s.so.1 -7f70f4ef2000-7f70f4f0d000 r-xp 00003000 08:14 10888119 /usr/lib/x86_64-linux-gnu/libgcc_s.so.1 -7f70f4f0d000-7f70f4f11000 r--p 0001e000 08:14 10888119 /usr/lib/x86_64-linux-gnu/libgcc_s.so.1 -7f70f4f11000-7f70f4f12000 r--p 00021000 08:14 10888119 /usr/lib/x86_64-linux-gnu/libgcc_s.so.1 -7f70f4f12000-7f70f4f13000 rw-p 00022000 08:14 10888119 /usr/lib/x86_64-linux-gnu/libgcc_s.so.1 -7f70f4f13000-7f70f4f21000 r--p 00000000 08:14 10888109 /usr/lib/x86_64-linux-gnu/libm.so.6 -7f70f4f21000-7f70f4f9f000 r-xp 0000e000 08:14 10888109 /usr/lib/x86_64-linux-gnu/libm.so.6 -7f70f4f9f000-7f70f4ffa000 r--p 0008c000 08:14 10888109 /usr/lib/x86_64-linux-gnu/libm.so.6 -7f70f4ffa000-7f70f4ffb000 r--p 000e6000 08:14 10888109 /usr/lib/x86_64-linux-gnu/libm.so.6 -7f70f4ffb000-7f70f4ffc000 rw-p 000e7000 08:14 10888109 /usr/lib/x86_64-linux-gnu/libm.so.6 -7f70f4ffc000-7f70f4fff000 rw-p 00000000 00:00 0 -7f70f4fff000-7f70f5001000 r--p 00000000 08:14 11213449 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjli.so -7f70f5001000-7f70f500b000 r-xp 00002000 08:14 11213449 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjli.so -7f70f500b000-7f70f500e000 r--p 0000c000 08:14 11213449 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjli.so -7f70f500e000-7f70f500f000 r--p 0000e000 08:14 11213449 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjli.so -7f70f500f000-7f70f5010000 rw-p 0000f000 08:14 11213449 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjli.so -7f70f5010000-7f70f5013000 r--p 00000000 08:14 10908333 /usr/lib/x86_64-linux-gnu/libz.so.1.2.13 -7f70f5013000-7f70f5025000 r-xp 00003000 08:14 10908333 /usr/lib/x86_64-linux-gnu/libz.so.1.2.13 -7f70f5025000-7f70f502c000 r--p 00015000 08:14 10908333 /usr/lib/x86_64-linux-gnu/libz.so.1.2.13 -7f70f502c000-7f70f502d000 r--p 0001b000 08:14 10908333 /usr/lib/x86_64-linux-gnu/libz.so.1.2.13 -7f70f502d000-7f70f502e000 rw-p 0001c000 08:14 10908333 /usr/lib/x86_64-linux-gnu/libz.so.1.2.13 -7f70f5031000-7f70f5033000 r--p 00000000 08:14 11213466 /usr/lib/jvm/java-17-openjdk-amd64/lib/libzip.so -7f70f5033000-7f70f5038000 r-xp 00002000 08:14 11213466 /usr/lib/jvm/java-17-openjdk-amd64/lib/libzip.so -7f70f5038000-7f70f503a000 r--p 00007000 08:14 11213466 /usr/lib/jvm/java-17-openjdk-amd64/lib/libzip.so -7f70f503a000-7f70f503b000 r--p 00008000 08:14 11213466 /usr/lib/jvm/java-17-openjdk-amd64/lib/libzip.so -7f70f503b000-7f70f503c000 rw-p 00009000 08:14 11213466 /usr/lib/jvm/java-17-openjdk-amd64/lib/libzip.so -7f70f503c000-7f70f5044000 rw-s 00000000 08:14 18885538 /tmp/hsperfdata_agpmastersystem/2050292 -7f70f5044000-7f70f5045000 ---p 00000000 00:00 0 -7f70f5045000-7f70f5046000 r--p 00000000 00:00 0 -7f70f5046000-7f70f5047000 ---p 00000000 00:00 0 -7f70f5047000-7f70f5049000 r--p 00000000 08:14 11213448 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjimage.so -7f70f5049000-7f70f504c000 r-xp 00002000 08:14 11213448 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjimage.so -7f70f504c000-7f70f504d000 r--p 00005000 08:14 11213448 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjimage.so -7f70f504d000-7f70f504e000 r--p 00006000 08:14 11213448 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjimage.so -7f70f504e000-7f70f504f000 rw-p 00007000 08:14 11213448 /usr/lib/jvm/java-17-openjdk-amd64/lib/libjimage.so -7f70f504f000-7f70f5051000 rw-p 00000000 00:00 0 -7f70f5051000-7f70f5052000 r--p 00000000 08:14 10887950 /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2 -7f70f5052000-7f70f507a000 r-xp 00001000 08:14 10887950 /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2 -7f70f507a000-7f70f5084000 r--p 00029000 08:14 10887950 /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2 -7f70f5084000-7f70f5086000 r--p 00033000 08:14 10887950 /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2 -7f70f5086000-7f70f5088000 rw-p 00035000 08:14 10887950 /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2 -7ffeb647c000-7ffeb649e000 rw-p 00000000 00:00 0 [stack] -7ffeb6521000-7ffeb6525000 r--p 00000000 00:00 0 [vvar] -7ffeb6525000-7ffeb6527000 r-xp 00000000 00:00 0 [vdso] -ffffffffff600000-ffffffffff601000 --xp 00000000 00:00 0 [vsyscall] - - -VM Arguments: -jvm_args: -Djava.library.path=/usr/local/lib -java_command: /home/agpmastersystem/bnd/tidesdb-java/target/surefire/surefirebooter-20260313005825693_3.jar /home/agpmastersystem/bnd/tidesdb-java/target/surefire 2026-03-13T00-58-25_630-jvmRun1 surefire-20260313005825693_1tmp surefire_0-20260313005825693_2tmp -java_class_path (initial): /home/agpmastersystem/bnd/tidesdb-java/target/surefire/surefirebooter-20260313005825693_3.jar -Launcher Type: SUN_STANDARD - -[Global flags] - intx CICompilerCount = 12 {product} {ergonomic} - uint ConcGCThreads = 3 {product} {ergonomic} - uint G1ConcRefinementThreads = 13 {product} {ergonomic} - size_t G1HeapRegionSize = 8388608 {product} {ergonomic} - uintx GCDrainStackTargetSize = 64 {product} {ergonomic} - size_t InitialHeapSize = 788529152 {product} {ergonomic} - size_t MarkStackSize = 4194304 {product} {ergonomic} - size_t MaxHeapSize = 12566134784 {product} {ergonomic} - size_t MaxNewSize = 7532969984 {product} {ergonomic} - size_t MinHeapDeltaBytes = 8388608 {product} {ergonomic} - size_t MinHeapSize = 8388608 {product} {ergonomic} - uintx NonNMethodCodeHeapSize = 7602480 {pd product} {ergonomic} - uintx NonProfiledCodeHeapSize = 122027880 {pd product} {ergonomic} - uintx ProfiledCodeHeapSize = 122027880 {pd product} {ergonomic} - uintx ReservedCodeCacheSize = 251658240 {pd product} {ergonomic} - bool SegmentedCodeCache = true {product} {ergonomic} - size_t SoftMaxHeapSize = 12566134784 {manageable} {ergonomic} - bool UseCompressedClassPointers = true {product lp64_product} {ergonomic} - bool UseCompressedOops = true {product lp64_product} {ergonomic} - bool UseG1GC = true {product} {ergonomic} - -Logging: -Log output configuration: - #0: stdout all=warning uptime,level,tags - #1: stderr all=off uptime,level,tags - -Environment Variables: -PATH=/home/agpmastersystem/bin:/home/agpmastersystem/flutter/flutter/bin:/home/agpmastersystem/flutter/flutter/bin:/home/agpmastersystem/development/flutter/bin:/home/agpmastersystem/.local/bin:/home/agpmastersystem/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin:/home/agpmastersystem/.dotnet/tools:/home/agpmastersystem/.dotnet/tools:/home/agpmastersystem/julia-1.10.0/bin:/opt/zig/zig-linux-x86_64-0.13.0 -USERNAME=agpmastersystem -SHELL=/bin/bash -DISPLAY=:1 -LANG=en_US.UTF-8 -TERM=xterm-256color - -Active Locale: -LC_ALL=en_US.UTF-8 -LC_COLLATE=en_US.UTF-8 -LC_CTYPE=en_US.UTF-8 -LC_MESSAGES=en_US.UTF-8 -LC_MONETARY=en_US.UTF-8 -LC_NUMERIC=en_US.UTF-8 -LC_TIME=en_US.UTF-8 - -Signal Handlers: - SIGSEGV: crash_handler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, unblocked - SIGBUS: crash_handler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, unblocked - SIGFPE: crash_handler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, unblocked - SIGPIPE: javaSignalHandler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, blocked - SIGXFSZ: javaSignalHandler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, blocked - SIGILL: crash_handler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, unblocked - SIGUSR2: SR_handler in libjvm.so, mask=00000000000000000000000000000000, flags=SA_RESTART|SA_SIGINFO, blocked - SIGHUP: UserHandler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, blocked - SIGINT: UserHandler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, blocked - SIGTERM: UserHandler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, blocked - SIGQUIT: UserHandler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, blocked - SIGTRAP: crash_handler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, unblocked - - -Periodic native trim disabled - - ---------------- S Y S T E M --------------- - -OS: -DISTRIB_ID=Ubuntu -DISTRIB_RELEASE=23.04 -DISTRIB_CODENAME=lunar -DISTRIB_DESCRIPTION="Ubuntu 23.04" -uname: Linux 6.2.0-39-generic #40-Ubuntu SMP PREEMPT_DYNAMIC Tue Nov 14 14:18:00 UTC 2023 x86_64 -OS uptime: 8 days 10:14 hours -libc: glibc 2.37 NPTL 2.37 -rlimit (soft/hard): STACK 8192k/infinity , CORE 0k/infinity , NPROC 191244/191244 , NOFILE 1048576/1048576 , AS infinity/infinity , CPU infinity/infinity , DATA infinity/infinity , FSIZE infinity/infinity , MEMLOCK 6134892k/6134892k -load average: 5.09 6.22 6.89 - -/proc/meminfo: -MemTotal: 49079140 kB -MemFree: 1065920 kB -MemAvailable: 21757920 kB -Buffers: 2054748 kB -Cached: 18516476 kB -SwapCached: 91856 kB -Active: 14776756 kB -Inactive: 30590152 kB -Active(anon): 2699424 kB -Inactive(anon): 22716668 kB -Active(file): 12077332 kB -Inactive(file): 7873484 kB -Unevictable: 1668 kB -Mlocked: 264 kB -SwapTotal: 8388604 kB -SwapFree: 5680380 kB -Zswap: 0 kB -Zswapped: 0 kB -Dirty: 2652 kB -Writeback: 0 kB -AnonPages: 24742792 kB -Mapped: 1272080 kB -Shmem: 620408 kB -KReclaimable: 1337660 kB -Slab: 1840380 kB -SReclaimable: 1337660 kB -SUnreclaim: 502720 kB -KernelStack: 44640 kB -PageTables: 184096 kB -SecPageTables: 0 kB -NFS_Unstable: 0 kB -Bounce: 0 kB -WritebackTmp: 0 kB -CommitLimit: 32928172 kB -Committed_AS: 89938420 kB -VmallocTotal: 34359738367 kB -VmallocUsed: 163660 kB -VmallocChunk: 0 kB -Percpu: 18176 kB -HardwareCorrupted: 0 kB -AnonHugePages: 10240 kB -ShmemHugePages: 2048 kB -ShmemPmdMapped: 0 kB -FileHugePages: 0 kB -FilePmdMapped: 0 kB -HugePages_Total: 0 -HugePages_Free: 0 -HugePages_Rsvd: 0 -HugePages_Surp: 0 -Hugepagesize: 2048 kB -Hugetlb: 0 kB -DirectMap4k: 2126020 kB -DirectMap2M: 41670656 kB -DirectMap1G: 7340032 kB - -/sys/kernel/mm/transparent_hugepage/enabled: always [madvise] never -/sys/kernel/mm/transparent_hugepage/defrag (defrag/compaction efforts parameter): always defer defer+madvise [madvise] never - -Process Memory: -Virtual Size: 16953036K (peak: 16953036K) -Resident Set Size: 212256K (peak: 214460K) (anon: 189180K, file: 23076K, shmem: 0K) -Swapped out: 0K -C-Heap outstanding allocations: 687607K, retained: 11036K -glibc malloc tunables: (default) - -/proc/sys/kernel/threads-max (system-wide limit on the number of threads): 382489 -/proc/sys/vm/max_map_count (maximum number of memory map areas a process may have): 65530 -/proc/sys/kernel/pid_max (system-wide limit on number of process identifiers): 4194304 - -container (cgroup) information: -container_type: cgroupv2 -cpu_cpuset_cpus: not supported -cpu_memory_nodes: not supported -active_processor_count: 16 -cpu_quota: not supported -cpu_period: not supported -cpu_shares: not supported -memory_limit_in_bytes: unlimited -memory_and_swap_limit_in_bytes: unlimited -memory_soft_limit_in_bytes: unlimited -memory_usage_in_bytes: 19929596 k -memory_max_usage_in_bytes: not supported -memory_swap_current_in_bytes: 663596 k -memory_swap_max_limit_in_bytes: unlimited -maximum number of tasks: 57373 -current number of tasks: 687 - -Steal ticks since vm start: 0 -Steal ticks percentage since vm start: 0.000 - -CPU: total 16 (initial active 16) (8 cores per cpu, 2 threads per core) family 6 model 167 stepping 1 microcode 0x5d, cx8, cmov, fxsr, ht, mmx, 3dnowpref, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, lzcnt, tsc, tscinvbit, avx, avx2, aes, erms, clmul, bmi1, bmi2, adx, avx512f, avx512dq, avx512cd, avx512bw, avx512vl, sha, fma, vzeroupper, avx512_vpopcntdq, avx512_vpclmulqdq, avx512_vaes, avx512_vnni, clflush, clflushopt, avx512_vbmi2, avx512_vbmi -CPU Model and flags from /proc/cpuinfo: -model name : 11th Gen Intel(R) Core(TM) i7-11700K @ 3.60GHz -flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid mpx avx512f avx512dq rdseed adx smap avx512ifma clflushopt intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp hwp_pkg_req avx512vbmi umip pku ospke avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg avx512_vpopcntdq rdpid fsrm md_clear flush_l1d arch_capabilities - -Online cpus: 0-15 -Offline cpus: -BIOS frequency limitation: -Frequency switch latency (ns): 0 -Available cpu frequencies: -Current governor: powersave -Core performance/turbo boost: - -Memory: 4k page, physical 49079140k(1065920k free), swap 8388604k(5680380k free) -Page Sizes: 4k - -vm_info: OpenJDK 64-Bit Server VM (17.0.9+9-Ubuntu-123.04) for linux-amd64 JRE (17.0.9+9-Ubuntu-123.04), built on Oct 19 2023 08:33:16 by "buildd" with gcc 12.3.0 - -END.