zoukankan      html  css  js  c++  java
  • 线程dump

    命令

    输出堆栈内容,最好输出三次,更好的分析问题所在原因

    jstack -l pid

    [root@syjmw-app-13 hnisi]# ps -ef | grep PortalServer
    root      5318     1  0 Jun20 ?        00:00:00 /bin/sh /hnisi/middleware/BEA10.3.6/user_projects/domains/base_domain/bin/startManagedWebLogic.sh PortalServer
    root      5373  5320  2 Jun20 ?        00:28:58 /hnisi/local/JDK/jdk1.7.0_80/bin/java -client -Xms256m -Xmx512m -XX:CompileThreshold=8000 -XX:PermSize=128m -XX:MaxPermSize=256m -Dweblogic.Name=PortalServer -Djava.security.policy=/hnisi/middleware/BEA10.3.6/wlserver_10.3/server/lib/weblogic.policy -Dweblogic.security.SSL.trustedCAKeyStore=/hnisi/middleware/BEA10.3.6/wlserver_10.3/server/lib/cacerts -Xverify:none -da -Dplatform.home=/hnisi/middleware/BEA10.3.6/wlserver_10.3 -Dwls.home=/hnisi/middleware/BEA10.3.6/wlserver_10.3/server -Dweblogic.home=/hnisi/middleware/BEA10.3.6/wlserver_10.3/server -Dweblogic.management.discover=false -Dweblogic.management.server=http://syjmw-app-13.hnisi.com.cn:7001 -Dwlw.iterativeDev=false -Dwlw.testConsole=false -Dwlw.logErrorsToConsole=false -Dweblogic.ext.dirs=/hnisi/middleware/BEA10.3.6/patch_wls1036/profiles/default/sysext_manifest_classpath:/hnisi/middleware/BEA10.3.6/patch_ocp371/profiles/default/sysext_manifest_classpath weblogic.Server
    root     31418 26001  0 15:51 pts/1    00:00:00 grep PortalSer
    [root@syjmw-app-13 hnisi]# jstack 5373 > 20170621.txt

    线程

    新建( new ):新创建了一个线程对象。

    可运行( runnable ):线程对象创建后,其他线程(比如 main 线程)调用了该对象 的 start ()方法。该状态的线程位于可运行线程池中,等待被线程调度选中,获 取 cpu 的使用权 。

    运行( running ):可运行状态( runnable )的线程获得了 cpu 时间片( timeslice ) ,执行程序代码。

    阻塞( block ):阻塞状态是指线程因为某种原因放弃了 cpu 使用权,也即让出了 cpu timeslice ,暂时停止运行。直到线程进入可运行( runnable )状态,才有 机会再次获得 cpu timeslice 转到运行( running )状态。阻塞的情况分三种: 
    (一). 等待阻塞:运行( running )的线程执行 o . wait ()方法, JVM 会把该线程放 入等待队列( waitting queue )中。 
    (二). 同步阻塞:运行( running )的线程在获取对象的同步锁时,若该同步锁 被别的线程占用,则 JVM 会把该线程放入锁池( lock pool )中。 
    (三). 其他阻塞: 运行( running )的线程执行 Thread . sleep ( long ms )或 t . join ()方法,或者发出了 I / O 请求时, JVM 会把该线程置为阻塞状态。 当 sleep ()状态超时、 join ()等待线程终止或者超时、或者 I / O 处理完毕时,线程重新转入可运行( runnable )状态。

    死亡( dead ):线程 run ()、 main () 方法执行结束,或者因异常退出了 run ()方法,则该线程结束生命周期。死亡的线程不可再次复生。

    线程状态对照表

    jstack线程里,线程的状态有:new、runnable、running、waiting、timed_waiting、blocked、dead,值得关注的线程状态有:
    状态名称 说明
    in Object.wait() 获取锁后又执行obj.wait()放弃锁。
    Running 线程正在执行。
    Runnable 当调用thread.start()后,线程变成为Runnable状态。只要得到CPU,就可以执行。
    Waiting on condition 等待某个资源或条件发生来唤醒自己。具体需要结合jstacktrace来分析,比如线程正在sleep,网络读写繁忙而等待。
    Waiting on monitor entry 在等待获取锁。
    Waiting 执行thread.join()或在锁对象调用obj.wait()等情况就会进该状态,表明线程正处于等待某个资源或条件发生来唤醒自己。
    TIMED_WAITING 执行Thread.sleep(long)、thread.join(long)或obj.wait(long)等就会进该状态,与Waiting的区别在于Timed_Waiting的等待有时间限制。
    DEAD 线程执行完毕,或者抛出了未捕获的异常之后,会进入dead状态,表示该线程结束。
    Blocked 如果进入同步方法或同步代码块,没有获取到锁,则会进入该状态。

    实例

    2017-06-21 19:21:45
    Full thread dump Java HotSpot(TM) 64-Bit Server VM (24.80-b11 mixed mode):
    
    "Attach Listener" daemon prio=10 tid=0x00007f150c002800 nid=0x68bb waiting on condition [0x0000000000000000]
       java.lang.Thread.State: RUNNABLE
    
    "[STANDBY] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'" daemon prio=10 tid=0x00007f14e0004800 nid=0x3d59 in Object.wait() [0x00007f152f2f1000]
       java.lang.Thread.State: WAITING (on object monitor)
        at java.lang.Object.wait(Native Method)
        - waiting on <0x00000000e5bfd0d0> (a weblogic.work.ExecuteThread)
        at java.lang.Object.wait(Object.java:503)
        at weblogic.work.ExecuteThread.waitForRequest(ExecuteThread.java:205)
        - locked <0x00000000e5bfd0d0> (a weblogic.work.ExecuteThread)
        at weblogic.work.ExecuteThread.run(ExecuteThread.java:226)
    
    "[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'" daemon prio=10 tid=0x00007f14d5c57000 nid=0x1784 in Object.wait() [0x00007f152faf9000]
       java.lang.Thread.State: WAITING (on object monitor)
        at java.lang.Object.wait(Native Method)
        - waiting on <0x00000000e41abee8> (a weblogic.work.ExecuteThread)
        at java.lang.Object.wait(Object.java:503)
        at weblogic.work.ExecuteThread.waitForRequest(ExecuteThread.java:205)
        - locked <0x00000000e41abee8> (a weblogic.work.ExecuteThread)
        at weblogic.work.ExecuteThread.run(ExecuteThread.java:226)
    
    "DynamicListenThread[Default[2]]" daemon prio=10 tid=0x00007f14e8213000 nid=0x1783 runnable [0x00007f152fbfa000]
       java.lang.Thread.State: RUNNABLE
        at java.net.PlainSocketImpl.socketAccept(Native Method)
        at java.net.AbstractPlainSocketImpl.accept(AbstractPlainSocketImpl.java:398)
        at java.net.ServerSocket.implAccept(ServerSocket.java:530)
        at java.net.ServerSocket.accept(ServerSocket.java:498)
        at weblogic.socket.WeblogicServerSocket.accept(WeblogicServerSocket.java:38)
        at weblogic.server.channels.DynamicListenThread$SocketAccepter.accept(DynamicListenThread.java:535)
        at weblogic.server.channels.DynamicListenThread$SocketAccepter.access$200(DynamicListenThread.java:417)
        at weblogic.server.channels.DynamicListenThread.run(DynamicListenThread.java:173)
        at java.lang.Thread.run(Thread.java:745)
    
    "DynamicListenThread[Default[3]]" daemon prio=10 tid=0x00007f14e8211000 nid=0x1782 runnable [0x00007f152fcfb000]
       java.lang.Thread.State: RUNNABLE
        at java.net.PlainSocketImpl.socketAccept(Native Method)
        at java.net.AbstractPlainSocketImpl.accept(AbstractPlainSocketImpl.java:398)
        at java.net.ServerSocket.implAccept(ServerSocket.java:530)
        at java.net.ServerSocket.accept(ServerSocket.java:498)
        at weblogic.socket.WeblogicServerSocket.accept(WeblogicServerSocket.java:38)
        at weblogic.server.channels.DynamicListenThread$SocketAccepter.accept(DynamicListenThread.java:535)
        at weblogic.server.channels.DynamicListenThread$SocketAccepter.access$200(DynamicListenThread.java:417)
        at weblogic.server.channels.DynamicListenThread.run(DynamicListenThread.java:173)
        at java.lang.Thread.run(Thread.java:745)
    
    "DynamicListenThread[Default]" daemon prio=10 tid=0x00007f14e819b800 nid=0x1781 runnable [0x00007f152fdfc000]
       java.lang.Thread.State: RUNNABLE
        at java.net.PlainSocketImpl.socketAccept(Native Method)
        at java.net.AbstractPlainSocketImpl.accept(AbstractPlainSocketImpl.java:398)
        at java.net.ServerSocket.implAccept(ServerSocket.java:530)
        at java.net.ServerSocket.accept(ServerSocket.java:498)
        at weblogic.socket.WeblogicServerSocket.accept(WeblogicServerSocket.java:38)
        at weblogic.server.channels.DynamicListenThread$SocketAccepter.accept(DynamicListenThread.java:535)
        at weblogic.server.channels.DynamicListenThread$SocketAccepter.access$200(DynamicListenThread.java:417)
        at weblogic.server.channels.DynamicListenThread.run(DynamicListenThread.java:173)
        at java.lang.Thread.run(Thread.java:745)
    
    "DynamicListenThread[Default[1]]" daemon prio=10 tid=0x00007f14e8199800 nid=0x1780 runnable [0x00007f152fefd000]
       java.lang.Thread.State: RUNNABLE
        at java.net.PlainSocketImpl.socketAccept(Native Method)
        at java.net.AbstractPlainSocketImpl.accept(AbstractPlainSocketImpl.java:398)
        at java.net.ServerSocket.implAccept(ServerSocket.java:530)
        at java.net.ServerSocket.accept(ServerSocket.java:498)
        at weblogic.socket.WeblogicServerSocket.accept(WeblogicServerSocket.java:38)
        at weblogic.server.channels.DynamicListenThread$SocketAccepter.accept(DynamicListenThread.java:535)
        at weblogic.server.channels.DynamicListenThread$SocketAccepter.access$200(DynamicListenThread.java:417)
        at weblogic.server.channels.DynamicListenThread.run(DynamicListenThread.java:173)
        at java.lang.Thread.run(Thread.java:745)
    
    "weblogic.GCMonitor" daemon prio=10 tid=0x00007f14d5c4b800 nid=0x177f in Object.wait() [0x00007f152fffe000]
       java.lang.Thread.State: TIMED_WAITING (on object monitor)
        at java.lang.Object.wait(Native Method)
        - waiting on <0x00000000e41b6eb8> (a java.lang.ref.ReferenceQueue$Lock)
        at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:135)
        - locked <0x00000000e41b6eb8> (a java.lang.ref.ReferenceQueue$Lock)
        at weblogic.platform.GCMonitorThread.waitForNotification(GCMonitorThread.java:88)
        at weblogic.platform.GCMonitorThread.run(GCMonitorThread.java:64)
    
    "Thread-11" prio=10 tid=0x00007f14d5d5f800 nid=0x177e waiting on condition [0x00007f15341c0000]
       java.lang.Thread.State: WAITING (parking)
        at sun.misc.Unsafe.park(Native Method)
        - parking to wait for  <0x00000000e3dca918> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
        at java.util.concurrent.locks.LockSupport.park(LockSupport.java:186)
        at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2043)
        at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:442)
        at weblogic.utils.concurrent.JDK15ConcurrentBlockingQueue.take(JDK15ConcurrentBlockingQueue.java:89)
        at weblogic.store.internal.PersistentStoreImpl.getOutstandingWork(PersistentStoreImpl.java:676)
        at weblogic.store.internal.PersistentStoreImpl.run(PersistentStoreImpl.java:751)
        at java.lang.Thread.run(Thread.java:745)
    
    "org.springframework.scheduling.concurrent.ScheduledExecutorFactoryBean#0-1" prio=10 tid=0x00007f14d5c88800 nid=0x177d waiting on condition [0x00007f15343c2000]
       java.lang.Thread.State: TIMED_WAITING (parking)
        at sun.misc.Unsafe.park(Native Method)
        - parking to wait for  <0x00000000e3678f20> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
        at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:226)
        at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2082)
        at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1090)
        at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:807)
        at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1068)
        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
        at java.lang.Thread.run(Thread.java:745)
    
    "Store org.hibernate.cache.StandardQueryCache Expiry Thread" daemon prio=10 tid=0x00007f14d5bb8000 nid=0x177c waiting on condition [0x00007f15344c3000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.hibernate.cache.StandardQueryCache Spool Thread" daemon prio=10 tid=0x00007f14d5bb6000 nid=0x177b waiting on condition [0x00007f15345c4000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.hibernate.cache.UpdateTimestampsCache Expiry Thread" daemon prio=10 tid=0x00007f14d5bb4000 nid=0x177a waiting on condition [0x00007f15346c5000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.hibernate.cache.UpdateTimestampsCache Spool Thread" daemon prio=10 tid=0x00007f14d5bb2000 nid=0x1779 waiting on condition [0x00007f15347c6000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.graph.def.SuperState.nodes Expiry Thread" daemon prio=10 tid=0x00007f14d5bab800 nid=0x1778 waiting on condition [0x00007f15348c7000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.graph.def.SuperState.nodes Spool Thread" daemon prio=10 tid=0x00007f14d5ba9800 nid=0x1777 waiting on condition [0x00007f15349c8000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.taskmgmt.def.TaskController.variableAccesses Expiry Thread" daemon prio=10 tid=0x00007f14d5ba7800 nid=0x1776 waiting on condition [0x00007f1534ac9000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.taskmgmt.def.TaskController.variableAccesses Spool Thread" daemon prio=10 tid=0x00007f14d5ba5800 nid=0x1775 waiting on condition [0x00007f1534bca000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.graph.def.Event.actions Expiry Thread" daemon prio=10 tid=0x00007f14d5ba3800 nid=0x1774 waiting on condition [0x00007f1534ccb000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.graph.def.Event.actions Spool Thread" daemon prio=10 tid=0x00007f14d5ba1800 nid=0x1773 waiting on condition [0x00007f1534dcc000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.graph.def.ExceptionHandler.actions Expiry Thread" daemon prio=10 tid=0x00007f14d5b9f800 nid=0x1772 waiting on condition [0x00007f1534ecd000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.graph.def.ExceptionHandler.actions Spool Thread" daemon prio=10 tid=0x00007f14d5b9d000 nid=0x1771 waiting on condition [0x00007f1534fce000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.taskmgmt.def.Swimlane.tasks Expiry Thread" daemon prio=10 tid=0x00007f14d5b9b000 nid=0x1770 waiting on condition [0x00007f15350cf000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.taskmgmt.def.Swimlane.tasks Spool Thread" daemon prio=10 tid=0x00007f14d568f800 nid=0x176f waiting on condition [0x00007f15351d0000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.graph.def.Transition.events Expiry Thread" daemon prio=10 tid=0x00007f14d568d800 nid=0x176e waiting on condition [0x00007f15352d1000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.graph.def.Transition.events Spool Thread" daemon prio=10 tid=0x00007f14d568c000 nid=0x176d waiting on condition [0x00007f15353d2000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.graph.node.Decision.decisionConditions Expiry Thread" daemon prio=10 tid=0x00007f14d568a000 nid=0x176c waiting on condition [0x00007f15354d3000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.graph.node.Decision.decisionConditions Spool Thread" daemon prio=10 tid=0x00007f14d5688000 nid=0x176b waiting on condition [0x00007f15355d4000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.graph.node.TaskNode.tasks Expiry Thread" daemon prio=10 tid=0x00007f14d5686000 nid=0x176a waiting on condition [0x00007f15356d5000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.graph.node.TaskNode.tasks Spool Thread" daemon prio=10 tid=0x00007f14d5684800 nid=0x1769 waiting on condition [0x00007f15357d6000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.taskmgmt.def.Task.events Expiry Thread" daemon prio=10 tid=0x00007f14d5682000 nid=0x1768 waiting on condition [0x00007f15358d7000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.taskmgmt.def.Task.events Spool Thread" daemon prio=10 tid=0x00007f14d5680000 nid=0x1767 waiting on condition [0x00007f15359d8000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.taskmgmt.def.TaskMgmtDefinition.swimlanes Expiry Thread" daemon prio=10 tid=0x00007f14d567e800 nid=0x1766 waiting on condition [0x00007f1535ad9000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.taskmgmt.def.TaskMgmtDefinition.swimlanes Spool Thread" daemon prio=10 tid=0x00007f14d567d000 nid=0x1765 waiting on condition [0x00007f1535bda000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.graph.def.ProcessDefinition.events Expiry Thread" daemon prio=10 tid=0x00007f14d567b000 nid=0x1764 waiting on condition [0x00007f1535cdb000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.graph.def.ProcessDefinition.events Spool Thread" daemon prio=10 tid=0x00007f14d5679000 nid=0x1763 waiting on condition [0x00007f1535ddc000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.graph.node.ProcessState.variableAccesses Expiry Thread" daemon prio=10 tid=0x00007f14d5677000 nid=0x1762 waiting on condition [0x00007f1535edd000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.graph.node.ProcessState.variableAccesses Spool Thread" daemon prio=10 tid=0x00007f14d5674800 nid=0x1761 waiting on condition [0x00007f1535fde000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.graph.def.Node.leavingTransitions Expiry Thread" daemon prio=10 tid=0x00007f14d5672800 nid=0x1760 waiting on condition [0x00007f15360df000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.graph.def.Node.leavingTransitions Spool Thread" daemon prio=10 tid=0x00007f14d5671000 nid=0x175f waiting on condition [0x00007f15361e0000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.file.def.FileDefinition.processFiles Expiry Thread" daemon prio=10 tid=0x00007f14d566f000 nid=0x175e waiting on condition [0x00007f15362e1000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.file.def.FileDefinition.processFiles Spool Thread" daemon prio=10 tid=0x00007f14d566d000 nid=0x175d waiting on condition [0x00007f15363e2000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.graph.def.ProcessDefinition.definitions Expiry Thread" daemon prio=10 tid=0x00007f14d566b000 nid=0x175c waiting on condition [0x00007f15364e3000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.graph.def.ProcessDefinition.definitions Spool Thread" daemon prio=10 tid=0x00007f14d5668800 nid=0x175b waiting on condition [0x00007f15365e4000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.graph.def.Node.events Expiry Thread" daemon prio=10 tid=0x00007f14d5666800 nid=0x175a waiting on condition [0x00007f15366e5000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.graph.def.Node.events Spool Thread" daemon prio=10 tid=0x00007f14d5665000 nid=0x1759 waiting on condition [0x00007f15367e6000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.graph.action.Script.variableAccesses Expiry Thread" daemon prio=10 tid=0x00007f14d5663800 nid=0x1758 waiting on condition [0x00007f15368e7000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.graph.action.Script.variableAccesses Spool Thread" daemon prio=10 tid=0x00007f14d5661800 nid=0x1757 waiting on condition [0x00007f15369e8000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.graph.def.ProcessDefinition.exceptionHandlers Expiry Thread" daemon prio=10 tid=0x00007f14d565f800 nid=0x1756 waiting on condition [0x00007f1536ae9000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.graph.def.ProcessDefinition.exceptionHandlers Spool Thread" daemon prio=10 tid=0x00007f14d565d800 nid=0x1755 waiting on condition [0x00007f1536bea000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.taskmgmt.def.TaskMgmtDefinition.tasks Expiry Thread" daemon prio=10 tid=0x00007f14d565b000 nid=0x1754 waiting on condition [0x00007f1536ceb000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.taskmgmt.def.TaskMgmtDefinition.tasks Spool Thread" daemon prio=10 tid=0x00007f14d5659800 nid=0x1753 waiting on condition [0x00007f1536dec000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.graph.def.Node.exceptionHandlers Expiry Thread" daemon prio=10 tid=0x00007f14d5657800 nid=0x1752 waiting on condition [0x00007f1536eed000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.graph.def.Node.exceptionHandlers Spool Thread" daemon prio=10 tid=0x00007f14d5655800 nid=0x1751 waiting on condition [0x00007f1536fee000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.graph.def.Node.arrivingTransitions Expiry Thread" daemon prio=10 tid=0x00007f14d5653800 nid=0x1750 waiting on condition [0x00007f15370ef000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.graph.def.Node.arrivingTransitions Spool Thread" daemon prio=10 tid=0x00007f14d5651800 nid=0x174f waiting on condition [0x00007f15371f0000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.graph.def.ProcessDefinition.actions Expiry Thread" daemon prio=10 tid=0x00007f14d564f800 nid=0x174e waiting on condition [0x00007f15372f1000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.graph.def.ProcessDefinition.actions Spool Thread" daemon prio=10 tid=0x00007f14d564d800 nid=0x174d waiting on condition [0x00007f15373f2000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.graph.def.ProcessDefinition.nodes Expiry Thread" daemon prio=10 tid=0x00007f14d564b800 nid=0x174c waiting on condition [0x00007f15374f3000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.graph.def.ProcessDefinition.nodes Spool Thread" daemon prio=10 tid=0x00007f14d5649800 nid=0x174b waiting on condition [0x00007f15375f4000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.taskmgmt.def.Task.exceptionHandlers Expiry Thread" daemon prio=10 tid=0x00007f14d5647000 nid=0x174a waiting on condition [0x00007f15376f5000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.taskmgmt.def.Task.exceptionHandlers Spool Thread" daemon prio=10 tid=0x00007f14d5645000 nid=0x1749 waiting on condition [0x00007f15377f6000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.graph.def.Transition.exceptionHandlers Expiry Thread" daemon prio=10 tid=0x00007f14d5643000 nid=0x1748 waiting on condition [0x00007f15378f7000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.graph.def.Transition.exceptionHandlers Spool Thread" daemon prio=10 tid=0x00007f14d5641000 nid=0x1747 waiting on condition [0x00007f15379f8000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.graph.def.ExceptionHandler Expiry Thread" daemon prio=10 tid=0x00007f14d563f000 nid=0x1746 waiting on condition [0x00007f1537af9000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.graph.def.ExceptionHandler Spool Thread" daemon prio=10 tid=0x00007f14d563d000 nid=0x1745 waiting on condition [0x00007f1537bfa000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.taskmgmt.def.TaskController Expiry Thread" daemon prio=10 tid=0x00007f14d563b000 nid=0x1744 waiting on condition [0x00007f1537cfb000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.taskmgmt.def.TaskController Spool Thread" daemon prio=10 tid=0x00007f14d5639000 nid=0x1743 waiting on condition [0x00007f1537dfc000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.context.def.VariableAccess Expiry Thread" daemon prio=10 tid=0x00007f14d5637000 nid=0x1742 waiting on condition [0x00007f1537efd000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.context.def.VariableAccess Spool Thread" daemon prio=10 tid=0x00007f14d5635000 nid=0x1741 waiting on condition [0x00007f1537ffe000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.graph.def.Event Expiry Thread" daemon prio=10 tid=0x00007f14d5632800 nid=0x1740 waiting on condition [0x00007f153c1c0000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.graph.def.Event Spool Thread" daemon prio=10 tid=0x00007f14d5631000 nid=0x173f waiting on condition [0x00007f153c2c1000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.taskmgmt.def.Task Expiry Thread" daemon prio=10 tid=0x00007f14d562f000 nid=0x173e waiting on condition [0x00007f153c3c2000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.taskmgmt.def.Task Spool Thread" daemon prio=10 tid=0x00007f14d562c800 nid=0x173d waiting on condition [0x00007f153c4c3000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.graph.def.Transition Expiry Thread" daemon prio=10 tid=0x00007f14d562a800 nid=0x173c waiting on condition [0x00007f153c5c4000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.graph.def.Transition Spool Thread" daemon prio=10 tid=0x00007f14d5628800 nid=0x173b waiting on condition [0x00007f153c6c5000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.graph.def.Action Expiry Thread" daemon prio=10 tid=0x00007f14d5626800 nid=0x173a waiting on condition [0x00007f153c7c6000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.graph.def.Action Spool Thread" daemon prio=10 tid=0x00007f14d5624800 nid=0x1739 waiting on condition [0x00007f153c8c7000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.graph.def.ProcessDefinition Expiry Thread" daemon prio=10 tid=0x00007f14d5622800 nid=0x1738 waiting on condition [0x00007f153c9c8000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.graph.def.ProcessDefinition Spool Thread" daemon prio=10 tid=0x00007f14d5620800 nid=0x1737 waiting on condition [0x00007f153cac9000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.instantiation.Delegation Expiry Thread" daemon prio=10 tid=0x00007f14d561f000 nid=0x1736 waiting on condition [0x00007f153cbca000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.instantiation.Delegation Spool Thread" daemon prio=10 tid=0x00007f14d561d800 nid=0x1735 waiting on condition [0x00007f153cccb000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.graph.def.Node Expiry Thread" daemon prio=10 tid=0x00007f14d561b800 nid=0x1734 waiting on condition [0x00007f153cdcc000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.graph.def.Node Spool Thread" daemon prio=10 tid=0x00007f14d5619000 nid=0x1733 waiting on condition [0x00007f153cecd000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.module.def.ModuleDefinition Expiry Thread" daemon prio=10 tid=0x00007f14d5617000 nid=0x1732 waiting on condition [0x00007f153cfce000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.module.def.ModuleDefinition Spool Thread" daemon prio=10 tid=0x00007f14d5611800 nid=0x1731 waiting on condition [0x00007f153d0cf000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.hibernate.cache.StandardQueryCache Expiry Thread" daemon prio=10 tid=0x00007f14d5783000 nid=0x1730 waiting on condition [0x00007f153d1d0000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.hibernate.cache.StandardQueryCache Spool Thread" daemon prio=10 tid=0x00007f14d5780800 nid=0x172f waiting on condition [0x00007f153d2d1000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.hibernate.cache.UpdateTimestampsCache Expiry Thread" daemon prio=10 tid=0x00007f14d5b9a000 nid=0x172e waiting on condition [0x00007f153d3d2000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.hibernate.cache.UpdateTimestampsCache Spool Thread" daemon prio=10 tid=0x00007f14d5b99000 nid=0x172d waiting on condition [0x00007f153d4d3000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.graph.def.SuperState.nodes Expiry Thread" daemon prio=10 tid=0x00007f14d5b7c000 nid=0x172c waiting on condition [0x00007f153d5d4000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.graph.def.SuperState.nodes Spool Thread" daemon prio=10 tid=0x00007f14d5b7a000 nid=0x172b waiting on condition [0x00007f153d6d5000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.taskmgmt.def.TaskController.variableAccesses Expiry Thread" daemon prio=10 tid=0x00007f14d5b78000 nid=0x172a waiting on condition [0x00007f153d7d6000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.taskmgmt.def.TaskController.variableAccesses Spool Thread" daemon prio=10 tid=0x00007f14d5b76000 nid=0x1729 waiting on condition [0x00007f153d8d7000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.graph.def.Event.actions Expiry Thread" daemon prio=10 tid=0x00007f14d5b74000 nid=0x1728 waiting on condition [0x00007f153d9d8000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.graph.def.Event.actions Spool Thread" daemon prio=10 tid=0x00007f14d5b72000 nid=0x1727 waiting on condition [0x00007f153dad9000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.graph.def.ExceptionHandler.actions Expiry Thread" daemon prio=10 tid=0x00007f14d5b70000 nid=0x1726 waiting on condition [0x00007f153dbda000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.graph.def.ExceptionHandler.actions Spool Thread" daemon prio=10 tid=0x00007f14d5b6d800 nid=0x1725 waiting on condition [0x00007f153dcdb000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.taskmgmt.def.Swimlane.tasks Expiry Thread" daemon prio=10 tid=0x00007f14d5b6b800 nid=0x1724 waiting on condition [0x00007f153dddc000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.taskmgmt.def.Swimlane.tasks Spool Thread" daemon prio=10 tid=0x00007f14d5b6a000 nid=0x1723 waiting on condition [0x00007f153dedd000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.graph.def.Transition.events Expiry Thread" daemon prio=10 tid=0x00007f14d5b68000 nid=0x1722 waiting on condition [0x00007f153dfde000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.graph.def.Transition.events Spool Thread" daemon prio=10 tid=0x00007f14d5b66000 nid=0x1721 waiting on condition [0x00007f153e0df000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.graph.node.Decision.decisionConditions Expiry Thread" daemon prio=10 tid=0x00007f14d5b64000 nid=0x1720 waiting on condition [0x00007f153e1e0000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.graph.node.Decision.decisionConditions Spool Thread" daemon prio=10 tid=0x00007f14d5b61800 nid=0x171f waiting on condition [0x00007f153e2e1000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.graph.node.TaskNode.tasks Expiry Thread" daemon prio=10 tid=0x00007f14d5b5f800 nid=0x171e waiting on condition [0x00007f153e3e2000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.graph.node.TaskNode.tasks Spool Thread" daemon prio=10 tid=0x00007f14d5b5d800 nid=0x171d waiting on condition [0x00007f153e4e3000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.taskmgmt.def.Task.events Expiry Thread" daemon prio=10 tid=0x00007f14d5b5b800 nid=0x171c waiting on condition [0x00007f153e5e4000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.taskmgmt.def.Task.events Spool Thread" daemon prio=10 tid=0x00007f14d5b59800 nid=0x171b waiting on condition [0x00007f153e6e5000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.taskmgmt.def.TaskMgmtDefinition.swimlanes Expiry Thread" daemon prio=10 tid=0x00007f14d5b57800 nid=0x171a waiting on condition [0x00007f153e7e6000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.taskmgmt.def.TaskMgmtDefinition.swimlanes Spool Thread" daemon prio=10 tid=0x00007f14d5b55800 nid=0x1719 waiting on condition [0x00007f153e8e7000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.graph.def.ProcessDefinition.events Expiry Thread" daemon prio=10 tid=0x00007f14d5b53000 nid=0x1718 waiting on condition [0x00007f153e9e8000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.graph.def.ProcessDefinition.events Spool Thread" daemon prio=10 tid=0x00007f14d5b51000 nid=0x1717 waiting on condition [0x00007f153eae9000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.graph.node.ProcessState.variableAccesses Expiry Thread" daemon prio=10 tid=0x00007f14d5b4f000 nid=0x1716 waiting on condition [0x00007f153ebea000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.graph.node.ProcessState.variableAccesses Spool Thread" daemon prio=10 tid=0x00007f14d5b4d000 nid=0x1715 waiting on condition [0x00007f153eceb000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.graph.def.Node.leavingTransitions Expiry Thread" daemon prio=10 tid=0x00007f14d5b4b000 nid=0x1714 waiting on condition [0x00007f153edec000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.graph.def.Node.leavingTransitions Spool Thread" daemon prio=10 tid=0x00007f14d5b48800 nid=0x1713 waiting on condition [0x00007f153eeed000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.file.def.FileDefinition.processFiles Expiry Thread" daemon prio=10 tid=0x00007f14d5b46800 nid=0x1712 waiting on condition [0x00007f153efee000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.file.def.FileDefinition.processFiles Spool Thread" daemon prio=10 tid=0x00007f14d5b44800 nid=0x1711 waiting on condition [0x00007f153f0ef000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.graph.def.ProcessDefinition.definitions Expiry Thread" daemon prio=10 tid=0x00007f14d5b42800 nid=0x1710 waiting on condition [0x00007f153f1f0000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.graph.def.ProcessDefinition.definitions Spool Thread" daemon prio=10 tid=0x00007f14d5b40800 nid=0x170f waiting on condition [0x00007f153f2f1000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.graph.def.Node.events Expiry Thread" daemon prio=10 tid=0x00007f14d5b3e800 nid=0x170e waiting on condition [0x00007f153f3f2000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.graph.def.Node.events Spool Thread" daemon prio=10 tid=0x00007f14d5b3c800 nid=0x170d waiting on condition [0x00007f153f4f3000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.graph.action.Script.variableAccesses Expiry Thread" daemon prio=10 tid=0x00007f14d5b3a000 nid=0x170c waiting on condition [0x00007f153f5f4000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.graph.action.Script.variableAccesses Spool Thread" daemon prio=10 tid=0x00007f14d5b38000 nid=0x170b waiting on condition [0x00007f153f6f5000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.graph.def.ProcessDefinition.exceptionHandlers Expiry Thread" daemon prio=10 tid=0x00007f14d5b36000 nid=0x170a waiting on condition [0x00007f153f7f6000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.graph.def.ProcessDefinition.exceptionHandlers Spool Thread" daemon prio=10 tid=0x00007f14d5b34000 nid=0x1709 waiting on condition [0x00007f153f8f7000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.taskmgmt.def.TaskMgmtDefinition.tasks Expiry Thread" daemon prio=10 tid=0x00007f14d5b32000 nid=0x1708 waiting on condition [0x00007f153f9f8000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.taskmgmt.def.TaskMgmtDefinition.tasks Spool Thread" daemon prio=10 tid=0x00007f14d5b30000 nid=0x1707 waiting on condition [0x00007f153faf9000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.graph.def.Node.exceptionHandlers Expiry Thread" daemon prio=10 tid=0x00007f14d5b2e000 nid=0x1706 waiting on condition [0x00007f153fbfa000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.graph.def.Node.exceptionHandlers Spool Thread" daemon prio=10 tid=0x00007f14d5b2b800 nid=0x1705 waiting on condition [0x00007f153fcfb000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.graph.def.Node.arrivingTransitions Expiry Thread" daemon prio=10 tid=0x00007f14d5b2a000 nid=0x1704 waiting on condition [0x00007f153fdfc000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.graph.def.Node.arrivingTransitions Spool Thread" daemon prio=10 tid=0x00007f14d5b25800 nid=0x1703 waiting on condition [0x00007f153fefd000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.graph.def.ProcessDefinition.actions Expiry Thread" daemon prio=10 tid=0x00007f14d5b23000 nid=0x1702 waiting on condition [0x00007f153fffe000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.graph.def.ProcessDefinition.actions Spool Thread" daemon prio=10 tid=0x00007f14d5b21000 nid=0x1701 waiting on condition [0x00007f1544192000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.graph.def.ProcessDefinition.nodes Expiry Thread" daemon prio=10 tid=0x00007f14d5b1e800 nid=0x1700 waiting on condition [0x00007f1544293000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.graph.def.ProcessDefinition.nodes Spool Thread" daemon prio=10 tid=0x00007f14d5b1d000 nid=0x16ff waiting on condition [0x00007f1544394000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.taskmgmt.def.Task.exceptionHandlers Expiry Thread" daemon prio=10 tid=0x00007f14d5b1b000 nid=0x16fe waiting on condition [0x00007f1544495000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.taskmgmt.def.Task.exceptionHandlers Spool Thread" daemon prio=10 tid=0x00007f14d5b19800 nid=0x16fd waiting on condition [0x00007f1544596000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.graph.def.Transition.exceptionHandlers Expiry Thread" daemon prio=10 tid=0x00007f14d5b15000 nid=0x16fc waiting on condition [0x00007f1544697000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.graph.def.Transition.exceptionHandlers Spool Thread" daemon prio=10 tid=0x00007f14d5b14000 nid=0x16fb waiting on condition [0x00007f1544798000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.graph.def.ExceptionHandler Expiry Thread" daemon prio=10 tid=0x00007f14d5b0a800 nid=0x16fa waiting on condition [0x00007f1544899000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.graph.def.ExceptionHandler Spool Thread" daemon prio=10 tid=0x00007f14d5b09800 nid=0x16f9 waiting on condition [0x00007f154499a000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.taskmgmt.def.TaskController Expiry Thread" daemon prio=10 tid=0x00007f14d5b05000 nid=0x16f8 waiting on condition [0x00007f1544a9b000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.taskmgmt.def.TaskController Spool Thread" daemon prio=10 tid=0x00007f14d5b04000 nid=0x16f7 waiting on condition [0x00007f1544b9c000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.context.def.VariableAccess Expiry Thread" daemon prio=10 tid=0x00007f14d5afe800 nid=0x16f6 waiting on condition [0x00007f1544c9d000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.context.def.VariableAccess Spool Thread" daemon prio=10 tid=0x00007f14d5afc800 nid=0x16f5 waiting on condition [0x00007f1544d9e000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.graph.def.Event Expiry Thread" daemon prio=10 tid=0x00007f14d5afa000 nid=0x16f4 waiting on condition [0x00007f1544e9f000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.graph.def.Event Spool Thread" daemon prio=10 tid=0x00007f14d5af4800 nid=0x16f3 waiting on condition [0x00007f1544fa0000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.taskmgmt.def.Task Expiry Thread" daemon prio=10 tid=0x00007f14d5af1800 nid=0x16f2 waiting on condition [0x00007f15450a1000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.taskmgmt.def.Task Spool Thread" daemon prio=10 tid=0x00007f14d5af0800 nid=0x16f1 waiting on condition [0x00007f15451a2000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.graph.def.Transition Expiry Thread" daemon prio=10 tid=0x00007f14d5ae9000 nid=0x16f0 waiting on condition [0x00007f15452a3000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.graph.def.Transition Spool Thread" daemon prio=10 tid=0x00007f14d5ae7800 nid=0x16ef waiting on condition [0x00007f15453a4000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.graph.def.Action Expiry Thread" daemon prio=10 tid=0x00007f14d5ae3000 nid=0x16ee waiting on condition [0x00007f15454a5000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.graph.def.Action Spool Thread" daemon prio=10 tid=0x00007f14d5ae6000 nid=0x16ed waiting on condition [0x00007f15455a6000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.graph.def.ProcessDefinition Expiry Thread" daemon prio=10 tid=0x00007f14d5ae0800 nid=0x16ec waiting on condition [0x00007f15456a7000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.graph.def.ProcessDefinition Spool Thread" daemon prio=10 tid=0x00007f14d5adf000 nid=0x16eb waiting on condition [0x00007f15457a8000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.instantiation.Delegation Expiry Thread" daemon prio=10 tid=0x00007f14d5adc800 nid=0x16ea waiting on condition [0x00007f15458a9000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.instantiation.Delegation Spool Thread" daemon prio=10 tid=0x00007f14d5ad8800 nid=0x16e9 waiting on condition [0x00007f15459aa000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.graph.def.Node Expiry Thread" daemon prio=10 tid=0x00007f14d5ad4000 nid=0x16e8 waiting on condition [0x00007f1545aab000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.graph.def.Node Spool Thread" daemon prio=10 tid=0x00007f14d5ad2800 nid=0x16e7 waiting on condition [0x00007f1545bac000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "Store org.jbpm.module.def.ModuleDefinition Expiry Thread" daemon prio=10 tid=0x00007f14d5ab5800 nid=0x16e6 waiting on condition [0x00007f1545cad000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.expiryThreadMain(DiskStore.java:831)
        at net.sf.ehcache.store.DiskStore.access$700(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$ExpiryThread.run(DiskStore.java:1008)
    
    "Store org.jbpm.module.def.ModuleDefinition Spool Thread" daemon prio=10 tid=0x00007f14d5a8a800 nid=0x16e5 waiting on condition [0x00007f1545dae000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at net.sf.ehcache.store.DiskStore.spoolThreadMain(DiskStore.java:556)
        at net.sf.ehcache.store.DiskStore.access$600(DiskStore.java:59)
        at net.sf.ehcache.store.DiskStore$SpoolThread.run(DiskStore.java:990)
    
    "[STANDBY] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'" daemon prio=10 tid=0x00007f14e0001800 nid=0x16e4 in Object.wait() [0x00007f1546388000]
       java.lang.Thread.State: WAITING (on object monitor)
        at java.lang.Object.wait(Native Method)
        - waiting on <0x00000000e1a9c318> (a weblogic.work.ExecuteThread)
        at java.lang.Object.wait(Object.java:503)
        at weblogic.work.ExecuteThread.waitForRequest(ExecuteThread.java:205)
        - locked <0x00000000e1a9c318> (a weblogic.work.ExecuteThread)
        at weblogic.work.ExecuteThread.run(ExecuteThread.java:226)
    
    "Thread-10" prio=10 tid=0x00007f14e82aa000 nid=0x16d4 waiting on condition [0x00007f1547af9000]
       java.lang.Thread.State: WAITING (parking)
        at sun.misc.Unsafe.park(Native Method)
        - parking to wait for  <0x00000000e0bec458> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject)
        at java.util.concurrent.locks.LockSupport.park(LockSupport.java:186)
        at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2043)
        at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:442)
        at weblogic.utils.concurrent.JDK15ConcurrentBlockingQueue.take(JDK15ConcurrentBlockingQueue.java:89)
        at weblogic.store.internal.PersistentStoreImpl.getOutstandingWork(PersistentStoreImpl.java:676)
        at weblogic.store.internal.PersistentStoreImpl.run(PersistentStoreImpl.java:751)
        at java.lang.Thread.run(Thread.java:745)
    
    "DoSManager" daemon prio=10 tid=0x00007f14bc006000 nid=0x16d3 waiting on condition [0x00007f15479f8000]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
        at java.lang.Thread.sleep(Native Method)
        at com.octetstring.vde.DoSManager.run(DoSManager.java:433)
    
    "VDE Transaction Processor Thread" daemon prio=10 tid=0x00007f14e81ce800 nid=0x16d1 in Object.wait() [0x00007f1547bfa000]
       java.lang.Thread.State: WAITING (on object monitor)
        at java.lang.Object.wait(Native Method)
        - waiting on <0x00000000e14678a0> (a com.octetstring.vde.backend.standard.TransactionProcessor)
        at java.lang.Object.wait(Object.java:503)
        at com.octetstring.vde.backend.standard.TransactionProcessor.waitChange(TransactionProcessor.java:367)
        - locked <0x00000000e14678a0> (a com.octetstring.vde.backend.standard.TransactionProcessor)
        at com.octetstring.vde.backend.standard.TransactionProcessor.run(TransactionProcessor.java:212)
    
    "ExecuteThread: '3' for queue: 'weblogic.socket.Muxer'" daemon prio=10 tid=0x00007f14e80c4800 nid=0x16c6 runnable [0x00007f1547cfb000]
       java.lang.Thread.State: RUNNABLE
        at weblogic.socket.PosixSocketMuxer.poll(Native Method)
        at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:102)
        - locked <0x00000000e072f908> (a weblogic.socket.PosixSocketMuxer$1)
        at weblogic.socket.SocketReaderRequest.run(SocketReaderRequest.java:29)
        at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:42)
        at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:145)
        at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:117)
    
    "ExecuteThread: '2' for queue: 'weblogic.socket.Muxer'" daemon prio=10 tid=0x00007f14e80c3000 nid=0x16c5 waiting for monitor entry [0x00007f1547dfc000]
       java.lang.Thread.State: BLOCKED (on object monitor)
        at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:95)
        - waiting to lock <0x00000000e072f908> (a weblogic.socket.PosixSocketMuxer$1)
        at weblogic.socket.SocketReaderRequest.run(SocketReaderRequest.java:29)
        at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:42)
        at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:145)
        at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:117)
    
    "ExecuteThread: '1' for queue: 'weblogic.socket.Muxer'" daemon prio=10 tid=0x00007f14e80c1000 nid=0x16c4 waiting for monitor entry [0x00007f1547efd000]
       java.lang.Thread.State: BLOCKED (on object monitor)
        at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:95)
        - waiting to lock <0x00000000e072f908> (a weblogic.socket.PosixSocketMuxer$1)
        at weblogic.socket.SocketReaderRequest.run(SocketReaderRequest.java:29)
        at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:42)
        at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:145)
        at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:117)
    
    "ExecuteThread: '0' for queue: 'weblogic.socket.Muxer'" daemon prio=10 tid=0x00007f14e8085800 nid=0x16c3 waiting for monitor entry [0x00007f1547ffe000]
       java.lang.Thread.State: BLOCKED (on object monitor)
        at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:95)
        - waiting to lock <0x00000000e072f908> (a weblogic.socket.PosixSocketMuxer$1)
        at weblogic.socket.SocketReaderRequest.run(SocketReaderRequest.java:29)
        at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:42)
        at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:145)
        at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:117)
    
    "[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'" daemon prio=10 tid=0x00007f1555388000 nid=0x16c2 in Object.wait() [0x00007f154c230000]
       java.lang.Thread.State: WAITING (on object monitor)
        at java.lang.Object.wait(Native Method)
        - waiting on <0x00000000e0473a88> (a weblogic.work.ExecuteThread)
        at java.lang.Object.wait(Object.java:503)
        at weblogic.work.ExecuteThread.waitForRequest(ExecuteThread.java:205)
        - locked <0x00000000e0473a88> (a weblogic.work.ExecuteThread)
        at weblogic.work.ExecuteThread.run(ExecuteThread.java:226)
    
    "weblogic.timers.TimerThread" daemon prio=10 tid=0x00007f155537e000 nid=0x16c1 in Object.wait() [0x00007f154c331000]
       java.lang.Thread.State: TIMED_WAITING (on object monitor)
        at java.lang.Object.wait(Native Method)
        - waiting on <0x00000000e13e38d8> (a weblogic.timers.internal.TimerThread)
        at weblogic.timers.internal.TimerThread$Thread.run(TimerThread.java:262)
        - locked <0x00000000e13e38d8> (a weblogic.timers.internal.TimerThread)
    
    "weblogic.time.TimeEventGenerator" daemon prio=10 tid=0x00007f1555371000 nid=0x16c0 in Object.wait() [0x00007f154c432000]
       java.lang.Thread.State: TIMED_WAITING (on object monitor)
        at java.lang.Object.wait(Native Method)
        - waiting on <0x00000000e0c04670> (a weblogic.time.common.internal.TimeTable)
        at weblogic.time.common.internal.TimeTable.snooze(TimeTable.java:286)
        - locked <0x00000000e0c04670> (a weblogic.time.common.internal.TimeTable)
        at weblogic.time.common.internal.TimeEventGenerator.run(TimeEventGenerator.java:117)
        at java.lang.Thread.run(Thread.java:745)
    
    "[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'" daemon prio=10 tid=0x00007f155535c800 nid=0x16bf in Object.wait() [0x00007f154c73b000]
       java.lang.Thread.State: WAITING (on object monitor)
        at java.lang.Object.wait(Native Method)
        - waiting on <0x00000000e0488498> (a weblogic.work.ExecuteThread)
        at java.lang.Object.wait(Object.java:503)
        at weblogic.work.ExecuteThread.waitForRequest(ExecuteThread.java:205)
        - locked <0x00000000e0488498> (a weblogic.work.ExecuteThread)
        at weblogic.work.ExecuteThread.run(ExecuteThread.java:226)
    
    "Timer-1" daemon prio=10 tid=0x00007f1555359000 nid=0x16be in Object.wait() [0x00007f154c83c000]
       java.lang.Thread.State: TIMED_WAITING (on object monitor)
        at java.lang.Object.wait(Native Method)
        - waiting on <0x00000000e140c648> (a java.util.TaskQueue)
        at java.util.TimerThread.mainLoop(Timer.java:552)
        - locked <0x00000000e140c648> (a java.util.TaskQueue)
        at java.util.TimerThread.run(Timer.java:505)
    
    "Timer-0" daemon prio=10 tid=0x00007f1554e13800 nid=0x16bd in Object.wait() [0x00007f154c93d000]
       java.lang.Thread.State: WAITING (on object monitor)
        at java.lang.Object.wait(Native Method)
        - waiting on <0x00000000e11759c8> (a java.util.TaskQueue)
        at java.lang.Object.wait(Object.java:503)
        at java.util.TimerThread.mainLoop(Timer.java:526)
        - locked <0x00000000e11759c8> (a java.util.TaskQueue)
        at java.util.TimerThread.run(Timer.java:505)
    
    "Service Thread" daemon prio=10 tid=0x00007f1554106000 nid=0x16bb runnable [0x0000000000000000]
       java.lang.Thread.State: RUNNABLE
    
    "C2 CompilerThread1" daemon prio=10 tid=0x00007f1554103800 nid=0x16ba waiting on condition [0x0000000000000000]
       java.lang.Thread.State: RUNNABLE
    
    "C2 CompilerThread0" daemon prio=10 tid=0x00007f1554100800 nid=0x16b9 waiting on condition [0x0000000000000000]
       java.lang.Thread.State: RUNNABLE
    
    "Signal Dispatcher" daemon prio=10 tid=0x00007f15540fe800 nid=0x16b8 runnable [0x0000000000000000]
       java.lang.Thread.State: RUNNABLE
    
    "Finalizer" daemon prio=10 tid=0x00007f1554079000 nid=0x16b7 in Object.wait() [0x00007f154debd000]
       java.lang.Thread.State: WAITING (on object monitor)
        at java.lang.Object.wait(Native Method)
        - waiting on <0x00000000e0ed4198> (a java.lang.ref.ReferenceQueue$Lock)
        at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:135)
        - locked <0x00000000e0ed4198> (a java.lang.ref.ReferenceQueue$Lock)
        at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:151)
        at java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:209)
    
    "Reference Handler" daemon prio=10 tid=0x00007f1554077000 nid=0x16b6 in Object.wait() [0x00007f154dfbe000]
       java.lang.Thread.State: WAITING (on object monitor)
        at java.lang.Object.wait(Native Method)
        - waiting on <0x00000000e0547e30> (a java.lang.ref.Reference$Lock)
        at java.lang.Object.wait(Object.java:503)
        at java.lang.ref.Reference$ReferenceHandler.run(Reference.java:133)
        - locked <0x00000000e0547e30> (a java.lang.ref.Reference$Lock)
    
    "main" prio=10 tid=0x00007f155400a000 nid=0x16ac in Object.wait() [0x00007f1559ed7000]
       java.lang.Thread.State: WAITING (on object monitor)
        at java.lang.Object.wait(Native Method)
        - waiting on <0x00000000e0559638> (a weblogic.t3.srvr.T3Srvr)
        at java.lang.Object.wait(Object.java:503)
        at weblogic.t3.srvr.T3Srvr.waitForDeath(T3Srvr.java:981)
        - locked <0x00000000e0559638> (a weblogic.t3.srvr.T3Srvr)
        at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:490)
        at weblogic.Server.main(Server.java:71)
    
    "VM Thread" prio=10 tid=0x00007f1554072800 nid=0x16b5 runnable 
    
    "GC task thread#0 (ParallelGC)" prio=10 tid=0x00007f1554020000 nid=0x16ad runnable 
    
    "GC task thread#1 (ParallelGC)" prio=10 tid=0x00007f1554021800 nid=0x16ae runnable 
    
    "GC task thread#2 (ParallelGC)" prio=10 tid=0x00007f1554023800 nid=0x16af runnable 
    
    "GC task thread#3 (ParallelGC)" prio=10 tid=0x00007f1554025800 nid=0x16b0 runnable 
    
    "GC task thread#4 (ParallelGC)" prio=10 tid=0x00007f1554027000 nid=0x16b1 runnable 
    
    "GC task thread#5 (ParallelGC)" prio=10 tid=0x00007f1554029000 nid=0x16b2 runnable 
    
    "GC task thread#6 (ParallelGC)" prio=10 tid=0x00007f155402b000 nid=0x16b3 runnable 
    
    "GC task thread#7 (ParallelGC)" prio=10 tid=0x00007f155402d000 nid=0x16b4 runnable 
    
    "VM Periodic Task Thread" prio=10 tid=0x00007f1554110800 nid=0x16bc waiting on condition 
    
    JNI global references: 163
  • 相关阅读:
    mysql的length与char_length的区别
    case when 多个条件 以及case when 权重排序
    ogitor下载地址
    简单单例模式
    求切线和次法线
    Alpha混合物体的深度排序
    C++对齐问题
    Computing Tangent Space Basis Vectors for an Arbitrary Mesh
    .NET三层架构简析
    DaGridView导出Excel
  • 原文地址:https://www.cnblogs.com/liluredhat/p/7060031.html
Copyright © 2011-2022 走看看