Questions tagged [hyperledger-caliper]

Hyperledger Caliper is a blockchain benchmark tool for Hyperledger and some non-Hyperledger blockchain platforms.

65 questions
0
votes
1 answer

Hyperledger Fabric 2.3 and Caliper V0.5 Issue

`I am not able to test my fabric 2.3 test network by using Caliper V0.5 Hi I am using fabric 2.3 test-network and testing performance with Caliper v0.5. I am also getting similar errors like. No valid responses from any peers.…
0
votes
1 answer

Error while executing Hyperledger Caliper benchmark on Ubuntu 16.04 and Linux Mint 21

I'm trying to execute a benchmark using Hyperledger Caliper on Ubuntu 16.04 and also on Linux Mint 21. I have installed Node.js and npm, and am running the command: npx caliper launch manager \ --caliper-workspace . \ --caliper-benchconfig…
0
votes
0 answers

How do I measure the performance of remote docker container in hyperledger caliper?

i am currently utilizing Hyperledger Caliper to measure the performance of each docker containers. I am currently using two servers and the former has 2 peers and 2 orderers and the other one has 2 peers and 1 orderer. At the former server side, I…
0
votes
1 answer

EndorseError: 2 UNKNOWN: too many requests for /gateway.Gateway, exceeding concurrency limit (500) in Hyperledger Caliper

I executed Hyperledger Fabric test network and it had no errors. When I benchmarked its performance with Hyperledger Caliper tool, it was successful. But when the transactions count is increased to 800 or 1000 or above it throws the below…
Gowthami
  • 1
  • 2
0
votes
0 answers

how to test read and write performance in caliper

My smart contract includes following function: three functions have query ability: function1,function2,function3 three functions have update ability: function4,function5,function6 How can I test query ability and update ability(throughout)…
0
votes
0 answers

Hyperledger Caliper: fabric-remote test

Version INFO: Hyperledger Fabric: 2.2 / Caliper: 0.4.2 Hi, All. I have a already running blockchain network on the cloud developing instance. By the way, the caliper worked pretty good on the cloud server. Now, I am trying to work remotely with the…
0
votes
0 answers

Error while I run a p. benchmark with Hyperledger Caliper: No valid responses from any peers, chaincode registration failed: container exited with 0

I want to run a performance benchmark for the contract (which is writen in typescript) from this repository:https://github.com/AleRapchan/hyperledger-supply-chain So, I am using Hyperledger Caliper based on this tutorial:…
0
votes
0 answers

Hyperledger Caliper on Sample Repo

I'm setting up Hyperledger Caliper and using it to test the sample repo. While performing this: npx caliper launch manager --caliper-workspace . --caliper-benchconfig benchmarks/scenario/simple/config.yaml --caliper-networkconfig…
fabricdev
  • 61
  • 3
0
votes
1 answer

Running hyperledger caliper to test my local hyperledger fabric network

Im using hyperledger caliper to benchmark my local fabric network but i have some errors which lead to missing some values from report such as successful transactions and latency. any one can help me to fix these errors? as follow…
0
votes
1 answer

How to reset the channel in Hyperledger Fabric to genesis block to reuse?

I have a test Hyperledger Fabric environment using docker and caliper. I have installed the fabric from https://github.com/hyperledger/fabric. I want to reuse the started test network in fabcar folder, but using networkDown.sh to stop the network…
0
votes
1 answer

Why can't I commit transactions with Caliper to Hyperledger Fabric?

I've got Caliper configured as a subtree of my custom Fabric blockchain. I have it configured correctly in order to connect the network and am running a small set of tests at the moment. The arguments I'm providing are absolutely correct in terms of…
gdgr
  • 1,435
  • 2
  • 15
  • 31
0
votes
1 answer

Error while running cliper bechmeark for hyperledger farbic: "message=Peer endorsements do not match"

For my hyperledger fabric chain code, i craeted a chaincode which implements Hybrid Encryption using RSA and Symetric AES. I have used the cliper documentation's tutorial itself. encryptString (plaintext,publicKey) { // publicEncrypt()…
0
votes
1 answer

Hyperledger Caliper doen´t bind on fabric network

Today when trying to run a benchmark on the existing Hyperledger Fabric network, which was running normally and generating results, I came across the following error when binding the network through the following command: npx caliper bind…
0
votes
2 answers

Error using framework hyperledger caliper

I have two test tests, one reading and one writing on the blockchain. I'm getting two different errors, one at the start of the test and one at the writing test. The reading test is working normally without problems. Initial…
0
votes
0 answers

Configuring Caliper to print metrics during a test round?

In hyperledger fabric benchmarking, Caliper prints report result after finishing test round. How can I configure Caliper to print or emit metrics such as TX delay, TX success rate, and resource statistics (cpu, ram, ...) during a test round for…