Cadence demo for GO meetups
This package contains a sample demoed at Go's 10th Anniversary Seattle Meetup
More Cadence info at:
Demonstrates a simple transfer from one account to another.
Run the following commands:
git clone [email protected]:samarabbas/cadence-go-demo.git
cd cadence-go-demo
make
Run Cadence Server using Docker Compose:
curl -O https://raw.githubusercontent.com/uber/cadence/master/docker/docker-compose.yml
docker-compose up
If this does not work, see the instructions for running Cadence Server at https://github.com/uber/cadence/blob/master/README.md.
Command Line Interface Documentation
To register the sample domain, run the following command once before running any samples:
cadence --do samples d re --rd 2 --oe "user@email" --desc "samples domain"
The Cadence Server running in a docker container includes a Web UI.
Connect to http://localhost:8088.
Enter the samples domain. You'll see a "No Results" page. After running any sample, change the filter in the top right corner from "Open" to "Closed" to see the list of the completed workflows.
Click on a RUN ID of a workflow to see more details about it. Try different view formats to get a different level of details about the execution history.
Each sample has specific requirements for running it. The following sections contain information about how to run each of the samples after you've built them using the preceding instructions.
Workflow Worker:
./bins/workflowWorker
Activities Worker:
./bins/activityWorker
Initiate Transfer:
cadence --do samples wf start --tl samples_workflow_tl --wt transfer --wid transferAToB-1 --dt 2 --et 1200 --wrp 1 --if ./transferRequest.json
Workflow Worker:
./bins/workflowWorker
Activities Worker:
./bins/activityWorker
Initiate Batch Transfer:
cadence --do samples wf start --tl samples_workflow_tl --wt batch-transfer --wid batch-transfer-1 --dt 2 --et 1200 --wrp 1 --if ./batchTransferRequest.json
Send Signal For First Withdrawal:
cadence --do samples wf signal -w batch-transfer-1 --name withdraw --if ./withdrawSignalPayload1.json
Send Signal For Second Withdrawal:
cadence --do samples wf signal -w batch-transfer-1 --name withdraw --if ./withdrawSignalPayload2.json
Send Signal For Third Withdrawal:
cadence --do samples wf signal -w batch-transfer-1 --name withdraw --if ./withdrawSignalPayload3.json
Query Withdrawal Count:
./cadence --do samples wf query -w batch-transfer-1 --qt get-count
Query Balance:
./cadence --do samples wf query -w batch-transfer-1 --qt get-balance