How can I manage resources when ignited.
Given the application I am developing, I have several connections that I used for storage (JDBC / SAP / others). I used all the connections in the pool and managed them using HIKARI. Now, given that I can now have a cluster of machines using ignite, which method can I use so that I can distribute connections across nodes.
Ignite does not provide this mechanism out of the box.
I was thinking about using services as a container for these connections, but then managing the connection is an additional cost. Just like reinventing the wheel.
Hikari does not have any cluster management features and therefore is limited to a single node resource.
Any suggestions would be appreciated.
source
share