Deploying the WF Reactive System on ConductR
In this section, we will discuss how to start the ConductR Sandbox environment and how to bundle, load, and run our Reactive System components, such as wf-producer-impl
, wf-consumer-impl
, and wf-frontend
.
Do we need to bundle and deploy only our Impl
components into the ConductR Sandbox environment? How about the API components? The answer is yes, we need to deploy only Impl
components into the ConductR Sandbox environment, but not the API components.
Starting ConductR Sandbox with multinodes
ConductR Sandbox runs the following command syntax:
sandbox run <SANDBOX_VERSION><FEATURES>
We have already discussed how to start Sandbox in the previous section, using the following command:
ram$ sandbox run 2.1.12 -n 3 --feature visualization
Let's understand the preceding command step by step:
- The
sandbox run
command is used to start Sandbox. - The Sandbox version is
2.1.12
. This command interacts with Lightbend's bintray to download that sandbox version...