{"id":50417742,"url":"https://github.com/apache/solr-orbit","last_synced_at":"2026-05-31T07:01:33.521Z","repository":{"id":359444609,"uuid":"1245942576","full_name":"apache/solr-orbit","owner":"apache","description":"Apache Solr Orbit macrobenchmarking framework","archived":false,"fork":false,"pushed_at":"2026-05-30T21:11:15.000Z","size":10136,"stargazers_count":0,"open_issues_count":13,"forks_count":3,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-30T23:11:08.207Z","etag":null,"topics":["apache","benchmarking","macrobenchmark","performance","python","solr"],"latest_commit_sha":null,"homepage":"https://solr.apache.org/","language":"Python","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/apache.png","metadata":{"files":{"readme":"README.md","changelog":null,"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,"zenodo":null,"notice":"NOTICE","maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-05-21T18:01:10.000Z","updated_at":"2026-05-30T21:11:19.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/apache/solr-orbit","commit_stats":null,"previous_names":["apache/solr-orbit"],"tags_count":34,"template":false,"template_full_name":null,"purl":"pkg:github/apache/solr-orbit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apache%2Fsolr-orbit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apache%2Fsolr-orbit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apache%2Fsolr-orbit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apache%2Fsolr-orbit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/apache","download_url":"https://codeload.github.com/apache/solr-orbit/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apache%2Fsolr-orbit/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33722156,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-31T02:00:06.040Z","response_time":95,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["apache","benchmarking","macrobenchmark","performance","python","solr"],"created_at":"2026-05-31T07:01:32.447Z","updated_at":"2026-05-31T07:01:33.425Z","avatar_url":"https://github.com/apache.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Apache Solr Orbit\n\nApache Solr Orbit is a macrobenchmarking framework for [Apache Solr](https://solr.apache.org/).\n\nIt is a fork/port of [Rally](https://github.com/elastic/rally)/[Opensearch Benchmark](https://github.com/opensearch-project/opensearch-benchmark), ported to work with Apache Solr.\n\n## Documentation\n\nFull documentation is available in [`docs/`](docs/) folder of this repository. Build the docs with jekyll.\nA public documentation site is available at [https://apache.github.io/solr-orbit/](https://apache.github.io/solr-orbit/).\n\n**This is a Work in Progress**\n\n## What is Apache Solr Orbit?\n\nIf you are looking to performance test Apache Solr, this tool can help you with:\n\n* Running performance benchmarks and recording results\n* Setting up and tearing down Solr clusters for benchmarking (local distribution, build-from-source or Docker, including nightly builds)\n* Managing benchmark workloads (collections, configsets, search operations)\n* Run same workload against multiple Solr versions or multiple cluster-configurations (heap size, GC settings, etc.)\n* Collecting JVM, node, and collection metrics via telemetry devices\n* Output results for each run in JSON format, suitable for analysis and dashboarding\n* Assist in converting existing OpenSearch Benchmark workloads to Solr format\n\n## Quick Start\n\n### Install\n\n**NOTE**: We do not offer the tool as a python package yet\n\n```bash\npip install -e .\n```\n\n### Run a benchmark against a Solr version in Docker\n\n```bash\nsolr-orbit run \\\n  --pipeline=docker \\\n  --distribution-version=9.10.1 \\\n  --workload=nyc_taxis \\\n  --test-mode\n```\n\n**Note**: Defaults to cloud mode (SolrCloud with embedded ZooKeeper).\n\n### Provision Solr locally, then benchmark\n\n```bash\nsolr-orbit run \\\n  --pipeline=from-distribution \\\n  --distribution-version=9.10.1 \\\n  --workload=nyc_taxis \\\n  --test-mode\n```\n\n**Note**: Always uses cloud mode (SolrCloud with embedded ZooKeeper).\n\n### Provision Solr from source, then benchmark\n\n```bash\nsolr-orbit run \\\n  --pipeline=from-sources \\\n  --distribution-version=9.10.1 \\\n  --workload=nyc_taxis \\\n  --test-mode\n```\n\n## Workload format\n\nSee [Workload Reference](https://apache.github.io/solr-orbit/reference/workloads/) in the documentation for the full `workload.json` format, including `collections`, `corpora`, `operations`, and `test-procedures`.\n\nPre-built workloads are available at [https://github.com/apache/solr-orbit-workloads](https://github.com/apache/solr-orbit-workloads). Feel free to\ncontribute your own with a pull request!\n\n## Result output\n\nEach test-run outputs a **test_run.json**, a complete canonical record of the benchmark run including:\n  - Benchmark metadata (version, environment, pipeline, user tags)\n  - Workload and test procedure information\n  - Cluster configuration specification (heap size, GC settings, all variables)\n  - Detailed operation metrics (throughput, latency, error rates)\n  - System metrics (GC times, merge times, segment counts, etc.)\n\nThis output can be used for further analysis, comparison and dashboarding.\n\n## License\n\nApache License, Version 2.0. See [LICENSE](LICENSE) for the full text.\n\nThis product includes software developed by the OpenSearch Contributors, and\nprior to that by Elasticsearch (Rally). Full attribution is in [NOTICE](NOTICE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapache%2Fsolr-orbit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fapache%2Fsolr-orbit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapache%2Fsolr-orbit/lists"}