Skip to content

Commit 121a44a

Browse files
nikhil550NIKHIL E GUPTA
and
NIKHIL E GUPTA
authoredMar 20, 2020
[FAB-17460] Move High Throughput sample to test network (#112)
Signed-off-by: NIKHIL E GUPTA <negupta@us.ibm.com> Co-authored-by: NIKHIL E GUPTA <negupta@us.ibm.com>
1 parent a2f3a66 commit 121a44a

17 files changed

+167
-180
lines changed
 

‎high-throughput/README.md

+37-48
Original file line numberDiff line numberDiff line change
@@ -94,75 +94,56 @@ and assumed to be correct and at minimal risk to either company simply due to Am
9494
must be verified before approval and admittance to the chain.
9595

9696
## How
97-
This sample provides the chaincode and scripts required to run a high-throughput application. For ease of use, it runs on the same network which is brought
98-
up by `byfn.sh` in the `first-network` folder within `fabric-samples`, albeit with a few small modifications. The instructions to build the network
99-
and run some invocations are provided below.
97+
This sample provides the chaincode and scripts required to run a high-throughput application on the Fabric test network.
10098

101-
### Build your network
102-
1. `cd` into the `first-network` folder within `fabric-samples`, e.g. `cd ~/fabric-samples/first-network`
103-
2. Open `docker-compose-cli.yaml` in your favorite editor, and edit the following lines:
104-
* In the `volumes` section of the `cli` container, edit the second line which refers to the chaincode folder to point to the chaincode folder
105-
within the `high-throughput` folder, e.g.
106-
107-
`./../chaincode/:/opt/gopath/src/github.com/hyperledger/fabric-samples/chaincode` -->
108-
`./../high-throughput/chaincode/:/opt/gopath/src/github.com/hyperledger/fabric-samples/chaincode`
109-
* Again in the `volumes` section, edit the fourth line which refers to the scripts folder so it points to the scripts folder within the
110-
`high-throughput` folder, e.g.
111-
112-
`./scripts:/opt/gopath/src/github.com/hyperledger/fabric/peer/scripts/` -->
113-
`./../high-throughput/scripts/:/opt/gopath/src/github.com/hyperledger/fabric/peer/scripts/`
99+
### Vendor the chaincode dependencies
100+
1. Change into the chaincode directory, e.g. `cd ~/fabric-samples/high-throughput/chaincode`
101+
2. Vendor the Go dependencies by running the following command: `GO111MODULE=on go mod vendor`
102+
3. The chaincode directory will now contain a `vendor` directory.
114103

115-
* Finally, comment out the `docker exec cli scripts/script.sh` command from the `byfn.sh` script by placing a `#` before it so that the standard BYFN end to end script doesn't run, e.g.
104+
### Start the network
116105

117-
`# docker exec cli scripts/script.sh $CHANNEL_NAME $CLI_DELAY $CC_SRC_LANGUAGE $CLI_TIMEOUT $VERBOSE`
106+
You can use the `startFabric.sh` script to create an instance of the Fabric test network with a single channel named `mychannel`. The script then deploys the `high-throughput` chaincode to the channel by installing it on the test network peers and committing the chaincode definition to the channel.
118107

119-
3. We can now bring our network up by typing in `./byfn.sh up -c mychannel`
120-
4. Open a new terminal window and enter the CLI container using `docker exec -it cli bash`, all operations on the network will happen within
121-
this container from now on.
108+
Change back into the `high-throughput` directory in `fabic-samples`. Start the network and deploy the chaincode by issuing the following command:
109+
```
110+
./startFabric.sh
111+
```
122112

123-
### Vendor the chaincode dependencies
124-
1. Outside of the CLI container, change into the chaincode directory, e.g. `cd ~/fabric-samples/high-throughput/chaincode`
125-
2. Vendor the Go dependencies by running the following command: `GO111MODULE=on go mod vendor`
126-
3. The chaincode directory will now contain a `vendor` directory.
113+
If successful, you will see messages of the Fabric test network being created and the chaincode being deployed, followed by the execution time of the script:
114+
```
115+
Total setup execution time : 141 secs ...
116+
```
127117

128-
### Install and define the chaincode
129-
1. Once you're in the CLI container run `cd scripts` to enter the `scripts` folder
130-
2. Set-up the environment variables by running `source setclienv.sh`
131-
3. Set-up your channels and anchor peers by running `./channel-setup.sh`
132-
4. Package and install your chaincode by running `./install-chaincode.sh 1`. The only argument is a number representing the chaincode version, every time
133-
you want to install and upgrade to a new chaincode version simply increment this value by 1 when running the command, e.g. `./install-chaincode.sh 2`
134-
5. Define your chaincode on the channel by running `./approve-commit-chaincode.sh 1`. The version argument serves the same purpose as in `./install-chaincode.sh 1`
135-
and should match the version of the chaincode you just installed. This script also invokes the chaincode `Init` function to start the chaincode container.
136-
You can also upgrade the chaincode to a newer version by running `./approve-commit-chaincode.sh 2`.
137-
6. Your chaincode is now installed and ready to receive invocations
118+
The `high-throughput` chaincode is now ready to receive invocations.
138119

139120
### Invoke the chaincode
140-
All invocations are provided as scripts in `scripts` folder; these are detailed below.
121+
All invocations are provided as scripts in `scripts` folder. You can use these scripts to create and remove assets that you put on the ledger.
141122

142123
#### Update
143-
The format for update is: `./update-invoke.sh name value operation` where `name` is the name of the variable to update, `value` is the value to
124+
The format for update is: `./scripts/update-invoke.sh name value operation` where `name` is the name of the variable to update, `value` is the value to
144125
add to the variable, and `operation` is either `+` or `-` depending on what type of operation you'd like to add to the variable. In the future,
145126
multiply/divide operations will be supported (or add them yourself to the chaincode as an exercise!)
146127

147-
Example: `./update-invoke.sh myvar 100 +`
128+
Example: `./scripts/update-invoke.sh myvar 100 +`
148129

149130
#### Get
150131
The format for get is: `./get-invoke.sh name` where `name` is the name of the variable to get.
151132

152-
Example: `./get-invoke.sh myvar`
153-
154-
#### Delete
155-
The format for delete is: `./delete-invoke.sh name` where `name` is the name of the variable to delete.
156-
157-
Example: `./delete-invoke.sh myvar`
133+
Example: `./scripts/get-invoke.sh myvar`
158134

159135
#### Prune
160136
Pruning takes all the deltas generated for a variable and combines them all into a single row, deleting all previous rows. This helps cleanup
161137
the ledger when many updates have been performed.
162138

163-
The format for pruning is: `./prune-invoke.sh name` where `name` is the name of the variable to prune.
139+
The format for pruning is: `./scripts/prune-invoke.sh name` where `name` is the name of the variable to prune.
140+
141+
Example: `./scripts/prune-invoke.sh myvar`
164142

165-
Example: `./prune-invoke.sh myvar`
143+
#### Delete
144+
The format for delete is: `./delete-invoke.sh name` where `name` is the name of the variable to delete.
145+
146+
Example: `./scripts/delete-invoke.sh myvar`
166147

167148
### Test the Network
168149
Two scripts are provided to show the advantage of using this system when running many parallel transactions at once: `many-updates.sh` and
@@ -178,6 +159,14 @@ errors in the peer and orderer logs.
178159
There are two other scripts, `get-traditional.sh`, which simply gets the value of a row in the traditional way, with no deltas, and `del-traditional.sh` will delete an asset in the traditional way.
179160

180161
Examples:
181-
`./many-updates.sh testvar 100 +` --> final value from `./get-invoke.sh testvar` should be 100000
162+
`./scripts/many-updates.sh testvar 100 +` --> final value from `./scripts/get-invoke.sh testvar` should be 100000
163+
164+
`./scripts/many-updates-traditional.sh testvar` --> final value from `./scripts/get-traditional.sh testvar` is undefined
165+
166+
### Clean up
167+
168+
When you are finished using the `high-throughput` chaincode, you can bring down the network and remove any accompanying artifacts using the `networkDown.sh` script.
182169

183-
`./many-updates-traditional.sh testvar` --> final value from `./get-traditional.sh testvar` is undefined
170+
```
171+
./networkDown.sh
172+
```

‎high-throughput/networkDown.sh

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#!/bin/bash
2+
#
3+
# Copyright IBM Corp All Rights Reserved
4+
#
5+
# SPDX-License-Identifier: Apache-2.0
6+
#
7+
# Exit on first error
8+
set -ex
9+
10+
rm -rf bigdatacc.tar.gz log.txt
11+
12+
# Bring the test network down
13+
pushd ../test-network
14+
./network.sh down
15+
popd

‎high-throughput/scripts/approve-commit-chaincode.sh

+19-18
Original file line numberDiff line numberDiff line change
@@ -4,40 +4,41 @@
44
# SPDX-License-Identifier: Apache-2.0
55
#
66

7+
export CORE_PEER_TLS_ENABLED=true
78

89
echo "========== Query chaincode package ID =========="
9-
export CORE_PEER_MSPCONFIGPATH=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp
10-
export CORE_PEER_ADDRESS=peer0.org1.example.com:7051
10+
export CORE_PEER_MSPCONFIGPATH=../test-network/organizations/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp
11+
export CORE_PEER_ADDRESS=localhost:7051
1112
export CORE_PEER_LOCALMSPID="Org1MSP"
12-
export CORE_PEER_TLS_ROOTCERT_FILE=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt
13+
export CORE_PEER_TLS_ROOTCERT_FILE=../test-network/organizations/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt
1314
peer lifecycle chaincode queryinstalled >&log.txt
1415
export PACKAGE_ID=`sed -n '/Package/{s/^Package ID: //; s/, Label:.*$//; p;}' log.txt`
1516

1617
echo "========== Approve definition for Org1 =========="
17-
export CORE_PEER_MSPCONFIGPATH=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp
18-
export CORE_PEER_ADDRESS=peer0.org1.example.com:7051
18+
export CORE_PEER_MSPCONFIGPATH=../test-network/organizations/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp
19+
export CORE_PEER_ADDRESS=localhost:7051
1920
export CORE_PEER_LOCALMSPID="Org1MSP"
20-
export CORE_PEER_TLS_ROOTCERT_FILE=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt
21-
peer lifecycle chaincode install ${CC_NAME}.tar.gz
21+
export CORE_PEER_TLS_ROOTCERT_FILE=../test-network/organizations/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt
22+
peer lifecycle chaincode install bigdatacc.tar.gz
2223

23-
peer lifecycle chaincode approveformyorg -o orderer.example.com:7050 --tls $CORE_PEER_TLS_ENABLED --cafile /opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem --channelID $CHANNEL_NAME --signature-policy "OR('Org1MSP.peer', 'Org2MSP.peer')" --name $CC_NAME --version $1 --init-required --package-id ${PACKAGE_ID} --sequence $1
24+
peer lifecycle chaincode approveformyorg -o localhost:7050 --ordererTLSHostnameOverride orderer.example.com --tls $CORE_PEER_TLS_ENABLED --cafile ../test-network/organizations/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem --channelID mychannel --signature-policy "OR('Org1MSP.peer', 'Org2MSP.peer')" --name bigdatacc --version 0 --init-required --package-id ${PACKAGE_ID} --sequence 1
2425

2526
echo "========== Approve definition for Org2 =========="
26-
export CORE_PEER_MSPCONFIGPATH=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp
27-
export CORE_PEER_ADDRESS=peer0.org2.example.com:9051
27+
export CORE_PEER_MSPCONFIGPATH=../test-network/organizations/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp
28+
export CORE_PEER_ADDRESS=localhost:9051
2829
export CORE_PEER_LOCALMSPID="Org2MSP"
29-
export CORE_PEER_TLS_ROOTCERT_FILE=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/ca.crt
30-
peer lifecycle chaincode approveformyorg -o orderer.example.com:7050 --tls $CORE_PEER_TLS_ENABLED --cafile /opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem --channelID $CHANNEL_NAME --signature-policy "OR('Org1MSP.peer', 'Org2MSP.peer')" --name $CC_NAME --version $1 --init-required --package-id ${PACKAGE_ID} --sequence $1
30+
export CORE_PEER_TLS_ROOTCERT_FILE=../test-network/organizations/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/ca.crt
31+
peer lifecycle chaincode approveformyorg -o localhost:7050 --ordererTLSHostnameOverride orderer.example.com --tls $CORE_PEER_TLS_ENABLED --cafile ../test-network/organizations/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem --channelID mychannel --signature-policy "OR('Org1MSP.peer', 'Org2MSP.peer')" --name bigdatacc --version 0 --init-required --package-id ${PACKAGE_ID} --sequence 1
3132

32-
. query-status.sh
33+
. scripts/check-commit-readiness.sh
3334

34-
queryStatus $1 0 1 "\"Org1MSP\": true" "\"Org2MSP\": true"
35-
queryStatus $1 0 2 "\"Org1MSP\": true" "\"Org2MSP\": true"
35+
checkCommitReadiness 1 "\"Org1MSP\": true" "\"Org2MSP\": true"
36+
checkCommitReadiness 2 "\"Org1MSP\": true" "\"Org2MSP\": true"
3637

3738

38-
echo "========== Commit the definition the $CHANNEL_NAME =========="
39-
peer lifecycle chaincode commit -o orderer.example.com:7050 --tls $CORE_PEER_TLS_ENABLED --cafile /opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem --channelID $CHANNEL_NAME --signature-policy "OR('Org1MSP.peer', 'Org2MSP.peer')" --name $CC_NAME --version $1 --init-required --sequence $1 --waitForEvent --peerAddresses peer0.org1.example.com:7051 --tlsRootCertFiles /opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt --peerAddresses peer0.org2.example.com:9051 --tlsRootCertFiles /opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/ca.crt
39+
echo "========== Commit the definition the mychannel =========="
40+
peer lifecycle chaincode commit -o localhost:7050 --ordererTLSHostnameOverride orderer.example.com --tls $CORE_PEER_TLS_ENABLED --cafile ../test-network/organizations/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem --channelID mychannel --signature-policy "OR('Org1MSP.peer', 'Org2MSP.peer')" --name bigdatacc --version 0 --init-required --sequence 1 --waitForEvent --peerAddresses localhost:7051 --tlsRootCertFiles ../test-network/organizations/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt --peerAddresses localhost:9051 --tlsRootCertFiles ../test-network/organizations/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/ca.crt
4041

4142

4243
echo "========== Invoke the Init function =========="
43-
peer chaincode invoke -o orderer.example.com:7050 --tls $CORE_PEER_TLS_ENABLED --cafile /opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem -C $CHANNEL_NAME -n $CC_NAME --isInit -c '{"Args":["Init"]}'
44+
peer chaincode invoke -o localhost:7050 --ordererTLSHostnameOverride orderer.example.com --tls $CORE_PEER_TLS_ENABLED --cafile ../test-network/organizations/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem -C mychannel -n bigdatacc --isInit -c '{"Args":["Init"]}'

‎high-throughput/scripts/channel-setup.sh

-45
This file was deleted.

‎high-throughput/scripts/check-commit-readiness.sh

+13-25
Original file line numberDiff line numberDiff line change
@@ -5,27 +5,17 @@
55
#
66

77
setGlobals() {
8-
PEER=$1
9-
ORG=$2
8+
ORG=$1
109
if [ $ORG -eq 1 ]; then
1110
CORE_PEER_LOCALMSPID="Org1MSP"
12-
CORE_PEER_TLS_ROOTCERT_FILE=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt
13-
CORE_PEER_MSPCONFIGPATH=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp
14-
if [ $PEER -eq 0 ]; then
15-
CORE_PEER_ADDRESS=peer0.org1.example.com:7051
16-
else
17-
CORE_PEER_ADDRESS=peer1.org1.example.com:8051
18-
fi
11+
CORE_PEER_TLS_ROOTCERT_FILE=../test-network/organizations/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt
12+
CORE_PEER_MSPCONFIGPATH=../test-network/organizations/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp
13+
CORE_PEER_ADDRESS=localhost:7051
1914
elif [ $ORG -eq 2 ]; then
2015
CORE_PEER_LOCALMSPID="Org2MSP"
21-
CORE_PEER_TLS_ROOTCERT_FILE=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/ca.crt
22-
CORE_PEER_MSPCONFIGPATH=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp
23-
if [ $PEER -eq 0 ]; then
24-
CORE_PEER_ADDRESS=peer0.org2.example.com:9051
25-
else
26-
CORE_PEER_ADDRESS=peer1.org2.example.com:10051
27-
fi
28-
16+
CORE_PEER_TLS_ROOTCERT_FILE=../test-network/organizations/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/ca.crt
17+
CORE_PEER_MSPCONFIGPATH=../test-network/organizations/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp
18+
CORE_PEER_ADDRESS=localhost:9051
2919
else
3020
echo "================== ERROR !!! ORG Unknown =================="
3121
fi
@@ -36,11 +26,9 @@ setGlobals() {
3626
}
3727

3828
checkCommitReadiness() {
39-
VERSION=$1
40-
PEER=$2
41-
ORG=$3
29+
ORG=$1
4230
shift 3
43-
setGlobals $PEER $ORG
31+
setGlobals $ORG
4432
echo "===================== Simulating the commit of the chaincode definition on peer${PEER}.org${ORG} ===================== "
4533
local rc=1
4634
local starttime=$(date +%s)
@@ -51,9 +39,9 @@ checkCommitReadiness() {
5139
test "$(($(date +%s) - starttime))" -lt "$TIMEOUT" -a $rc -ne 0
5240
do
5341
sleep $DELAY
54-
echo "Attempting to check the commit readiness of the chaincode definition on peer${PEER}.org${ORG} ...$(($(date +%s) - starttime)) secs"
42+
echo "Attempting to check the commit readiness of the chaincode definition on peer0.org${ORG} ...$(($(date +%s) - starttime)) secs"
5543
set -x
56-
peer lifecycle chaincode checkcommitreadiness --channelID $CHANNEL_NAME --name $CC_NAME --signature-policy "OR('Org1MSP.peer', 'Org2MSP.peer')" --version ${VERSION} --init-required --sequence ${VERSION} >&log.txt
44+
peer lifecycle chaincode checkcommitreadiness --channelID mychannel --name bigdatacc --signature-policy "OR('Org1MSP.peer', 'Org2MSP.peer')" --version 0 --init-required --sequence 1 >&log.txt
5745
res=$?
5846
set +x
5947
test $res -eq 0 || continue
@@ -66,9 +54,9 @@ checkCommitReadiness() {
6654
echo
6755
cat log.txt
6856
if test $rc -eq 0; then
69-
echo "===================== Checking the commit readiness of the chaincode definition successful on peer${PEER}.org${ORG} ===================== "
57+
echo "===================== Checking the commit readiness of the chaincode definition successful on peer0.org${ORG} ===================== "
7058
else
71-
echo "!!!!!!!!!!!!!!! Check commit readiness result on peer${PEER}.org${ORG} is INVALID !!!!!!!!!!!!!!!!"
59+
echo "!!!!!!!!!!!!!!! Check commit readiness result on peer0.org${ORG} is INVALID !!!!!!!!!!!!!!!!"
7260
echo "================== ERROR !!! FAILED to execute End-2-End Scenario =================="
7361
echo
7462
exit 1

‎high-throughput/scripts/del-traditional.sh

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,6 @@
44
# SPDX-License-Identifier: Apache-2.0
55
#
66

7-
peer chaincode invoke -o orderer.example.com:7050 --tls $CORE_PEER_TLS_ENABLED --cafile /opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem -C $CHANNEL_NAME -n $CC_NAME -c '{"Args":["delstandard","'$1'"]}'
7+
source scripts/setenv.sh
8+
9+
peer chaincode invoke -o localhost:7050 --ordererTLSHostnameOverride orderer.example.com --tls $CORE_PEER_TLS_ENABLED --cafile ../test-network/organizations/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem -C mychannel -n bigdatacc -c '{"Args":["delstandard","'$1'"]}'

‎high-throughput/scripts/delete-invoke.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@
44
# SPDX-License-Identifier: Apache-2.0
55
#
66

7-
peer chaincode invoke -o orderer.example.com:7050 --tls $CORE_PEER_TLS_ENABLED --cafile /opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem -C $CHANNEL_NAME -n $CC_NAME -c '{"Args":["delete","'$1'"]}'
7+
source scripts/setenv.sh
88

9+
peer chaincode invoke -o localhost:7050 --ordererTLSHostnameOverride orderer.example.com --tls $CORE_PEER_TLS_ENABLED --cafile ../test-network/organizations/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem -C mychannel -n bigdatacc -c '{"Args":["delete","'$1'"]}'

‎high-throughput/scripts/get-invoke.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@
44
# SPDX-License-Identifier: Apache-2.0
55
#
66

7-
peer chaincode invoke -o orderer.example.com:7050 --tls $CORE_PEER_TLS_ENABLED --cafile /opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem -C $CHANNEL_NAME -n $CC_NAME -c '{"Args":["get","'$1'"]}'
7+
source scripts/setenv.sh
88

9+
peer chaincode invoke -o localhost:7050 --ordererTLSHostnameOverride orderer.example.com --tls $CORE_PEER_TLS_ENABLED --cafile ../test-network/organizations/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem -C mychannel -n bigdatacc -c '{"Args":["get","'$1'"]}'

‎high-throughput/scripts/get-traditional.sh

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,6 @@
44
# SPDX-License-Identifier: Apache-2.0
55
#
66

7-
peer chaincode invoke -o orderer.example.com:7050 --tls $CORE_PEER_TLS_ENABLED --cafile /opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem -C $CHANNEL_NAME -n $CC_NAME -c '{"Args":["getstandard","'$1'"]}'
7+
source scripts/setenv.sh
8+
9+
peer chaincode invoke -o localhost:7050 --ordererTLSHostnameOverride orderer.example.com --tls $CORE_PEER_TLS_ENABLED --cafile ../test-network/organizations/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem -C mychannel -n bigdatacc -c '{"Args":["getstandard","'$1'"]}'

‎high-throughput/scripts/install-chaincode.sh

+14-26
Original file line numberDiff line numberDiff line change
@@ -3,38 +3,26 @@
33
#
44
# SPDX-License-Identifier: Apache-2.0
55
#
6+
export CORE_PEER_TLS_ENABLED=true
67

7-
echo "========== Package a chaincode on peer0.org1 =========="
8-
export CORE_PEER_MSPCONFIGPATH=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp
9-
export CORE_PEER_ADDRESS=peer0.org1.example.com:7051
8+
echo "========== Package a chaincode =========="
9+
export CORE_PEER_MSPCONFIGPATH=../test-network/organizations/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp
10+
export CORE_PEER_ADDRESS=localhost:7051
1011
export CORE_PEER_LOCALMSPID="Org1MSP"
11-
export CORE_PEER_TLS_ROOTCERT_FILE=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt
12-
peer lifecycle chaincode package ${CC_NAME}.tar.gz --path github.com/hyperledger/fabric-samples/chaincode/ --lang golang --label ${CC_NAME}_$1
12+
export CORE_PEER_TLS_ROOTCERT_FILE=../test-network/organizations/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt
13+
peer lifecycle chaincode package bigdatacc.tar.gz --path chaincode/ --lang golang --label bigdatacc_0
1314

1415
echo "========== Installing chaincode on peer0.org1 =========="
15-
export CORE_PEER_MSPCONFIGPATH=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp
16-
export CORE_PEER_ADDRESS=peer0.org1.example.com:7051
16+
export CORE_PEER_MSPCONFIGPATH=../test-network/organizations/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp
17+
export CORE_PEER_ADDRESS=localhost:7051
1718
export CORE_PEER_LOCALMSPID="Org1MSP"
18-
export CORE_PEER_TLS_ROOTCERT_FILE=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt
19-
peer lifecycle chaincode install ${CC_NAME}.tar.gz
19+
export CORE_PEER_TLS_ROOTCERT_FILE=../test-network/organizations/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt
20+
peer lifecycle chaincode install bigdatacc.tar.gz
2021

21-
echo "========== Installing chaincode on peer1.org1 =========="
22-
export CORE_PEER_MSPCONFIGPATH=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp
23-
export CORE_PEER_ADDRESS=peer1.org1.example.com:8051
24-
export CORE_PEER_LOCALMSPID="Org1MSP"
25-
export CORE_PEER_TLS_ROOTCERT_FILE=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/ca.crt
26-
peer lifecycle chaincode install ${CC_NAME}.tar.gz
2722

2823
echo "========== Installing chaincode on peer0.org2 =========="
29-
export CORE_PEER_MSPCONFIGPATH=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp
30-
export CORE_PEER_ADDRESS=peer0.org2.example.com:9051
31-
export CORE_PEER_LOCALMSPID="Org2MSP"
32-
export CORE_PEER_TLS_ROOTCERT_FILE=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/ca.crt
33-
peer lifecycle chaincode install ${CC_NAME}.tar.gz
34-
35-
echo "========== Installing chaincode on peer1.org2 =========="
36-
export CORE_PEER_MSPCONFIGPATH=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp
37-
export CORE_PEER_ADDRESS=peer1.org2.example.com:10051
24+
export CORE_PEER_MSPCONFIGPATH=../test-network/organizations/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp
25+
export CORE_PEER_ADDRESS=localhost:9051
3826
export CORE_PEER_LOCALMSPID="Org2MSP"
39-
export CORE_PEER_TLS_ROOTCERT_FILE=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/ca.crt
40-
peer lifecycle chaincode install ${CC_NAME}.tar.gz
27+
export CORE_PEER_TLS_ROOTCERT_FILE=../test-network/organizations/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/ca.crt
28+
peer lifecycle chaincode install bigdatacc.tar.gz

‎high-throughput/scripts/many-updates-traditional.sh

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44
# SPDX-License-Identifier: Apache-2.0
55
#
66

7+
source scripts/setenv.sh
8+
79
for (( i = 0; i < 1000; ++i ))
810
do
9-
peer chaincode invoke -o orderer.example.com:7050 --tls $CORE_PEER_TLS_ENABLED --cafile /opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem -C $CHANNEL_NAME -n $CC_NAME -c '{"Args":["putstandard","'$1'","'$i'"]}'
11+
peer chaincode invoke -o localhost:7050 --ordererTLSHostnameOverride orderer.example.com --tls $CORE_PEER_TLS_ENABLED --cafile ../test-network/organizations/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem -C mychannel -n bigdatacc -c '{"Args":["putstandard","'$1'","'$i'"]}'
1012
done

‎high-throughput/scripts/many-updates.sh

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44
# SPDX-License-Identifier: Apache-2.0
55
#
66

7+
source scripts/setenv.sh
8+
79
for (( i = 0; i < 1000; ++i ))
810
do
9-
peer chaincode invoke -o orderer.example.com:7050 --tls $CORE_PEER_TLS_ENABLED --cafile /opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem -C $CHANNEL_NAME -n $CC_NAME -c '{"Args":["update","'$1'","'$2'","'$3'"]}' &
11+
peer chaincode invoke -o localhost:7050 --ordererTLSHostnameOverride orderer.example.com --tls $CORE_PEER_TLS_ENABLED --cafile ../test-network/organizations/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem -C mychannel -n bigdatacc -c '{"Args":["update","'$1'","'$2'","'$3'"]}'
1012
done

‎high-throughput/scripts/prune-invoke.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@
44
# SPDX-License-Identifier: Apache-2.0
55
#
66

7-
peer chaincode invoke -o orderer.example.com:7050 --tls $CORE_PEER_TLS_ENABLED --cafile /opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem -C $CHANNEL_NAME -n $CC_NAME -c '{"Args":["prune","'$1'"]}'
7+
source scripts/setenv.sh
88

9+
peer chaincode invoke -o localhost:7050 --ordererTLSHostnameOverride orderer.example.com --tls $CORE_PEER_TLS_ENABLED --cafile ../test-network/organizations/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem -C mychannel -n bigdatacc -c '{"Args":["prune","'$1'"]}'

‎high-throughput/scripts/setclienv.sh

-10
This file was deleted.

‎high-throughput/scripts/setenv.sh

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
2+
export PATH=${PWD}/../bin:${PWD}:$PATH
3+
export FABRIC_CFG_PATH=$PWD/../config/
4+
export CORE_PEER_TLS_ENABLED=true
5+
export CORE_PEER_MSPCONFIGPATH=../test-network/organizations/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp
6+
export CORE_PEER_ADDRESS=localhost:7051
7+
export CORE_PEER_LOCALMSPID="Org1MSP"
8+
export CORE_PEER_TLS_ROOTCERT_FILE=../test-network/organizations/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt

‎high-throughput/scripts/update-invoke.sh

+4-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,7 @@
33
#
44
# SPDX-License-Identifier: Apache-2.0
55
#
6-
peer chaincode invoke -o orderer.example.com:7050 --tls $CORE_PEER_TLS_ENABLED --cafile /opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem -C $CHANNEL_NAME -n $CC_NAME -c '{"Args":["update","'$1'","'$2'","'$3'"]}'
6+
7+
source scripts/setenv.sh
8+
9+
peer chaincode invoke -o localhost:7050 --ordererTLSHostnameOverride orderer.example.com --tls $CORE_PEER_TLS_ENABLED --cafile ../test-network/organizations/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem -C mychannel -n bigdatacc -c '{"Args":["update","'$1'","'$2'","'$3'"]}'

‎high-throughput/startFabric.sh

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
#!/bin/bash
2+
#
3+
# Copyright IBM Corp All Rights Reserved
4+
#
5+
# SPDX-License-Identifier: Apache-2.0
6+
#
7+
# Exit on first error
8+
set -e
9+
10+
# don't rewrite paths for Windows Git Bash users
11+
export MSYS_NO_PATHCONV=1
12+
starttime=$(date +%s)
13+
export TIMEOUT=10
14+
export DELAY=3
15+
16+
# launch network; create channel and join peer to channel
17+
pushd ../test-network
18+
./network.sh down
19+
20+
echo "Bring up test network"
21+
./network.sh up createChannel
22+
popd
23+
24+
#set enviroment varialbes
25+
export PATH=${PWD}/../bin:${PWD}:$PATH
26+
export FABRIC_CFG_PATH=$PWD/../config/
27+
28+
echo "Install high throughput chaincode on test network peers"
29+
./scripts/install-chaincode.sh
30+
31+
echo "Deploy high throughput chaincode to the channel"
32+
./scripts/approve-commit-chaincode.sh
33+
34+
35+
cat <<EOF
36+
37+
Total setup execution time : $(($(date +%s) - starttime)) secs ...
38+
39+
EOF

0 commit comments

Comments
 (0)
Please sign in to comment.