This demo project will provide you with an example of creating, deploying and leveraging a set of rules (defined in a decision table) in a Decision Server. You will be given examples of calling the rules as if using it from an application through the REST API that is exposed by the server.
There are three options for you to install this project: local, OpenShift and Docker
The following software is required to run this demo:
- JBoss EAP 7.2 zip
- Red Hat Decision Manager 7.7.0.GA Decision Central deployable for EAP 7
- Red Hat Decision Manager: KIE-Server 7.7.0.GA deployable for EE8
- 7-Zip (Windows only): to overcome the Windows 260 character path length limit, we need 7-Zip to unzip the Decision Manager deployable.
-
Add the product ZIP files to the installs directory.
-
Run the
init.sh
(Linux/macOS) orinit.ps1
(Windows) file. -
Start Red Hat Decision Manager by running
./target/jboss-eap-7.1/bin/standalone.sh
(Linux/macOS) or.\targer\jboss-eap-7.1\bin\standalone.ps1
(Windows). -
Login to http://localhost:8080/decision-central
- login for admin and analyst roles (u:dmAdmin / p:redhatdm1!)
-
Import the loan-application project located at https://github.com/jbossdemocentral/rhdm7-loan-demo-repo. Then, click on the "loan-application" project to open the Loan Application Demo project.
-
The project has simple data model (Loan & Applicant) and single decision table (loan-application) which contains the loan approval rule set.
-
Build and deploy version 1.1.0 of the project. Click on the "Build and Deploy" in the upper right corner.
-
Go to "Menu -> Deploy -> Execution Servers" repository to see the loan-application_1.1.0 KIE Container deployed on the Decision Server.
-
The Decision Server provides a Swagger UI that documents the full RESTful interface exposed by the server at: http://localhost:8080/kie-server/docs
-
In the Swagger UI:
- navigate to "KIE Server and KIE containers"
- expand the "GET" operation for resource "/server/containers"
- click on "Try it out"
- leave the parameters blank and click on "Execute"
- when asked for credentials use: Username: kieserver, Password: kieserver1!
- observe the response, which lists the KIE Containers deployed on the server and their status (STARTED, STOPPED).
- We can use the Swagger UI to test our Loan Approval Decision Service. In the Swagger UI:
- navigate to "KIE session assets"
- expand the "POST" operation for resource "/server/containers/instances/{id}"
- click on "Try it out"
- set the "id" parameter to the name of the KIE Container that hosts our rules, in this case
loan-application_1.1.0
. - set "Parameter content type" to
application/json
. - set "Response content type" to
application/json
- use the following request as the "body" parameter. Note that the
Loan
object has itsapproved
attribute set tofalse
:
{
"lookup": "default-stateless-ksession",
"commands": [
{
"insert": {
"object": {
"com.redhat.demos.dm.loan.model.Applicant": {
"creditScore": 230,
"name": "Jim Whitehurst"
}
},
"out-identifier": "applicant"
}
},
{
"insert": {
"object": {
"com.redhat.demos.dm.loan.model.Loan": {
"amount": 2500,
"approved": false,
"duration": 24,
"interestRate": 1.5
}
},
"out-identifier": "loan"
}
},
{
"fire-all-rules": {}
},
{
"get-objects": {
"out-identifier": "objects"
}
},
{
"dispose": {}
}
]
}
- observe the result. The Loan Application rules have fired and determined that, based on the credit score of the application, and the amount of the loan, the loan can be approved. The
approved
attribute of theLoan
has been set totrue
.
- You can change the decision table as desired, change the version of the project, and redeploy a new version to a new KIE Container (allowing you to serve multiple versions of the same rule set at the same time on the same Decision Server). You can also build a new version of the project and use the Version Configuration tab of the container definition (in the Execution Servers screen) to manage the container using the UPGRADE button to pull the new version.
This demo can be installed on Red Hat OpenShift in various ways. We'll explain the different options provided.
All installation options require an oc
client installation that is connected to a running OpenShift instance. More information on OpenShift and how to setup a local OpenShift development environment based on the Red Hat Container Development Kit can be found here.
NOTE
The Red Hat Decision Manager 7 - Decision Central image requires a Persistent Volume which has both ReadWriteOnce
(RWO) and ReadWriteMany
(RWX) Access Types. If no PVs matching this description are available, deployment of that image will fail until a PV of that type is available.
This installation option will install the Decision Manager 7 and Decision Service in OpenShift using a single script, after which the demo project needs to be manually imported.
-
Run the
init-openshift.sh
(Linux/macOS) orinit-openshift.ps1
(Windows) file. This will create a new project and application in OpenShift. -
Login to your OpenShift console. For a local OpenShift installation this is usually: https://{host}:8443/console
-
Open the project "RHDM7 Loan Demo". Open the "Overview". Wait until the 2 pods, "rhdm7-loan-rhdmcentr" and "rhdm7-loan-kieserver" have been deployed.
-
Open the "Applications -> Routes" screen. Click on the "Hostname" value next to "rhdm7-loan-rhdmcentr". This opens the Decision Central console.
-
Login to Decision Central:
- login for admin and analyst roles (u:dmAdmin / p:redhatdm1!)
-
Click on "Design" to open the design perspective.
-
Click on "Import project". Enter the following as the repository URL: https://github.com/jbossdemocentral/rhdm7-loan-demo-repo.git , and click on "Import".
-
Select "loan-application" and click on the "Ok" button on the right-hand side of the screen.
-
The project has simple data model (Loan & Applicant) and single decision table (loan-application) which contains the loan approval rule set.
-
Build and deploy version 1.1.0 of the project. Click on the "Build and Deploy" in the upper right corner.
-
Go to "Menu -> Deploy -> Execution Servers" repository to see the loan-application_1.1.0 KIE Container deployed on the Decision Server.
-
The Decision Server provides a Swagger UI that documents the full RESTful interface exposed by the server at. To open the Swagger UI, go back to the OpenShift console, and go to the "Applications - Routes" screen. Copy the "Hostname" value next to "rhdm7-loan-kieserver". Paste the URL in a browser tab and add "/docs" to the URL. This will show the Swagger UI.
-
Follow instructions from above "Option 1- Install on your machine", starting at step 11.
This installation option will install the Decision Manager 7 and Decision Service in OpenShift using a the provided provision.sh
script, which gives
the user a bit more control how to provision to OpenShift.
-
In the demo directory, go to
./support/openshift
. In that directory you will find aprovision.sh
script. (Windows support will be introduced at a later time). -
Run
./provision.sh -h
to inspect the installation options. -
To provision the demo, with the OpenShift ImageStreams in the project's namespace, run
./provision.sh setup rhdm7-loan --with-imagestreams
.
NOTE
The
--with-imagestreams
parameter installs the Decision Manager 7 image streams and templates into the project namespace instead of theopenshift
namespace (for which you need admin rights). If you already have the required image-streams and templates installed in your OpenShift environment in theopenshift
namespace, you can omit the--with-imagestreams
from the setup command.
-
A second useful option is the
--pv-capacity
option, which allows you to set the capacity of the Persistent Volume used by the Decision Central component. This is for example required when installing this demo in OpenShift Online, as the Persistent Volume Claim needs to be set to1Gi
instead of the default512Mi
. So, to install this demo in OpenShift Online, you can use the following command:./provision.sh setup rhdm7-loan --pv-capacity 1Gi --with-imagestreams
-
To delete an already provisioned demo, run
./provision.sh delete rhdm7-loan
. -
After provisioning, follow the instructions from above "Option 2 - Automated installation, manual project import", starting at step 2.
The following steps can be used to configure and run the demo in a container
-
Add the product ZIP files to installs directory.
-
Run the 'init-docker.sh' (Linux/macOS) or 'init-docker.ps1' (Windows) file.
-
Start the container:
docker run -it -p 8080:8080 -p 9990:9990 jbossdemocentral/rhdm7-loan-demo
-
Follow instructions from above "Option 1- Install on your machine", starting at step 5 replacing localhost with <CONTAINER_HOST> when applicable.
Additional information can be found in the jbossdemocentral container developer repository
See the tagged releases for the following versions of the product:
- v1.2 Red Hat Decision Manager 7.7.0 GA
- v1.1 Red Hat Decision Manager 7.5.0.GA
- v1.0 Red Hat Decision Manager 7.0.0.GA