[docs]defexecute(experiment_run_definition:Union[ExperimentRunInputTypes,List[ExperimentRunInputTypes]],runtime_config:Union[str,TextIO,dict,None]=None,)->Tuple[List[str],ExecutorState]:"""Provides a single-line command to start an experiment and set a runtime configuration Parameters ---------- experiment_run_definition: 1. Already set ExperimentRun object 2. Any text stream 3. The path to a file The configuration from which the experiment is loaded. runtime_config: 1. Any text stream 2. dict 3. None The Runtime configuration applicable for the run. Note that even when no additional source is provided, runtime will load a minimal configuration from build-in defaults. Returns ------- typing.Tuple[Sequence[str], ExecutorState] A tuple containing: 1. The list of all experiment run IDs 2. The final state of the executor """ifruntime_config:RuntimeConfig().load(runtime_config)# There is an implicit loading of the default config. The object returned# by RuntimeConfig() has at least the default loaded, and tries to load# from the search path. So there is no reason to have an explicit load()# here.ifnotisinstance(experiment_run_definition,List):experiment_run_definition=[experiment_run_definition]experiment_run_definition=[Path(i)ifisinstance(i,str)elseiforiinexperiment_run_definition]experiment_run_definition=list(chain.from_iterable(i.rglob("*.y*ml")ifisinstance(i,Path)andi.is_dir()else[i]foriinexperiment_run_definition))experiment_runs=[ExperimentRun.load(i)ifnotisinstance(i,ExperimentRun)elseiforiinexperiment_run_definition]if(notRuntimeConfig().store_uriisNoneandRuntimeConfig().store_uri.startswith("elasticsearch")):try:fromelasticsearchimportElasticsearchyaml=ruamel.yaml.YAML(typ="safe")_e_client=Elasticsearch(hosts=RuntimeConfig().store_uri.replace("elasticsearch+",""),verify_certs=False,)foreinexperiment_run_definition:withopen(str(e),"r")asy_file:yml=yaml.load(y_file)file={"experiment_runs_instance_id":experiment_runs[0].instance_uid,"start_time":datetime.utcnow(),"type":"experiment_run","file":yml,}_=_e_client.index(index="palaestrai",document=file)_e_client.close()exceptImportErrorase:LOG.debug("Could not load ElasticSearch client: %s",e)exceptExceptionase:LOG.exception("Could not connect to ElasticSearch: %s",e)nest_asyncio.apply()executor=Executor()executor.schedule(experiment_runs)executor_final_state=asyncio.run(executor.execute())return[e.uidforeinexperiment_runs],executor_final_state