We'll create two microservices—conference and registration—and deploy them on an in-memory cluster. The conference service will create conferences with details, such as name, capacity, registration count, and dates. The registration service will register users to a conference; it takes a conference ID and a registrant's email ID. Internally, it communicates with the conference service to validate the conference ID and registration counts.
The Registration
service will be deployed to the nodes where the registration.node attribute is set. Similarly, the Conference service will be deployed to the nodes where the conference.node attribute is present. These services will internally use Apache Ignite's data nodes to store ...