{"id":21816838,"url":"https://github.com/ellerbrock/perfkit-alicloud","last_synced_at":"2026-05-21T07:10:29.990Z","repository":{"id":71785353,"uuid":"117652364","full_name":"ellerbrock/perfkit-alicloud","owner":"ellerbrock","description":":mahjong: PerfKit Benchmarker for Alibaba Cloud Dockerized","archived":false,"fork":false,"pushed_at":"2018-01-16T09:10:11.000Z","size":8,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-21T10:13:46.810Z","etag":null,"topics":["alibaba-cloud","alibabacloud","alicloud","aliyun","aliyun-oss","aliyuncli","benchmark","benchmark-framework","benchmarking","benchmarking-suite","dcos","perfkit","perfkitbenchmarker"],"latest_commit_sha":null,"homepage":null,"language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ellerbrock.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2018-01-16T07:58:36.000Z","updated_at":"2024-08-01T08:06:36.000Z","dependencies_parsed_at":null,"dependency_job_id":"8b918a0a-4764-4b8a-859a-84155844c3d4","html_url":"https://github.com/ellerbrock/perfkit-alicloud","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ellerbrock/perfkit-alicloud","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ellerbrock%2Fperfkit-alicloud","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ellerbrock%2Fperfkit-alicloud/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ellerbrock%2Fperfkit-alicloud/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ellerbrock%2Fperfkit-alicloud/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ellerbrock","download_url":"https://codeload.github.com/ellerbrock/perfkit-alicloud/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ellerbrock%2Fperfkit-alicloud/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33292228,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-21T02:57:32.698Z","status":"ssl_error","status_checked_at":"2026-05-21T02:57:31.990Z","response_time":62,"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":["alibaba-cloud","alibabacloud","alicloud","aliyun","aliyun-oss","aliyuncli","benchmark","benchmark-framework","benchmarking","benchmarking-suite","dcos","perfkit","perfkitbenchmarker"],"created_at":"2024-11-27T15:37:09.623Z","updated_at":"2026-05-21T07:10:29.975Z","avatar_url":"https://github.com/ellerbrock.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"![alibaba cloud](https://upload.wikimedia.org/wikipedia/commons/4/40/Alibaba-cloud-logo-grey-2-01.png)\n\n# perfkit-alicloud\n\n[![Docker Automated Build](https://img.shields.io/docker/automated/ellerbrock/perfkit-alicloud.svg)](https://hub.docker.com/r/ellerbrock/perfkit-alicloud/) [![Docker Pulls](https://img.shields.io/docker/pulls/ellerbrock/perfkit-alicloud.svg)](https://hub.docker.com/r/ellerbrock/perfkit-alicloud/) [![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg)](https://github.com/ellerbrock/open-source-badges/) [![Gitter Chat](https://badges.gitter.im/frapsoft/frapsoft.svg)](https://gitter.im/frapsoft/frapsoft/)\n\n\n## What's inside?\n\n\nGoogle's [PerfKitBenchmarker](https://github.com/GoogleCloudPlatform/PerfKitBenchmarker) configured and ready to run for the [Alibaba Cloud](https://www.alibabacloud.com/).\n\n## Why a Container?\n\nI had some weird problems on Mac having multiple Python version installed and wasted quite some time to figure out what was going on since I'm not a Python Developer.\n\nThe current setup for the AliCloud Provider did not work for me so i made the decision to fix it and build it in a way other can use it.\n\n## How to use?\n\nI assume you have the [aliyun-cli](https://github.com/aliyun/aliyun-cli) tools installed and configured for the current running user.\n\nIn the first release i map `${HOME}/.aliyuncli` inside the container to run without passing any credentials.\n\nHere how to run a quick test with `iperf`:\n\n```\ndocker run \\\n  -it \\\n  -v \"${HOME}/.aliyuncli:/home/perfkit/.aliyuncli:ro\" \\\nellerbrock/perfkit-alicloud \\\n  --cloud=AliCloud \\\n  --machine_type=ecs.sn1.medium \\\n  --zones=eu-central-1a \\\n  --benchmarks=iperf\n```\n\nIn the repository you can find a `run.sh` where i made machine type, zone and benchmark variable:\n\n```\n#!/usr/bin/env bash\n\nMACHINE_TYPE=\"ecs.sn1.medium\"\nZONE=\"eu-central-1a\"\nBENCHMARKS=\"iperf\"\n\nfunction main() {\n  docker run \\\n    -it \\\n    -v \"${HOME}/.aliyuncli:/home/perfkit/.aliyuncli:ro\" \\\n  ellerbrock/perfkit-alicloud \\\n    --cloud=AliCloud \\\n    --machine_type=${MACHINE_TYPE} \\\n    --zones=${ZONE} \\\n    --benchmarks=${BENCHMARKS}\n}\n\nmain\n```\n\n## Info\n\nI'm currently developing on this project and will make further optimization.   \nSo stay tuned and check for new releases ...\n\n## Try Alibaba Cloud\n\n[Sign up](http://ow.ly/YKQe30hHgp8) today and get $300 valid for the first 60 days to try Alibaba Cloud.\n\n\n## Contact\n\n[![Github](https://github.frapsoft.com/social/github.png)](https://github.com/ellerbrock/)[![Docker](https://github.frapsoft.com/social/docker.png)](https://hub.docker.com/u/ellerbrock/)[![npm](https://github.frapsoft.com/social/npm.png)](https://www.npmjs.com/~ellerbrock)[![Twitter](https://github.frapsoft.com/social/twitter.png)](https://twitter.com/frapsoft/)[![Facebook](https://github.frapsoft.com/social/facebook.png)](https://www.facebook.com/frapsoft/)[![Google+](https://github.frapsoft.com/social/google-plus.png)](https://plus.google.com/116540931335841862774)[![Gitter](https://github.frapsoft.com/social/gitter.png)](https://gitter.im/frapsoft/frapsoft/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fellerbrock%2Fperfkit-alicloud","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fellerbrock%2Fperfkit-alicloud","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fellerbrock%2Fperfkit-alicloud/lists"}