-
Bug
-
Resolution: Done
-
Major
-
EAP_EWP 5.1.2
-
None
-
-
Release Notes
-
-
Documented as Resolved Issue
-
NEW
HAJNDI starts processing requests before it has fully initialized itself.
This can cause those requests to fail with:
java.lang.NullPointerException
at org.jboss.ha.jndi.impl.jbc.JBossCacheDistributedTreeManager.lookup(JBossCacheDistributedTreeManager.java:313)
at org.jboss.ha.jndi.HAJNDI.lookup(HAJNDI.java:197)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.jboss.ha.framework.server.HARMIServerImpl.invoke(HARMIServerImpl.java:209)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:305)
at sun.rmi.transport.Transport$1.run(Transport.java:159)
at java.security.AccessController.doPrivileged(Native Method)
at sun.rmi.transport.Transport.serviceCall(Transport.java:155)
at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:535)
at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:790)
at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:649)
at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
at java.lang.Thread.run(Thread.java:662)
This is related to https://issues.jboss.org/browse/JBPAPP-6408.
That patch fixes this issue for "new InitialContext().lookup(...)" while JBoss is starting.
This issue can still occur with:
InitialContext context = new InitialContext()
while ( true )
context.lookup ( ... );
while a member of the cluster is restarted after the "new InitialContext()" succeeds.
- blocks
-
JBPAPP-8838 Retry HAJNDI call on ServiceUnavailableException
- Closed
- is related to
-
JBPAPP-6408 HA-JNDI processes requests before fully initialized
- Closed
- relates to
-
JBPAPP-8305 CacheNotReadyException when hitting HAJNDI during shutdown
- Closed