Re: Cannot initialize queue:Resource temporarily unavailable

2020-03-30 Thread vinay
Hi Jbertram, Same error mentioned by Justin is occuring in jboss 7.2 and above version, is there any solution for this as the broker.xml is packed inside the jar file. Thanks, Vinay -- Sent from: http://activemq.2283324.n4.nabble.com/ActiveMQ-User-f2341805.html

Re: Cannot initialize queue:Resource temporarily unavailable

2019-11-22 Thread Justin Bertram
One more thing you can try... The default value for is 4096 so you could specify something smaller than that, e.g. 2048. This value is used in the call to io_queue_init. Justin On Fri, Nov 22, 2019 at 11:06 AM Justin Bertram wrote: > You could also work-around this issue by specifying > NIO

Re: Cannot initialize queue:Resource temporarily unavailable

2019-11-22 Thread Justin Bertram
You could also work-around this issue by specifying NIO in your broker.xml. The defaults to ASYNCIO which will use the native libaio for best performance. Justin On Fri, Nov 22, 2019 at 11:04 AM Justin Bertram wrote: > The last bit of Java code before entering the JNI code is here [1]. The >

Re: Cannot initialize queue:Resource temporarily unavailable

2019-11-22 Thread Justin Bertram
The last bit of Java code before entering the JNI code is here [1]. The JNI code [2] attempts to invoke io_queue_init [3] from libaio which results in the "Resource temporarily unavailable" error. So it appears there's something environmental which is preventing libaio from doing its work. My sear