Re: Recommended shutdown pattern for Artemis clients

2024-12-01 Thread Justin Bertram
Your application is really in control of shutting itself down gracefully. The main thing to do is to invoke stop() [1] on the Connection. That will halt delivery of any further messages to your consumers. Perhaps this is the magic method you were looking for. Any active consumers can complete thei

Re: ASYNCIO problems on Ubuntu 24

2024-12-01 Thread Justin Bertram
There hasn't been a fix to artemis-native itself so you'll still need to work-around this problem on Ubuntu deployments. My recommendation would be to simply create a symlink as is done for Docker, e.g.: ln -s /usr/lib/x86_64-linux-gnu/libaio.so.1t64 /usr/lib/libaio.so.1 I went ahead and crea