diff --git a/.github/workflows/memshell-integration-test.yml b/.github/workflows/memshell-integration-test.yml index b89277ee..09bab46e 100644 --- a/.github/workflows/memshell-integration-test.yml +++ b/.github/workflows/memshell-integration-test.yml @@ -27,7 +27,7 @@ jobs: - middleware: "jbossas" depend_tasks: ":vul:vul-webapp:war" - middleware: "jbosseap" - depend_tasks: ":vul:vul-webapp:war" + depend_tasks: ":vul:vul-webapp:war :vul:vul-webapp-jakarta:war" - middleware: "wildfly" depend_tasks: ":vul:vul-webapp:war :vul:vul-webapp-jakarta:war" - middleware: "glassfish" diff --git a/.github/workflows/probe-integration-test.yml b/.github/workflows/probe-integration-test.yml index ee2fc5b2..31e18479 100644 --- a/.github/workflows/probe-integration-test.yml +++ b/.github/workflows/probe-integration-test.yml @@ -25,7 +25,7 @@ jobs: - middleware: "jbossas" depend_tasks: ":vul:vul-webapp:war" - middleware: "jbosseap" - depend_tasks: ":vul:vul-webapp:war" + depend_tasks: ":vul:vul-webapp:war :vul:vul-webapp-jakarta:war" - middleware: "wildfly" depend_tasks: ":vul:vul-webapp:war :vul:vul-webapp-jakarta:war" - middleware: "glassfish" diff --git a/integration-test/src/test/java/com/reajason/javaweb/integration/memshell/jbosseap/JbossEap81ContainerTest.java b/integration-test/src/test/java/com/reajason/javaweb/integration/memshell/jbosseap/JbossEap81ContainerTest.java new file mode 100644 index 00000000..0e2bb2ef --- /dev/null +++ b/integration-test/src/test/java/com/reajason/javaweb/integration/memshell/jbosseap/JbossEap81ContainerTest.java @@ -0,0 +1,89 @@ +package com.reajason.javaweb.integration.memshell.jbosseap; + +import com.reajason.javaweb.Server; +import com.reajason.javaweb.integration.ShellAssertion; +import com.reajason.javaweb.integration.TestCasesProvider; +import com.reajason.javaweb.memshell.ShellTool; +import com.reajason.javaweb.memshell.ShellType; +import com.reajason.javaweb.packer.Packers; +import lombok.extern.slf4j.Slf4j; +import net.bytebuddy.jar.asm.Opcodes; +import org.junit.jupiter.api.AfterAll; +import org.junit.jupiter.params.ParameterizedTest; +import org.junit.jupiter.params.provider.Arguments; +import org.junit.jupiter.params.provider.MethodSource; +import org.junit.jupiter.params.provider.ValueSource; +import org.testcontainers.containers.GenericContainer; +import org.testcontainers.containers.Network; +import org.testcontainers.containers.wait.strategy.Wait; +import org.testcontainers.images.builder.ImageFromDockerfile; +import org.testcontainers.junit.jupiter.Container; +import org.testcontainers.junit.jupiter.Testcontainers; + +import java.util.List; +import java.util.stream.Stream; + +import static com.reajason.javaweb.integration.ContainerTool.*; +import static com.reajason.javaweb.integration.DoesNotContainExceptionMatcher.doesNotContainException; +import static com.reajason.javaweb.integration.ShellAssertion.shellInjectIsOk; +import static org.hamcrest.MatcherAssert.assertThat; + +/** + * @author ReaJason + * @since 2024/12/10 + */ +@Slf4j +@Testcontainers +public class JbossEap81ContainerTest { + public static final String imageName = "reajason/jboss:eap-8.1-jdk17"; + static Network network = Network.newNetwork(); + @Container + public final static GenericContainer python = new GenericContainer<>(new ImageFromDockerfile() + .withDockerfile(neoGeorgDockerfile)) + .withNetwork(network); + @Container + public static final GenericContainer container = new GenericContainer<>(imageName) + .withCopyToContainer(warJakartaFile, "/usr/local/jboss/standalone/deployments/app.war") + .withCopyToContainer(jattachFile, "/jattach") + .withCopyToContainer(jbossPid, "/fetch_pid.sh") + .withNetwork(network) + .withNetworkAliases("app") + .waitingFor(Wait.forHttp("/app")) + .withExposedPorts(8080); + + static Stream casesProvider() { + String server = Server.Undertow; + List supportedShellTypes = List.of( + ShellType.JAKARTA_SERVLET, + ShellType.JAKARTA_FILTER, + ShellType.JAKARTA_LISTENER, + ShellType.UNDERTOW_AGENT_SERVLET_HANDLER + ); + List testPackers = List.of(Packers.JSP); + return TestCasesProvider.getTestCases(imageName, server, supportedShellTypes, testPackers, + null, List.of(ShellTool.AntSword) // AntSword not support jakarta + ); + } + + @AfterAll + static void tearDown() { + String logs = container.getLogs(); + log.info(logs); + assertThat("Logs should not contain any exceptions", logs, doesNotContainException()); + } + + @ParameterizedTest(name = "{0}|{1}{2}|{3}") + @MethodSource("casesProvider") + void test(String imageName, String shellType, String shellTool, Packers packer) { + shellInjectIsOk(getUrl(container), Server.Undertow, shellType, shellTool, Opcodes.V17, packer, container, python); + } + + @ParameterizedTest + @ValueSource(strings = {ShellType.JAKARTA_SERVLET, + ShellType.JAKARTA_FILTER, + ShellType.JAKARTA_LISTENER,}) + void testProbeInject(String shellType) { + String url = getUrl(container); + ShellAssertion.testProbeInject(url, Server.Undertow, shellType, Opcodes.V17); + } +} diff --git a/integration-test/src/test/java/com/reajason/javaweb/integration/probe/jbosseap/JbossEap81ContainerTest.java b/integration-test/src/test/java/com/reajason/javaweb/integration/probe/jbosseap/JbossEap81ContainerTest.java new file mode 100644 index 00000000..c5fb6cfc --- /dev/null +++ b/integration-test/src/test/java/com/reajason/javaweb/integration/probe/jbosseap/JbossEap81ContainerTest.java @@ -0,0 +1,72 @@ +package com.reajason.javaweb.integration.probe.jbosseap; + +import com.reajason.javaweb.Server; +import com.reajason.javaweb.integration.ProbeAssertion; +import com.reajason.javaweb.integration.VulTool; +import com.reajason.javaweb.integration.probe.DetectionTool; +import lombok.SneakyThrows; +import lombok.extern.slf4j.Slf4j; +import org.junit.jupiter.api.Test; +import org.objectweb.asm.Opcodes; +import org.testcontainers.containers.GenericContainer; +import org.testcontainers.containers.wait.strategy.Wait; +import org.testcontainers.junit.jupiter.Container; +import org.testcontainers.junit.jupiter.Testcontainers; + +import java.nio.file.Files; +import java.nio.file.Paths; + +import static com.reajason.javaweb.integration.ContainerTool.*; +import static org.junit.jupiter.api.Assertions.assertEquals; + +/** + * @author ReaJason + * @since 2024/12/10 + */ +@Slf4j +@Testcontainers +public class JbossEap81ContainerTest { + public static final String imageName = "reajason/jboss:eap-8.1-jdk17"; + + @Container + public static final GenericContainer container = new GenericContainer<>(imageName) + .withCopyToContainer(warJakartaFile, "/usr/local/jboss/standalone/deployments/app.war") + .waitingFor(Wait.forHttp("/app")) + .withExposedPorts(8080); + + @Test + void testJDK() { + String url = getUrl(container); + String data = VulTool.post(url + "/b64", DetectionTool.getJdkDetection()); + assertEquals("JDK|17.0.15|61", data); + } + + @Test + @SneakyThrows + void testBasicInfo() { + String url = getUrl(container); + String data = VulTool.post(url + "/b64", DetectionTool.getBasicInfoPrinter()); + Files.writeString(Paths.get("src", "test", "resources", "infos", this.getClass().getSimpleName() + "BasicInfo.txt"), data); + } + + @Test + void testServerDetection() { + String url = getUrl(container); + String data = VulTool.post(url + "/b64", DetectionTool.getServerDetection()); + assertEquals(Server.Undertow, data); + } + + @Test + @SneakyThrows + void testCommandReqHeaderResponseBody() { + String url = getUrl(container); + ProbeAssertion.responseCommandIsOk(url, Server.Undertow, Opcodes.V17); + } + + @Test + @SneakyThrows + void testBytecodeReqParamResponseBody() { + String url = getUrl(container); + ProbeAssertion.responseBytecodeIsOk(url, Server.Undertow, Opcodes.V17); + } +} diff --git a/integration-test/src/test/resources/infos/JbossEap81ContainerTestBasicInfo.txt b/integration-test/src/test/resources/infos/JbossEap81ContainerTestBasicInfo.txt new file mode 100644 index 00000000..1a725093 --- /dev/null +++ b/integration-test/src/test/resources/infos/JbossEap81ContainerTestBasicInfo.txt @@ -0,0 +1,1330 @@ +# Generated At 2025-12-06 09:02:21 +SystemProps: +[Standalone]: +java.specification.version: 17 +logging.configuration: file:/usr/local/jboss/standalone/configuration/logging.properties +sun.jnu.encoding: UTF-8 +java.class.path: /usr/local/jboss/jboss-modules.jar +jakarta.security.jacc.PolicyConfigurationFactory.provider: org.wildfly.security.authz.jacc.ElytronPolicyConfigurationFactory +java.vm.vendor: Eclipse Adoptium +sun.arch.data.model: 64 +org.jboss.resolver.warning: true +java.vendor.url: https://adoptium.net/ +user.timezone: Etc/UTC +java.vm.specification.version: 17 +os.name: Linux +sun.java.launcher: SUN_STANDARD +user.country: US +sun.boot.library.path: /opt/java/openjdk/lib +sun.java.command: /usr/local/jboss/jboss-modules.jar -mp /usr/local/jboss/modules org.jboss.as.standalone -Djboss.home.dir=/usr/local/jboss -Djboss.server.base.dir=/usr/local/jboss/standalone -b 0.0.0.0 +jdk.debug: release +sun.cpu.endian: little +jboss.server.config.dir: /usr/local/jboss/standalone/configuration +user.home: /root +user.language: en +java.specification.vendor: Oracle Corporation +jboss.qualified.host.name: 8187c7b35c9f +java.naming.factory.url.pkgs: org.jboss.as.naming.interfaces +java.version.date: 2025-04-15 +java.home: /opt/java/openjdk +file.separator: / +jboss.server.persist.config: true +java.vm.compressedOopsMode: 32-bit +line.separator: + +jboss.server.data.dir: /usr/local/jboss/standalone/data +java.vm.specification.vendor: Oracle Corporation +java.specification.name: Java Platform API Specification +jboss.server.base.dir: /usr/local/jboss/standalone +java.awt.headless: true +org.apache.xml.security.ignoreLineBreaks: true +java.protocol.handler.pkgs: org.jboss.net.protocol|org.jboss.vfs.protocol +sun.management.compiler: HotSpot 64-Bit Tiered Compilers +java.runtime.version: 17.0.15+6 +java.net.preferIPv4Stack: true +user.name: root +jboss.home.dir: /usr/local/jboss +path.separator: : +os.version: 6.17.8-orbstack-00308-g8f9c941121b1 +java.runtime.name: OpenJDK Runtime Environment +file.encoding: UTF-8 +sun.nio.ch.bugLevel: +java.vm.name: OpenJDK 64-Bit Server VM +java.vendor.version: Temurin-17.0.15+6 +jdk.serialFilter: maxbytes=10485760;maxdepth=128;maxarray=100000;maxrefs=300000 +java.vendor.url.bug: https://github.com/adoptium/adoptium-support/issues +jboss.server.log.dir: /usr/local/jboss/standalone/log +java.io.tmpdir: /tmp +org.jboss.boot.log.file: /usr/local/jboss/standalone/log/server.log +jboss.modules.system.pkgs: org.jboss.byteman +java.version: 17.0.15 +user.dir: /usr/local/jboss +os.arch: aarch64 +java.vm.specification.name: Java Virtual Machine Specification +javax.management.builder.initial: org.jboss.as.jmx.PluggableMBeanServerBuilder +jboss.bind.address: 0.0.0.0 +jboss.host.name: 8187c7b35c9f +native.encoding: UTF-8 +java.util.logging.manager: org.jboss.logmanager.LogManager +java.library.path: /usr/java/packages/lib:/usr/lib64:/lib64:/lib:/usr/lib +module.path: /usr/local/jboss/modules +jboss.server.name: 8187c7b35c9f +java.vm.info: mixed mode, sharing +java.vendor: Eclipse Adoptium +java.vm.version: 17.0.15+6 +java.specification.maintenance.version: 1 +sun.io.unicode.encoding: UnicodeLittle +jboss.server.temp.dir: /usr/local/jboss/standalone/tmp +jboss.node.name: 8187c7b35c9f +java.class.version: 61.0 + +=========================================== + +ThreadStacks: +"MSC service thread 1-3" #20 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@17ecd5d + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + +"IdleRemover" #130 daemon [TIMED_WAITING] on java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject@6f6a2c00 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at java.base@17.0.15/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1764) + at org.jboss.ironjacamar.impl@3.0.14.Final-redhat-00001//org.jboss.jca.core.connectionmanager.pool.idle.IdleRemover$IdleRemoverRunner.run(IdleRemover.java:261) + at java.base@17.0.15/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base@17.0.15/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + +"ServerService Thread Pool -- 13" #40 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"Transaction Reaper" #136 daemon [TIMED_WAITING] on com.arjuna.ats.arjuna.coordinator.TransactionReaper@43e2acf4 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/java.lang.Object.wait(Native Method) + at org.jboss.jts//com.arjuna.ats.internal.arjuna.coordinator.ReaperThread.run(ReaperThread.java:63) + +"ServerService Thread Pool -- 35" #62 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"ServerService Thread Pool -- 41" #70 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"ServerService Thread Pool -- 8" #35 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"default I/O-12" #118 [RUNNABLE] + java.lang.Thread.State: RUNNABLE + at java.base@17.0.15/sun.nio.ch.EPoll.wait(Native Method) + at java.base@17.0.15/sun.nio.ch.EPollSelectorImpl.doSelect(EPollSelectorImpl.java:118) + at java.base@17.0.15/sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:129) + at java.base@17.0.15/sun.nio.ch.SelectorImpl.select(SelectorImpl.java:146) + at org.jboss.xnio.nio@3.8.16.Final-redhat-00001//org.xnio.nio.WorkerThread.run(WorkerThread.java:544) + +"ServerService Thread Pool -- 77" #144 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"ServerService Thread Pool -- 53" #82 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"DeploymentScanner-threads - 1" #65 [TIMED_WAITING] on java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject@348195f0 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at java.base@17.0.15/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:1679) + at java.base@17.0.15/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1182) + at java.base@17.0.15/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:899) + at java.base@17.0.15/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1062) + at java.base@17.0.15/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1122) + at java.base@17.0.15/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"ServerService Thread Pool -- 25" #52 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"default I/O-5" #111 [RUNNABLE] + java.lang.Thread.State: RUNNABLE + at java.base@17.0.15/sun.nio.ch.EPoll.wait(Native Method) + at java.base@17.0.15/sun.nio.ch.EPollSelectorImpl.doSelect(EPollSelectorImpl.java:118) + at java.base@17.0.15/sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:129) + at java.base@17.0.15/sun.nio.ch.SelectorImpl.select(SelectorImpl.java:141) + at org.jboss.xnio.nio@3.8.16.Final-redhat-00001//org.xnio.nio.WorkerThread.run(WorkerThread.java:563) + +"ServerService Thread Pool -- 32" #59 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"Timer-0" #105 [WAITING] on java.util.TaskQueue@ab5b54c + java.lang.Thread.State: WAITING + at java.base@17.0.15/java.lang.Object.wait(Native Method) + at java.base@17.0.15/java.lang.Object.wait(Object.java:338) + at java.base@17.0.15/java.util.TimerThread.mainLoop(Timer.java:537) + at java.base@17.0.15/java.util.TimerThread.run(Timer.java:516) + +"ServerService Thread Pool -- 68" #100 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"DestroyJavaVM" #27 [RUNNABLE] + java.lang.Thread.State: RUNNABLE + +"ServerService Thread Pool -- 14" #41 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"default I/O-11" #117 [RUNNABLE] + java.lang.Thread.State: RUNNABLE + at java.base@17.0.15/sun.nio.ch.EPoll.wait(Native Method) + at java.base@17.0.15/sun.nio.ch.EPollSelectorImpl.doSelect(EPollSelectorImpl.java:118) + at java.base@17.0.15/sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:129) + at java.base@17.0.15/sun.nio.ch.SelectorImpl.select(SelectorImpl.java:146) + at org.jboss.xnio.nio@3.8.16.Final-redhat-00001//org.xnio.nio.WorkerThread.run(WorkerThread.java:544) + +"DeploymentScanner-threads - 2" #66 [WAITING] on java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject@348195f0 + java.lang.Thread.State: WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.park(LockSupport.java:341) + at java.base@17.0.15/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(AbstractQueuedSynchronizer.java:506) + at java.base@17.0.15/java.util.concurrent.ForkJoinPool.unmanagedBlock(ForkJoinPool.java:3465) + at java.base@17.0.15/java.util.concurrent.ForkJoinPool.managedBlock(ForkJoinPool.java:3436) + at java.base@17.0.15/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1630) + at java.base@17.0.15/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1177) + at java.base@17.0.15/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:899) + at java.base@17.0.15/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1062) + at java.base@17.0.15/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1122) + at java.base@17.0.15/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"default task-1" #152 [RUNNABLE] + java.lang.Thread.State: RUNNABLE + at java.base@17.0.15/java.lang.Thread.dumpThreads(Native Method) + at java.base@17.0.15/java.lang.Thread.getAllStackTraces(Thread.java:1671) + at org.springframework.nSmLh.ErrorHandler.toString(BasicInfoPrinter.java:26) + at io.undertow.servlet@2.3.18.SP1-redhat-00001//io.undertow.servlet.spec.ServletPrintWriter.print(ServletPrintWriter.java:443) + at io.undertow.servlet@2.3.18.SP1-redhat-00001//io.undertow.servlet.spec.ServletPrintWriterDelegate.print(ServletPrintWriterDelegate.java:157) + at deployment.app.war//jakarta.Base64ClassLoaderServlet.service(Base64ClassLoaderServlet.java:29) + at io.undertow.servlet@2.3.18.SP1-redhat-00001//io.undertow.servlet.handlers.ServletHandler.handleRequest(ServletHandler.java:74) + at io.undertow.servlet@2.3.18.SP1-redhat-00001//io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:129) + at deployment.app.war//jakarta.EmptyFilter.doFilter(EmptyFilter.java:15) + at io.undertow.servlet@2.3.18.SP1-redhat-00001//io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67) + at io.undertow.servlet@2.3.18.SP1-redhat-00001//io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131) + at io.undertow.servlet@2.3.18.SP1-redhat-00001//io.undertow.servlet.handlers.FilterHandler.handleRequest(FilterHandler.java:84) + at io.undertow.servlet@2.3.18.SP1-redhat-00001//io.undertow.servlet.handlers.security.ServletSecurityRoleHandler.handleRequest(ServletSecurityRoleHandler.java:62) + at io.undertow.servlet@2.3.18.SP1-redhat-00001//io.undertow.servlet.handlers.ServletChain$1.handleRequest(ServletChain.java:68) + at io.undertow.servlet@2.3.18.SP1-redhat-00001//io.undertow.servlet.handlers.ServletDispatchingHandler.handleRequest(ServletDispatchingHandler.java:36) + at org.wildfly.security.elytron-web.undertow-server@4.1.2.Final-redhat-00001//org.wildfly.elytron.web.undertow.server.ElytronRunAsHandler.lambda$handleRequest$1(ElytronRunAsHandler.java:68) + at org.wildfly.security.elytron-web.undertow-server@4.1.2.Final-redhat-00001//org.wildfly.elytron.web.undertow.server.ElytronRunAsHandler$$Lambda$902/0x000000b0018e9000.call(Unknown Source) + at org.wildfly.security.elytron-base@2.6.4.Final-redhat-00001//org.wildfly.security.auth.server.Scoped$$Lambda$903/0x000000b0018bb6d0.apply(Unknown Source) + at org.wildfly.security.elytron-base@2.6.4.Final-redhat-00001//org.wildfly.security.auth.server.Scoped$$Lambda$904/0x000000b0018bb970.apply(Unknown Source) + at org.wildfly.security.elytron-base@2.6.4.Final-redhat-00001//org.wildfly.security.auth.server.FlexibleIdentityAssociation.runAsFunctionEx(FlexibleIdentityAssociation.java:103) + at org.wildfly.security.elytron-base@2.6.4.Final-redhat-00001//org.wildfly.security.auth.server.Scoped.runAsFunctionEx(Scoped.java:161) + at org.wildfly.security.elytron-base@2.6.4.Final-redhat-00001//org.wildfly.security.auth.server.Scoped.runAs(Scoped.java:73) + at org.wildfly.security.elytron-web.undertow-server@4.1.2.Final-redhat-00001//org.wildfly.elytron.web.undertow.server.ElytronRunAsHandler.handleRequest(ElytronRunAsHandler.java:67) + at io.undertow.servlet@2.3.18.SP1-redhat-00001//io.undertow.servlet.handlers.RedirectDirHandler.handleRequest(RedirectDirHandler.java:68) + at io.undertow.servlet@2.3.18.SP1-redhat-00001//io.undertow.servlet.handlers.security.SSLInformationAssociationHandler.handleRequest(SSLInformationAssociationHandler.java:117) + at io.undertow.servlet@2.3.18.SP1-redhat-00001//io.undertow.servlet.handlers.security.ServletAuthenticationCallHandler.handleRequest(ServletAuthenticationCallHandler.java:57) + at io.undertow.core@2.3.18.SP1-redhat-00001//io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43) + at io.undertow.core@2.3.18.SP1-redhat-00001//io.undertow.security.handlers.AbstractConfidentialityHandler.handleRequest(AbstractConfidentialityHandler.java:46) + at io.undertow.servlet@2.3.18.SP1-redhat-00001//io.undertow.servlet.handlers.security.ServletConfidentialityConstraintHandler.handleRequest(ServletConfidentialityConstraintHandler.java:64) + at io.undertow.core@2.3.18.SP1-redhat-00001//io.undertow.security.handlers.AbstractSecurityContextAssociationHandler.handleRequest(AbstractSecurityContextAssociationHandler.java:43) + at org.wildfly.security.elytron-web.undertow-server-servlet@4.1.0.Final//org.wildfly.elytron.web.undertow.server.servlet.CleanUpHandler.handleRequest(CleanUpHandler.java:38) + at io.undertow.core@2.3.18.SP1-redhat-00001//io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43) + at org.wildfly.extension.undertow@8.1.0.GA-redhat-00015//org.wildfly.extension.undertow.security.jacc.JACCContextIdHandler.handleRequest(JACCContextIdHandler.java:44) + at io.undertow.core@2.3.18.SP1-redhat-00001//io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43) + at org.wildfly.extension.undertow@8.1.0.GA-redhat-00015//org.wildfly.extension.undertow.deployment.GlobalRequestControllerHandler.handleRequest(GlobalRequestControllerHandler.java:51) + at io.undertow.servlet@2.3.18.SP1-redhat-00001//io.undertow.servlet.handlers.SendErrorPageHandler.handleRequest(SendErrorPageHandler.java:52) + at io.undertow.core@2.3.18.SP1-redhat-00001//io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43) + at io.undertow.servlet@2.3.18.SP1-redhat-00001//io.undertow.servlet.handlers.ServletInitialHandler.handleFirstRequest(ServletInitialHandler.java:276) + at io.undertow.servlet@2.3.18.SP1-redhat-00001//io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:135) + at io.undertow.servlet@2.3.18.SP1-redhat-00001//io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:132) + at io.undertow.servlet@2.3.18.SP1-redhat-00001//io.undertow.servlet.core.ServletRequestContextThreadSetupAction$1.call(ServletRequestContextThreadSetupAction.java:48) + at io.undertow.servlet@2.3.18.SP1-redhat-00001//io.undertow.servlet.core.ContextClassLoaderSetupAction$1.call(ContextClassLoaderSetupAction.java:43) + at org.wildfly.extension.undertow@8.1.0.GA-redhat-00015//org.wildfly.extension.undertow.deployment.UndertowDeploymentInfoService$UndertowThreadSetupAction.lambda$create$0(UndertowDeploymentInfoService.java:1421) + at org.wildfly.extension.undertow@8.1.0.GA-redhat-00015//org.wildfly.extension.undertow.deployment.UndertowDeploymentInfoService$UndertowThreadSetupAction$$Lambda$862/0x000000b0018a4230.call(Unknown Source) + at org.wildfly.extension.undertow@8.1.0.GA-redhat-00015//org.wildfly.extension.undertow.deployment.UndertowDeploymentInfoService$UndertowThreadSetupAction.lambda$create$0(UndertowDeploymentInfoService.java:1421) + at org.wildfly.extension.undertow@8.1.0.GA-redhat-00015//org.wildfly.extension.undertow.deployment.UndertowDeploymentInfoService$UndertowThreadSetupAction$$Lambda$862/0x000000b0018a4230.call(Unknown Source) + at org.wildfly.extension.undertow@8.1.0.GA-redhat-00015//org.wildfly.extension.undertow.deployment.UndertowDeploymentInfoService$UndertowThreadSetupAction.lambda$create$0(UndertowDeploymentInfoService.java:1421) + at org.wildfly.extension.undertow@8.1.0.GA-redhat-00015//org.wildfly.extension.undertow.deployment.UndertowDeploymentInfoService$UndertowThreadSetupAction$$Lambda$862/0x000000b0018a4230.call(Unknown Source) + at org.wildfly.extension.undertow@8.1.0.GA-redhat-00015//org.wildfly.extension.undertow.deployment.UndertowDeploymentInfoService$UndertowThreadSetupAction.lambda$create$0(UndertowDeploymentInfoService.java:1421) + at org.wildfly.extension.undertow@8.1.0.GA-redhat-00015//org.wildfly.extension.undertow.deployment.UndertowDeploymentInfoService$UndertowThreadSetupAction$$Lambda$862/0x000000b0018a4230.call(Unknown Source) + at io.undertow.servlet@2.3.18.SP1-redhat-00001//io.undertow.servlet.handlers.ServletInitialHandler.dispatchRequest(ServletInitialHandler.java:256) + at io.undertow.servlet@2.3.18.SP1-redhat-00001//io.undertow.servlet.handlers.ServletInitialHandler$1.handleRequest(ServletInitialHandler.java:101) + at io.undertow.core@2.3.18.SP1-redhat-00001//io.undertow.server.Connectors.executeRootHandler(Connectors.java:395) + at io.undertow.core@2.3.18.SP1-redhat-00001//io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:896) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:1990) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1486) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1377) + at org.jboss.xnio@3.8.16.Final-redhat-00001//org.xnio.XnioWorker$WorkerThreadFactory$1$1.run(XnioWorker.java:1282) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + +"default I/O-2" #108 [RUNNABLE] + java.lang.Thread.State: RUNNABLE + at java.base@17.0.15/sun.nio.ch.EPoll.wait(Native Method) + at java.base@17.0.15/sun.nio.ch.EPollSelectorImpl.doSelect(EPollSelectorImpl.java:118) + at java.base@17.0.15/sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:129) + at java.base@17.0.15/sun.nio.ch.SelectorImpl.select(SelectorImpl.java:141) + at org.jboss.xnio.nio@3.8.16.Final-redhat-00001//org.xnio.nio.WorkerThread.run(WorkerThread.java:563) + +"ServerService Thread Pool -- 78" #145 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"default I/O-21" #127 [RUNNABLE] + java.lang.Thread.State: RUNNABLE + at java.base@17.0.15/sun.nio.ch.EPoll.wait(Native Method) + at java.base@17.0.15/sun.nio.ch.EPollSelectorImpl.doSelect(EPollSelectorImpl.java:118) + at java.base@17.0.15/sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:129) + at java.base@17.0.15/sun.nio.ch.SelectorImpl.select(SelectorImpl.java:146) + at org.jboss.xnio.nio@3.8.16.Final-redhat-00001//org.xnio.nio.WorkerThread.run(WorkerThread.java:544) + +"ServerService Thread Pool -- 33" #60 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"XNIO-1 I/O-1" #132 daemon [RUNNABLE] + java.lang.Thread.State: RUNNABLE + at java.base@17.0.15/sun.nio.ch.EPoll.wait(Native Method) + at java.base@17.0.15/sun.nio.ch.EPollSelectorImpl.doSelect(EPollSelectorImpl.java:118) + at java.base@17.0.15/sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:129) + at java.base@17.0.15/sun.nio.ch.SelectorImpl.select(SelectorImpl.java:146) + at org.jboss.xnio.nio@3.8.16.Final-redhat-00001//org.xnio.nio.WorkerThread.run(WorkerThread.java:544) + +"Reference Handler" #2 daemon [RUNNABLE] + java.lang.Thread.State: RUNNABLE + at java.base@17.0.15/java.lang.ref.Reference.waitForReferencePendingList(Native Method) + at java.base@17.0.15/java.lang.ref.Reference.processPendingReferences(Reference.java:253) + at java.base@17.0.15/java.lang.ref.Reference$ReferenceHandler.run(Reference.java:215) + +"default I/O-14" #120 [RUNNABLE] + java.lang.Thread.State: RUNNABLE + at java.base@17.0.15/sun.nio.ch.EPoll.wait(Native Method) + at java.base@17.0.15/sun.nio.ch.EPollSelectorImpl.doSelect(EPollSelectorImpl.java:118) + at java.base@17.0.15/sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:129) + at java.base@17.0.15/sun.nio.ch.SelectorImpl.select(SelectorImpl.java:146) + at org.jboss.xnio.nio@3.8.16.Final-redhat-00001//org.xnio.nio.WorkerThread.run(WorkerThread.java:544) + +"ServerService Thread Pool -- 69" #101 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"ServerService Thread Pool -- 23" #50 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"ServerService Thread Pool -- 56" #85 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"ServerService Thread Pool -- 82" #149 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"ServerService Thread Pool -- 73" #106 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"default I/O-19" #125 [RUNNABLE] + java.lang.Thread.State: RUNNABLE + at java.base@17.0.15/sun.nio.ch.EPoll.wait(Native Method) + at java.base@17.0.15/sun.nio.ch.EPollSelectorImpl.doSelect(EPollSelectorImpl.java:118) + at java.base@17.0.15/sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:129) + at java.base@17.0.15/sun.nio.ch.SelectorImpl.select(SelectorImpl.java:146) + at org.jboss.xnio.nio@3.8.16.Final-redhat-00001//org.xnio.nio.WorkerThread.run(WorkerThread.java:544) + +"ServerService Thread Pool -- 9" #36 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"ServerService Thread Pool -- 10" #37 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"Common-Cleaner" #12 daemon [TIMED_WAITING] on java.lang.ref.ReferenceQueue$Lock@743d3e5f + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/java.lang.Object.wait(Native Method) + at java.base@17.0.15/java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:155) + at java.base@17.0.15/jdk.internal.ref.CleanerImpl.run(CleanerImpl.java:140) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at java.base@17.0.15/jdk.internal.misc.InnocuousThread.run(InnocuousThread.java:162) + +"ServerService Thread Pool -- 46" #75 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"ServerService Thread Pool -- 39" #68 [TIMED_WAITING] on java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject@22eea920 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at java.base@17.0.15/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:1679) + at java.base@17.0.15/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1182) + at java.base@17.0.15/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:899) + at java.base@17.0.15/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1062) + at java.base@17.0.15/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1122) + at java.base@17.0.15/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"MSC service thread 1-5" #22 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@17ecd5d + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + +"default I/O-8" #114 [RUNNABLE] + java.lang.Thread.State: RUNNABLE + at java.base@17.0.15/sun.nio.ch.EPoll.wait(Native Method) + at java.base@17.0.15/sun.nio.ch.EPollSelectorImpl.doSelect(EPollSelectorImpl.java:118) + at java.base@17.0.15/sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:129) + at java.base@17.0.15/sun.nio.ch.SelectorImpl.select(SelectorImpl.java:146) + at org.jboss.xnio.nio@3.8.16.Final-redhat-00001//org.xnio.nio.WorkerThread.run(WorkerThread.java:544) + +"XNIO-1 Accept" #133 daemon [RUNNABLE] + java.lang.Thread.State: RUNNABLE + at java.base@17.0.15/sun.nio.ch.EPoll.wait(Native Method) + at java.base@17.0.15/sun.nio.ch.EPollSelectorImpl.doSelect(EPollSelectorImpl.java:118) + at java.base@17.0.15/sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:129) + at java.base@17.0.15/sun.nio.ch.SelectorImpl.select(SelectorImpl.java:146) + at org.jboss.xnio.nio@3.8.16.Final-redhat-00001//org.xnio.nio.WorkerThread.run(WorkerThread.java:544) + +"ServerService Thread Pool -- 70" #102 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"ServerService Thread Pool -- 45" #74 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"ServerService Thread Pool -- 24" #51 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"Finalizer" #3 daemon [WAITING] on java.lang.ref.ReferenceQueue$Lock@1af88698 + java.lang.Thread.State: WAITING + at java.base@17.0.15/java.lang.Object.wait(Native Method) + at java.base@17.0.15/java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:155) + at java.base@17.0.15/java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:176) + at java.base@17.0.15/java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:172) + +"default I/O-22" #128 [RUNNABLE] + java.lang.Thread.State: RUNNABLE + at java.base@17.0.15/sun.nio.ch.EPoll.wait(Native Method) + at java.base@17.0.15/sun.nio.ch.EPollSelectorImpl.doSelect(EPollSelectorImpl.java:118) + at java.base@17.0.15/sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:129) + at java.base@17.0.15/sun.nio.ch.SelectorImpl.select(SelectorImpl.java:146) + at org.jboss.xnio.nio@3.8.16.Final-redhat-00001//org.xnio.nio.WorkerThread.run(WorkerThread.java:544) + +"ServerService Thread Pool -- 19" #46 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"ServerService Thread Pool -- 5" #32 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"ServerService Thread Pool -- 18" #45 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"ServerService Thread Pool -- 63" #95 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"Reference Reaper" #14 daemon [WAITING] on java.lang.ref.ReferenceQueue$Lock@3d405f5e + java.lang.Thread.State: WAITING + at java.base@17.0.15/java.lang.Object.wait(Native Method) + at java.base@17.0.15/java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:155) + at java.base@17.0.15/java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:176) + at app//org.jboss.modules.ref.References$ReaperThread.run(References.java:64) + +"ServerService Thread Pool -- 29" #56 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"ServerService Thread Pool -- 57" #86 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"ServerService Thread Pool -- 17" #44 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"ServerService Thread Pool -- 72" #104 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"default I/O-16" #122 [RUNNABLE] + java.lang.Thread.State: RUNNABLE + at java.base@17.0.15/sun.nio.ch.EPoll.wait(Native Method) + at java.base@17.0.15/sun.nio.ch.EPollSelectorImpl.doSelect(EPollSelectorImpl.java:118) + at java.base@17.0.15/sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:129) + at java.base@17.0.15/sun.nio.ch.SelectorImpl.select(SelectorImpl.java:146) + at org.jboss.xnio.nio@3.8.16.Final-redhat-00001//org.xnio.nio.WorkerThread.run(WorkerThread.java:544) + +"MSC service thread 1-1" #18 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@17ecd5d + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + +"ServerService Thread Pool -- 15" #42 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"management I/O-2" #90 [RUNNABLE] + java.lang.Thread.State: RUNNABLE + at java.base@17.0.15/sun.nio.ch.EPoll.wait(Native Method) + at java.base@17.0.15/sun.nio.ch.EPollSelectorImpl.doSelect(EPollSelectorImpl.java:118) + at java.base@17.0.15/sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:129) + at java.base@17.0.15/sun.nio.ch.SelectorImpl.select(SelectorImpl.java:146) + at org.jboss.xnio.nio@3.8.16.Final-redhat-00001//org.xnio.nio.WorkerThread.run(WorkerThread.java:544) + +"default I/O-15" #121 [RUNNABLE] + java.lang.Thread.State: RUNNABLE + at java.base@17.0.15/sun.nio.ch.EPoll.wait(Native Method) + at java.base@17.0.15/sun.nio.ch.EPollSelectorImpl.doSelect(EPollSelectorImpl.java:118) + at java.base@17.0.15/sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:129) + at java.base@17.0.15/sun.nio.ch.SelectorImpl.select(SelectorImpl.java:141) + at org.jboss.xnio.nio@3.8.16.Final-redhat-00001//org.xnio.nio.WorkerThread.run(WorkerThread.java:563) + +"MSC service thread 1-7" #24 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@17ecd5d + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + +"ServerService Thread Pool -- 36" #63 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"ServerService Thread Pool -- 4" #31 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"ServerService Thread Pool -- 44" #73 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"management Accept" #91 [RUNNABLE] + java.lang.Thread.State: RUNNABLE + at java.base@17.0.15/sun.nio.ch.EPoll.wait(Native Method) + at java.base@17.0.15/sun.nio.ch.EPollSelectorImpl.doSelect(EPollSelectorImpl.java:118) + at java.base@17.0.15/sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:129) + at java.base@17.0.15/sun.nio.ch.SelectorImpl.select(SelectorImpl.java:146) + at org.jboss.xnio.nio@3.8.16.Final-redhat-00001//org.xnio.nio.WorkerThread.run(WorkerThread.java:544) + +"Reference Reaper #3" #140 daemon [WAITING] on java.lang.ref.ReferenceQueue$Lock@2092516f + java.lang.Thread.State: WAITING + at java.base@17.0.15/java.lang.Object.wait(Native Method) + at java.base@17.0.15/java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:155) + at java.base@17.0.15/java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:176) + at org.wildfly.common@1.7.0.Final-redhat-00003//org.wildfly.common.ref.References$ReaperThread.run(References.java:76) + +"ServerService Thread Pool -- 60" #92 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"Transaction Expired Entry Monitor" #135 daemon [TIMED_WAITING] on com.arjuna.ats.internal.arjuna.recovery.ExpiredEntryMonitor@3f594cda + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/java.lang.Object.wait(Native Method) + at org.jboss.jts//com.arjuna.ats.internal.arjuna.recovery.ExpiredEntryMonitor.run(ExpiredEntryMonitor.java:163) + +"ServerService Thread Pool -- 28" #55 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"MSC service thread 1-8" #25 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@17ecd5d + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + +"ServerService Thread Pool -- 27" #54 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"default I/O-17" #123 [RUNNABLE] + java.lang.Thread.State: RUNNABLE + at java.base@17.0.15/sun.nio.ch.EPoll.wait(Native Method) + at java.base@17.0.15/sun.nio.ch.EPollSelectorImpl.doSelect(EPollSelectorImpl.java:118) + at java.base@17.0.15/sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:129) + at java.base@17.0.15/sun.nio.ch.SelectorImpl.select(SelectorImpl.java:146) + at org.jboss.xnio.nio@3.8.16.Final-redhat-00001//org.xnio.nio.WorkerThread.run(WorkerThread.java:544) + +"management I/O-1" #89 [RUNNABLE] + java.lang.Thread.State: RUNNABLE + at java.base@17.0.15/sun.nio.ch.EPoll.wait(Native Method) + at java.base@17.0.15/sun.nio.ch.EPollSelectorImpl.doSelect(EPollSelectorImpl.java:118) + at java.base@17.0.15/sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:129) + at java.base@17.0.15/sun.nio.ch.SelectorImpl.select(SelectorImpl.java:146) + at org.jboss.xnio.nio@3.8.16.Final-redhat-00001//org.xnio.nio.WorkerThread.run(WorkerThread.java:544) + +"ServerService Thread Pool -- 74" #141 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"ServerService Thread Pool -- 76" #143 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"default I/O-3" #109 [RUNNABLE] + java.lang.Thread.State: RUNNABLE + at java.base@17.0.15/sun.nio.ch.EPoll.wait(Native Method) + at java.base@17.0.15/sun.nio.ch.EPollSelectorImpl.doSelect(EPollSelectorImpl.java:118) + at java.base@17.0.15/sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:129) + at java.base@17.0.15/sun.nio.ch.SelectorImpl.select(SelectorImpl.java:146) + at org.jboss.xnio.nio@3.8.16.Final-redhat-00001//org.xnio.nio.WorkerThread.run(WorkerThread.java:544) + +"ConnectionValidator" #131 daemon [TIMED_WAITING] on java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject@77e25bf4 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at java.base@17.0.15/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1764) + at org.jboss.ironjacamar.impl@3.0.14.Final-redhat-00001//org.jboss.jca.core.connectionmanager.pool.validator.ConnectionValidator$ConnectionValidatorRunner.run(ConnectionValidator.java:268) + at java.base@17.0.15/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base@17.0.15/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + +"ServerService Thread Pool -- 67" #99 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"ServerService Thread Pool -- 59" #88 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"ServerService Thread Pool -- 54" #83 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"ServerService Thread Pool -- 47" #76 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"ServerService Thread Pool -- 20" #47 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"ServerService Thread Pool -- 65" #97 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"MSC service thread 1-6" #23 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@17ecd5d + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + +"MSC service thread 1-4" #21 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@17ecd5d + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + +"default I/O-9" #115 [RUNNABLE] + java.lang.Thread.State: RUNNABLE + at java.base@17.0.15/sun.nio.ch.EPoll.wait(Native Method) + at java.base@17.0.15/sun.nio.ch.EPollSelectorImpl.doSelect(EPollSelectorImpl.java:118) + at java.base@17.0.15/sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:129) + at java.base@17.0.15/sun.nio.ch.SelectorImpl.select(SelectorImpl.java:146) + at org.jboss.xnio.nio@3.8.16.Final-redhat-00001//org.xnio.nio.WorkerThread.run(WorkerThread.java:544) + +"ServerService Thread Pool -- 34" #61 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"ServerService Thread Pool -- 64" #96 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"ServerService Thread Pool -- 11" #38 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"Signal Dispatcher" #4 daemon [RUNNABLE] + java.lang.Thread.State: RUNNABLE + +"ServerService Thread Pool -- 81" #148 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"ServerService Thread Pool -- 1" #28 [WAITING] on java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject@22eea920 + java.lang.Thread.State: WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.park(LockSupport.java:341) + at java.base@17.0.15/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(AbstractQueuedSynchronizer.java:506) + at java.base@17.0.15/java.util.concurrent.ForkJoinPool.unmanagedBlock(ForkJoinPool.java:3465) + at java.base@17.0.15/java.util.concurrent.ForkJoinPool.managedBlock(ForkJoinPool.java:3436) + at java.base@17.0.15/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1630) + at java.base@17.0.15/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1177) + at java.base@17.0.15/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:899) + at java.base@17.0.15/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1062) + at java.base@17.0.15/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1122) + at java.base@17.0.15/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"ServerService Thread Pool -- 30" #57 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"default I/O-13" #119 [RUNNABLE] + java.lang.Thread.State: RUNNABLE + at java.base@17.0.15/sun.nio.ch.EPoll.wait(Native Method) + at java.base@17.0.15/sun.nio.ch.EPollSelectorImpl.doSelect(EPollSelectorImpl.java:118) + at java.base@17.0.15/sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:129) + at java.base@17.0.15/sun.nio.ch.SelectorImpl.select(SelectorImpl.java:146) + at org.jboss.xnio.nio@3.8.16.Final-redhat-00001//org.xnio.nio.WorkerThread.run(WorkerThread.java:544) + +"ServerService Thread Pool -- 37" #64 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"ServerService Thread Pool -- 31" #58 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"ServerService Thread Pool -- 40" #69 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"ServerService Thread Pool -- 52" #81 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"ServerService Thread Pool -- 66" #98 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"Reference Reaper #1" #138 daemon [WAITING] on java.lang.ref.ReferenceQueue$Lock@2092516f + java.lang.Thread.State: WAITING + at java.base@17.0.15/java.lang.Object.wait(Native Method) + at java.base@17.0.15/java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:155) + at java.base@17.0.15/java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:176) + at org.wildfly.common@1.7.0.Final-redhat-00003//org.wildfly.common.ref.References$ReaperThread.run(References.java:76) + +"ServerService Thread Pool -- 84" #151 [WAITING] on java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject@22eea920 + java.lang.Thread.State: WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.park(LockSupport.java:341) + at java.base@17.0.15/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(AbstractQueuedSynchronizer.java:506) + at java.base@17.0.15/java.util.concurrent.ForkJoinPool.unmanagedBlock(ForkJoinPool.java:3465) + at java.base@17.0.15/java.util.concurrent.ForkJoinPool.managedBlock(ForkJoinPool.java:3436) + at java.base@17.0.15/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1630) + at java.base@17.0.15/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1177) + at java.base@17.0.15/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:899) + at java.base@17.0.15/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1062) + at java.base@17.0.15/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1122) + at java.base@17.0.15/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"MSC service thread 1-2" #19 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@17ecd5d + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + +"ServerService Thread Pool -- 75" #142 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"ServerService Thread Pool -- 43" #72 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"ServerService Thread Pool -- 55" #84 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"ServerService Thread Pool -- 42" #71 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"ServerService Thread Pool -- 48" #77 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"ServerService Thread Pool -- 71" #103 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"Notification Thread" #13 daemon [RUNNABLE] + java.lang.Thread.State: RUNNABLE + +"ServerService Thread Pool -- 16" #43 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"default I/O-7" #113 [RUNNABLE] + java.lang.Thread.State: RUNNABLE + at java.base@17.0.15/sun.nio.ch.EPoll.wait(Native Method) + at java.base@17.0.15/sun.nio.ch.EPollSelectorImpl.doSelect(EPollSelectorImpl.java:118) + at java.base@17.0.15/sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:129) + at java.base@17.0.15/sun.nio.ch.SelectorImpl.select(SelectorImpl.java:146) + at org.jboss.xnio.nio@3.8.16.Final-redhat-00001//org.xnio.nio.WorkerThread.run(WorkerThread.java:544) + +"ServerService Thread Pool -- 79" #146 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"ServerService Thread Pool -- 26" #53 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"ServerService Thread Pool -- 51" #80 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"ServerService Thread Pool -- 80" #147 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"ServerService Thread Pool -- 6" #33 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"Transaction Reaper Worker 0" #137 daemon [WAITING] on java.util.LinkedList@2970cfd6 + java.lang.Thread.State: WAITING + at java.base@17.0.15/java.lang.Object.wait(Native Method) + at java.base@17.0.15/java.lang.Object.wait(Object.java:338) + at org.jboss.jts//com.arjuna.ats.arjuna.coordinator.TransactionReaper.waitForWork(TransactionReaper.java:333) + at org.jboss.jts//com.arjuna.ats.internal.arjuna.coordinator.ReaperWorkerThread.run(ReaperWorkerThread.java:48) + +"ServerService Thread Pool -- 61" #93 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"default I/O-10" #116 [RUNNABLE] + java.lang.Thread.State: RUNNABLE + at java.base@17.0.15/sun.nio.ch.EPoll.wait(Native Method) + at java.base@17.0.15/sun.nio.ch.EPollSelectorImpl.doSelect(EPollSelectorImpl.java:118) + at java.base@17.0.15/sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:129) + at java.base@17.0.15/sun.nio.ch.SelectorImpl.select(SelectorImpl.java:141) + at org.jboss.xnio.nio@3.8.16.Final-redhat-00001//org.xnio.nio.WorkerThread.run(WorkerThread.java:563) + +"ServerService Thread Pool -- 7" #34 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"ServerService Thread Pool -- 38" #67 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"default Accept" #129 [RUNNABLE] + java.lang.Thread.State: RUNNABLE + at java.base@17.0.15/sun.nio.ch.EPoll.wait(Native Method) + at java.base@17.0.15/sun.nio.ch.EPollSelectorImpl.doSelect(EPollSelectorImpl.java:118) + at java.base@17.0.15/sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:129) + at java.base@17.0.15/sun.nio.ch.SelectorImpl.select(SelectorImpl.java:146) + at org.jboss.xnio.nio@3.8.16.Final-redhat-00001//org.xnio.nio.WorkerThread.run(WorkerThread.java:544) + +"ServerService Thread Pool -- 83" #150 [WAITING] on java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject@22eea920 + java.lang.Thread.State: WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.park(LockSupport.java:341) + at java.base@17.0.15/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionNode.block(AbstractQueuedSynchronizer.java:506) + at java.base@17.0.15/java.util.concurrent.ForkJoinPool.unmanagedBlock(ForkJoinPool.java:3465) + at java.base@17.0.15/java.util.concurrent.ForkJoinPool.managedBlock(ForkJoinPool.java:3436) + at java.base@17.0.15/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1630) + at java.base@17.0.15/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1177) + at java.base@17.0.15/java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:899) + at java.base@17.0.15/java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1062) + at java.base@17.0.15/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1122) + at java.base@17.0.15/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"ServerService Thread Pool -- 21" #48 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"Cleaner-0" #17 daemon [TIMED_WAITING] on java.lang.ref.ReferenceQueue$Lock@16f5cf09 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/java.lang.Object.wait(Native Method) + at java.base@17.0.15/java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:155) + at java.base@17.0.15/jdk.internal.ref.CleanerImpl.run(CleanerImpl.java:140) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at java.base@17.0.15/jdk.internal.misc.InnocuousThread.run(InnocuousThread.java:162) + +"Reference Reaper #2" #139 daemon [WAITING] on java.lang.ref.ReferenceQueue$Lock@2092516f + java.lang.Thread.State: WAITING + at java.base@17.0.15/java.lang.Object.wait(Native Method) + at java.base@17.0.15/java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:155) + at java.base@17.0.15/java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:176) + at org.wildfly.common@1.7.0.Final-redhat-00003//org.wildfly.common.ref.References$ReaperThread.run(References.java:76) + +"default I/O-4" #110 [RUNNABLE] + java.lang.Thread.State: RUNNABLE + at java.base@17.0.15/sun.nio.ch.EPoll.wait(Native Method) + at java.base@17.0.15/sun.nio.ch.EPollSelectorImpl.doSelect(EPollSelectorImpl.java:118) + at java.base@17.0.15/sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:129) + at java.base@17.0.15/sun.nio.ch.SelectorImpl.select(SelectorImpl.java:146) + at org.jboss.xnio.nio@3.8.16.Final-redhat-00001//org.xnio.nio.WorkerThread.run(WorkerThread.java:544) + +"ServerService Thread Pool -- 3" #30 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"default I/O-6" #112 [RUNNABLE] + java.lang.Thread.State: RUNNABLE + at java.base@17.0.15/sun.nio.ch.EPoll.wait(Native Method) + at java.base@17.0.15/sun.nio.ch.EPollSelectorImpl.doSelect(EPollSelectorImpl.java:118) + at java.base@17.0.15/sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:129) + at java.base@17.0.15/sun.nio.ch.SelectorImpl.select(SelectorImpl.java:146) + at org.jboss.xnio.nio@3.8.16.Final-redhat-00001//org.xnio.nio.WorkerThread.run(WorkerThread.java:544) + +"Periodic Recovery" #134 [TIMED_WAITING] on java.lang.Object@245eed91 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/java.lang.Object.wait(Native Method) + at org.jboss.jts//com.arjuna.ats.internal.arjuna.recovery.PeriodicRecovery.doBackoffWait(PeriodicRecovery.java:679) + at org.jboss.jts//com.arjuna.ats.internal.arjuna.recovery.PeriodicRecovery.doWorkInternal(PeriodicRecovery.java:799) + at org.jboss.jts//com.arjuna.ats.internal.arjuna.recovery.PeriodicRecovery.run(PeriodicRecovery.java:386) + +"ServerService Thread Pool -- 22" #49 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"default I/O-18" #124 [RUNNABLE] + java.lang.Thread.State: RUNNABLE + at java.base@17.0.15/sun.nio.ch.EPoll.wait(Native Method) + at java.base@17.0.15/sun.nio.ch.EPollSelectorImpl.doSelect(EPollSelectorImpl.java:118) + at java.base@17.0.15/sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:129) + at java.base@17.0.15/sun.nio.ch.SelectorImpl.select(SelectorImpl.java:141) + at org.jboss.xnio.nio@3.8.16.Final-redhat-00001//org.xnio.nio.WorkerThread.run(WorkerThread.java:563) + +"ServerService Thread Pool -- 62" #94 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"default I/O-20" #126 [RUNNABLE] + java.lang.Thread.State: RUNNABLE + at java.base@17.0.15/sun.nio.ch.EPoll.wait(Native Method) + at java.base@17.0.15/sun.nio.ch.EPollSelectorImpl.doSelect(EPollSelectorImpl.java:118) + at java.base@17.0.15/sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:129) + at java.base@17.0.15/sun.nio.ch.SelectorImpl.select(SelectorImpl.java:146) + at org.jboss.xnio.nio@3.8.16.Final-redhat-00001//org.xnio.nio.WorkerThread.run(WorkerThread.java:544) + +"ServerService Thread Pool -- 58" #87 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"ServerService Thread Pool -- 49" #78 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"ServerService Thread Pool -- 12" #39 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"ServerService Thread Pool -- 2" #29 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"ServerService Thread Pool -- 50" #79 [TIMED_WAITING] on org.jboss.threads.EnhancedQueueExecutor@67d334b9 + java.lang.Thread.State: TIMED_WAITING + at java.base@17.0.15/jdk.internal.misc.Unsafe.park(Native Method) + at java.base@17.0.15/java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:252) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1421) + at java.base@17.0.15/java.lang.Thread.run(Thread.java:840) + at org.jboss.threads@2.4.0.Final-redhat-00001//org.jboss.threads.JBossThread.run(JBossThread.java:513) + +"default I/O-1" #107 [RUNNABLE] + java.lang.Thread.State: RUNNABLE + at java.base@17.0.15/sun.nio.ch.EPoll.wait(Native Method) + at java.base@17.0.15/sun.nio.ch.EPollSelectorImpl.doSelect(EPollSelectorImpl.java:118) + at java.base@17.0.15/sun.nio.ch.SelectorImpl.lockAndDoSelect(SelectorImpl.java:129) + at java.base@17.0.15/sun.nio.ch.SelectorImpl.select(SelectorImpl.java:146) + at org.jboss.xnio.nio@3.8.16.Final-redhat-00001//org.xnio.nio.WorkerThread.run(WorkerThread.java:544) + + +=========================================== + +StackClassNames: +com.arjuna.ats.arjuna.coordinator.TransactionReaper +com.arjuna.ats.internal.arjuna.coordinator.ReaperThread +com.arjuna.ats.internal.arjuna.coordinator.ReaperWorkerThread +com.arjuna.ats.internal.arjuna.recovery.ExpiredEntryMonitor +com.arjuna.ats.internal.arjuna.recovery.PeriodicRecovery +io.undertow.security.handlers.AbstractConfidentialityHandler +io.undertow.security.handlers.AbstractSecurityContextAssociationHandler +io.undertow.server.Connectors +io.undertow.server.HttpServerExchange$1 +io.undertow.server.handlers.PredicateHandler +io.undertow.servlet.core.ContextClassLoaderSetupAction$1 +io.undertow.servlet.core.ManagedFilter +io.undertow.servlet.core.ServletRequestContextThreadSetupAction$1 +io.undertow.servlet.handlers.FilterHandler +io.undertow.servlet.handlers.FilterHandler$FilterChainImpl +io.undertow.servlet.handlers.RedirectDirHandler +io.undertow.servlet.handlers.SendErrorPageHandler +io.undertow.servlet.handlers.ServletChain$1 +io.undertow.servlet.handlers.ServletDispatchingHandler +io.undertow.servlet.handlers.ServletHandler +io.undertow.servlet.handlers.ServletInitialHandler +io.undertow.servlet.handlers.ServletInitialHandler$1 +io.undertow.servlet.handlers.ServletInitialHandler$2 +io.undertow.servlet.handlers.security.SSLInformationAssociationHandler +io.undertow.servlet.handlers.security.ServletAuthenticationCallHandler +io.undertow.servlet.handlers.security.ServletConfidentialityConstraintHandler +io.undertow.servlet.handlers.security.ServletSecurityRoleHandler +io.undertow.servlet.spec.ServletPrintWriter +io.undertow.servlet.spec.ServletPrintWriterDelegate +jakarta.Base64ClassLoaderServlet +jakarta.EmptyFilter +org.jboss.jca.core.connectionmanager.pool.idle.IdleRemover$IdleRemoverRunner +org.jboss.jca.core.connectionmanager.pool.validator.ConnectionValidator$ConnectionValidatorRunner +org.jboss.modules.ref.References$ReaperThread +org.jboss.threads.ContextClassLoaderSavingRunnable +org.jboss.threads.EnhancedQueueExecutor +org.jboss.threads.EnhancedQueueExecutor$ThreadBody +org.jboss.threads.JBossThread +org.springframework.nSmLh.ErrorHandler +org.wildfly.common.ref.References$ReaperThread +org.wildfly.elytron.web.undertow.server.ElytronRunAsHandler +org.wildfly.elytron.web.undertow.server.ElytronRunAsHandler$$Lambda$902/0x000000b0018e9000 +org.wildfly.elytron.web.undertow.server.servlet.CleanUpHandler +org.wildfly.extension.undertow.deployment.GlobalRequestControllerHandler +org.wildfly.extension.undertow.deployment.UndertowDeploymentInfoService$UndertowThreadSetupAction +org.wildfly.extension.undertow.deployment.UndertowDeploymentInfoService$UndertowThreadSetupAction$$Lambda$862/0x000000b0018a4230 +org.wildfly.extension.undertow.security.jacc.JACCContextIdHandler +org.wildfly.security.auth.server.FlexibleIdentityAssociation +org.wildfly.security.auth.server.Scoped +org.wildfly.security.auth.server.Scoped$$Lambda$903/0x000000b0018bb6d0 +org.wildfly.security.auth.server.Scoped$$Lambda$904/0x000000b0018bb970 +org.xnio.XnioWorker$WorkerThreadFactory$1$1 +org.xnio.nio.WorkerThread