Uploaded image for project: 'Infinispan'
  1. Infinispan
  2. ISPN-4762

Provide hooks in NettyTransport to verify if the masterGroup and workGroup have completely shut down

    XMLWordPrintable

Details

    • Enhancement
    • Resolution: Unresolved
    • Minor
    • None
    • 7.0.0.Beta2
    • Remote Protocols

    Description

      For various reasons, I run ISPN in, what I call, HybridMode. I basically run ISPN in lib-mode in a WAR file and bootstrap a HotRodServer from a @WebListener. This allows me to startup the system on ServletContextListener.contextInitialized and cleanly shutdown the system on ServletContextListener.contextDestroyed. The app runs on JBoss EAP 6.3.0.

      The problem I face is that, when I undeploy my application, I shutdown the HotRodServer using the stop() method, the HotRodServerWorker threads are stopped asynchronously (non-blocking). However, there is no hook into the NettyTransport class to actually check whether the WorkerGroup has completely stopped. JBoss EAP starts undeploying the app, removing classloaders, etc. while the HotRodServerWorker threads are still active. This eventually results in ClassNotFoundExceptions on some Netty classes:

      09:38:10,315 ERROR [stderr] (HotRodServerWorker-3-39) java.lang.NoClassDefFoundError: io/netty/util/concurrent/DefaultPromise$3
      09:38:10,316 ERROR [stderr] (HotRodServerWorker-3-39) at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:593)
      09:38:10,316 ERROR [stderr] (HotRodServerWorker-3-39) at io.netty.util.concurrent.DefaultPromise.setSuccess(DefaultPromise.java:404)
      09:38:10,324 ERROR [stderr] (HotRodServerWorker-3-39) at io.netty.util.concurrent.SingleThreadEventExecutor$2.run(SingleThreadEventExecutor.java:155)
      09:38:10,324 ERROR [stderr] (HotRodServerWorker-3-39) at java.lang.Thread.run(Thread.java:745)

      I've currently solved this problem by putting a Thread.sleep in my shutdown code to give the threads some time to cleanly stop, but that's obviously not ideal. It would be nice to be able to somehow check whether the NettyTransport 'masterGroup' and 'workerGroup' have stopped, so I can check that in my shutdown sequence.

      Attachments

        Activity

          People

            Unassigned Unassigned
            rhn-gps-ddoyle Duncan Doyle (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

              Created:
              Updated: