This sample illustrates how we can use IBM Operational Decision Manager (ODM) to implement rule-based Smart Contracts in the context of an HyperLedger Fabric Blockchain application.
This sample is derived from the Vehicle Lifecycle demo of HyperLedger Composer and enhance it with rule-based decisions taken by the Smart Contracts. More information about this demo can be found here: https://www.youtube.com/watch?v=IgNfoQQ5Reg and source can be found here: https://github.com/hyperledger/composer-sample-networks/tree/master/packages/vehicle-lifecycle-network
This readme contains the instructions to go from the installation of the software to the execution of the demo. Please start with '1/ Pre-requisites' section and go down to '7/ Running the Vehicle Lifecycle demo'.
The sample is made of several projects. Each project contains its own README with more detail information about what it contains.
Is a project that allows to build and run an ODM docker image that contains the ODM Rule Execution Server (RES) and a Database. The RES hosts the ODM rule engine and provide the interface to execute Decision Services.
Is a NodeJS service that acts as a facade to the RES to receive Ruleapp deployment commands from the Blockchain application.
Is a Java WebApp that can be packaged in the same Liberty Server as a the RES to provide a facade to the RES to receive Ruleapp deployment commands from the Blockchain application.
You will be using either odm-deployer or odm-deployer-webapp to provide this facade, not both.
Is a HyperLedger Composer sample, derived from the one developed by the Composer Team. The JavaScript transaction processors in this sample are invoking decisions that are executed as Decision Services in ODM.
Is a command line application invoking Composer CLI to perform various operations like deploying RuleApps and submitting transactions.
Is a Java implementation of the model used in the ODM Decision Service. Its implementation is derived from the model used in the vehicle-lifecycle Composer Sample.
Is the ODM Decision Service that implements the decision logic invoked from the Smart Contracts of the vehicle-lifecycle Blockchain application.
This sample can only work on Linux and MacOS. If you are using a Windows box, you need to install a Ubuntu Virtual Machine.
You need to have IBM ODM 8.9.0+ installed on your machine. Please refer to your company-specific instructions to have access to this product and install it on your computer. Note that it is not necessary to fully configure ODM on your machine as the only components that will be used are Rule Designer and the RES jar files used to build the RES docker image.
The following prerequisites are required:
sw_vers
docker -v
docker-compose -v
node -v
npm -v
git --version
Refer to the "Before you begin" section in https://hyperledger.github.io/composer/latest/installing/development-tools.html to make sure you have all the pre-requisites to run HyperLedger Fabric and Composer on your machine.
Please refer to https://hyperledger.github.io/composer/latest/installing/development-tools.html to install and run HyperLedger Fabric and Composer. Tools to run Fabric should have been installed in a fabric-tools
directory.
Following the steps described in this page should allow you to install Composer (0.19.1 or subsequent version of this release stream) on your machine, install Fabric images and run Fabric on your machine as Docker containers.
Use composer -v
to check the version of Composer that has been installed.
Note that downloadFabric.sh
and createPeerAdminCard.sh
should be done only once, the first time.
Go to fabric-tools
directory and use startFabric.sh
to start HyperLedger Fabric processes. (You can use stopFabric.sh
to stop Fabric on your machine).
At this point you should have HyperLedger Fabric 1.1 running and Composer 0.19.1 ready to deploy Composer applications.
Use docker ps -a
to check that you have the proper containers up and running:
$ docker ps -a
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
cfdc706c3a77 smartcontract/odm-runtime:8.9.0 "/script/runserver.sh" 17 minutes ago Up 17 minutes 9080/tcp, 0.0.0.0:9060->9060/tcp, 9443/tcp odm-runtime
41f2dcfc28f8 smartcontract/odm-deployer:1.0.0 "npm start" 17 minutes ago Up 18 minutes 0.0.0.0:1880->1880/tcp odm-deployer
1bed2bb3dc01 hyperledger/fabric-peer:x86_64-1.1.0 "peer node start" 17 minutes ago Up 18 minutes 0.0.0.0:7051->7051/tcp, 0.0.0.0:7053->7053/tcp peer0.org1.example.com
0b79eff2ced6 hyperledger/fabric-orderer:x86_64-1.1.0 "orderer" 17 minutes ago Up 18 minutes 0.0.0.0:7050->7050/tcp orderer.example.com
dae6557501ec hyperledger/fabric-couchdb:x86_64-0.4.6 "tini -- /docker-ent…" 17 minutes ago Up 18 minutes 4369/tcp, 9100/tcp, 0.0.0.0:5984->5984/tcp couchdb
efc2d5480841 hyperledger/fabric-ca:x86_64-1.1.0 "sh -c 'fabric-ca-se…" 17 minutes ago Up 18 minutes 0.0.0.0:7054->7054/tcp ca.org1.example.com
Next step is to augment this installation with ODM capabilities.
odm-runtime
project directory<FIRST TIME ONLY>
You need to copy RES binary files from your ODM installation:
init.sh
script file and set the ODM_HOME
variable to point to your actual ODM installationinit.sh
script</FIRST TIME ONLY>
docker-compose up -d
to build the RES Docker image and start it as a Docker Container.Refer to the README in odm-runtime
project for more information
The next step is to a run a deployment facade as a companion process to the RES. Called ODM Deployer, this application comes from the 'odm-deployer' project.
odm-deployer
docker-compose up -d
to build the image and start the deployment service.Refer to the README in the odm-deployer
project for more information.
At this point, the whole Blockchain infrastructure is up-and-running and ready to receive Blockchain applications.
The RES deployed in the Blockchain network is still empty at this point. It must but populated with the XOM of the vehicle lifecycle application and the Decision Service used by the Smart Contracts of this application.
The next step will be to deploy the vehicle lifecycle Hyperledger Composer application.
vehicle-lifecycle
directorynpm run deploy
to build and deploy the application. Refer to the README in vehicle-lifecycle
directory for more information about this Composer application.
The ODM application is packaged as 2 eclipse projects that can be edited with ODM Rule Designer:
vehicle-lifecycle-xom
and vehicle-lifecycle-decision-service
You need to import them in an Eclipse workspace. You need to perform these instructions only once.
vehicle-lifecycle-xom
and vehicle-lifecycle-decision-service
projects using "Import > General > Existing Projects Into The Workspace". You don't need to copy them, just import them. The 2 projects should build without errors. Warnings can be ignored.
Note: if you are copying these project in a different location, the 'npm run deployXom' and 'npm run deployRuleapp' can't be use. Please refer to the 'package.json' file in 'vehicle-lifecycle-cli' directory to see how to point these commands to a different location.
A deployment feature has been integrated in the vehicle lifecycle demo to deploy the XOM and the Decision Services through the Blockchain.
To deploy the XOM throught the Blockchain, you should perform the following actions:
deployment/deployer
file in the vehicle-lifecycle-decision-service
project explorer and select "Rule Execution Server / Deploy ...". This operation generate a vehicle_lifecycle_ds.jar
in the output
directory.deployment/deployer
file in the vehicle-lifecycle-decision-service
project explorer and select "Rule Execution Server / Deploy XOM ...". This operation generate a vehicle-lifecycle-xom.zip
in the output
directoryvehicle-lifecyle-cli
directory <FIRST TIME ONLY>
npm install
<FIRST TIME ONLY>
npm run deployXom
This operation needs to be done each time you modify the XOM of the decision service.
Refer to the README in vehicle-lifecycle-cli
directory for more information about this command.
The Decision Service is the packaging of the vehicle lifecyle business rules exposed as a REST service invoked from the Smart Contracts. It must be deployed in the RES associated to all nodes of the Blockchain network.
Like the XOM, the Decision Service is deployed through the Blockchain, leveraging a deployment feature integrated in the demo.
In the previous step, you should have generated the ruleapp supporting the vehicle lifecycle decision service using Rule Designer. The ruleapp is the vehicle_lifecycle_ds.jar
generated in the output
directory of the vehicle-lifecycle-decision-service
project.
vehicle-lifecyle-cli
directory npm run deployRuleapp
This operation needs to be done each time you modify the business rules of the application.
When you change the rules, you need to increment the version number of the ruleset. You can do it in Rule Designer:
deployer
file in deployment
Refer to the README in vehicle-lifecycle-cli
directory for more information about this command.
Refer to the README in vehicle-lifecycle-cli
directory to initialize the application and run a demo scenario that illustrates the application of the business rules when suspicious transactions are generated.
Assuming the XOM and the Ruleapp have been deployed, you can run the full demo from a fresh model
using the following command from the vehicle-lifecycle-cli
directory:
npm run demo
The message
│ Cross Border Suspicious Transfer: please double check buyer regulation │
generated in your display is generated from the business rules of the decision service invoked from a Smart Contract.
You're all set. Refer to the README in vehicle-lifecycle-cli
for more information about the demo scenario.
Here is a summary of all steps to run the demo.
1/ Run Fabric 1.0
fabric-tools
directory (created from instructions in https://hyperledger.github.io/composer/latest/installing/development-tools.html)./downloadFabric.sh
(1st time only)./startFabric.sh
./createPeerAdminCard.sh
(1st time only)2/ Run ODM RES
odm-runtime
docker-compose up -d
3/ Run ODM Deployer
odm-deployer
docker-compose up -d
4/ Deploy vehicle-lifecycle Business Network
vehicle-lifecycle
npm run deploy
5/ Deploy the XOM via Blockchain (provided the XOM has been generated by Rule Designer before)
vehicle-lifecycle-cli
npm install
to set-up the client applicationnpm run deployXom
6/ Deploy the Ruleapp via Blockchain (provided the Ruleapp has been generated by Rule Designer before)
npm run deployRuleapp
7/ Setup the data of the Business Network
npm run setup ; npm run listVehicles
8/ Run the suspicious transactions
npm run transfers
Assuming the XOM and the Ruleapp have been deployed, you can run the full demo from a fresh model
using the following command from the vehicle-lifecycle-cli
directory: npm run demo
Step 5 to 8 can be all done together using the following command from the vehicle-lifecycle-cli
directory: npm run deployAndRunDemo
.
© Copyright IBM Corporation 2017.