{"id":34225552,"url":"https://github.com/meshplus/hyperbench","last_synced_at":"2026-03-11T09:03:46.523Z","repository":{"id":41840211,"uuid":"321879436","full_name":"meshplus/hyperbench","owner":"meshplus","description":"hyperbench is a distributed stress testing tool, used to perform stress testing on blockchain platforms","archived":false,"fork":false,"pushed_at":"2024-04-15T03:25:15.000Z","size":6821,"stargazers_count":44,"open_issues_count":14,"forks_count":9,"subscribers_count":8,"default_branch":"master","last_synced_at":"2025-08-01T04:30:00.007Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/meshplus.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"Contributing.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-12-16T05:34:26.000Z","updated_at":"2024-10-09T18:29:24.000Z","dependencies_parsed_at":"2024-06-20T15:32:21.638Z","dependency_job_id":"3f4bf231-6377-44ad-8631-4b1ddc5f1fb1","html_url":"https://github.com/meshplus/hyperbench","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/meshplus/hyperbench","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meshplus%2Fhyperbench","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meshplus%2Fhyperbench/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meshplus%2Fhyperbench/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meshplus%2Fhyperbench/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/meshplus","download_url":"https://codeload.github.com/meshplus/hyperbench/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meshplus%2Fhyperbench/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30376784,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-11T06:09:32.197Z","status":"ssl_error","status_checked_at":"2026-03-11T06:09:17.086Z","response_time":84,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-12-16T00:09:13.841Z","updated_at":"2026-03-11T09:03:46.518Z","avatar_url":"https://github.com/meshplus.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# HyperBench\n\nhyperbench is a distributed stress testing tool, used to perform stress testing on blockchain platforms, written by go.\n\ndetail introduction : [white paper](https://upload.hyperchain.cn/HyperBench%E7%99%BD%E7%9A%AE%E4%B9%A6.pdf)\n\n## Features\n\n-  flexible:  provide programmable use case extension based on Lua script and user hook provided by virtual machine.\n\n- high-efficiency: the virtual machine has a built-in Go blockchain client with a unified interface, which directly tests the blockchain system without additional application services\n\n- distributed: support distributed test function, support the use of multiple presses to simultaneously test the blockchain system, simple and easy to use\n\n## Quick Start\n\n### Build Hyperbench from Source Code\n\n```bash\n# clone Hyperbench repository into the $GOPATH/src/github.com/meshplus/hyperbench directory:\nmkdir $GOPATH/src/github.com/meshplus \u0026\u0026 cd $GOPATH/src/github.com/meshplus\ngit clone git@github.com:meshplus/hyperbench.git\ncd hyperbench\n\n# build main program\nmake build\n\n# copy build hyperbench program to $GOPATH/bin\ncp hyperbench $GOPATH/bin\n```\n\n### Build plugins from Source Code\n\n```bash\n# clone Hyperbench-plugins into the $GOPATH/src/github.com/meshplus/hyperbench-plugins directory:\ncd $GOPATH/src/github.com/meshplus\ngit clone git@github.com:meshplus/hyperbench-plugins.git\n\n# build hyperchain for example\ncd hyperbench-plugins/hyperchain\nmake build\ncp hyperchain.so ../../hyperbench/hyperchain.so\n```\n\n### Run HyperBench for Hyperchain\n\nBefore start stess test, docker and docker-compose are needed to be installed before preparing a hyperchian network.\n1. start hyperchain network\n\n```bash\n# start hyperchain network\ncd $GOPATH/src/github.com/meshplus/hyperbench/benchmark/hyperchain\nbash control.sh start\n```\n\n2. start stress test.\n\n```bash\n# use benchmark/hyperchain/local as test case, star benchmark test\ncd $GOPATH/src/github.com/meshplus/hyperbench\nhyperbench start benchmark/hyperchain/local\n```\n\n### Run HyperBench for Fabric\n\nBefore start stess test, docker and docker-compose are needed to be installed before preparing a fabric network.\n1. start fabric network\n\n```bash\n# start fabric network\ncd $GOPATH/src/github.com/meshplus/hyperbench/benchmark/fabric/example/fabric\nbash deamon.sh\n# if it's the first time for you to pull the docker images, please be patient\n# and if a timeout bug occurs, please try again\n```\n\n2. start stress test.\n\n```bash\n# use benchmark/fabric/example as test case, star benchmark test\ncd $GOPATH/src/github.com/meshplus/hyperbench\nhyperbench start benchmark/fabric/example\n```\n\n## Contribution\n\nThank you for considering to help out with the source code! No matter it's a system bug report, a new feature purposal, or code contributing, we're all huge welcome.\n\nPlease check the contributing guide for the full details.\n\n## License\n\nHyperbench is currently under Apache 2.0 license. See the LICENSE file for details.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmeshplus%2Fhyperbench","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmeshplus%2Fhyperbench","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmeshplus%2Fhyperbench/lists"}