when i am running esrally ,
/usr/local/python34/bin/esrally --pipeline=from-distribution --distribution-version=2.3.0
i get some probelems like:
ERROR: Cannot race
Reason: Could not fetch source tree from 'https://github.com/elastic/rally-tracks'
Please check the log file [/home/dba/.rally/benchmarks/races/2016-08-27-08-29-18/local/logs/rally_out.log] for further details first.
and the log is:
2016-08-27 08:29:18,904 rally.main INFO Rally version [0.3.2]
2016-08-27 08:29:18,904 rally.main INFO Command line arguments: Namespace(advanced_config=False, car='defaults', challenge='append-no-conflicts', client_options='timeout:90,request_timeout:90', configuration_name=None, data_paths=None, distribution_repository='release', distribution_version='2.3.0', effective_start_date=datetime.datetime(2016, 8, 27, 8, 29, 18, 898420), offline=False, pipeline='from-distribution', preserve_install=False, quiet=False, report_file='', report_format='markdown', revision='current', rounds=1, subcommand=None, target_hosts='localhost:9200', telemetry='', track='geonames', user_tag='')
2016-08-27 08:29:18,944 rally.racecontrol INFO Resolved download URL [https://download.elasticsearch.org/elasticsearch/release/org/elasticsearch/distribution/tar/elasticsearch/2.3.0/elasticsearch-2.3.0.tar.gz] for version [2.3.0]
2016-08-27 08:29:18,944 rally.racecontrol INFO Skipping download for version [2.3.0]. Found an existing binary locally at [/home/dba/.rally/benchmarks/distributions/elasticsearch-2.3.0.tar.gz].
2016-08-27 08:29:18,949 root ERROR Cannot run subcommand [race].
Traceback (most recent call last):
File "/usr/local/python34/lib/python3.4/site-packages/esrally/rally.py", line 302, in dispatch_sub_command
racecontrol.run(cfg)
File "/usr/local/python34/lib/python3.4/site-packages/esrally/racecontrol.py", line 336, in run
pipeline()
File "/usr/local/python34/lib/python3.4/site-packages/esrally/racecontrol.py", line 58, in call
step()
File "/usr/local/python34/lib/python3.4/site-packages/esrally/racecontrol.py", line 27, in call
self.command(self.ctx)
File "/usr/local/python34/lib/python3.4/site-packages/esrally/racecontrol.py", line 88, in prepare_track
ctx.track = track.load_track(ctx.config, track_name)
File "/usr/local/python34/lib/python3.4/site-packages/esrally/track.py", line 237, in load_track
repo = TrackRepository(cfg)
File "/usr/local/python34/lib/python3.4/site-packages/esrally/track.py", line 321, in init
git.fetch(src=self.tracks_dir, remote=self.url)
File "/usr/local/python34/lib/python3.4/site-packages/esrally/utils/git.py", line 27, in fetch
raise exceptions.SupplyError("Could not fetch source tree from '%s'" % remote)
esrally.exceptions.SupplyError: Could not fetch source tree from 'https://github.com/elastic/rally-tracks'
and my rally configure is
[meta]
config.version = 5
[system]
root.dir = /home/dba/.rally/benchmarks
log.root.dir = logs
env.name = local
[source]
local.src.dir = /home/dba/.rally/benchmarks/src
remote.repo.url = https://github.com/elastic/elasticsearch.git
[build]
gradle.bin = /usr/local/gradle-2.13/bin/gradle
[provisioning]
local.install.dir = install
[runtime]
java8.home = /usr/java/jdk1.8.0_101
[benchmarks]
local.dataset.cache = ${system:root.dir}/data
[reporting]
datastore.type = in-memory
datastore.host =
datastore.port =
datastore.secure =
datastore.user =
datastore.password =
[tracks]
default.url = https://github.com/elastic/rally-tracks
i was stuck here for two days , i was wondering why?
anthor question is that how can i use rally without network?