hyperledger/caliper

Name: caliper

Owner: Hyperledger

Description: A blockchain benchmark framework to measure performance of multiple blockchain solutions

Created: 2018-03-20 01:46:34.0

Updated: 2018-05-24 02:08:25.0

Pushed: 2018-05-24 02:08:22.0

Homepage:

Size: 9616

Language: JavaScript

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

Caliper Introduction

Caliper is a blockchain performance benchmark framework, which allows users to test different blockchain solutions with predefined use cases, and get a set of performance test results.

Currently supported blockchain solutions:

Hyperledger Composer is also supported, please see Composer Performance Test.

Currently supported performance indicators:

See [to add the link to PSWG] to find out the definitions and corresponding measurement methods.

Achitecture

See Architecture introduction.

Build
Pre-requisites

Make sure following tools are installed

Run npm install in caliper folder to install dependencies locally

Install blockchain SDKs
Run benchmark

All predefined benchmarks can be found in benchmark folder. To start your first benchmark, just run this in root folder

 benchmark/simple/main.js -c yourconfig.json -n yournetwork.json

Some example SUTs are provided in network folder, they can be launched automatically before the test by setting the bootstrap commands in the configuration file, e.g


ommand" : {
"start": "docker-compose -f network/fabric/simplenetwork/docker-compose.yaml up -d",
"end" : "docker-compose -f network/fabric/simplenetwork/docker-compose.yaml down;docker rm $(docker ps -aq)"


The scripts defined in command.start will be called before the test, and the scripts defined in command.end will be called after the finish of all tests. You can use them to define any preparation or clean-up works.

You can also run the test with your own blockchain network, a network configuration should be provided and corresponding file path should be specified in configuration file's blockchain.config.

Note:

Alternative

You can also use npm scripts to run a benchmark.

caliper@0.1.0 list /home/hurf/caliper node ./scripts/list.js

Available benchmarks: drm simple

m test: run a benchmark with specific config files

$ npm test – simple -c ./benchmark/simple/config.json -n ./benchmark/simple/fabric.json

caliper@0.1.0 test /home/hurf/caliper node ./scripts/test.js “simple” “-c” “./benchmark/simple/config.json” “-n” “./benchmark/simple/fabric.json” ……

un benchmark with distributed clients (experimental)

In this way, multiple clients can be launched on distributed hosts to run the same benchmark.

  1. Start the ZooKeeper service

  2. Launch clients on target machines separately by running node ./src/comm/client/zoo-client.js zookeeper-server or npm run startclient -- zookeeper-server . Time synchronization between target machines should be executed before launching the clients.

    Example:

    m run startclient -- 10.229.42.159:2181
    
    liper@0.1.0 startclient /home/hurf/caliper
    de ./src/comm/client/zoo-client.js "10.229.42.159:2181"
    
    ected to ZooKeeper
    ted client node:/caliper/clients/client_1514532063571_0000000006
    ted receiving queue at:/caliper/client_1514532063571_0000000006_in
    ted sending queue at:/caliper/client_1514532063571_0000000006_out
    ing for messages at:/caliper/client_1514532063571_0000000006_in......
    
  3. Modify the client type setting in configuration file to 'zookeeper'.

    Example:

    ents": {
    ype": "zookeeper",
    oo" : {
    "server": "10.229.42.159:2181",
    "clientsPerHost": 5
    
    
    
  4. Launch the benchmark on any machine as usual.

Note:

Write your own benchmarks

Caliper provides a set of nodejs NBIs (North Bound Interfaces) for applications to interact with backend blockchain system. Check the src/comm/blockchain.js to learn about the NBIs. Multiple Adaptors are implemented to translate the NBIs to different blockchain protocols. So developers can write a benchmark once, and run it with different blockchain systems.

Generally speaking, to write a new caliper benchmark, you need to:

Directory Structure

Directory | Description —————— | ————– /benchmark | Samples of the blockchain benchmarks /docs | Documents /network | Boot configuration files used to deploy some predefined blockchain network under test. /src | Souce code of the framework /src/contract | Smart contracts for different blockchain systems

How to contribute

See Contributing

License

The Caliper codebase is release under the Apache 2.0 license. Any documentation developed by the Caliper Project is licensed under the Creative Commons Attribution 4.0 International License. You may obtain a copy of the license, titled CC-BY-4.0, at http://creativecommons.org/licenses/by/4.0/.


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.