├── .buildkite ├── dev-docker │ ├── pipeline.yml │ └── run.sh ├── it │ ├── pipeline.yml │ ├── run.sh │ ├── run_serverless.sh │ └── serverless-pipeline.yml ├── pull-requests.json ├── release-docker │ ├── pipeline.yml │ └── run.sh └── retry.sh ├── .ci └── variables.json ├── .coveragerc ├── .fossa.yml ├── .git-blame-ignore-revs ├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .pylintrc ├── .readthedocs.yaml ├── AUTHORS ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── NOTICE ├── README.md ├── benchmarks ├── __init__.py ├── driver │ ├── __init__.py │ ├── parsing_test.py │ └── runner_test.py └── track │ ├── __init__.py │ └── bulk_params_test.py ├── catalog-info.yaml ├── changelog.py ├── create-notice.sh ├── docker ├── Dockerfiles │ ├── dev │ │ └── Dockerfile │ └── release │ │ └── Dockerfile ├── bin │ └── entrypoint.sh └── docker-compose-tests.yml ├── docs ├── Makefile ├── _templates │ └── breadcrumbs.html ├── adding_tracks.rst ├── advanced.rst ├── architecture │ └── actor_system.md ├── benchmark_distributed_load.gliffy ├── benchmark_distributed_load.png ├── benchmark_existing.gliffy ├── benchmark_existing.png ├── benchmark_remote.gliffy ├── benchmark_remote.png ├── car.rst ├── cluster_management.rst ├── command_line_reference.rst ├── community.rst ├── conf.py ├── configuration.rst ├── create_scheduler_plot.py ├── developing.rst ├── docker.rst ├── elasticsearch_plugins.rst ├── faq.rst ├── glossary.rst ├── index.rst ├── install.rst ├── jfr-es.png ├── make.bat ├── metrics.rst ├── migrate.rst ├── nested-streams.png ├── nested-streams.puml ├── offline.rst ├── pipelines.rst ├── quickstart.rst ├── race.rst ├── rally-logo.svg ├── rally_daemon.rst ├── recency.png ├── recipes.rst ├── schedulers_10s.png ├── serverless.rst ├── summary_report.rst ├── telemetry.rst ├── tournament.rst ├── track-ramp-up.png ├── track.rst └── versions.rst ├── esrally ├── __init__.py ├── _version.py ├── actor.py ├── client │ ├── __init__.py │ ├── asynchronous.py │ ├── common.py │ ├── context.py │ ├── factory.py │ └── synchronous.py ├── config.py ├── driver │ ├── __init__.py │ ├── driver.py │ ├── runner.py │ └── scheduler.py ├── exceptions.py ├── log.py ├── mechanic │ ├── __init__.py │ ├── cluster.py │ ├── java_resolver.py │ ├── launcher.py │ ├── mechanic.py │ ├── provisioner.py │ ├── supplier.py │ └── team.py ├── metrics.py ├── min-es-version.txt ├── paths.py ├── racecontrol.py ├── rally.py ├── rallyd.py ├── reporter.py ├── resources │ ├── annotation-template.json │ ├── challenges.json.j2 │ ├── docker-compose.yml.j2 │ ├── logging.json │ ├── metrics-template.json │ ├── operations.json.j2 │ ├── races-template.json │ ├── rally.ini │ ├── results-template.json │ ├── track-schema.json │ └── track.json.j2 ├── storage │ ├── __init__.py │ ├── __main__.py │ ├── _adapter.py │ ├── _cli.py │ ├── _client.py │ ├── _config.py │ ├── _executor.py │ ├── _manager.py │ ├── _mirror.py │ ├── _range.py │ ├── _transfer.py │ ├── aws.py │ ├── gc.py │ └── http.py ├── telemetry.py ├── time.py ├── track │ ├── __init__.py │ ├── loader.py │ ├── params.py │ └── track.py ├── tracker │ ├── __init__.py │ ├── corpus.py │ ├── index.py │ └── tracker.py ├── types.py ├── utils │ ├── __init__.py │ ├── cases.py │ ├── collections.py │ ├── console.py │ ├── convert.py │ ├── error_behavior.py │ ├── git.py │ ├── io.py │ ├── jvm.py │ ├── modules.py │ ├── net.py │ ├── opts.py │ ├── pretty.py │ ├── process.py │ ├── repo.py │ ├── serverless.py │ ├── sysstats.py │ ├── threads.py │ └── versions.py └── version.py ├── it ├── __init__.py ├── basic_test.py ├── dependencies_test.py ├── distribution_test.py ├── docker_dev_image_test.py ├── download_test.py ├── error_test.py ├── esrallyd_test.py ├── info_test.py ├── installation_test.py ├── list_test.py ├── proxy_test.py ├── resources │ ├── rally-es-it.ini │ ├── rally-in-memory-it.ini │ ├── squid │ │ ├── squid.conf │ │ └── squidpasswords │ ├── static-responses.json │ └── track_with_dependency │ │ ├── track.json │ │ └── track.py ├── sources_test.py ├── static_responses_test.py ├── storage │ ├── __init__.py │ ├── cli_test.py │ └── resources │ │ ├── bad-mirror.json │ │ └── good-mirror.json ├── track_repo_compatibility │ └── conftest.py └── tracker_test.py ├── prepare-release.sh ├── pyproject.toml ├── rally ├── rallyd ├── recipes └── ccr │ ├── .elastic-version │ ├── docker-compose.yml │ ├── metricstore-docker-compose.yml │ ├── start.sh │ └── stop.sh ├── release-checks.sh ├── release-docker-manifest.sh ├── release-docker-test.sh ├── release-docker.sh ├── run.sh ├── scripts └── offline-install.sh ├── tests ├── __init__.py ├── actor_test.py ├── client │ ├── __init__.py │ ├── asynchronous_test.py │ ├── common_test.py │ └── factory_test.py ├── config_test.py ├── driver │ ├── __init__.py │ ├── driver_test.py │ ├── runner_test.py │ └── scheduler_test.py ├── log_test.py ├── mechanic │ ├── __init__.py │ ├── data │ │ ├── cars │ │ │ └── v1 │ │ │ │ ├── 32gheap.ini │ │ │ │ ├── another_with_hook.ini │ │ │ │ ├── default.ini │ │ │ │ ├── ea.ini │ │ │ │ ├── empty_cfg_base.ini │ │ │ │ ├── hook2 │ │ │ │ └── config.py │ │ │ │ ├── missing_cfg_base.ini │ │ │ │ ├── multi_hook.ini │ │ │ │ ├── vanilla │ │ │ │ └── config.ini │ │ │ │ ├── verbose.ini │ │ │ │ ├── verbose_logging │ │ │ │ └── config.ini │ │ │ │ ├── with_hook.ini │ │ │ │ └── with_hook │ │ │ │ └── config.py │ │ └── plugins │ │ │ └── v1 │ │ │ ├── complex_plugin │ │ │ ├── config-a.ini │ │ │ └── config-b.ini │ │ │ ├── core-plugins.txt │ │ │ └── my_core_plugin_with_config │ │ │ └── .gitkeep │ ├── java_resolver_test.py │ ├── launcher_test.py │ ├── mechanic_test.py │ ├── provisioner_test.py │ ├── supplier_test.py │ └── team_test.py ├── metrics_test.py ├── racecontrol_test.py ├── reporter_test.py ├── storage │ ├── __init__.py │ ├── adapter_test.py │ ├── aws_test.py │ ├── client_test.py │ ├── gc_test.py │ ├── http_test.py │ ├── manager_test.py │ ├── mirror_test.py │ ├── mirrors.json │ ├── range_test.py │ └── transfer_test.py ├── telemetry_test.py ├── time_test.py ├── track │ ├── __init__.py │ ├── loader_test.py │ ├── params_test.py │ ├── resources │ │ ├── track_fragment_1.json │ │ └── track_fragment_2.json │ └── track_test.py ├── tracker │ ├── __init__.py │ ├── corpus_test.py │ └── index_test.py ├── types_test.py ├── utils │ ├── __init__.py │ ├── cases_test.py │ ├── collections_test.py │ ├── console_test.py │ ├── convert_test.py │ ├── git_test.py │ ├── io_test.py │ ├── jvm_test.py │ ├── net_test.py │ ├── opts_test.py │ ├── pretty_test.py │ ├── process_test.py │ ├── repo_test.py │ ├── resources │ │ ├── certs │ │ │ ├── ca.crt │ │ │ ├── client.crt │ │ │ └── client.key │ │ ├── client_options_1.json │ │ ├── client_options_2.json │ │ ├── target_hosts_1.json │ │ ├── target_hosts_2.json │ │ ├── test.txt │ │ ├── test.txt.bz2 │ │ ├── test.txt.gz │ │ ├── test.txt.tar │ │ ├── test.txt.tar.bz2 │ │ ├── test.txt.tar.gz │ │ ├── test.txt.tgz │ │ ├── test.txt.zip │ │ └── test.txt.zst │ ├── threads_test.py │ └── versions_test.py └── version_test.py └── uv.lock /.buildkite/dev-docker/pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/.buildkite/dev-docker/pipeline.yml -------------------------------------------------------------------------------- /.buildkite/dev-docker/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/.buildkite/dev-docker/run.sh -------------------------------------------------------------------------------- /.buildkite/it/pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/.buildkite/it/pipeline.yml -------------------------------------------------------------------------------- /.buildkite/it/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/.buildkite/it/run.sh -------------------------------------------------------------------------------- /.buildkite/it/run_serverless.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/.buildkite/it/run_serverless.sh -------------------------------------------------------------------------------- /.buildkite/it/serverless-pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/.buildkite/it/serverless-pipeline.yml -------------------------------------------------------------------------------- /.buildkite/pull-requests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/.buildkite/pull-requests.json -------------------------------------------------------------------------------- /.buildkite/release-docker/pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/.buildkite/release-docker/pipeline.yml -------------------------------------------------------------------------------- /.buildkite/release-docker/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/.buildkite/release-docker/run.sh -------------------------------------------------------------------------------- /.buildkite/retry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/.buildkite/retry.sh -------------------------------------------------------------------------------- /.ci/variables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/.ci/variables.json -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/.coveragerc -------------------------------------------------------------------------------- /.fossa.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/.fossa.yml -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- 1 | # Migrate to black and isort 2 | f4302fbbc38bf4e7c00cd43ac9b363f26e579196 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/.pylintrc -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- 1 | Rally 2 | Copyright 2012-2019 Elasticsearch B.V. 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/README.md -------------------------------------------------------------------------------- /benchmarks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/benchmarks/__init__.py -------------------------------------------------------------------------------- /benchmarks/driver/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/benchmarks/driver/__init__.py -------------------------------------------------------------------------------- /benchmarks/driver/parsing_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/benchmarks/driver/parsing_test.py -------------------------------------------------------------------------------- /benchmarks/driver/runner_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/benchmarks/driver/runner_test.py -------------------------------------------------------------------------------- /benchmarks/track/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/benchmarks/track/__init__.py -------------------------------------------------------------------------------- /benchmarks/track/bulk_params_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/benchmarks/track/bulk_params_test.py -------------------------------------------------------------------------------- /catalog-info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/catalog-info.yaml -------------------------------------------------------------------------------- /changelog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/changelog.py -------------------------------------------------------------------------------- /create-notice.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/create-notice.sh -------------------------------------------------------------------------------- /docker/Dockerfiles/dev/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/docker/Dockerfiles/dev/Dockerfile -------------------------------------------------------------------------------- /docker/Dockerfiles/release/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/docker/Dockerfiles/release/Dockerfile -------------------------------------------------------------------------------- /docker/bin/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/docker/bin/entrypoint.sh -------------------------------------------------------------------------------- /docker/docker-compose-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/docker/docker-compose-tests.yml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_templates/breadcrumbs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/docs/_templates/breadcrumbs.html -------------------------------------------------------------------------------- /docs/adding_tracks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/docs/adding_tracks.rst -------------------------------------------------------------------------------- /docs/advanced.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/docs/advanced.rst -------------------------------------------------------------------------------- /docs/architecture/actor_system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/docs/architecture/actor_system.md -------------------------------------------------------------------------------- /docs/benchmark_distributed_load.gliffy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/docs/benchmark_distributed_load.gliffy -------------------------------------------------------------------------------- /docs/benchmark_distributed_load.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/docs/benchmark_distributed_load.png -------------------------------------------------------------------------------- /docs/benchmark_existing.gliffy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/docs/benchmark_existing.gliffy -------------------------------------------------------------------------------- /docs/benchmark_existing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/docs/benchmark_existing.png -------------------------------------------------------------------------------- /docs/benchmark_remote.gliffy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/docs/benchmark_remote.gliffy -------------------------------------------------------------------------------- /docs/benchmark_remote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/docs/benchmark_remote.png -------------------------------------------------------------------------------- /docs/car.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/docs/car.rst -------------------------------------------------------------------------------- /docs/cluster_management.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/docs/cluster_management.rst -------------------------------------------------------------------------------- /docs/command_line_reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/docs/command_line_reference.rst -------------------------------------------------------------------------------- /docs/community.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/docs/community.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/docs/configuration.rst -------------------------------------------------------------------------------- /docs/create_scheduler_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/docs/create_scheduler_plot.py -------------------------------------------------------------------------------- /docs/developing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/docs/developing.rst -------------------------------------------------------------------------------- /docs/docker.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/docs/docker.rst -------------------------------------------------------------------------------- /docs/elasticsearch_plugins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/docs/elasticsearch_plugins.rst -------------------------------------------------------------------------------- /docs/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/docs/faq.rst -------------------------------------------------------------------------------- /docs/glossary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/docs/glossary.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/docs/install.rst -------------------------------------------------------------------------------- /docs/jfr-es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/docs/jfr-es.png -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/metrics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/docs/metrics.rst -------------------------------------------------------------------------------- /docs/migrate.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/docs/migrate.rst -------------------------------------------------------------------------------- /docs/nested-streams.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/docs/nested-streams.png -------------------------------------------------------------------------------- /docs/nested-streams.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/docs/nested-streams.puml -------------------------------------------------------------------------------- /docs/offline.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/docs/offline.rst -------------------------------------------------------------------------------- /docs/pipelines.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/docs/pipelines.rst -------------------------------------------------------------------------------- /docs/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/docs/quickstart.rst -------------------------------------------------------------------------------- /docs/race.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/docs/race.rst -------------------------------------------------------------------------------- /docs/rally-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/docs/rally-logo.svg -------------------------------------------------------------------------------- /docs/rally_daemon.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/docs/rally_daemon.rst -------------------------------------------------------------------------------- /docs/recency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/docs/recency.png -------------------------------------------------------------------------------- /docs/recipes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/docs/recipes.rst -------------------------------------------------------------------------------- /docs/schedulers_10s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/docs/schedulers_10s.png -------------------------------------------------------------------------------- /docs/serverless.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/docs/serverless.rst -------------------------------------------------------------------------------- /docs/summary_report.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/docs/summary_report.rst -------------------------------------------------------------------------------- /docs/telemetry.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/docs/telemetry.rst -------------------------------------------------------------------------------- /docs/tournament.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/docs/tournament.rst -------------------------------------------------------------------------------- /docs/track-ramp-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/docs/track-ramp-up.png -------------------------------------------------------------------------------- /docs/track.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/docs/track.rst -------------------------------------------------------------------------------- /docs/versions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/docs/versions.rst -------------------------------------------------------------------------------- /esrally/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/__init__.py -------------------------------------------------------------------------------- /esrally/_version.py: -------------------------------------------------------------------------------- 1 | __version__ = "2.12.0.dev0" 2 | -------------------------------------------------------------------------------- /esrally/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/actor.py -------------------------------------------------------------------------------- /esrally/client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/client/__init__.py -------------------------------------------------------------------------------- /esrally/client/asynchronous.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/client/asynchronous.py -------------------------------------------------------------------------------- /esrally/client/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/client/common.py -------------------------------------------------------------------------------- /esrally/client/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/client/context.py -------------------------------------------------------------------------------- /esrally/client/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/client/factory.py -------------------------------------------------------------------------------- /esrally/client/synchronous.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/client/synchronous.py -------------------------------------------------------------------------------- /esrally/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/config.py -------------------------------------------------------------------------------- /esrally/driver/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/driver/__init__.py -------------------------------------------------------------------------------- /esrally/driver/driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/driver/driver.py -------------------------------------------------------------------------------- /esrally/driver/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/driver/runner.py -------------------------------------------------------------------------------- /esrally/driver/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/driver/scheduler.py -------------------------------------------------------------------------------- /esrally/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/exceptions.py -------------------------------------------------------------------------------- /esrally/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/log.py -------------------------------------------------------------------------------- /esrally/mechanic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/mechanic/__init__.py -------------------------------------------------------------------------------- /esrally/mechanic/cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/mechanic/cluster.py -------------------------------------------------------------------------------- /esrally/mechanic/java_resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/mechanic/java_resolver.py -------------------------------------------------------------------------------- /esrally/mechanic/launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/mechanic/launcher.py -------------------------------------------------------------------------------- /esrally/mechanic/mechanic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/mechanic/mechanic.py -------------------------------------------------------------------------------- /esrally/mechanic/provisioner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/mechanic/provisioner.py -------------------------------------------------------------------------------- /esrally/mechanic/supplier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/mechanic/supplier.py -------------------------------------------------------------------------------- /esrally/mechanic/team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/mechanic/team.py -------------------------------------------------------------------------------- /esrally/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/metrics.py -------------------------------------------------------------------------------- /esrally/min-es-version.txt: -------------------------------------------------------------------------------- 1 | 6.8.0 2 | -------------------------------------------------------------------------------- /esrally/paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/paths.py -------------------------------------------------------------------------------- /esrally/racecontrol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/racecontrol.py -------------------------------------------------------------------------------- /esrally/rally.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/rally.py -------------------------------------------------------------------------------- /esrally/rallyd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/rallyd.py -------------------------------------------------------------------------------- /esrally/reporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/reporter.py -------------------------------------------------------------------------------- /esrally/resources/annotation-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/resources/annotation-template.json -------------------------------------------------------------------------------- /esrally/resources/challenges.json.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/resources/challenges.json.j2 -------------------------------------------------------------------------------- /esrally/resources/docker-compose.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/resources/docker-compose.yml.j2 -------------------------------------------------------------------------------- /esrally/resources/logging.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/resources/logging.json -------------------------------------------------------------------------------- /esrally/resources/metrics-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/resources/metrics-template.json -------------------------------------------------------------------------------- /esrally/resources/operations.json.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/resources/operations.json.j2 -------------------------------------------------------------------------------- /esrally/resources/races-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/resources/races-template.json -------------------------------------------------------------------------------- /esrally/resources/rally.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/resources/rally.ini -------------------------------------------------------------------------------- /esrally/resources/results-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/resources/results-template.json -------------------------------------------------------------------------------- /esrally/resources/track-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/resources/track-schema.json -------------------------------------------------------------------------------- /esrally/resources/track.json.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/resources/track.json.j2 -------------------------------------------------------------------------------- /esrally/storage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/storage/__init__.py -------------------------------------------------------------------------------- /esrally/storage/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/storage/__main__.py -------------------------------------------------------------------------------- /esrally/storage/_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/storage/_adapter.py -------------------------------------------------------------------------------- /esrally/storage/_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/storage/_cli.py -------------------------------------------------------------------------------- /esrally/storage/_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/storage/_client.py -------------------------------------------------------------------------------- /esrally/storage/_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/storage/_config.py -------------------------------------------------------------------------------- /esrally/storage/_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/storage/_executor.py -------------------------------------------------------------------------------- /esrally/storage/_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/storage/_manager.py -------------------------------------------------------------------------------- /esrally/storage/_mirror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/storage/_mirror.py -------------------------------------------------------------------------------- /esrally/storage/_range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/storage/_range.py -------------------------------------------------------------------------------- /esrally/storage/_transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/storage/_transfer.py -------------------------------------------------------------------------------- /esrally/storage/aws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/storage/aws.py -------------------------------------------------------------------------------- /esrally/storage/gc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/storage/gc.py -------------------------------------------------------------------------------- /esrally/storage/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/storage/http.py -------------------------------------------------------------------------------- /esrally/telemetry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/telemetry.py -------------------------------------------------------------------------------- /esrally/time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/time.py -------------------------------------------------------------------------------- /esrally/track/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/track/__init__.py -------------------------------------------------------------------------------- /esrally/track/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/track/loader.py -------------------------------------------------------------------------------- /esrally/track/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/track/params.py -------------------------------------------------------------------------------- /esrally/track/track.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/track/track.py -------------------------------------------------------------------------------- /esrally/tracker/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/tracker/__init__.py -------------------------------------------------------------------------------- /esrally/tracker/corpus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/tracker/corpus.py -------------------------------------------------------------------------------- /esrally/tracker/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/tracker/index.py -------------------------------------------------------------------------------- /esrally/tracker/tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/tracker/tracker.py -------------------------------------------------------------------------------- /esrally/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/types.py -------------------------------------------------------------------------------- /esrally/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/utils/__init__.py -------------------------------------------------------------------------------- /esrally/utils/cases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/utils/cases.py -------------------------------------------------------------------------------- /esrally/utils/collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/utils/collections.py -------------------------------------------------------------------------------- /esrally/utils/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/utils/console.py -------------------------------------------------------------------------------- /esrally/utils/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/utils/convert.py -------------------------------------------------------------------------------- /esrally/utils/error_behavior.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/utils/error_behavior.py -------------------------------------------------------------------------------- /esrally/utils/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/utils/git.py -------------------------------------------------------------------------------- /esrally/utils/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/utils/io.py -------------------------------------------------------------------------------- /esrally/utils/jvm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/utils/jvm.py -------------------------------------------------------------------------------- /esrally/utils/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/utils/modules.py -------------------------------------------------------------------------------- /esrally/utils/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/utils/net.py -------------------------------------------------------------------------------- /esrally/utils/opts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/utils/opts.py -------------------------------------------------------------------------------- /esrally/utils/pretty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/utils/pretty.py -------------------------------------------------------------------------------- /esrally/utils/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/utils/process.py -------------------------------------------------------------------------------- /esrally/utils/repo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/utils/repo.py -------------------------------------------------------------------------------- /esrally/utils/serverless.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/utils/serverless.py -------------------------------------------------------------------------------- /esrally/utils/sysstats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/utils/sysstats.py -------------------------------------------------------------------------------- /esrally/utils/threads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/utils/threads.py -------------------------------------------------------------------------------- /esrally/utils/versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/utils/versions.py -------------------------------------------------------------------------------- /esrally/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/esrally/version.py -------------------------------------------------------------------------------- /it/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/it/__init__.py -------------------------------------------------------------------------------- /it/basic_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/it/basic_test.py -------------------------------------------------------------------------------- /it/dependencies_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/it/dependencies_test.py -------------------------------------------------------------------------------- /it/distribution_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/it/distribution_test.py -------------------------------------------------------------------------------- /it/docker_dev_image_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/it/docker_dev_image_test.py -------------------------------------------------------------------------------- /it/download_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/it/download_test.py -------------------------------------------------------------------------------- /it/error_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/it/error_test.py -------------------------------------------------------------------------------- /it/esrallyd_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/it/esrallyd_test.py -------------------------------------------------------------------------------- /it/info_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/it/info_test.py -------------------------------------------------------------------------------- /it/installation_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/it/installation_test.py -------------------------------------------------------------------------------- /it/list_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/it/list_test.py -------------------------------------------------------------------------------- /it/proxy_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/it/proxy_test.py -------------------------------------------------------------------------------- /it/resources/rally-es-it.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/it/resources/rally-es-it.ini -------------------------------------------------------------------------------- /it/resources/rally-in-memory-it.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/it/resources/rally-in-memory-it.ini -------------------------------------------------------------------------------- /it/resources/squid/squid.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/it/resources/squid/squid.conf -------------------------------------------------------------------------------- /it/resources/squid/squidpasswords: -------------------------------------------------------------------------------- 1 | testuser:$apr1$GcQaaItl$lhi4JoDsWBpZbkXVbI51O/ 2 | -------------------------------------------------------------------------------- /it/resources/static-responses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/it/resources/static-responses.json -------------------------------------------------------------------------------- /it/resources/track_with_dependency/track.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/it/resources/track_with_dependency/track.json -------------------------------------------------------------------------------- /it/resources/track_with_dependency/track.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/it/resources/track_with_dependency/track.py -------------------------------------------------------------------------------- /it/sources_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/it/sources_test.py -------------------------------------------------------------------------------- /it/static_responses_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/it/static_responses_test.py -------------------------------------------------------------------------------- /it/storage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /it/storage/cli_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/it/storage/cli_test.py -------------------------------------------------------------------------------- /it/storage/resources/bad-mirror.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/it/storage/resources/bad-mirror.json -------------------------------------------------------------------------------- /it/storage/resources/good-mirror.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/it/storage/resources/good-mirror.json -------------------------------------------------------------------------------- /it/track_repo_compatibility/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/it/track_repo_compatibility/conftest.py -------------------------------------------------------------------------------- /it/tracker_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/it/tracker_test.py -------------------------------------------------------------------------------- /prepare-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/prepare-release.sh -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/pyproject.toml -------------------------------------------------------------------------------- /rally: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/rally -------------------------------------------------------------------------------- /rallyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/rallyd -------------------------------------------------------------------------------- /recipes/ccr/.elastic-version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/recipes/ccr/.elastic-version -------------------------------------------------------------------------------- /recipes/ccr/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/recipes/ccr/docker-compose.yml -------------------------------------------------------------------------------- /recipes/ccr/metricstore-docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/recipes/ccr/metricstore-docker-compose.yml -------------------------------------------------------------------------------- /recipes/ccr/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/recipes/ccr/start.sh -------------------------------------------------------------------------------- /recipes/ccr/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/recipes/ccr/stop.sh -------------------------------------------------------------------------------- /release-checks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/release-checks.sh -------------------------------------------------------------------------------- /release-docker-manifest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/release-docker-manifest.sh -------------------------------------------------------------------------------- /release-docker-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/release-docker-test.sh -------------------------------------------------------------------------------- /release-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/release-docker.sh -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/run.sh -------------------------------------------------------------------------------- /scripts/offline-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/scripts/offline-install.sh -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/actor_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/actor_test.py -------------------------------------------------------------------------------- /tests/client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/client/__init__.py -------------------------------------------------------------------------------- /tests/client/asynchronous_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/client/asynchronous_test.py -------------------------------------------------------------------------------- /tests/client/common_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/client/common_test.py -------------------------------------------------------------------------------- /tests/client/factory_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/client/factory_test.py -------------------------------------------------------------------------------- /tests/config_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/config_test.py -------------------------------------------------------------------------------- /tests/driver/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/driver/__init__.py -------------------------------------------------------------------------------- /tests/driver/driver_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/driver/driver_test.py -------------------------------------------------------------------------------- /tests/driver/runner_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/driver/runner_test.py -------------------------------------------------------------------------------- /tests/driver/scheduler_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/driver/scheduler_test.py -------------------------------------------------------------------------------- /tests/log_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/log_test.py -------------------------------------------------------------------------------- /tests/mechanic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/mechanic/__init__.py -------------------------------------------------------------------------------- /tests/mechanic/data/cars/v1/32gheap.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/mechanic/data/cars/v1/32gheap.ini -------------------------------------------------------------------------------- /tests/mechanic/data/cars/v1/another_with_hook.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/mechanic/data/cars/v1/another_with_hook.ini -------------------------------------------------------------------------------- /tests/mechanic/data/cars/v1/default.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/mechanic/data/cars/v1/default.ini -------------------------------------------------------------------------------- /tests/mechanic/data/cars/v1/ea.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/mechanic/data/cars/v1/ea.ini -------------------------------------------------------------------------------- /tests/mechanic/data/cars/v1/empty_cfg_base.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/mechanic/data/cars/v1/empty_cfg_base.ini -------------------------------------------------------------------------------- /tests/mechanic/data/cars/v1/hook2/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/mechanic/data/cars/v1/hook2/config.py -------------------------------------------------------------------------------- /tests/mechanic/data/cars/v1/missing_cfg_base.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/mechanic/data/cars/v1/missing_cfg_base.ini -------------------------------------------------------------------------------- /tests/mechanic/data/cars/v1/multi_hook.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/mechanic/data/cars/v1/multi_hook.ini -------------------------------------------------------------------------------- /tests/mechanic/data/cars/v1/vanilla/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/mechanic/data/cars/v1/vanilla/config.ini -------------------------------------------------------------------------------- /tests/mechanic/data/cars/v1/verbose.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/mechanic/data/cars/v1/verbose.ini -------------------------------------------------------------------------------- /tests/mechanic/data/cars/v1/verbose_logging/config.ini: -------------------------------------------------------------------------------- 1 | [variables] 2 | verbose_logging = true 3 | -------------------------------------------------------------------------------- /tests/mechanic/data/cars/v1/with_hook.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/mechanic/data/cars/v1/with_hook.ini -------------------------------------------------------------------------------- /tests/mechanic/data/cars/v1/with_hook/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/mechanic/data/cars/v1/with_hook/config.py -------------------------------------------------------------------------------- /tests/mechanic/data/plugins/v1/complex_plugin/config-a.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/mechanic/data/plugins/v1/complex_plugin/config-a.ini -------------------------------------------------------------------------------- /tests/mechanic/data/plugins/v1/complex_plugin/config-b.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/mechanic/data/plugins/v1/complex_plugin/config-b.ini -------------------------------------------------------------------------------- /tests/mechanic/data/plugins/v1/core-plugins.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/mechanic/data/plugins/v1/core-plugins.txt -------------------------------------------------------------------------------- /tests/mechanic/data/plugins/v1/my_core_plugin_with_config/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/mechanic/java_resolver_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/mechanic/java_resolver_test.py -------------------------------------------------------------------------------- /tests/mechanic/launcher_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/mechanic/launcher_test.py -------------------------------------------------------------------------------- /tests/mechanic/mechanic_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/mechanic/mechanic_test.py -------------------------------------------------------------------------------- /tests/mechanic/provisioner_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/mechanic/provisioner_test.py -------------------------------------------------------------------------------- /tests/mechanic/supplier_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/mechanic/supplier_test.py -------------------------------------------------------------------------------- /tests/mechanic/team_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/mechanic/team_test.py -------------------------------------------------------------------------------- /tests/metrics_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/metrics_test.py -------------------------------------------------------------------------------- /tests/racecontrol_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/racecontrol_test.py -------------------------------------------------------------------------------- /tests/reporter_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/reporter_test.py -------------------------------------------------------------------------------- /tests/storage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/storage/__init__.py -------------------------------------------------------------------------------- /tests/storage/adapter_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/storage/adapter_test.py -------------------------------------------------------------------------------- /tests/storage/aws_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/storage/aws_test.py -------------------------------------------------------------------------------- /tests/storage/client_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/storage/client_test.py -------------------------------------------------------------------------------- /tests/storage/gc_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/storage/gc_test.py -------------------------------------------------------------------------------- /tests/storage/http_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/storage/http_test.py -------------------------------------------------------------------------------- /tests/storage/manager_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/storage/manager_test.py -------------------------------------------------------------------------------- /tests/storage/mirror_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/storage/mirror_test.py -------------------------------------------------------------------------------- /tests/storage/mirrors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/storage/mirrors.json -------------------------------------------------------------------------------- /tests/storage/range_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/storage/range_test.py -------------------------------------------------------------------------------- /tests/storage/transfer_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/storage/transfer_test.py -------------------------------------------------------------------------------- /tests/telemetry_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/telemetry_test.py -------------------------------------------------------------------------------- /tests/time_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/time_test.py -------------------------------------------------------------------------------- /tests/track/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/track/__init__.py -------------------------------------------------------------------------------- /tests/track/loader_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/track/loader_test.py -------------------------------------------------------------------------------- /tests/track/params_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/track/params_test.py -------------------------------------------------------------------------------- /tests/track/resources/track_fragment_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "item1": "value1" 3 | } 4 | -------------------------------------------------------------------------------- /tests/track/resources/track_fragment_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "item2": "value2" 3 | } 4 | -------------------------------------------------------------------------------- /tests/track/track_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/track/track_test.py -------------------------------------------------------------------------------- /tests/tracker/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/tracker/__init__.py -------------------------------------------------------------------------------- /tests/tracker/corpus_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/tracker/corpus_test.py -------------------------------------------------------------------------------- /tests/tracker/index_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/tracker/index_test.py -------------------------------------------------------------------------------- /tests/types_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/types_test.py -------------------------------------------------------------------------------- /tests/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/utils/__init__.py -------------------------------------------------------------------------------- /tests/utils/cases_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/utils/cases_test.py -------------------------------------------------------------------------------- /tests/utils/collections_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/utils/collections_test.py -------------------------------------------------------------------------------- /tests/utils/console_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/utils/console_test.py -------------------------------------------------------------------------------- /tests/utils/convert_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/utils/convert_test.py -------------------------------------------------------------------------------- /tests/utils/git_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/utils/git_test.py -------------------------------------------------------------------------------- /tests/utils/io_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/utils/io_test.py -------------------------------------------------------------------------------- /tests/utils/jvm_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/utils/jvm_test.py -------------------------------------------------------------------------------- /tests/utils/net_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/utils/net_test.py -------------------------------------------------------------------------------- /tests/utils/opts_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/utils/opts_test.py -------------------------------------------------------------------------------- /tests/utils/pretty_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/utils/pretty_test.py -------------------------------------------------------------------------------- /tests/utils/process_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/utils/process_test.py -------------------------------------------------------------------------------- /tests/utils/repo_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/utils/repo_test.py -------------------------------------------------------------------------------- /tests/utils/resources/certs/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/utils/resources/certs/ca.crt -------------------------------------------------------------------------------- /tests/utils/resources/certs/client.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/utils/resources/certs/client.crt -------------------------------------------------------------------------------- /tests/utils/resources/certs/client.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/utils/resources/certs/client.key -------------------------------------------------------------------------------- /tests/utils/resources/client_options_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/utils/resources/client_options_1.json -------------------------------------------------------------------------------- /tests/utils/resources/client_options_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/utils/resources/client_options_2.json -------------------------------------------------------------------------------- /tests/utils/resources/target_hosts_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/utils/resources/target_hosts_1.json -------------------------------------------------------------------------------- /tests/utils/resources/target_hosts_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/utils/resources/target_hosts_2.json -------------------------------------------------------------------------------- /tests/utils/resources/test.txt: -------------------------------------------------------------------------------- 1 | Sample text for DecompressionTests 2 | -------------------------------------------------------------------------------- /tests/utils/resources/test.txt.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/utils/resources/test.txt.bz2 -------------------------------------------------------------------------------- /tests/utils/resources/test.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/utils/resources/test.txt.gz -------------------------------------------------------------------------------- /tests/utils/resources/test.txt.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/utils/resources/test.txt.tar -------------------------------------------------------------------------------- /tests/utils/resources/test.txt.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/utils/resources/test.txt.tar.bz2 -------------------------------------------------------------------------------- /tests/utils/resources/test.txt.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/utils/resources/test.txt.tar.gz -------------------------------------------------------------------------------- /tests/utils/resources/test.txt.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/utils/resources/test.txt.tgz -------------------------------------------------------------------------------- /tests/utils/resources/test.txt.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/utils/resources/test.txt.zip -------------------------------------------------------------------------------- /tests/utils/resources/test.txt.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/utils/resources/test.txt.zst -------------------------------------------------------------------------------- /tests/utils/threads_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/utils/threads_test.py -------------------------------------------------------------------------------- /tests/utils/versions_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/utils/versions_test.py -------------------------------------------------------------------------------- /tests/version_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/tests/version_test.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/rally/HEAD/uv.lock --------------------------------------------------------------------------------