As we know, we have developed a WF (Weather Forecasting) Reactive System in Chapter 9, Reactive Microservices with Lagom. We have tested it very well; it is working as expected. However, before deploying this kind of system to a Clustered Live (Production) System, we need to test it locally using a Cluster environment.
As we discussed, Lightbend Reactive Platform provides a Development Environment known as ConductR Sandbox for this kind of testing. We cannot deploy our Reactive System directly without any changes in this sandbox environment. We need to prepare with some minimal changes to our system to deploy it into Sandbox for Clustered Environment testing.
In this section, we will discuss the step-by-step process to prepare our WF Reactive System to make it compatible with the ConductR Environment. Even though these are very minimal...