I am seeking some guidance about Ignite Service Grid. We have a cluster of standalone Ignite data nodes. Connecting to the data nodes, we have several Spring Boot applications each launching an Ignite client node.
One of the Spring Boot applications creates Continuous Queries in Ignite. These queries are invoked when certain Ignite caches are updated. This appears to be working well. Now we would like to implement some Ignite services - but not sure how to proceed. We want to be able to invoke the services from any of the Spring Boot client nodes, and from the continuous queries. We have tried having one of the Spring Boot apps start an Ignite service node in addition to its Ignite client node, but we get errors - but we're not sure that's the right way to do it anyway. We've been trying to follow this code in github ( https://github.com/dmagda/MicroServicesExample) but it doesn't really apply to our case. If you could point me to some realistic examples, that would be very helpful. Thanks!
