You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In my application, I'm intercepting calls to EntityManager#createQuery and perform blocking operations in that interceptor. Due to the synchronized block, my virtual thread cannot dismount from the platform thread, therefore pinning it. Running with -Djdk.tracePinnedThreads=full produces stack traces that point to the snippet above:
Version: Spring Data JPA 3.3.0.
The method uses a
synchronized
block, causing thread pinning:spring-data-jpa/spring-data-jpa/src/main/java/org/springframework/data/jpa/repository/query/PartTreeJpaQuery.java
Lines 300 to 302 in 2316742
In my application, I'm intercepting calls to
EntityManager#createQuery
and perform blocking operations in that interceptor. Due to thesynchronized
block, my virtual thread cannot dismount from the platform thread, therefore pinning it. Running with-Djdk.tracePinnedThreads=full
produces stack traces that point to the snippet above:Please consider replacing this (and other
synchronized
blocks/methods) withReentrantLock
to avoid thread pinning.The text was updated successfully, but these errors were encountered: