An Azure machine learning service for building and deploying models.
Anyone have find a solution to it? I meet the same issue.
1 src.run_config.environment = system_managed_env
----> 2 run = exp.submit(src)
C:\Anaconda\lib\site-packages\azureml\core\experiment.py in submit(self, config, tags, **kwargs)
218 submit_func = get_experiment_submit(config)
219 with self._log_context("submit config {}".format(config.class.name)):
--> 220 run = submit_func(config, self.workspace, self.name, **kwargs)
221 if tags is not None:
222 run.set_tags(tags)
C:\Anaconda\lib\site-packages\azureml\core\script_run_config.py in submit(script_run_config, workspace, experiment_name, run_id, _parent_run_id, credential_passthrough)
62 run = _commands.start_run(project, run_config,
63 telemetry_values=script_run_config._telemetry_values,
---> 64 run_id=run_id, parent_run_id=_parent_run_id)
65 run.add_properties(global_tracking_info_registry.gather_all(script_run_config.source_directory))
66
C:\Anaconda\lib\site-packages\azureml_execution_commands.py in start_run(project_object, run_config_object, run_id, injected_files, telemetry_values, parent_run_id, prepare_only, check)
117 raise ExperimentExecutionException("Can not check preparation of local targets")
118 return _start_internal_local_cloud(project_object, run_config_object,
--> 119 **shared_start_run_kwargs)
120 else:
121 return _start_internal(project_object, run_config_object, prepare_check=check,
C:\Anaconda\lib\site-packages\azureml_execution_commands.py in _start_internal_local_cloud(project_object, run_config_object, prepare_only, custom_target_dict, run_id, injected_files, telemetry_values, parent_run_id)
267
268 response = ClientBase._execute_func(requests.post, uri, files=files, headers=headers)
--> 269 _raise_request_error(response, "starting run")
270
271 invocation_zip_path = os.path.join(project_temp_dir, "invocation.zip")
C:\Anaconda\lib\site-packages\azureml_execution_commands.py in _raise_request_error(response, action)
569 # response.text is a JSON from execution service.
570 response_message = get_http_exception_response_string(response)
--> 571 raise ExperimentExecutionException(response_message)
572
573
ExperimentExecutionException: ExperimentExecutionException:
Message: {
"error_details": {
"componentName": "execution",
"correlation": {
"operation": "a6adb9078e64c642a0828802f831f801",
"request": "aea5e681ddf5e549"
},
"environment": "westeurope",
"error": {
"code": "UserError",
"innerError": {
"code": "Conflict",
"innerError": {
"code": "RunIDConflict"
}
},
"message": "Run IDs must be unique within a workspace and can only be used once. Ensure multiple runs with the same ID are not submitted simultaneously.",
"messageFormat": "Run IDs must be unique within a workspace and can only be used once. Ensure multiple runs with the same ID are not submitted simultaneously."
},