From 24b96008f778c0cfb6a629f8dd0e4d979fbdfdfc Mon Sep 17 00:00:00 2001 From: Zhengfei Wang Date: Fri, 18 Nov 2022 16:40:30 +0800 Subject: [PATCH 1/7] test: for sweep node optional input --- .../tests/dsl/unittests/test_dsl_pipeline.py | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/sdk/ml/azure-ai-ml/tests/dsl/unittests/test_dsl_pipeline.py b/sdk/ml/azure-ai-ml/tests/dsl/unittests/test_dsl_pipeline.py index 5a4d6886cb8f..a94b276660b3 100644 --- a/sdk/ml/azure-ai-ml/tests/dsl/unittests/test_dsl_pipeline.py +++ b/sdk/ml/azure-ai-ml/tests/dsl/unittests/test_dsl_pipeline.py @@ -2136,3 +2136,33 @@ def spark_pipeline_from_yaml(iris_data): "outputs": {"output": {"job_output_type": "uri_folder", "mode": "Direct"}}, "settings": {"_source": "DSL"}, } + + def test_node_sweep_with_optional_input(self) -> None: + component_yaml = components_dir / "helloworld_component_optional_input.yml" + component_func = load_component(component_yaml) + + @dsl.pipeline + def pipeline_func(): + node1 = component_func(required_input=1, optional_input=2) # noqa: F841 + node2 = component_func(required_input=1) # noqa: F841 + node3 = component_func(required_input=1) + node_sweep = node3.sweep( + primary_metric="training_f1_score", + goal="minimize", + sampling_algorithm="random", + ) + node_sweep.set_limits( + max_total_trials=20, + max_concurrent_trials=10, + ) + + pipeline_job = pipeline_func() + jobs_dict = pipeline_job._to_rest_object().as_dict()["properties"]["jobs"] + # for node1 inputs, should contain required_input and optional_input; + # while for node2 and node_sweep, should only contain required_input. + assert jobs_dict["node1"]["inputs"] == { + "required_input": {"job_input_type": "literal", "value": "1"}, + "optional_input": {"job_input_type": "literal", "value": "2"}, + } + assert jobs_dict["node2"]["inputs"] == {"required_input": {"job_input_type": "literal", "value": "1"}} + assert jobs_dict["node_sweep"]["inputs"] == {"required_input": {"job_input_type": "literal", "value": "1"}} From 3248a90dc041d19a8d203f25ebbf609084c5ceec Mon Sep 17 00:00:00 2001 From: Zhengfei Wang Date: Fri, 18 Nov 2022 16:46:09 +0800 Subject: [PATCH 2/7] test: add test related component spec --- .../helloworld_component_optional_input.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_component_optional_input.yml diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_component_optional_input.yml b/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_component_optional_input.yml new file mode 100644 index 000000000000..0d40047d82e5 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_component_optional_input.yml @@ -0,0 +1,13 @@ +$schema: https://azuremlschemas.azureedge.net/latest/commandJob.schema.json +name: helloworld_component_optional_input +command: ls +inputs: + required_input: + type: integer + optional: false + optional_input: + type: integer + optional: true +environment: + image: library/python:latest +compute: azureml:cpu-cluster \ No newline at end of file From dc0f5f935f5201ef9d4d8f8085d6f58d2248ab1b Mon Sep 17 00:00:00 2001 From: Zhengfei Wang Date: Fri, 18 Nov 2022 16:46:26 +0800 Subject: [PATCH 3/7] fix: remove None input for Sweep node --- .../azure/ai/ml/entities/_builders/sweep.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_builders/sweep.py b/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_builders/sweep.py index c6c8bc68cbbb..bb7df7cd3422 100644 --- a/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_builders/sweep.py +++ b/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_builders/sweep.py @@ -261,6 +261,16 @@ def _to_job(self) -> SweepJob: def _get_component_attr_name(cls): return "trial" + def _build_inputs(self): + inputs = super(Sweep, self)._build_inputs() + built_inputs = {} + # Validate and remove non-specified inputs + for key, value in inputs.items(): + if value is not None: + built_inputs[key] = value + + return built_inputs + @classmethod def _create_schema_for_validation(cls, context) -> Union[PathAwareSchema, Schema]: from azure.ai.ml._schema.pipeline.component_job import SweepSchema From 3befa9a37be0274047ede364c4dbce304257ccd1 Mon Sep 17 00:00:00 2001 From: Zhengfei Wang Date: Fri, 18 Nov 2022 16:51:28 +0800 Subject: [PATCH 4/7] update CHANGELOG --- sdk/ml/azure-ai-ml/CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/sdk/ml/azure-ai-ml/CHANGELOG.md b/sdk/ml/azure-ai-ml/CHANGELOG.md index b57a93332df8..70552dc3a3c2 100644 --- a/sdk/ml/azure-ai-ml/CHANGELOG.md +++ b/sdk/ml/azure-ai-ml/CHANGELOG.md @@ -1,5 +1,10 @@ # Release History +## 1.2.0 (Unreleased) + +### Bugs Fixed +- Fix sweep job optional input cannot be None. + ## 1.1.1 (Unreleased) ## Features Added From 5448c95b0e7f6e8cd4008aca4240d2e1a5c1b99f Mon Sep 17 00:00:00 2001 From: Zhengfei Wang Date: Fri, 18 Nov 2022 17:59:47 +0800 Subject: [PATCH 5/7] fix: update breaking tests recordings --- ...binding_expression[0-input_basic.yml].json | 604 ++++++++++-------- ...ssion[1-input_literal_cross_type.yml].json | 430 +++++++------ ...ion[10-run_settings_sweep_choice.yml].json | 449 +++++++------ ...ion[11-run_settings_sweep_limits.yml].json | 447 +++++++------ ..._expression[2-input_literal_meta.yml].json | 422 ++++++------ ..._binding_expression[3-input_path.yml].json | 430 +++++++------ ...ression[4-input_path_concatenate.yml].json | 431 +++++++------ ...ession[5-input_reason_expression.yml].json | 433 +++++++------ ...ssion[6-input_string_concatenate.yml].json | 441 +++++++------ ...xpression[7-run_settings_compute.yml].json | 441 +++++++------ ...xpression[8-run_settings_literal.yml].json | 441 +++++++------ ...ion[9-run_settings_sweep_literal.yml].json | 449 +++++++------ ...eJobtest_pipeline_job_with_sweep_node.json | 595 ++++++++--------- ...termination_policy[policy_yaml_dict0].json | 580 ++++++++--------- ...termination_policy[policy_yaml_dict1].json | 580 ++++++++--------- ...termination_policy[policy_yaml_dict2].json | 580 ++++++++--------- ...termination_policy[policy_yaml_dict3].json | 578 ++++++++--------- 17 files changed, 4183 insertions(+), 4148 deletions(-) diff --git a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_data_binding_expression[0-input_basic.yml].json b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_data_binding_expression[0-input_basic.yml].json index 1e7d6557aabb..6a7b67d230e9 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_data_binding_expression[0-input_basic.yml].json +++ b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_data_binding_expression[0-input_basic.yml].json @@ -1,49 +1,53 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2324", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:08:00 GMT", + "Date": "Fri, 18 Nov 2022 09:54:51 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-fd0245d11d558a825f329958d9ba9d4c-16793ddb6982f5d1-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-6b611ccc4e450e48328f9f0256938acf-c1bb34194381e97c-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "76129ebd-8a38-48ed-a161-b7a2447b9fe8", - "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-correlation-request-id": "8284d00e-796d-43e2-8730-56ab10fbcb95", + "x-ms-ratelimit-remaining-subscription-reads": "11999", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080801Z:76129ebd-8a38-48ed-a161-b7a2447b9fe8", - "x-request-time": "0.033" + "x-ms-routing-request-id": "JAPANEAST:20221118T095451Z:8284d00e-796d-43e2-8730-56ab10fbcb95", + "x-request-time": "0.223" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2", + "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-10-10T07:44:03.2104968\u002B00:00", - "modifiedOn": "2022-11-08T03:58:27.2396848\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2", + "computeLocation": "centraluseuap", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -52,38 +56,40 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, "currentNodeCount": 2, - "targetNodeCount": 0, + "targetNodeCount": 3, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 0, + "runningNodeCount": 2, "idleNodeCount": 0, "unusableNodeCount": 0, - "leavingNodeCount": 2, + "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-11-09T08:05:13.531\u002B00:00", + "allocationStateTransitionTime": "2022-11-18T09:54:33.929\u002B00:00", "errors": [ { "error": { "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_22ef6b2454a4d7020ae0509a0ed488c4efc2b26c6eeb699555614f462b85653b_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_2f648ede638979a526f7fa7b345fbc5026cdf791a5b1c3ba210d6f9168c8e632_d: There is not enough disk space on the node", + "message": "ComputeNode.Id=tvmps_cb9237aaedb6e8d84ff1060da66d025a09b00f35f4dba0cf409a69c4c564de2f_d: There is not enough disk space on the node", "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - }, { "code": "Message", "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." } ] } + }, + { + "error": { + "code": "ClusterCoreQuotaReached", + "message": "Operation results in exceeding quota limits of Total Cluster Dedicated Regional vCPUs. Maximum allowed: 100, Current in use: 100, Additional requested: 2. Click here to view and request for quota: https://portal.azure.com/#resource/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/quotaUsage" + } } ], "remoteLoginPortPublicAccess": "Enabled", @@ -102,28 +108,32 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1068", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:08:03 GMT", + "Date": "Fri, 18 Nov 2022 09:54:53 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-0ad8c2ea2896d60625bcbf63235c3c10-5f1156d2ba1c827c-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-9a0d6e82e20b90bdb5c6ca2c383cdac9-8c9ef285a2358f33-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "10f657a5-cb8f-455a-98a1-aa2bce97a32c", - "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-correlation-request-id": "79d968d3-c70a-4ba3-97bd-5f1795ce6795", + "x-ms-ratelimit-remaining-subscription-reads": "11998", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080803Z:10f657a5-cb8f-455a-98a1-aa2bce97a32c", - "x-request-time": "0.123" + "x-ms-routing-request-id": "JAPANEAST:20221118T095454Z:79d968d3-c70a-4ba3-97bd-5f1795ce6795", + "x-request-time": "0.091" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -138,17 +148,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sav3u7rijui4cza", - "containerName": "azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3", + "accountName": "teststorageaccount", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-10-10T07:43:07.7818269\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-10-10T07:43:08.5293577\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -162,27 +172,29 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "61", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:08:04 GMT", + "Date": "Fri, 18 Nov 2022 09:54:54 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-112685c8bb33882c14cc85f939e37762-d1fa3db72003f682-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-5a03f7177ff9b53100f3e60bbe215f1a-3f7d4db7ac28cdc9-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2ce3fea7-4565-4fd5-8b0c-4e0e6a87fb96", - "x-ms-ratelimit-remaining-subscription-writes": "1186", + "x-ms-correlation-request-id": "f0abe736-699a-4a01-9159-9788730d9fe7", + "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080804Z:2ce3fea7-4565-4fd5-8b0c-4e0e6a87fb96", - "x-request-time": "0.083" + "x-ms-routing-request-id": "JAPANEAST:20221118T095455Z:f0abe736-699a-4a01-9159-9788730d9fe7", + "x-request-time": "0.244" }, "ResponseBody": { "secretsType": "AccountKey", @@ -190,14 +202,14 @@ } }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:08:04 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:54:58 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -207,9 +219,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 09 Nov 2022 08:08:05 GMT", - "ETag": "\u00220x8DAC13EFDFF2C0D\u0022", - "Last-Modified": "Tue, 08 Nov 2022 04:09:11 GMT", + "Date": "Fri, 18 Nov 2022 09:54:55 GMT", + "ETag": "\u00220x8DA9D48E17467D7\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:49:17 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -218,10 +230,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 08 Nov 2022 04:09:11 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:49:16 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "5d0c2440-3f92-4bf0-a277-a2158e0ee09d", + "x-ms-meta-name": "9c9cfba9-82bd-45db-ad06-07009d1d9672", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -230,20 +242,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:08:05 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:54:59 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 09 Nov 2022 08:08:05 GMT", + "Date": "Fri, 18 Nov 2022 09:54:55 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -256,15 +268,15 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "288", + "Content-Length": "291", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -274,31 +286,35 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "811", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:08:06 GMT", + "Date": "Fri, 18 Nov 2022 09:54:57 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-c69c80681b94acfe1f6a3b4ba825c97d-fa747f96e3734851-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-fb1f7584eb689e1422b7b743d01929e0-26549b475338c173-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "459fc5b9-c7dd-446e-a23c-47ff4206a1e2", - "x-ms-ratelimit-remaining-subscription-writes": "1175", + "x-ms-correlation-request-id": "a9d97a70-a163-4ff9-8484-957a3efc7ece", + "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080806Z:459fc5b9-c7dd-446e-a23c-47ff4206a1e2", - "x-request-time": "0.062" + "x-ms-routing-request-id": "JAPANEAST:20221118T095457Z:a9d97a70-a163-4ff9-8484-957a3efc7ece", + "x-request-time": "0.392" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -310,14 +326,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-11-08T04:09:13.0225939\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-09-23T09:49:20.984936\u002B00:00", + "createdBy": "Ying Chen", "createdByType": "User", - "lastModifiedAt": "2022-11-09T08:08:05.941099\u002B00:00", - "lastModifiedBy": "Honglin Du", + "lastModifiedAt": "2022-11-18T09:54:57.7823367\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -331,7 +347,7 @@ "Connection": "keep-alive", "Content-Length": "1903", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -345,7 +361,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo ${{inputs.component_in_integer}} \u0026 echo ${{inputs.component_in_number}} \u0026 echo ${{inputs.component_in_string}} \u0026 echo ${{inputs.component_in_other_string}} \u0026 $[[echo ${{inputs.component_in_file}} \u0026]] $[[echo ${{inputs.component_in_folder}} \u0026]] echo ${{outputs.component_out_folder}} \u003E ${{outputs.component_out_folder}}/sample1.csv", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1", "distribution": { "type": "mpi", @@ -406,26 +422,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3227", + "Content-Length": "3237", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:08:07 GMT", + "Date": "Fri, 18 Nov 2022 09:54:58 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-40268fe950c4e304c779f69498bf745c-7164e07147fc71e9-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-9fab248ac30011a47ad67ed3a7ca590a-e26d68ca9c025636-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "472489f1-7a33-4c6b-9d89-37451f4d17bf", - "x-ms-ratelimit-remaining-subscription-writes": "1174", + "x-ms-correlation-request-id": "86a04580-c838-43bf-878f-45a454687101", + "x-ms-ratelimit-remaining-subscription-writes": "1198", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080807Z:472489f1-7a33-4c6b-9d89-37451f4d17bf", - "x-request-time": "0.408" + "x-ms-routing-request-id": "JAPANEAST:20221118T095459Z:86a04580-c838-43bf-878f-45a454687101", + "x-request-time": "1.222" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/6a4052ab-f41c-4712-ac1e-624ecc23f4b9", - "name": "6a4052ab-f41c-4712-ac1e-624ecc23f4b9", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a616645b-40a4-451c-a0fa-133659da8132", + "name": "a616645b-40a4-451c-a0fa-133659da8132", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -438,7 +454,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "6a4052ab-f41c-4712-ac1e-624ecc23f4b9", + "version": "a616645b-40a4-451c-a0fa-133659da8132", "display_name": "CommandComponentBasic", "is_deterministic": "True", "type": "command", @@ -488,8 +504,8 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1", - "environment": "azureml://registries/azureml/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", + "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" }, @@ -502,11 +518,11 @@ } }, "systemData": { - "createdAt": "2022-11-08T09:47:25.8969284\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-11-18T09:50:27.9443643\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-11-08T09:47:26.0605759\u002B00:00", - "lastModifiedBy": "Honglin Du", + "lastModifiedAt": "2022-11-18T09:50:28.4394476\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -518,28 +534,32 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1068", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:08:07 GMT", + "Date": "Fri, 18 Nov 2022 09:54:59 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-9e17075328e601980ee92c52d08e8101-3879a8dddc78c092-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-545b742adb25ebb6df52955d6050191a-ac5351630dca5dfe-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7e818381-ea04-4b43-a127-29e8146b53b8", - "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-correlation-request-id": "e6a04b5b-3fbb-46df-97f6-a5dc0b9bd18d", + "x-ms-ratelimit-remaining-subscription-reads": "11997", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080807Z:7e818381-ea04-4b43-a127-29e8146b53b8", - "x-request-time": "0.092" + "x-ms-routing-request-id": "JAPANEAST:20221118T095500Z:e6a04b5b-3fbb-46df-97f6-a5dc0b9bd18d", + "x-request-time": "0.086" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -554,17 +574,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sav3u7rijui4cza", - "containerName": "azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3", + "accountName": "teststorageaccount", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-10-10T07:43:07.7818269\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-10-10T07:43:08.5293577\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -578,27 +598,29 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "61", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:08:08 GMT", + "Date": "Fri, 18 Nov 2022 09:55:00 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-a69e14abf857d16d78ccd3e6123e57cd-d1b7e8dcda9979f7-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-3c94d5c64b0b90e90b540591d61f9e00-01c98c837390ea0c-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "121c48f2-7002-4928-8ab1-c57cc942c2ec", - "x-ms-ratelimit-remaining-subscription-writes": "1185", + "x-ms-correlation-request-id": "fc31f34c-0642-4502-91cf-b92958bdc2f3", + "x-ms-ratelimit-remaining-subscription-writes": "1198", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080808Z:121c48f2-7002-4928-8ab1-c57cc942c2ec", - "x-request-time": "0.102" + "x-ms-routing-request-id": "JAPANEAST:20221118T095501Z:fc31f34c-0642-4502-91cf-b92958bdc2f3", + "x-request-time": "0.107" }, "ResponseBody": { "secretsType": "AccountKey", @@ -606,14 +628,14 @@ } }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:08:08 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:55:04 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -623,9 +645,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 09 Nov 2022 08:08:08 GMT", - "ETag": "\u00220x8DAC13EFDFF2C0D\u0022", - "Last-Modified": "Tue, 08 Nov 2022 04:09:11 GMT", + "Date": "Fri, 18 Nov 2022 09:55:00 GMT", + "ETag": "\u00220x8DA9D48E17467D7\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:49:17 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -634,10 +656,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 08 Nov 2022 04:09:11 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:49:16 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "5d0c2440-3f92-4bf0-a277-a2158e0ee09d", + "x-ms-meta-name": "9c9cfba9-82bd-45db-ad06-07009d1d9672", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -646,20 +668,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:08:08 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:55:04 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 09 Nov 2022 08:08:09 GMT", + "Date": "Fri, 18 Nov 2022 09:55:00 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -672,15 +694,15 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "288", + "Content-Length": "291", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -690,31 +712,35 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "812", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:08:09 GMT", + "Date": "Fri, 18 Nov 2022 09:55:01 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-82d88e54bb222c5e461b4d08fbb61395-f4b065b2e3ea0182-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-21b5620ea29f510cc5296bbed12ebbd8-61e0569091dcbf3c-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "22ec4e7b-08db-44ba-afc5-4f6f209fb3be", - "x-ms-ratelimit-remaining-subscription-writes": "1173", + "x-ms-correlation-request-id": "6c8ddce8-19f9-4a72-a592-7d900af50b45", + "x-ms-ratelimit-remaining-subscription-writes": "1197", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080809Z:22ec4e7b-08db-44ba-afc5-4f6f209fb3be", - "x-request-time": "0.082" + "x-ms-routing-request-id": "JAPANEAST:20221118T095502Z:6c8ddce8-19f9-4a72-a592-7d900af50b45", + "x-request-time": "0.266" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -726,14 +752,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-11-08T04:09:13.0225939\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-09-23T09:49:20.984936\u002B00:00", + "createdBy": "Ying Chen", "createdByType": "User", - "lastModifiedAt": "2022-11-09T08:08:09.6157353\u002B00:00", - "lastModifiedBy": "Honglin Du", + "lastModifiedAt": "2022-11-18T09:55:02.1639872\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -747,7 +773,7 @@ "Connection": "keep-alive", "Content-Length": "1837", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -761,7 +787,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo ${{inputs.component_in_integer}} \u0026 echo ${{inputs.component_in_number}} \u0026 echo ${{inputs.component_in_string}} \u0026 echo ${{inputs.component_in_other_string}} \u0026 $[[echo ${{inputs.component_in_file}} \u0026]] $[[echo ${{inputs.component_in_folder}} \u0026]] echo ${{outputs.component_out_folder}} \u003E ${{outputs.component_out_folder}}/sample1.csv", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1", "name": "azureml_anonymous", "description": "This is the basic command component", @@ -818,26 +844,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3128", + "Content-Length": "3139", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:08:10 GMT", + "Date": "Fri, 18 Nov 2022 09:55:03 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-530fa1fce2853f2e45bcd9fbbc390936-48900633d75b66b0-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-b3b1689856ac019b797e43b8abe716ac-a2bf79abf92b36a0-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6e16d994-5938-4445-9971-96d3a1dc0de5", - "x-ms-ratelimit-remaining-subscription-writes": "1172", + "x-ms-correlation-request-id": "c904a14d-86a4-477f-a0a5-9179acc1af4d", + "x-ms-ratelimit-remaining-subscription-writes": "1196", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080810Z:6e16d994-5938-4445-9971-96d3a1dc0de5", - "x-request-time": "0.441" + "x-ms-routing-request-id": "JAPANEAST:20221118T095504Z:c904a14d-86a4-477f-a0a5-9179acc1af4d", + "x-request-time": "1.046" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f28835f2-9bb5-446d-8d52-f0cc6fe51907", - "name": "f28835f2-9bb5-446d-8d52-f0cc6fe51907", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f2514b9a-4479-4269-a4d1-af363b7a2480", + "name": "f2514b9a-4479-4269-a4d1-af363b7a2480", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -850,7 +876,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "f28835f2-9bb5-446d-8d52-f0cc6fe51907", + "version": "f2514b9a-4479-4269-a4d1-af363b7a2480", "display_name": "CommandComponentBasic", "is_deterministic": "True", "type": "command", @@ -900,8 +926,8 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1", - "environment": "azureml://registries/azureml/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", + "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" }, @@ -910,11 +936,11 @@ } }, "systemData": { - "createdAt": "2022-11-08T09:47:29.799922\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-11-18T09:50:33.0464018\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-11-08T09:47:29.9700963\u002B00:00", - "lastModifiedBy": "Honglin Du", + "lastModifiedAt": "2022-11-18T09:50:33.5643861\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -926,28 +952,32 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1068", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:08:11 GMT", + "Date": "Fri, 18 Nov 2022 09:55:03 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-24536b8ed77d41b23abaf4f8bf09324e-66ecbba0725b2b04-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-c0ef5cce289ffcf272ebca7a0ebb83aa-ae312b77e0e4c59b-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "330c298c-fbb8-426a-ab9b-ba6ed528515e", - "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-correlation-request-id": "48a94e69-f9c1-4a61-ab7a-2307bf2d526a", + "x-ms-ratelimit-remaining-subscription-reads": "11996", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080811Z:330c298c-fbb8-426a-ab9b-ba6ed528515e", - "x-request-time": "0.100" + "x-ms-routing-request-id": "JAPANEAST:20221118T095504Z:48a94e69-f9c1-4a61-ab7a-2307bf2d526a", + "x-request-time": "0.116" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -962,17 +992,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sav3u7rijui4cza", - "containerName": "azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3", + "accountName": "teststorageaccount", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-10-10T07:43:07.7818269\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-10-10T07:43:08.5293577\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -986,27 +1016,29 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "61", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:08:11 GMT", + "Date": "Fri, 18 Nov 2022 09:55:04 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-481ca2676df9ba6608e60a7408251365-6ea53d6e0f279186-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-7378b3fa2cc57c4b6ab36520186f6864-58bb10862cd792f1-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2f998017-520f-4dfa-9f40-d5adf95924dd", - "x-ms-ratelimit-remaining-subscription-writes": "1184", + "x-ms-correlation-request-id": "57f8e8d4-9b54-4e07-a25b-5307bfe0beab", + "x-ms-ratelimit-remaining-subscription-writes": "1197", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080811Z:2f998017-520f-4dfa-9f40-d5adf95924dd", - "x-request-time": "0.089" + "x-ms-routing-request-id": "JAPANEAST:20221118T095505Z:57f8e8d4-9b54-4e07-a25b-5307bfe0beab", + "x-request-time": "0.112" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1014,26 +1046,26 @@ } }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:08:11 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:55:08 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Accept-Ranges": "bytes", - "Content-Length": "499", - "Content-MD5": "kD7N5\u002BygjTfbYTFhyEo7RA==", + "Content-Length": "508", + "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Wed, 09 Nov 2022 08:08:12 GMT", - "ETag": "\u00220x8DAC154D3DF99CE\u0022", - "Last-Modified": "Tue, 08 Nov 2022 06:45:30 GMT", + "Date": "Fri, 18 Nov 2022 09:55:04 GMT", + "ETag": "\u00220x8DA9D48AFBCE5A6\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:47:53 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1042,32 +1074,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 08 Nov 2022 06:45:29 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:47:53 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "5fa55015-0323-4a0f-b7c2-1db6ccd3acbf", + "x-ms-meta-name": "da405283-c0d4-42bf-9cd0-2d052c9da84b", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "c0fd52f9-f2ed-44bf-bed3-c2f92c2fd4aa", + "x-ms-meta-version": "bcdecfd5-08fc-40e1-af7f-364ca3525a76", "x-ms-server-encrypted": "true", "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:08:12 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:55:08 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 09 Nov 2022 08:08:12 GMT", + "Date": "Fri, 18 Nov 2022 09:55:04 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1086,28 +1118,32 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1068", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:08:13 GMT", + "Date": "Fri, 18 Nov 2022 09:55:05 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-b8871955206eea156ba96d8f2389d83d-58613a51341c5bb1-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-bd6e22a431e420d231dd697eb7a5d17a-b5f4dd4ab2766c74-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7a858b7c-2642-4cb6-8843-6105d88ff82b", - "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-correlation-request-id": "2551de96-f3d6-4ae8-a549-503a1cd538d0", + "x-ms-ratelimit-remaining-subscription-reads": "11995", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080813Z:7a858b7c-2642-4cb6-8843-6105d88ff82b", - "x-request-time": "0.107" + "x-ms-routing-request-id": "JAPANEAST:20221118T095506Z:2551de96-f3d6-4ae8-a549-503a1cd538d0", + "x-request-time": "0.083" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -1122,17 +1158,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sav3u7rijui4cza", - "containerName": "azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3", + "accountName": "teststorageaccount", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-10-10T07:43:07.7818269\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-10-10T07:43:08.5293577\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -1146,27 +1182,29 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "61", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:08:13 GMT", + "Date": "Fri, 18 Nov 2022 09:55:06 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-2aed910a65223042006b3dc262af1a48-57e2304af6b8b4fc-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-15ac4a38ca64fb564df6f98607761532-9de1f4014f0842ba-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b771c942-7a7b-43a4-a98f-6358b7883197", - "x-ms-ratelimit-remaining-subscription-writes": "1183", + "x-ms-correlation-request-id": "ae27214b-fdfb-4baa-b555-0ceb28c806ca", + "x-ms-ratelimit-remaining-subscription-writes": "1196", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080814Z:b771c942-7a7b-43a4-a98f-6358b7883197", - "x-request-time": "0.094" + "x-ms-routing-request-id": "JAPANEAST:20221118T095506Z:ae27214b-fdfb-4baa-b555-0ceb28c806ca", + "x-request-time": "0.096" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1174,26 +1212,26 @@ } }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:08:13 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:55:10 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Accept-Ranges": "bytes", - "Content-Length": "499", - "Content-MD5": "kD7N5\u002BygjTfbYTFhyEo7RA==", + "Content-Length": "508", + "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Wed, 09 Nov 2022 08:08:14 GMT", - "ETag": "\u00220x8DAC16E43415F71\u0022", - "Last-Modified": "Tue, 08 Nov 2022 09:47:34 GMT", + "Date": "Fri, 18 Nov 2022 09:55:06 GMT", + "ETag": "\u00220x8DA9D50123677EA\u0022", + "Last-Modified": "Fri, 23 Sep 2022 10:40:45 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1202,32 +1240,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 08 Nov 2022 09:47:34 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 10:40:45 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "a91c6464-f7fd-456e-b9e2-34951833ad6f", + "x-ms-meta-name": "0bd2889b-e21f-47f4-a44f-9ce6f86d2ed8", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "8ce5b729-ff48-46b3-a426-10230356c2cb", + "x-ms-meta-version": "24e72261-b9f5-4bf0-a875-b7edffb41cd8", "x-ms-server-encrypted": "true", "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/az-ml-artifacts/00000000000000000000000000000000/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:08:14 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:55:10 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 09 Nov 2022 08:08:14 GMT", + "Date": "Fri, 18 Nov 2022 09:55:06 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1240,7 +1278,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_483498993338?api-version=2022-10-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_261905361698?api-version=2022-10-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -1248,7 +1286,7 @@ "Connection": "keep-alive", "Content-Length": "2264", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -1312,7 +1350,7 @@ } }, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/6a4052ab-f41c-4712-ac1e-624ecc23f4b9" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a616645b-40a4-451c-a0fa-133659da8132" }, "node_output_binding": { "name": "node_output_binding", @@ -1324,7 +1362,7 @@ } }, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f28835f2-9bb5-446d-8d52-f0cc6fe51907" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f2514b9a-4479-4269-a4d1-af363b7a2480" } }, "outputs": {}, @@ -1336,26 +1374,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4958", + "Content-Length": "4964", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:08:20 GMT", + "Date": "Fri, 18 Nov 2022 09:55:11 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_483498993338?api-version=2022-10-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_261905361698?api-version=2022-10-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-13881fffefe670e66037a5f79510b277-49acd2ec20a2cc36-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-0a46260ad4b4748bebb6c333f774a5e2-658882caff3628a2-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "12e8188a-8a63-4d1b-bf3e-71b2f761197a", - "x-ms-ratelimit-remaining-subscription-writes": "1171", + "x-ms-correlation-request-id": "afe0bb26-4e70-440d-9fc6-0e4629bd138b", + "x-ms-ratelimit-remaining-subscription-writes": "1195", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080820Z:12e8188a-8a63-4d1b-bf3e-71b2f761197a", - "x-request-time": "3.648" + "x-ms-routing-request-id": "JAPANEAST:20221118T095512Z:afe0bb26-4e70-440d-9fc6-0e4629bd138b", + "x-request-time": "3.079" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_483498993338", - "name": "test_483498993338", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_261905361698", + "name": "test_261905361698", "type": "Microsoft.MachineLearningServices/workspaces/jobs", "properties": { "description": "The hello world pipeline job with data binding", @@ -1382,7 +1420,7 @@ "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null, @@ -1391,7 +1429,7 @@ "Studio": { "jobServiceType": "Studio", "port": null, - "endpoint": "https://ml.azure.com/runs/test_483498993338?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "endpoint": "https://ml.azure.com/runs/test_261905361698?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, "properties": null, @@ -1429,7 +1467,7 @@ } }, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/6a4052ab-f41c-4712-ac1e-624ecc23f4b9" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a616645b-40a4-451c-a0fa-133659da8132" }, "node_output_binding": { "name": "node_output_binding", @@ -1441,7 +1479,7 @@ } }, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f28835f2-9bb5-446d-8d52-f0cc6fe51907" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f2514b9a-4479-4269-a4d1-af363b7a2480" } }, "inputs": { @@ -1482,14 +1520,14 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-11-09T08:08:20.5115498\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-11-18T09:55:11.739609\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } } ], "Variables": { - "name": "test_483498993338" + "name": "test_261905361698" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_data_binding_expression[1-input_literal_cross_type.yml].json b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_data_binding_expression[1-input_literal_cross_type.yml].json index 3143086ff6d3..9764df2dacec 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_data_binding_expression[1-input_literal_cross_type.yml].json +++ b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_data_binding_expression[1-input_literal_cross_type.yml].json @@ -1,49 +1,53 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2324", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:08:25 GMT", + "Date": "Fri, 18 Nov 2022 09:55:16 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-b691b4fb135312c1943e525d03d45c2d-ea0b0296fb2c81e2-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-d6f6e35601a2688a7f405c70c30e0db6-5aea4710e7ef2743-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "401768f6-4317-4994-9f78-8e24f44cfdf0", - "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-correlation-request-id": "a5e3ea3b-57aa-450b-9fac-824272915424", + "x-ms-ratelimit-remaining-subscription-reads": "11994", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080825Z:401768f6-4317-4994-9f78-8e24f44cfdf0", - "x-request-time": "0.050" + "x-ms-routing-request-id": "JAPANEAST:20221118T095517Z:a5e3ea3b-57aa-450b-9fac-824272915424", + "x-request-time": "0.225" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2", + "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-10-10T07:44:03.2104968\u002B00:00", - "modifiedOn": "2022-11-08T03:58:27.2396848\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2", + "computeLocation": "centraluseuap", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -52,32 +56,28 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, "currentNodeCount": 2, - "targetNodeCount": 0, + "targetNodeCount": 4, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 0, + "runningNodeCount": 2, "idleNodeCount": 0, "unusableNodeCount": 0, - "leavingNodeCount": 2, + "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-11-09T08:05:13.531\u002B00:00", + "allocationStateTransitionTime": "2022-11-18T09:55:11.193\u002B00:00", "errors": [ { "error": { "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_22ef6b2454a4d7020ae0509a0ed488c4efc2b26c6eeb699555614f462b85653b_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_2f648ede638979a526f7fa7b345fbc5026cdf791a5b1c3ba210d6f9168c8e632_d: There is not enough disk space on the node", + "message": "ComputeNode.Id=tvmps_cb9237aaedb6e8d84ff1060da66d025a09b00f35f4dba0cf409a69c4c564de2f_d: There is not enough disk space on the node", "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - }, { "code": "Message", "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." @@ -102,28 +102,32 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1068", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:08:27 GMT", + "Date": "Fri, 18 Nov 2022 09:55:18 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-e944afcf1f65b3db5b67ac744a7851b6-8c1ab89ae99d512e-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-a389a7305935f87ceb7e49eb9bb3d31f-443eed18874c0b46-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9c60be28-61e0-481c-a841-4bbc482c518e", - "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-correlation-request-id": "b28831a9-2948-4e37-a5fb-375b3a67e627", + "x-ms-ratelimit-remaining-subscription-reads": "11993", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080827Z:9c60be28-61e0-481c-a841-4bbc482c518e", - "x-request-time": "0.092" + "x-ms-routing-request-id": "JAPANEAST:20221118T095519Z:b28831a9-2948-4e37-a5fb-375b3a67e627", + "x-request-time": "0.091" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -138,17 +142,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sav3u7rijui4cza", - "containerName": "azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3", + "accountName": "teststorageaccount", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-10-10T07:43:07.7818269\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-10-10T07:43:08.5293577\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -162,27 +166,29 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "61", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:08:27 GMT", + "Date": "Fri, 18 Nov 2022 09:55:19 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-fcf9bff6451408c32c38659d0043e212-0106a52639010a1b-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-8018ff833ba21f0479c0be599856d634-dbff42dea9a08f95-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2ab59ec7-8a35-428d-8cf6-3c65d49b61b3", - "x-ms-ratelimit-remaining-subscription-writes": "1182", + "x-ms-correlation-request-id": "334d76dc-8ccd-4772-bfc1-be441bef6e6a", + "x-ms-ratelimit-remaining-subscription-writes": "1195", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080827Z:2ab59ec7-8a35-428d-8cf6-3c65d49b61b3", - "x-request-time": "0.203" + "x-ms-routing-request-id": "JAPANEAST:20221118T095519Z:334d76dc-8ccd-4772-bfc1-be441bef6e6a", + "x-request-time": "0.099" }, "ResponseBody": { "secretsType": "AccountKey", @@ -190,14 +196,14 @@ } }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:08:27 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:55:23 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -207,9 +213,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 09 Nov 2022 08:08:28 GMT", - "ETag": "\u00220x8DAC13EFDFF2C0D\u0022", - "Last-Modified": "Tue, 08 Nov 2022 04:09:11 GMT", + "Date": "Fri, 18 Nov 2022 09:55:19 GMT", + "ETag": "\u00220x8DA9D48E17467D7\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:49:17 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -218,10 +224,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 08 Nov 2022 04:09:11 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:49:16 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "5d0c2440-3f92-4bf0-a277-a2158e0ee09d", + "x-ms-meta-name": "9c9cfba9-82bd-45db-ad06-07009d1d9672", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -230,20 +236,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:08:28 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:55:23 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 09 Nov 2022 08:08:28 GMT", + "Date": "Fri, 18 Nov 2022 09:55:19 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -256,15 +262,15 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "288", + "Content-Length": "291", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -274,31 +280,35 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "812", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:08:29 GMT", + "Date": "Fri, 18 Nov 2022 09:55:20 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-e89cec8c7e2005f088b66de1c3928fe2-9bd32431cba551e9-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-fbb1015a917797a8c992311618fe7af8-6dcd14366b3a5e5d-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c7b10640-b31c-4641-8b7e-595d0b30ccaa", - "x-ms-ratelimit-remaining-subscription-writes": "1170", + "x-ms-correlation-request-id": "7ef48047-3570-4e8a-913c-f3371686f4fd", + "x-ms-ratelimit-remaining-subscription-writes": "1194", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080829Z:c7b10640-b31c-4641-8b7e-595d0b30ccaa", - "x-request-time": "0.081" + "x-ms-routing-request-id": "JAPANEAST:20221118T095521Z:7ef48047-3570-4e8a-913c-f3371686f4fd", + "x-request-time": "0.255" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -310,14 +320,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-11-08T04:09:13.0225939\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-09-23T09:49:20.984936\u002B00:00", + "createdBy": "Ying Chen", "createdByType": "User", - "lastModifiedAt": "2022-11-09T08:08:29.0540947\u002B00:00", - "lastModifiedBy": "Honglin Du", + "lastModifiedAt": "2022-11-18T09:55:21.0088759\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -331,7 +341,7 @@ "Connection": "keep-alive", "Content-Length": "1837", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -345,7 +355,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo ${{inputs.component_in_integer}} \u0026 echo ${{inputs.component_in_number}} \u0026 echo ${{inputs.component_in_string}} \u0026 echo ${{inputs.component_in_other_string}} \u0026 $[[echo ${{inputs.component_in_file}} \u0026]] $[[echo ${{inputs.component_in_folder}} \u0026]] echo ${{outputs.component_out_folder}} \u003E ${{outputs.component_out_folder}}/sample1.csv", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1", "name": "azureml_anonymous", "description": "This is the basic command component", @@ -402,26 +412,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3128", + "Content-Length": "3139", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:08:30 GMT", + "Date": "Fri, 18 Nov 2022 09:55:22 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-6e5da5a4ca29f38c9893fc1a005d5aad-6218f59e1920922b-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-ac5e1d6fe3595d422eb0cfb6e662a691-6e841ad52450522c-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "710e769f-dc2b-48db-9ae9-4d2e9096f2e9", - "x-ms-ratelimit-remaining-subscription-writes": "1169", + "x-ms-correlation-request-id": "13b91007-8952-42af-9e54-44c1132bc24b", + "x-ms-ratelimit-remaining-subscription-writes": "1193", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080830Z:710e769f-dc2b-48db-9ae9-4d2e9096f2e9", - "x-request-time": "0.519" + "x-ms-routing-request-id": "JAPANEAST:20221118T095522Z:13b91007-8952-42af-9e54-44c1132bc24b", + "x-request-time": "1.063" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f28835f2-9bb5-446d-8d52-f0cc6fe51907", - "name": "f28835f2-9bb5-446d-8d52-f0cc6fe51907", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f2514b9a-4479-4269-a4d1-af363b7a2480", + "name": "f2514b9a-4479-4269-a4d1-af363b7a2480", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -434,7 +444,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "f28835f2-9bb5-446d-8d52-f0cc6fe51907", + "version": "f2514b9a-4479-4269-a4d1-af363b7a2480", "display_name": "CommandComponentBasic", "is_deterministic": "True", "type": "command", @@ -484,8 +494,8 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1", - "environment": "azureml://registries/azureml/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", + "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" }, @@ -494,11 +504,11 @@ } }, "systemData": { - "createdAt": "2022-11-08T09:47:29.799922\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-11-18T09:50:33.0464018\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-11-08T09:47:29.9700963\u002B00:00", - "lastModifiedBy": "Honglin Du", + "lastModifiedAt": "2022-11-18T09:50:33.5643861\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -510,28 +520,32 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1068", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:08:30 GMT", + "Date": "Fri, 18 Nov 2022 09:55:22 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-43a968fde18dc65d8d9604e0841a58ae-0d32a9f0e34995ca-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-a0664292ec872f77bdcd5b978427ce3d-d9cf52a17aeb8596-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a95be904-f300-4271-8da9-abdfefd12f1b", - "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-correlation-request-id": "8326b924-1e76-46ff-9d8d-162e00845572", + "x-ms-ratelimit-remaining-subscription-reads": "11992", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080831Z:a95be904-f300-4271-8da9-abdfefd12f1b", - "x-request-time": "0.105" + "x-ms-routing-request-id": "JAPANEAST:20221118T095523Z:8326b924-1e76-46ff-9d8d-162e00845572", + "x-request-time": "0.093" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -546,17 +560,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sav3u7rijui4cza", - "containerName": "azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3", + "accountName": "teststorageaccount", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-10-10T07:43:07.7818269\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-10-10T07:43:08.5293577\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -570,27 +584,29 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "61", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:08:31 GMT", + "Date": "Fri, 18 Nov 2022 09:55:23 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-4905efc437bb94eb264edbfe913eca5d-63f41336b11294e9-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-385f01b6c5916544451f9aea0153f9b9-41253dcab2741d3e-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b78867b0-d595-45f7-96fa-4f8db8b6056b", - "x-ms-ratelimit-remaining-subscription-writes": "1181", + "x-ms-correlation-request-id": "4c34db4b-3d13-48f2-ad99-59d31cbe3df5", + "x-ms-ratelimit-remaining-subscription-writes": "1194", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080831Z:b78867b0-d595-45f7-96fa-4f8db8b6056b", - "x-request-time": "0.083" + "x-ms-routing-request-id": "JAPANEAST:20221118T095523Z:4c34db4b-3d13-48f2-ad99-59d31cbe3df5", + "x-request-time": "0.101" }, "ResponseBody": { "secretsType": "AccountKey", @@ -598,26 +614,26 @@ } }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:08:31 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:55:27 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Accept-Ranges": "bytes", - "Content-Length": "499", - "Content-MD5": "kD7N5\u002BygjTfbYTFhyEo7RA==", + "Content-Length": "508", + "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Wed, 09 Nov 2022 08:08:31 GMT", - "ETag": "\u00220x8DAC154D3DF99CE\u0022", - "Last-Modified": "Tue, 08 Nov 2022 06:45:30 GMT", + "Date": "Fri, 18 Nov 2022 09:55:23 GMT", + "ETag": "\u00220x8DA9D48AFBCE5A6\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:47:53 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -626,32 +642,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 08 Nov 2022 06:45:29 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:47:53 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "5fa55015-0323-4a0f-b7c2-1db6ccd3acbf", + "x-ms-meta-name": "da405283-c0d4-42bf-9cd0-2d052c9da84b", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "c0fd52f9-f2ed-44bf-bed3-c2f92c2fd4aa", + "x-ms-meta-version": "bcdecfd5-08fc-40e1-af7f-364ca3525a76", "x-ms-server-encrypted": "true", "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:08:32 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:55:27 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 09 Nov 2022 08:08:32 GMT", + "Date": "Fri, 18 Nov 2022 09:55:23 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -670,28 +686,32 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1068", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:08:32 GMT", + "Date": "Fri, 18 Nov 2022 09:55:24 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-3c572bcebf812c0ef78924972ca07e9d-b247b0a5d9d73d47-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-6ad644d5d54eb7afff96a02e4866658f-76abc64fad5f1e27-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "326e0b59-883d-4485-bd9f-2e79ee571b57", - "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-correlation-request-id": "12bab8f6-ca95-4791-8656-9d594e7daf88", + "x-ms-ratelimit-remaining-subscription-reads": "11991", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080832Z:326e0b59-883d-4485-bd9f-2e79ee571b57", - "x-request-time": "0.075" + "x-ms-routing-request-id": "JAPANEAST:20221118T095524Z:12bab8f6-ca95-4791-8656-9d594e7daf88", + "x-request-time": "0.092" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -706,17 +726,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sav3u7rijui4cza", - "containerName": "azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3", + "accountName": "teststorageaccount", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-10-10T07:43:07.7818269\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-10-10T07:43:08.5293577\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -730,27 +750,29 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "61", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:08:33 GMT", + "Date": "Fri, 18 Nov 2022 09:55:24 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-b6e7b75cbf39a23e298d6be09dc6f882-5b0f70b077b079ab-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-ae3e91933e8333b6b2d490b996e0e16e-002a6d3dd31a0df6-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6e71a675-b32c-406d-bac3-f234dcc941e3", - "x-ms-ratelimit-remaining-subscription-writes": "1180", + "x-ms-correlation-request-id": "037090d2-ff1f-430b-8883-032174697453", + "x-ms-ratelimit-remaining-subscription-writes": "1193", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080833Z:6e71a675-b32c-406d-bac3-f234dcc941e3", - "x-request-time": "0.091" + "x-ms-routing-request-id": "JAPANEAST:20221118T095525Z:037090d2-ff1f-430b-8883-032174697453", + "x-request-time": "0.098" }, "ResponseBody": { "secretsType": "AccountKey", @@ -758,26 +780,26 @@ } }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:08:33 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:55:28 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Accept-Ranges": "bytes", - "Content-Length": "499", - "Content-MD5": "kD7N5\u002BygjTfbYTFhyEo7RA==", + "Content-Length": "508", + "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Wed, 09 Nov 2022 08:08:33 GMT", - "ETag": "\u00220x8DAC16E43415F71\u0022", - "Last-Modified": "Tue, 08 Nov 2022 09:47:34 GMT", + "Date": "Fri, 18 Nov 2022 09:55:24 GMT", + "ETag": "\u00220x8DA9D50123677EA\u0022", + "Last-Modified": "Fri, 23 Sep 2022 10:40:45 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -786,32 +808,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 08 Nov 2022 09:47:34 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 10:40:45 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "a91c6464-f7fd-456e-b9e2-34951833ad6f", + "x-ms-meta-name": "0bd2889b-e21f-47f4-a44f-9ce6f86d2ed8", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "8ce5b729-ff48-46b3-a426-10230356c2cb", + "x-ms-meta-version": "24e72261-b9f5-4bf0-a875-b7edffb41cd8", "x-ms-server-encrypted": "true", "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/az-ml-artifacts/00000000000000000000000000000000/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:08:33 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:55:29 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 09 Nov 2022 08:08:34 GMT", + "Date": "Fri, 18 Nov 2022 09:55:25 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -824,7 +846,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_330371390594?api-version=2022-10-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_605969300810?api-version=2022-10-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -832,7 +854,7 @@ "Connection": "keep-alive", "Content-Length": "1511", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -884,7 +906,7 @@ } }, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f28835f2-9bb5-446d-8d52-f0cc6fe51907" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f2514b9a-4479-4269-a4d1-af363b7a2480" } }, "outputs": {}, @@ -896,26 +918,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3965", + "Content-Length": "3971", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:08:40 GMT", + "Date": "Fri, 18 Nov 2022 09:55:30 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_330371390594?api-version=2022-10-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_605969300810?api-version=2022-10-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-405f8487cb3bdbc47e18a57dc20f2cc7-b90bc83185ff4f15-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-5dff7449c96a59e15658fbd4c400d7e3-4541e8c8e729265b-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c35983d2-975e-4443-88ae-a3a76883553f", - "x-ms-ratelimit-remaining-subscription-writes": "1168", + "x-ms-correlation-request-id": "cd479318-f5ef-45ec-b8fd-3f92ad3c3b3e", + "x-ms-ratelimit-remaining-subscription-writes": "1192", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080840Z:c35983d2-975e-4443-88ae-a3a76883553f", - "x-request-time": "3.407" + "x-ms-routing-request-id": "JAPANEAST:20221118T095531Z:cd479318-f5ef-45ec-b8fd-3f92ad3c3b3e", + "x-request-time": "3.054" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_330371390594", - "name": "test_330371390594", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_605969300810", + "name": "test_605969300810", "type": "Microsoft.MachineLearningServices/workspaces/jobs", "properties": { "description": "The hello world pipeline job with data binding", @@ -942,7 +964,7 @@ "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null, @@ -951,7 +973,7 @@ "Studio": { "jobServiceType": "Studio", "port": null, - "endpoint": "https://ml.azure.com/runs/test_330371390594?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "endpoint": "https://ml.azure.com/runs/test_605969300810?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, "properties": null, @@ -977,7 +999,7 @@ } }, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f28835f2-9bb5-446d-8d52-f0cc6fe51907" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f2514b9a-4479-4269-a4d1-af363b7a2480" } }, "inputs": { @@ -1018,14 +1040,14 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-11-09T08:08:40.2102712\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-11-18T09:55:30.243172\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } } ], "Variables": { - "name": "test_330371390594" + "name": "test_605969300810" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_data_binding_expression[10-run_settings_sweep_choice.yml].json b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_data_binding_expression[10-run_settings_sweep_choice.yml].json index 8019b0073324..200b6ceb0014 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_data_binding_expression[10-run_settings_sweep_choice.yml].json +++ b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_data_binding_expression[10-run_settings_sweep_choice.yml].json @@ -1,49 +1,53 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1500", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:11:24 GMT", + "Date": "Fri, 18 Nov 2022 09:57:57 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-816ab68bff666353718a52a4d9b6056a-76efb6b8276b4096-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-c2065dd2e5ecc60272162739ec209b01-dda82fbe5176b68d-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "14533811-f510-4ed3-a165-880cd73f3f4b", - "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-correlation-request-id": "319aec1a-4f86-4669-803a-1e7595b806c6", + "x-ms-ratelimit-remaining-subscription-reads": "11958", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081125Z:14533811-f510-4ed3-a165-880cd73f3f4b", - "x-request-time": "0.034" + "x-ms-routing-request-id": "JAPANEAST:20221118T095758Z:319aec1a-4f86-4669-803a-1e7595b806c6", + "x-request-time": "0.214" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2", + "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-10-10T07:44:03.2104968\u002B00:00", - "modifiedOn": "2022-11-08T03:58:27.2396848\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2", + "computeLocation": "centraluseuap", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -52,23 +56,36 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 0, - "targetNodeCount": 0, + "currentNodeCount": 3, + "targetNodeCount": 4, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 0, + "runningNodeCount": 3, "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Steady", - "allocationStateTransitionTime": "2022-11-09T08:07:30.719\u002B00:00", - "errors": null, + "allocationState": "Resizing", + "allocationStateTransitionTime": "2022-11-18T09:57:27.409\u002B00:00", + "errors": [ + { + "error": { + "code": "DiskFull", + "message": "ComputeNode.Id=tvmps_cb9237aaedb6e8d84ff1060da66d025a09b00f35f4dba0cf409a69c4c564de2f_d: There is not enough disk space on the node", + "details": [ + { + "code": "Message", + "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." + } + ] + } + } + ], "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -85,28 +102,32 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1068", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:11:26 GMT", + "Date": "Fri, 18 Nov 2022 09:58:05 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-890cda83db600055cad4f45271978290-e3fcdda7af166e4d-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-dbe44d0c46854b16c086d2ff4a82c9c4-dc8e004d74cede4a-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "92a2242a-b454-4829-b5e4-ec5d4bbd3133", - "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-correlation-request-id": "7a138db5-5b3c-4e31-950f-ded793945c4f", + "x-ms-ratelimit-remaining-subscription-reads": "11957", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081127Z:92a2242a-b454-4829-b5e4-ec5d4bbd3133", - "x-request-time": "0.083" + "x-ms-routing-request-id": "JAPANEAST:20221118T095806Z:7a138db5-5b3c-4e31-950f-ded793945c4f", + "x-request-time": "0.106" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -121,17 +142,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sav3u7rijui4cza", - "containerName": "azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3", + "accountName": "teststorageaccount", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-10-10T07:43:07.7818269\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-10-10T07:43:08.5293577\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -145,27 +166,29 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "61", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:11:27 GMT", + "Date": "Fri, 18 Nov 2022 09:58:05 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-4d3a1cc952eb90d493884c5eb11104b1-e5e709b9712e8c4c-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-13586d894fe6b1de4ebdb77546674793-94ca855760c0af98-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "35b659c3-0f76-41b7-bd21-68d4c495e4d3", - "x-ms-ratelimit-remaining-subscription-writes": "1155", + "x-ms-correlation-request-id": "dbf2cfa3-0d78-473e-8344-c285fed07370", + "x-ms-ratelimit-remaining-subscription-writes": "1168", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081128Z:35b659c3-0f76-41b7-bd21-68d4c495e4d3", - "x-request-time": "0.109" + "x-ms-routing-request-id": "JAPANEAST:20221118T095806Z:dbf2cfa3-0d78-473e-8344-c285fed07370", + "x-request-time": "0.141" }, "ResponseBody": { "secretsType": "AccountKey", @@ -173,14 +196,14 @@ } }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:11:28 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:58:10 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -190,9 +213,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 09 Nov 2022 08:11:28 GMT", - "ETag": "\u00220x8DAC13EFDFF2C0D\u0022", - "Last-Modified": "Tue, 08 Nov 2022 04:09:11 GMT", + "Date": "Fri, 18 Nov 2022 09:58:06 GMT", + "ETag": "\u00220x8DA9D48E17467D7\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:49:17 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -201,10 +224,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 08 Nov 2022 04:09:11 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:49:16 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "5d0c2440-3f92-4bf0-a277-a2158e0ee09d", + "x-ms-meta-name": "9c9cfba9-82bd-45db-ad06-07009d1d9672", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -213,20 +236,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:11:28 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:58:10 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 09 Nov 2022 08:11:29 GMT", + "Date": "Fri, 18 Nov 2022 09:58:06 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -239,15 +262,15 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "288", + "Content-Length": "291", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -257,31 +280,35 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "812", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:11:29 GMT", + "Date": "Fri, 18 Nov 2022 09:58:07 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-0f64c6244130f090013d7c80fe43fd98-78dfdc68ec098cb4-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-661b2bb307de8de9373f6dce57d23f04-3fcde11b38eb4c3a-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bbd96859-d4d4-4c32-b6d2-b078aec1ba75", - "x-ms-ratelimit-remaining-subscription-writes": "1143", + "x-ms-correlation-request-id": "677fa824-95c1-4f80-a694-3c7c2da975ed", + "x-ms-ratelimit-remaining-subscription-writes": "1167", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081130Z:bbd96859-d4d4-4c32-b6d2-b078aec1ba75", - "x-request-time": "0.091" + "x-ms-routing-request-id": "JAPANEAST:20221118T095808Z:677fa824-95c1-4f80-a694-3c7c2da975ed", + "x-request-time": "0.249" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -293,14 +320,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-11-08T04:09:13.0225939\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-09-23T09:49:20.984936\u002B00:00", + "createdBy": "Ying Chen", "createdByType": "User", - "lastModifiedAt": "2022-11-09T08:11:29.9626133\u002B00:00", - "lastModifiedBy": "Honglin Du", + "lastModifiedAt": "2022-11-18T09:58:07.8591885\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -314,7 +341,7 @@ "Connection": "keep-alive", "Content-Length": "1895", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -328,7 +355,7 @@ "isArchived": false, "componentSpec": { "command": "echo \u0022Start training ...\u0022 \u0026\u0026 python mnist.py --data_folder ${{inputs.data_folder}} --batch_size ${{inputs.batch_size}} --first_layer_neurons ${{inputs.first_layer_neurons}} --second_layer_neurons ${{inputs.second_layer_neurons}} --third_layer_neurons ${{inputs.third_layer_neurons}} --epochs ${{inputs.epochs}} --f1 ${{inputs.f1}} --f2 ${{inputs.f2}} --weight_decay ${{inputs.weight_decay}} --momentum ${{inputs.momentum}} --learning_rate ${{inputs.learning_rate}} --saved_model ${{outputs.trained_model_dir}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1", "name": "azureml_anonymous", "description": "This is the command component for sweep", @@ -392,26 +419,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3485", + "Content-Length": "3495", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:11:30 GMT", + "Date": "Fri, 18 Nov 2022 09:58:08 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-d099940ae7e028704e5d15689e4c9246-b80a24a25c955dc4-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-4df17048a5b3a387ac2925b8d2215baa-4eb298043281c460-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "faf67cb0-af15-4f49-b124-562be4044f20", - "x-ms-ratelimit-remaining-subscription-writes": "1142", + "x-ms-correlation-request-id": "f6c1a45a-c787-442d-85ce-97ea8a2044ac", + "x-ms-ratelimit-remaining-subscription-writes": "1166", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081131Z:faf67cb0-af15-4f49-b124-562be4044f20", - "x-request-time": "0.660" + "x-ms-routing-request-id": "JAPANEAST:20221118T095809Z:f6c1a45a-c787-442d-85ce-97ea8a2044ac", + "x-request-time": "1.099" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/5af25209-e882-4123-89c4-6c596c33cdfa", - "name": "5af25209-e882-4123-89c4-6c596c33cdfa", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/747e9377-9711-4601-97cc-2b4f13ed39c3", + "name": "747e9377-9711-4601-97cc-2b4f13ed39c3", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -424,7 +451,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "5af25209-e882-4123-89c4-6c596c33cdfa", + "version": "747e9377-9711-4601-97cc-2b4f13ed39c3", "display_name": "CommandComponentForSweep", "is_deterministic": "True", "type": "command", @@ -489,8 +516,8 @@ "type": "mlflow_model" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1", - "environment": "azureml://registries/azureml/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", + "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" }, @@ -499,11 +526,11 @@ } }, "systemData": { - "createdAt": "2022-11-08T09:45:24.9421611\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-11-18T09:44:37.4149466\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-11-08T09:45:25.1129232\u002B00:00", - "lastModifiedBy": "Honglin Du", + "lastModifiedAt": "2022-11-18T09:44:37.9494974\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -515,28 +542,32 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1068", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:11:31 GMT", + "Date": "Fri, 18 Nov 2022 09:58:09 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-0e6bf96c75175717ce13735823f4b79d-6d519e522ea9f542-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-2d6eb4af25724c2623e43b401c44e678-195cbac67e660f93-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "192ca6f6-493c-4553-8c40-42b251a9b39d", - "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-correlation-request-id": "63fb29a5-7c35-4e8b-9b91-4b74d5c58446", + "x-ms-ratelimit-remaining-subscription-reads": "11956", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081132Z:192ca6f6-493c-4553-8c40-42b251a9b39d", - "x-request-time": "0.130" + "x-ms-routing-request-id": "JAPANEAST:20221118T095810Z:63fb29a5-7c35-4e8b-9b91-4b74d5c58446", + "x-request-time": "0.087" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -551,17 +582,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sav3u7rijui4cza", - "containerName": "azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3", + "accountName": "teststorageaccount", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-10-10T07:43:07.7818269\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-10-10T07:43:08.5293577\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -575,27 +606,29 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "61", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:11:32 GMT", + "Date": "Fri, 18 Nov 2022 09:58:10 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-31d2be7c06bbaddca96abc1f3d1c4397-14d0073cfcb89ede-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-6018b977de828e9aeae999add2098543-1673915006b00f44-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9601fb88-79da-454f-a974-7e0d39f703d7", - "x-ms-ratelimit-remaining-subscription-writes": "1154", + "x-ms-correlation-request-id": "bca8c00b-a5d8-4572-a980-cf53e13002c7", + "x-ms-ratelimit-remaining-subscription-writes": "1167", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081133Z:9601fb88-79da-454f-a974-7e0d39f703d7", - "x-request-time": "0.419" + "x-ms-routing-request-id": "JAPANEAST:20221118T095810Z:bca8c00b-a5d8-4572-a980-cf53e13002c7", + "x-request-time": "0.087" }, "ResponseBody": { "secretsType": "AccountKey", @@ -603,26 +636,26 @@ } }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:11:33 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:58:14 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Accept-Ranges": "bytes", - "Content-Length": "499", - "Content-MD5": "kD7N5\u002BygjTfbYTFhyEo7RA==", + "Content-Length": "508", + "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Wed, 09 Nov 2022 08:11:33 GMT", - "ETag": "\u00220x8DAC154D3DF99CE\u0022", - "Last-Modified": "Tue, 08 Nov 2022 06:45:30 GMT", + "Date": "Fri, 18 Nov 2022 09:58:10 GMT", + "ETag": "\u00220x8DA9D48AFBCE5A6\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:47:53 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -631,32 +664,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 08 Nov 2022 06:45:29 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:47:53 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "5fa55015-0323-4a0f-b7c2-1db6ccd3acbf", + "x-ms-meta-name": "da405283-c0d4-42bf-9cd0-2d052c9da84b", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "c0fd52f9-f2ed-44bf-bed3-c2f92c2fd4aa", + "x-ms-meta-version": "bcdecfd5-08fc-40e1-af7f-364ca3525a76", "x-ms-server-encrypted": "true", "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:11:33 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:58:14 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 09 Nov 2022 08:11:33 GMT", + "Date": "Fri, 18 Nov 2022 09:58:10 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -675,28 +708,32 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1068", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:11:33 GMT", + "Date": "Fri, 18 Nov 2022 09:58:11 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-8721a74373afdbfcc37d080cc727062c-644dc74f8361f338-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-b8da3e031b520e15437a5163c974c03c-53aea8546a113798-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cb5366df-f681-45d8-8a29-9a250c6d8cbb", - "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-correlation-request-id": "4d6dd7b8-4ab4-4c7d-8ec9-fe265194f03a", + "x-ms-ratelimit-remaining-subscription-reads": "11955", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081134Z:cb5366df-f681-45d8-8a29-9a250c6d8cbb", - "x-request-time": "0.082" + "x-ms-routing-request-id": "JAPANEAST:20221118T095812Z:4d6dd7b8-4ab4-4c7d-8ec9-fe265194f03a", + "x-request-time": "0.081" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -711,17 +748,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sav3u7rijui4cza", - "containerName": "azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3", + "accountName": "teststorageaccount", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-10-10T07:43:07.7818269\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-10-10T07:43:08.5293577\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -735,27 +772,29 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "61", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:11:34 GMT", + "Date": "Fri, 18 Nov 2022 09:58:11 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-dc8035cf45bdd46dcbd4bf1c3e79bf38-fc8a9caf13269952-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-a699ac2e855c2dc4147d013e931b316f-622cd5a718a58230-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6f44199b-0860-434b-8cbd-7fa0e3796dba", - "x-ms-ratelimit-remaining-subscription-writes": "1153", + "x-ms-correlation-request-id": "ec8eea54-fd46-4c76-9410-bc4aec315256", + "x-ms-ratelimit-remaining-subscription-writes": "1166", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081135Z:6f44199b-0860-434b-8cbd-7fa0e3796dba", - "x-request-time": "0.171" + "x-ms-routing-request-id": "JAPANEAST:20221118T095812Z:ec8eea54-fd46-4c76-9410-bc4aec315256", + "x-request-time": "0.088" }, "ResponseBody": { "secretsType": "AccountKey", @@ -763,26 +802,26 @@ } }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:11:35 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:58:16 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Accept-Ranges": "bytes", - "Content-Length": "499", - "Content-MD5": "kD7N5\u002BygjTfbYTFhyEo7RA==", + "Content-Length": "508", + "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Wed, 09 Nov 2022 08:11:35 GMT", - "ETag": "\u00220x8DAC16E43415F71\u0022", - "Last-Modified": "Tue, 08 Nov 2022 09:47:34 GMT", + "Date": "Fri, 18 Nov 2022 09:58:12 GMT", + "ETag": "\u00220x8DA9D50123677EA\u0022", + "Last-Modified": "Fri, 23 Sep 2022 10:40:45 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -791,32 +830,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 08 Nov 2022 09:47:34 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 10:40:45 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "a91c6464-f7fd-456e-b9e2-34951833ad6f", + "x-ms-meta-name": "0bd2889b-e21f-47f4-a44f-9ce6f86d2ed8", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "8ce5b729-ff48-46b3-a426-10230356c2cb", + "x-ms-meta-version": "24e72261-b9f5-4bf0-a875-b7edffb41cd8", "x-ms-server-encrypted": "true", "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/az-ml-artifacts/00000000000000000000000000000000/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:11:35 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:58:16 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 09 Nov 2022 08:11:36 GMT", + "Date": "Fri, 18 Nov 2022 09:58:12 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -829,15 +868,15 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_495282251801?api-version=2022-10-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_793726880006?api-version=2022-10-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "2425", + "Content-Length": "2380", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -905,9 +944,6 @@ "job_input_type": "literal", "value": "${{parent.inputs.job_in_folder}}" }, - "batch_size": { - "job_input_type": "literal" - }, "first_layer_neurons": { "job_input_type": "literal", "value": "32" @@ -951,7 +987,7 @@ }, "_source": "YAML.JOB", "trial": { - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/5af25209-e882-4123-89c4-6c596c33cdfa" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/747e9377-9711-4601-97cc-2b4f13ed39c3" } } }, @@ -964,26 +1000,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "5587", + "Content-Length": "5515", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:11:41 GMT", + "Date": "Fri, 18 Nov 2022 09:58:19 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_495282251801?api-version=2022-10-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_793726880006?api-version=2022-10-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-71273c7557a4ea46c2dcd02806aad1ee-e11e063d1c6facfc-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-b3777cfcb126f580d87fd14bfffa75ee-fafba66ed0d8e4fb-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "55959837-9e6a-4eef-915e-61918ac8457a", - "x-ms-ratelimit-remaining-subscription-writes": "1141", + "x-ms-correlation-request-id": "b22ac6a2-4ae6-4d26-a174-24b76210ea75", + "x-ms-ratelimit-remaining-subscription-writes": "1165", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081142Z:55959837-9e6a-4eef-915e-61918ac8457a", - "x-request-time": "3.300" + "x-ms-routing-request-id": "JAPANEAST:20221118T095820Z:b22ac6a2-4ae6-4d26-a174-24b76210ea75", + "x-request-time": "3.595" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_495282251801", - "name": "test_495282251801", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_793726880006", + "name": "test_793726880006", "type": "Microsoft.MachineLearningServices/workspaces/jobs", "properties": { "description": "The hello world pipeline job with data binding", @@ -1010,7 +1046,7 @@ "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null, @@ -1019,7 +1055,7 @@ "Studio": { "jobServiceType": "Studio", "port": null, - "endpoint": "https://ml.azure.com/runs/test_495282251801?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "endpoint": "https://ml.azure.com/runs/test_793726880006?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, "properties": null, @@ -1061,9 +1097,6 @@ "job_input_type": "literal", "value": "${{parent.inputs.job_in_folder}}" }, - "batch_size": { - "job_input_type": "literal" - }, "first_layer_neurons": { "job_input_type": "literal", "value": "32" @@ -1107,7 +1140,7 @@ }, "_source": "YAML.JOB", "trial": { - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/5af25209-e882-4123-89c4-6c596c33cdfa" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/747e9377-9711-4601-97cc-2b4f13ed39c3" } } }, @@ -1149,14 +1182,14 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-11-09T08:11:42.3396282\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-11-18T09:58:19.1513857\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } } ], "Variables": { - "name": "test_495282251801" + "name": "test_793726880006" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_data_binding_expression[11-run_settings_sweep_limits.yml].json b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_data_binding_expression[11-run_settings_sweep_limits.yml].json index 8449db76c64a..3eb659719ecc 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_data_binding_expression[11-run_settings_sweep_limits.yml].json +++ b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_data_binding_expression[11-run_settings_sweep_limits.yml].json @@ -1,49 +1,53 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1500", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:11:48 GMT", + "Date": "Fri, 18 Nov 2022 09:58:26 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-07ec92ad26d68b4fdc52cc5aef7b4b13-e319a703af5941c8-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-49e9966bcf40431ea361d4658572287e-d0594d1d9382edea-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a1a248b4-2818-403e-b40f-27047407e057", - "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-correlation-request-id": "5ab9f816-07e7-4fe5-b722-cfddd05068d6", + "x-ms-ratelimit-remaining-subscription-reads": "11954", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081148Z:a1a248b4-2818-403e-b40f-27047407e057", - "x-request-time": "0.042" + "x-ms-routing-request-id": "JAPANEAST:20221118T095826Z:5ab9f816-07e7-4fe5-b722-cfddd05068d6", + "x-request-time": "0.221" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2", + "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-10-10T07:44:03.2104968\u002B00:00", - "modifiedOn": "2022-11-08T03:58:27.2396848\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2", + "computeLocation": "centraluseuap", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -52,23 +56,36 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 0, - "targetNodeCount": 0, + "currentNodeCount": 3, + "targetNodeCount": 4, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 0, + "runningNodeCount": 3, "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Steady", - "allocationStateTransitionTime": "2022-11-09T08:07:30.719\u002B00:00", - "errors": null, + "allocationState": "Resizing", + "allocationStateTransitionTime": "2022-11-18T09:57:27.409\u002B00:00", + "errors": [ + { + "error": { + "code": "DiskFull", + "message": "ComputeNode.Id=tvmps_cb9237aaedb6e8d84ff1060da66d025a09b00f35f4dba0cf409a69c4c564de2f_d: There is not enough disk space on the node", + "details": [ + { + "code": "Message", + "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." + } + ] + } + } + ], "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -85,28 +102,32 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1068", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:11:50 GMT", + "Date": "Fri, 18 Nov 2022 09:58:29 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-9bc8a629f2c76583f573ccd110ea5cfd-f89bc1b731eefa48-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-a208528d6f181f621942a89d160d2282-f68deda879f5be9f-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8506739e-b9e9-4b08-bfc1-4a701645084d", - "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-correlation-request-id": "6c861e7e-8246-4648-977f-6b9bbe9ff21f", + "x-ms-ratelimit-remaining-subscription-reads": "11953", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081150Z:8506739e-b9e9-4b08-bfc1-4a701645084d", - "x-request-time": "0.096" + "x-ms-routing-request-id": "JAPANEAST:20221118T095829Z:6c861e7e-8246-4648-977f-6b9bbe9ff21f", + "x-request-time": "0.117" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -121,17 +142,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sav3u7rijui4cza", - "containerName": "azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3", + "accountName": "teststorageaccount", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-10-10T07:43:07.7818269\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-10-10T07:43:08.5293577\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -145,27 +166,29 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "61", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:11:51 GMT", + "Date": "Fri, 18 Nov 2022 09:58:30 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-39f8692967c16d1727af22666691d6bb-cc8f9fadf735c637-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-98181c5017512884767e5d3622b23f18-2761f497f3456571-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c0ff8a2c-accd-4100-b945-81eeab780baf", - "x-ms-ratelimit-remaining-subscription-writes": "1152", + "x-ms-correlation-request-id": "2fd74d12-3e06-413c-bcbc-b915623a8bd9", + "x-ms-ratelimit-remaining-subscription-writes": "1165", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081151Z:c0ff8a2c-accd-4100-b945-81eeab780baf", - "x-request-time": "0.087" + "x-ms-routing-request-id": "JAPANEAST:20221118T095830Z:2fd74d12-3e06-413c-bcbc-b915623a8bd9", + "x-request-time": "0.172" }, "ResponseBody": { "secretsType": "AccountKey", @@ -173,14 +196,14 @@ } }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:11:51 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:58:33 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -190,9 +213,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 09 Nov 2022 08:11:51 GMT", - "ETag": "\u00220x8DAC13EFDFF2C0D\u0022", - "Last-Modified": "Tue, 08 Nov 2022 04:09:11 GMT", + "Date": "Fri, 18 Nov 2022 09:58:29 GMT", + "ETag": "\u00220x8DA9D48E17467D7\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:49:17 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -201,10 +224,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 08 Nov 2022 04:09:11 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:49:16 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "5d0c2440-3f92-4bf0-a277-a2158e0ee09d", + "x-ms-meta-name": "9c9cfba9-82bd-45db-ad06-07009d1d9672", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -213,20 +236,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:11:51 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:58:34 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 09 Nov 2022 08:11:51 GMT", + "Date": "Fri, 18 Nov 2022 09:58:30 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -239,15 +262,15 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "288", + "Content-Length": "291", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -257,31 +280,35 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "812", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:11:52 GMT", + "Date": "Fri, 18 Nov 2022 09:58:31 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-5b32e22dc0b77683273176b8e1ed35d5-c99edc96ac34a7f2-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-24d237ea8ddb07a2812a16e26d78e440-99a12daaf640b87a-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f3995134-a793-4414-83aa-884c3322224b", - "x-ms-ratelimit-remaining-subscription-writes": "1140", + "x-ms-correlation-request-id": "b46e20cb-0df0-482c-a560-3b0fd1875ced", + "x-ms-ratelimit-remaining-subscription-writes": "1164", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081152Z:f3995134-a793-4414-83aa-884c3322224b", - "x-request-time": "0.068" + "x-ms-routing-request-id": "JAPANEAST:20221118T095831Z:b46e20cb-0df0-482c-a560-3b0fd1875ced", + "x-request-time": "0.353" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -293,14 +320,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-11-08T04:09:13.0225939\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-09-23T09:49:20.984936\u002B00:00", + "createdBy": "Ying Chen", "createdByType": "User", - "lastModifiedAt": "2022-11-09T08:11:52.4787875\u002B00:00", - "lastModifiedBy": "Honglin Du", + "lastModifiedAt": "2022-11-18T09:58:31.6536062\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -314,7 +341,7 @@ "Connection": "keep-alive", "Content-Length": "1895", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -328,7 +355,7 @@ "isArchived": false, "componentSpec": { "command": "echo \u0022Start training ...\u0022 \u0026\u0026 python mnist.py --data_folder ${{inputs.data_folder}} --batch_size ${{inputs.batch_size}} --first_layer_neurons ${{inputs.first_layer_neurons}} --second_layer_neurons ${{inputs.second_layer_neurons}} --third_layer_neurons ${{inputs.third_layer_neurons}} --epochs ${{inputs.epochs}} --f1 ${{inputs.f1}} --f2 ${{inputs.f2}} --weight_decay ${{inputs.weight_decay}} --momentum ${{inputs.momentum}} --learning_rate ${{inputs.learning_rate}} --saved_model ${{outputs.trained_model_dir}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1", "name": "azureml_anonymous", "description": "This is the command component for sweep", @@ -392,26 +419,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3485", + "Content-Length": "3495", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:11:53 GMT", + "Date": "Fri, 18 Nov 2022 09:58:33 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-541c9052a3feb1cacd6672540322d26a-e16235aecdcc9dea-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-f2cf406ec1ab7a01b0623ec84effe9be-2d3d60c4729d366a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "353723c5-745f-43bd-9893-21ea0399bfe0", - "x-ms-ratelimit-remaining-subscription-writes": "1139", + "x-ms-correlation-request-id": "f6ddc8e9-7d43-46a4-a612-95cdaf4bed05", + "x-ms-ratelimit-remaining-subscription-writes": "1163", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081153Z:353723c5-745f-43bd-9893-21ea0399bfe0", - "x-request-time": "0.420" + "x-ms-routing-request-id": "JAPANEAST:20221118T095833Z:f6ddc8e9-7d43-46a4-a612-95cdaf4bed05", + "x-request-time": "1.095" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/5af25209-e882-4123-89c4-6c596c33cdfa", - "name": "5af25209-e882-4123-89c4-6c596c33cdfa", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/747e9377-9711-4601-97cc-2b4f13ed39c3", + "name": "747e9377-9711-4601-97cc-2b4f13ed39c3", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -424,7 +451,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "5af25209-e882-4123-89c4-6c596c33cdfa", + "version": "747e9377-9711-4601-97cc-2b4f13ed39c3", "display_name": "CommandComponentForSweep", "is_deterministic": "True", "type": "command", @@ -489,8 +516,8 @@ "type": "mlflow_model" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1", - "environment": "azureml://registries/azureml/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", + "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" }, @@ -499,11 +526,11 @@ } }, "systemData": { - "createdAt": "2022-11-08T09:45:24.9421611\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-11-18T09:44:37.4149466\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-11-08T09:45:25.1129232\u002B00:00", - "lastModifiedBy": "Honglin Du", + "lastModifiedAt": "2022-11-18T09:44:37.9494974\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -515,27 +542,31 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1068", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:11:54 GMT", + "Date": "Fri, 18 Nov 2022 09:58:33 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-da825d18541db782e02ba9c8f2c676a4-1610bcd441787851-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-4d8837d3b056cf03bdf05b532bcef5f2-bf3ae9e15b38aedc-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d04df070-26c9-4243-8cf9-b56121d4f5bd", - "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-correlation-request-id": "cabd4926-5490-4222-b7be-37faa6dd54bb", + "x-ms-ratelimit-remaining-subscription-reads": "11952", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081154Z:d04df070-26c9-4243-8cf9-b56121d4f5bd", + "x-ms-routing-request-id": "JAPANEAST:20221118T095833Z:cabd4926-5490-4222-b7be-37faa6dd54bb", "x-request-time": "0.087" }, "ResponseBody": { @@ -551,17 +582,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sav3u7rijui4cza", - "containerName": "azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3", + "accountName": "teststorageaccount", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-10-10T07:43:07.7818269\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-10-10T07:43:08.5293577\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -575,27 +606,29 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "61", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:11:54 GMT", + "Date": "Fri, 18 Nov 2022 09:58:34 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-e606ac206aa19d3c71b0d4da683bb51b-e2dff4c6c8565478-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-d7b8c3c6f7232866d5f6bb98dcb65e39-310712f6a6058a46-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fe57a38f-12d5-458c-b649-254faa04fa2b", - "x-ms-ratelimit-remaining-subscription-writes": "1151", + "x-ms-correlation-request-id": "b75c74c6-b31f-4eab-a995-7818968aaee1", + "x-ms-ratelimit-remaining-subscription-writes": "1164", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081155Z:fe57a38f-12d5-458c-b649-254faa04fa2b", - "x-request-time": "0.104" + "x-ms-routing-request-id": "JAPANEAST:20221118T095834Z:b75c74c6-b31f-4eab-a995-7818968aaee1", + "x-request-time": "0.091" }, "ResponseBody": { "secretsType": "AccountKey", @@ -603,26 +636,26 @@ } }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:11:54 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:58:37 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Accept-Ranges": "bytes", - "Content-Length": "499", - "Content-MD5": "kD7N5\u002BygjTfbYTFhyEo7RA==", + "Content-Length": "508", + "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Wed, 09 Nov 2022 08:11:55 GMT", - "ETag": "\u00220x8DAC154D3DF99CE\u0022", - "Last-Modified": "Tue, 08 Nov 2022 06:45:30 GMT", + "Date": "Fri, 18 Nov 2022 09:58:33 GMT", + "ETag": "\u00220x8DA9D48AFBCE5A6\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:47:53 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -631,32 +664,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 08 Nov 2022 06:45:29 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:47:53 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "5fa55015-0323-4a0f-b7c2-1db6ccd3acbf", + "x-ms-meta-name": "da405283-c0d4-42bf-9cd0-2d052c9da84b", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "c0fd52f9-f2ed-44bf-bed3-c2f92c2fd4aa", + "x-ms-meta-version": "bcdecfd5-08fc-40e1-af7f-364ca3525a76", "x-ms-server-encrypted": "true", "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:11:55 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:58:38 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 09 Nov 2022 08:11:55 GMT", + "Date": "Fri, 18 Nov 2022 09:58:34 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -675,28 +708,32 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1068", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:11:56 GMT", + "Date": "Fri, 18 Nov 2022 09:58:35 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-339212b9c05cd8453889a9be2b7f74a4-3cc40c5404541ecc-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-9516ae00fb09c0d48874af47ae2a4912-23339a4cdc627311-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b53079ed-6e32-446e-ae01-233558a87042", - "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-correlation-request-id": "d721fc18-8b01-4f7f-8e77-abdbc87a521e", + "x-ms-ratelimit-remaining-subscription-reads": "11951", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081156Z:b53079ed-6e32-446e-ae01-233558a87042", - "x-request-time": "0.118" + "x-ms-routing-request-id": "JAPANEAST:20221118T095835Z:d721fc18-8b01-4f7f-8e77-abdbc87a521e", + "x-request-time": "0.087" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -711,17 +748,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sav3u7rijui4cza", - "containerName": "azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3", + "accountName": "teststorageaccount", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-10-10T07:43:07.7818269\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-10-10T07:43:08.5293577\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -735,27 +772,29 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "61", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:11:56 GMT", + "Date": "Fri, 18 Nov 2022 09:58:35 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-307937dc2db407c2c6135e821ce77aa8-7aaa3a564e8bc23f-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-aa120a0a955b9108f1644506a34917c1-be09a91485b2a122-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6d2bfecb-08da-415c-b01b-d8b13b0eae58", - "x-ms-ratelimit-remaining-subscription-writes": "1150", + "x-ms-correlation-request-id": "d40a54c8-7203-4abf-a2e4-abc212cfac90", + "x-ms-ratelimit-remaining-subscription-writes": "1163", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081157Z:6d2bfecb-08da-415c-b01b-d8b13b0eae58", - "x-request-time": "0.089" + "x-ms-routing-request-id": "JAPANEAST:20221118T095835Z:d40a54c8-7203-4abf-a2e4-abc212cfac90", + "x-request-time": "0.098" }, "ResponseBody": { "secretsType": "AccountKey", @@ -763,26 +802,26 @@ } }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:11:56 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:58:39 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Accept-Ranges": "bytes", - "Content-Length": "499", - "Content-MD5": "kD7N5\u002BygjTfbYTFhyEo7RA==", + "Content-Length": "508", + "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Wed, 09 Nov 2022 08:11:57 GMT", - "ETag": "\u00220x8DAC16E43415F71\u0022", - "Last-Modified": "Tue, 08 Nov 2022 09:47:34 GMT", + "Date": "Fri, 18 Nov 2022 09:58:35 GMT", + "ETag": "\u00220x8DA9D50123677EA\u0022", + "Last-Modified": "Fri, 23 Sep 2022 10:40:45 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -791,32 +830,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 08 Nov 2022 09:47:34 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 10:40:45 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "a91c6464-f7fd-456e-b9e2-34951833ad6f", + "x-ms-meta-name": "0bd2889b-e21f-47f4-a44f-9ce6f86d2ed8", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "8ce5b729-ff48-46b3-a426-10230356c2cb", + "x-ms-meta-version": "24e72261-b9f5-4bf0-a875-b7edffb41cd8", "x-ms-server-encrypted": "true", "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/az-ml-artifacts/00000000000000000000000000000000/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:11:57 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:58:39 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 09 Nov 2022 08:11:57 GMT", + "Date": "Fri, 18 Nov 2022 09:58:35 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -829,15 +868,15 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_88955469444?api-version=2022-10-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_839188054220?api-version=2022-10-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "2422", + "Content-Length": "2377", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -904,9 +943,6 @@ "job_input_type": "literal", "value": "${{parent.inputs.job_in_folder}}" }, - "batch_size": { - "job_input_type": "literal" - }, "first_layer_neurons": { "job_input_type": "literal", "value": "32" @@ -950,7 +986,7 @@ }, "_source": "YAML.JOB", "trial": { - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/5af25209-e882-4123-89c4-6c596c33cdfa" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/747e9377-9711-4601-97cc-2b4f13ed39c3" } } }, @@ -963,26 +999,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "5567", + "Content-Length": "5498", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:12:05 GMT", + "Date": "Fri, 18 Nov 2022 09:58:41 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_88955469444?api-version=2022-10-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_839188054220?api-version=2022-10-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-c3556b027ccdb8b9fffab3bfe1fec411-d4f07a9a4437c9cb-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-f4e1adc53c7d4b90f507074e11bcb06b-f7b441039ae7d749-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2164f427-78e2-4f41-8a07-1a87924142af", - "x-ms-ratelimit-remaining-subscription-writes": "1138", + "x-ms-correlation-request-id": "d17e443b-62cf-4445-833c-1bc3c3837b5b", + "x-ms-ratelimit-remaining-subscription-writes": "1162", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081205Z:2164f427-78e2-4f41-8a07-1a87924142af", - "x-request-time": "4.559" + "x-ms-routing-request-id": "JAPANEAST:20221118T095841Z:d17e443b-62cf-4445-833c-1bc3c3837b5b", + "x-request-time": "3.682" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_88955469444", - "name": "test_88955469444", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_839188054220", + "name": "test_839188054220", "type": "Microsoft.MachineLearningServices/workspaces/jobs", "properties": { "description": "The hello world pipeline job with data binding", @@ -1009,7 +1045,7 @@ "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null, @@ -1018,7 +1054,7 @@ "Studio": { "jobServiceType": "Studio", "port": null, - "endpoint": "https://ml.azure.com/runs/test_88955469444?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "endpoint": "https://ml.azure.com/runs/test_839188054220?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, "properties": null, @@ -1059,9 +1095,6 @@ "job_input_type": "literal", "value": "${{parent.inputs.job_in_folder}}" }, - "batch_size": { - "job_input_type": "literal" - }, "first_layer_neurons": { "job_input_type": "literal", "value": "32" @@ -1105,7 +1138,7 @@ }, "_source": "YAML.JOB", "trial": { - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/5af25209-e882-4123-89c4-6c596c33cdfa" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/747e9377-9711-4601-97cc-2b4f13ed39c3" } } }, @@ -1147,14 +1180,14 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-11-09T08:12:04.7374669\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-11-18T09:58:41.1700886\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } } ], "Variables": { - "name": "test_88955469444" + "name": "test_839188054220" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_data_binding_expression[2-input_literal_meta.yml].json b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_data_binding_expression[2-input_literal_meta.yml].json index d1ed55c43326..4298e830f1b5 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_data_binding_expression[2-input_literal_meta.yml].json +++ b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_data_binding_expression[2-input_literal_meta.yml].json @@ -1,49 +1,53 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2324", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:08:44 GMT", + "Date": "Fri, 18 Nov 2022 09:55:34 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-9f389547437c62b6487607ffe1b3ad40-24433a28d6b9c94f-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-c56d8851e3ba660b04a5548b16a409f3-550eb1a4d2f84b2e-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ea47c949-3d29-4873-8f62-ce5207ad84d1", - "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-correlation-request-id": "eb16550a-3d45-4462-ab17-81794c7fe3f9", + "x-ms-ratelimit-remaining-subscription-reads": "11990", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080845Z:ea47c949-3d29-4873-8f62-ce5207ad84d1", - "x-request-time": "0.042" + "x-ms-routing-request-id": "JAPANEAST:20221118T095535Z:eb16550a-3d45-4462-ab17-81794c7fe3f9", + "x-request-time": "0.225" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2", + "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-10-10T07:44:03.2104968\u002B00:00", - "modifiedOn": "2022-11-08T03:58:27.2396848\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2", + "computeLocation": "centraluseuap", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -52,32 +56,28 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, "currentNodeCount": 2, - "targetNodeCount": 0, + "targetNodeCount": 4, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 0, + "runningNodeCount": 2, "idleNodeCount": 0, "unusableNodeCount": 0, - "leavingNodeCount": 2, + "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-11-09T08:05:13.531\u002B00:00", + "allocationStateTransitionTime": "2022-11-18T09:55:11.193\u002B00:00", "errors": [ { "error": { "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_22ef6b2454a4d7020ae0509a0ed488c4efc2b26c6eeb699555614f462b85653b_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_2f648ede638979a526f7fa7b345fbc5026cdf791a5b1c3ba210d6f9168c8e632_d: There is not enough disk space on the node", + "message": "ComputeNode.Id=tvmps_cb9237aaedb6e8d84ff1060da66d025a09b00f35f4dba0cf409a69c4c564de2f_d: There is not enough disk space on the node", "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - }, { "code": "Message", "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." @@ -102,28 +102,32 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1068", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:08:46 GMT", + "Date": "Fri, 18 Nov 2022 09:55:37 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-b5d294c3318d9351bbd494ddc6c68390-5c23d74e3c3f94dd-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-a69f54d39bcbdd1e6e071b42300ecb61-1ea80dc24ae96d9e-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6f39f995-181f-4616-9d34-56bc4e98c696", - "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-correlation-request-id": "1c5ad9b6-345a-49f5-95b8-a0bb6ca4ebdc", + "x-ms-ratelimit-remaining-subscription-reads": "11989", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080847Z:6f39f995-181f-4616-9d34-56bc4e98c696", - "x-request-time": "0.242" + "x-ms-routing-request-id": "JAPANEAST:20221118T095537Z:1c5ad9b6-345a-49f5-95b8-a0bb6ca4ebdc", + "x-request-time": "0.095" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -138,17 +142,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sav3u7rijui4cza", - "containerName": "azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3", + "accountName": "teststorageaccount", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-10-10T07:43:07.7818269\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-10-10T07:43:08.5293577\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -162,27 +166,29 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "61", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:08:47 GMT", + "Date": "Fri, 18 Nov 2022 09:55:37 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-615bac0bdac002f88c6dd6f33f3bd39e-0e105a931d8a1e8a-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-c355a72b7a48db343adbfa0126afd8f2-a6578af9c4a31a7c-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0aa064fb-2798-4552-8c3b-b7cd95942095", - "x-ms-ratelimit-remaining-subscription-writes": "1179", + "x-ms-correlation-request-id": "b13112fe-9dc0-4630-86cb-e353d8cf1911", + "x-ms-ratelimit-remaining-subscription-writes": "1192", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080847Z:0aa064fb-2798-4552-8c3b-b7cd95942095", - "x-request-time": "0.077" + "x-ms-routing-request-id": "JAPANEAST:20221118T095538Z:b13112fe-9dc0-4630-86cb-e353d8cf1911", + "x-request-time": "0.088" }, "ResponseBody": { "secretsType": "AccountKey", @@ -190,14 +196,14 @@ } }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:08:47 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:55:42 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -207,9 +213,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 09 Nov 2022 08:08:47 GMT", - "ETag": "\u00220x8DAC13EFDFF2C0D\u0022", - "Last-Modified": "Tue, 08 Nov 2022 04:09:11 GMT", + "Date": "Fri, 18 Nov 2022 09:55:38 GMT", + "ETag": "\u00220x8DA9D48E17467D7\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:49:17 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -218,10 +224,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 08 Nov 2022 04:09:11 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:49:16 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "5d0c2440-3f92-4bf0-a277-a2158e0ee09d", + "x-ms-meta-name": "9c9cfba9-82bd-45db-ad06-07009d1d9672", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -230,20 +236,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:08:47 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:55:42 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 09 Nov 2022 08:08:48 GMT", + "Date": "Fri, 18 Nov 2022 09:55:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -256,15 +262,15 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "288", + "Content-Length": "291", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -274,31 +280,35 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "812", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:08:48 GMT", + "Date": "Fri, 18 Nov 2022 09:55:39 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-13a5eb7956177618e8297bf56bda1b45-b8afdd98b092c350-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-3d96a9c09242d7d9927274f15e6c52b9-3b796c003299dd2a-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f99266e5-e327-4990-83c1-836df8ce0527", - "x-ms-ratelimit-remaining-subscription-writes": "1167", + "x-ms-correlation-request-id": "4d111273-5fc3-4445-8737-f44cf515dab3", + "x-ms-ratelimit-remaining-subscription-writes": "1191", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080848Z:f99266e5-e327-4990-83c1-836df8ce0527", - "x-request-time": "0.085" + "x-ms-routing-request-id": "JAPANEAST:20221118T095540Z:4d111273-5fc3-4445-8737-f44cf515dab3", + "x-request-time": "0.793" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -310,14 +320,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-11-08T04:09:13.0225939\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-09-23T09:49:20.984936\u002B00:00", + "createdBy": "Ying Chen", "createdByType": "User", - "lastModifiedAt": "2022-11-09T08:08:48.8609596\u002B00:00", - "lastModifiedBy": "Honglin Du", + "lastModifiedAt": "2022-11-18T09:55:40.3795298\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -331,7 +341,7 @@ "Connection": "keep-alive", "Content-Length": "1837", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -345,7 +355,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo ${{inputs.component_in_integer}} \u0026 echo ${{inputs.component_in_number}} \u0026 echo ${{inputs.component_in_string}} \u0026 echo ${{inputs.component_in_other_string}} \u0026 $[[echo ${{inputs.component_in_file}} \u0026]] $[[echo ${{inputs.component_in_folder}} \u0026]] echo ${{outputs.component_out_folder}} \u003E ${{outputs.component_out_folder}}/sample1.csv", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1", "name": "azureml_anonymous", "description": "This is the basic command component", @@ -402,26 +412,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3128", + "Content-Length": "3139", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:08:49 GMT", + "Date": "Fri, 18 Nov 2022 09:55:41 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-438c9140f8ccc5a52f1c7744094b6e2f-703a5fbbcb464ebc-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-3bacc62d6e515dc7683acf1642584513-5bb0e5391643c277-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0eb2e35c-f3d3-4a83-b1a1-422ec9bb5553", - "x-ms-ratelimit-remaining-subscription-writes": "1166", + "x-ms-correlation-request-id": "902129a0-68c4-4aa1-bab3-62e3bac860d7", + "x-ms-ratelimit-remaining-subscription-writes": "1190", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080850Z:0eb2e35c-f3d3-4a83-b1a1-422ec9bb5553", - "x-request-time": "0.559" + "x-ms-routing-request-id": "JAPANEAST:20221118T095542Z:902129a0-68c4-4aa1-bab3-62e3bac860d7", + "x-request-time": "1.098" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f28835f2-9bb5-446d-8d52-f0cc6fe51907", - "name": "f28835f2-9bb5-446d-8d52-f0cc6fe51907", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f2514b9a-4479-4269-a4d1-af363b7a2480", + "name": "f2514b9a-4479-4269-a4d1-af363b7a2480", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -434,7 +444,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "f28835f2-9bb5-446d-8d52-f0cc6fe51907", + "version": "f2514b9a-4479-4269-a4d1-af363b7a2480", "display_name": "CommandComponentBasic", "is_deterministic": "True", "type": "command", @@ -484,8 +494,8 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1", - "environment": "azureml://registries/azureml/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", + "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" }, @@ -494,11 +504,11 @@ } }, "systemData": { - "createdAt": "2022-11-08T09:47:29.799922\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-11-18T09:50:33.0464018\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-11-08T09:47:29.9700963\u002B00:00", - "lastModifiedBy": "Honglin Du", + "lastModifiedAt": "2022-11-18T09:50:33.5643861\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -510,28 +520,32 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1068", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:08:50 GMT", + "Date": "Fri, 18 Nov 2022 09:55:41 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-37e4bbc32143a0ec2b91d2e44bbed5c6-20932cdb71653905-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-571709c8a7d73ff0a65af6847a89943c-12a2b3a6711dc237-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ca10afc0-9a00-447b-a0cd-0edbf76be161", - "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-correlation-request-id": "a9c29286-3317-49d4-8693-c6add8561003", + "x-ms-ratelimit-remaining-subscription-reads": "11988", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080850Z:ca10afc0-9a00-447b-a0cd-0edbf76be161", - "x-request-time": "0.089" + "x-ms-routing-request-id": "JAPANEAST:20221118T095542Z:a9c29286-3317-49d4-8693-c6add8561003", + "x-request-time": "0.084" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -546,17 +560,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sav3u7rijui4cza", - "containerName": "azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3", + "accountName": "teststorageaccount", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-10-10T07:43:07.7818269\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-10-10T07:43:08.5293577\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -570,27 +584,29 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "61", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:08:51 GMT", + "Date": "Fri, 18 Nov 2022 09:55:42 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-b0536623f726011b7ede638858e2c023-bab0011f0b83430d-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-e640ca61c35cdc82d4e2e9bcb2677ed4-77970f8990fa6cb3-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "087a4956-aac5-47c7-ba2a-bb68b8a909e4", - "x-ms-ratelimit-remaining-subscription-writes": "1178", + "x-ms-correlation-request-id": "9ea9a563-10bf-4975-ac73-89520ce5b1db", + "x-ms-ratelimit-remaining-subscription-writes": "1191", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080851Z:087a4956-aac5-47c7-ba2a-bb68b8a909e4", - "x-request-time": "0.110" + "x-ms-routing-request-id": "JAPANEAST:20221118T095543Z:9ea9a563-10bf-4975-ac73-89520ce5b1db", + "x-request-time": "0.093" }, "ResponseBody": { "secretsType": "AccountKey", @@ -598,26 +614,26 @@ } }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:08:51 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:55:46 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Accept-Ranges": "bytes", - "Content-Length": "499", - "Content-MD5": "kD7N5\u002BygjTfbYTFhyEo7RA==", + "Content-Length": "508", + "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Wed, 09 Nov 2022 08:08:51 GMT", - "ETag": "\u00220x8DAC154D3DF99CE\u0022", - "Last-Modified": "Tue, 08 Nov 2022 06:45:30 GMT", + "Date": "Fri, 18 Nov 2022 09:55:42 GMT", + "ETag": "\u00220x8DA9D48AFBCE5A6\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:47:53 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -626,32 +642,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 08 Nov 2022 06:45:29 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:47:53 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "5fa55015-0323-4a0f-b7c2-1db6ccd3acbf", + "x-ms-meta-name": "da405283-c0d4-42bf-9cd0-2d052c9da84b", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "c0fd52f9-f2ed-44bf-bed3-c2f92c2fd4aa", + "x-ms-meta-version": "bcdecfd5-08fc-40e1-af7f-364ca3525a76", "x-ms-server-encrypted": "true", "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:08:51 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:55:47 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 09 Nov 2022 08:08:51 GMT", + "Date": "Fri, 18 Nov 2022 09:55:43 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -670,28 +686,32 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1068", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:08:52 GMT", + "Date": "Fri, 18 Nov 2022 09:55:43 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-dcdb95131dc905fb3b51f3de397a4fa6-7213ae486e89dbc1-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-85a456e138677920bf3880974bdf7904-ca3fe394db11d6e1-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cfbdd47c-968f-4e62-98d3-74365efb4238", - "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-correlation-request-id": "2acee924-694c-4bc1-adf4-7acd4e4948f9", + "x-ms-ratelimit-remaining-subscription-reads": "11987", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080852Z:cfbdd47c-968f-4e62-98d3-74365efb4238", - "x-request-time": "0.082" + "x-ms-routing-request-id": "JAPANEAST:20221118T095544Z:2acee924-694c-4bc1-adf4-7acd4e4948f9", + "x-request-time": "0.095" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -706,17 +726,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sav3u7rijui4cza", - "containerName": "azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3", + "accountName": "teststorageaccount", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-10-10T07:43:07.7818269\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-10-10T07:43:08.5293577\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -730,27 +750,29 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "61", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:08:54 GMT", + "Date": "Fri, 18 Nov 2022 09:55:44 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-cdee28c2a466af94f5e672615b9f0752-b553588052ad7936-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-01fe3dddd689265bf4d77fc9ab1cf4f0-8d72eb65b9cf7684-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "20ae5027-bfb9-4187-804a-efbfaee73ccc", - "x-ms-ratelimit-remaining-subscription-writes": "1177", + "x-ms-correlation-request-id": "681696fa-3ae3-47e2-b756-ad4fe6b93428", + "x-ms-ratelimit-remaining-subscription-writes": "1190", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080854Z:20ae5027-bfb9-4187-804a-efbfaee73ccc", - "x-request-time": "0.089" + "x-ms-routing-request-id": "JAPANEAST:20221118T095545Z:681696fa-3ae3-47e2-b756-ad4fe6b93428", + "x-request-time": "0.098" }, "ResponseBody": { "secretsType": "AccountKey", @@ -758,26 +780,26 @@ } }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:08:54 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:55:48 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Accept-Ranges": "bytes", - "Content-Length": "499", - "Content-MD5": "kD7N5\u002BygjTfbYTFhyEo7RA==", + "Content-Length": "508", + "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Wed, 09 Nov 2022 08:08:54 GMT", - "ETag": "\u00220x8DAC16E43415F71\u0022", - "Last-Modified": "Tue, 08 Nov 2022 09:47:34 GMT", + "Date": "Fri, 18 Nov 2022 09:55:44 GMT", + "ETag": "\u00220x8DA9D50123677EA\u0022", + "Last-Modified": "Fri, 23 Sep 2022 10:40:45 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -786,32 +808,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 08 Nov 2022 09:47:34 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 10:40:45 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "a91c6464-f7fd-456e-b9e2-34951833ad6f", + "x-ms-meta-name": "0bd2889b-e21f-47f4-a44f-9ce6f86d2ed8", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "8ce5b729-ff48-46b3-a426-10230356c2cb", + "x-ms-meta-version": "24e72261-b9f5-4bf0-a875-b7edffb41cd8", "x-ms-server-encrypted": "true", "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/az-ml-artifacts/00000000000000000000000000000000/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:08:54 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:55:48 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 09 Nov 2022 08:08:55 GMT", + "Date": "Fri, 18 Nov 2022 09:55:44 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -824,7 +846,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_322939427953?api-version=2022-10-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_333574082589?api-version=2022-10-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -832,7 +854,7 @@ "Connection": "keep-alive", "Content-Length": "1495", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -884,7 +906,7 @@ } }, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f28835f2-9bb5-446d-8d52-f0cc6fe51907" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f2514b9a-4479-4269-a4d1-af363b7a2480" } }, "outputs": {}, @@ -896,20 +918,20 @@ "StatusCode": 400, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1362", + "Content-Length": "1361", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:09:00 GMT", + "Date": "Fri, 18 Nov 2022 09:55:47 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4742f8db-cc48-45cc-b1cb-e98fa71375a9", - "x-ms-ratelimit-remaining-subscription-writes": "1165", + "x-ms-correlation-request-id": "1ca3f029-f31e-41d6-9131-4e5e11de62af", + "x-ms-ratelimit-remaining-subscription-writes": "1189", "x-ms-response-type": "error", - "x-ms-routing-request-id": "JAPANEAST:20221109T080900Z:4742f8db-cc48-45cc-b1cb-e98fa71375a9", - "x-request-time": "2.533" + "x-ms-routing-request-id": "JAPANEAST:20221118T095548Z:1ca3f029-f31e-41d6-9131-4e5e11de62af", + "x-request-time": "1.026" }, "ResponseBody": { "error": { @@ -927,27 +949,27 @@ "type": "Correlation", "info": { "value": { - "operation": "bbc6c28b913fbeb8d26e79d4a04d9758", - "request": "3c1037d7c08767a2" + "operation": "ad6c579308293e0fadb2172cdc380879", + "request": "db6e3f852a2d0084" } } }, { "type": "Environment", "info": { - "value": "eastus2" + "value": "master" } }, { "type": "Location", "info": { - "value": "eastus2" + "value": "westus2" } }, { "type": "Time", "info": { - "value": "2022-11-09T08:09:00.7936918\u002B00:00" + "value": "2022-11-18T09:55:48.6427719\u002B00:00" } }, { @@ -974,6 +996,6 @@ } ], "Variables": { - "name": "test_322939427953" + "name": "test_333574082589" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_data_binding_expression[3-input_path.yml].json b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_data_binding_expression[3-input_path.yml].json index 47c80611e2bb..e8a91e024bf3 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_data_binding_expression[3-input_path.yml].json +++ b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_data_binding_expression[3-input_path.yml].json @@ -1,49 +1,53 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2324", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:09:03 GMT", + "Date": "Fri, 18 Nov 2022 09:55:50 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-f46e0daaa6a433baecbdd7720da273a3-4c855f80f2354551-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-c3a8d8f112aafc0e92341bea3113e5ee-1b65204e7c67fed9-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e9af5ef2-a86a-4722-9311-38f7af768a6c", - "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-correlation-request-id": "6ff19d33-ffb6-4ef7-92f6-c18f682555eb", + "x-ms-ratelimit-remaining-subscription-reads": "11986", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080903Z:e9af5ef2-a86a-4722-9311-38f7af768a6c", - "x-request-time": "0.033" + "x-ms-routing-request-id": "JAPANEAST:20221118T095551Z:6ff19d33-ffb6-4ef7-92f6-c18f682555eb", + "x-request-time": "0.252" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2", + "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-10-10T07:44:03.2104968\u002B00:00", - "modifiedOn": "2022-11-08T03:58:27.2396848\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2", + "computeLocation": "centraluseuap", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -52,32 +56,28 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, "currentNodeCount": 2, - "targetNodeCount": 0, + "targetNodeCount": 4, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 0, + "runningNodeCount": 2, "idleNodeCount": 0, "unusableNodeCount": 0, - "leavingNodeCount": 2, + "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-11-09T08:05:13.531\u002B00:00", + "allocationStateTransitionTime": "2022-11-18T09:55:11.193\u002B00:00", "errors": [ { "error": { "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_22ef6b2454a4d7020ae0509a0ed488c4efc2b26c6eeb699555614f462b85653b_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_2f648ede638979a526f7fa7b345fbc5026cdf791a5b1c3ba210d6f9168c8e632_d: There is not enough disk space on the node", + "message": "ComputeNode.Id=tvmps_cb9237aaedb6e8d84ff1060da66d025a09b00f35f4dba0cf409a69c4c564de2f_d: There is not enough disk space on the node", "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - }, { "code": "Message", "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." @@ -102,28 +102,32 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1068", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:09:05 GMT", + "Date": "Fri, 18 Nov 2022 09:55:52 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-223c3161f8b7580235ab11b29a1147bc-c32b3909973855cc-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-53a4ef5a407bf105c0458455ffe73284-cfc1440a8ba8053f-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b1b313ce-5aa0-4083-9051-6b973b3f1c64", - "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-correlation-request-id": "1c59f46d-111d-4952-b9ee-7fb358f8a93a", + "x-ms-ratelimit-remaining-subscription-reads": "11985", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080905Z:b1b313ce-5aa0-4083-9051-6b973b3f1c64", - "x-request-time": "0.080" + "x-ms-routing-request-id": "JAPANEAST:20221118T095553Z:1c59f46d-111d-4952-b9ee-7fb358f8a93a", + "x-request-time": "0.091" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -138,17 +142,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sav3u7rijui4cza", - "containerName": "azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3", + "accountName": "teststorageaccount", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-10-10T07:43:07.7818269\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-10-10T07:43:08.5293577\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -162,27 +166,29 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "61", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:09:06 GMT", + "Date": "Fri, 18 Nov 2022 09:55:53 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-7750ec2beaccbad936c277287062d869-dbca4ddc0ed5174a-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-c20126c3e8592d823fded2f10edd41d2-2e312b3c1236c1ed-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e9abc571-a25f-4824-9942-24d2695a4200", - "x-ms-ratelimit-remaining-subscription-writes": "1176", + "x-ms-correlation-request-id": "e7553253-d9f9-4db3-8139-0ad1b36bd673", + "x-ms-ratelimit-remaining-subscription-writes": "1189", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080906Z:e9abc571-a25f-4824-9942-24d2695a4200", - "x-request-time": "0.101" + "x-ms-routing-request-id": "JAPANEAST:20221118T095554Z:e7553253-d9f9-4db3-8139-0ad1b36bd673", + "x-request-time": "0.089" }, "ResponseBody": { "secretsType": "AccountKey", @@ -190,14 +196,14 @@ } }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:09:06 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:55:57 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -207,9 +213,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 09 Nov 2022 08:09:06 GMT", - "ETag": "\u00220x8DAC13EFDFF2C0D\u0022", - "Last-Modified": "Tue, 08 Nov 2022 04:09:11 GMT", + "Date": "Fri, 18 Nov 2022 09:55:53 GMT", + "ETag": "\u00220x8DA9D48E17467D7\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:49:17 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -218,10 +224,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 08 Nov 2022 04:09:11 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:49:16 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "5d0c2440-3f92-4bf0-a277-a2158e0ee09d", + "x-ms-meta-name": "9c9cfba9-82bd-45db-ad06-07009d1d9672", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -230,20 +236,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:09:06 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:55:58 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 09 Nov 2022 08:09:06 GMT", + "Date": "Fri, 18 Nov 2022 09:55:54 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -256,15 +262,15 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "288", + "Content-Length": "291", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -274,31 +280,35 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "812", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:09:07 GMT", + "Date": "Fri, 18 Nov 2022 09:55:54 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-1556b6311da7c9ee9e986c9a3373acd0-e4f22e62a6a0d00f-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-a9e00b7ae6467f9519f25bb6157ed830-e66119277ea56966-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "30668b45-fe0f-4859-99fd-b4107ea64b11", - "x-ms-ratelimit-remaining-subscription-writes": "1164", + "x-ms-correlation-request-id": "8e1abaf2-3bf9-4339-be8f-acfe6387f399", + "x-ms-ratelimit-remaining-subscription-writes": "1188", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080907Z:30668b45-fe0f-4859-99fd-b4107ea64b11", - "x-request-time": "0.066" + "x-ms-routing-request-id": "JAPANEAST:20221118T095555Z:8e1abaf2-3bf9-4339-be8f-acfe6387f399", + "x-request-time": "0.273" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -310,14 +320,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-11-08T04:09:13.0225939\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-09-23T09:49:20.984936\u002B00:00", + "createdBy": "Ying Chen", "createdByType": "User", - "lastModifiedAt": "2022-11-09T08:09:07.3817558\u002B00:00", - "lastModifiedBy": "Honglin Du", + "lastModifiedAt": "2022-11-18T09:55:55.31111\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -331,7 +341,7 @@ "Connection": "keep-alive", "Content-Length": "1837", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -345,7 +355,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo ${{inputs.component_in_integer}} \u0026 echo ${{inputs.component_in_number}} \u0026 echo ${{inputs.component_in_string}} \u0026 echo ${{inputs.component_in_other_string}} \u0026 $[[echo ${{inputs.component_in_file}} \u0026]] $[[echo ${{inputs.component_in_folder}} \u0026]] echo ${{outputs.component_out_folder}} \u003E ${{outputs.component_out_folder}}/sample1.csv", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1", "name": "azureml_anonymous", "description": "This is the basic command component", @@ -402,26 +412,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3128", + "Content-Length": "3139", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:09:08 GMT", + "Date": "Fri, 18 Nov 2022 09:55:56 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-8728322e6c1437f84320777a3485c3f0-a9dcf2b7b9f7910b-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-930b889531dd98d24b06f3f9488767c8-411954fdfc1c9e47-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bfdbd8c7-0d44-47b1-9380-bbe816c1dcc5", - "x-ms-ratelimit-remaining-subscription-writes": "1163", + "x-ms-correlation-request-id": "857070d1-7562-444d-99a9-2164380a4b98", + "x-ms-ratelimit-remaining-subscription-writes": "1187", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080908Z:bfdbd8c7-0d44-47b1-9380-bbe816c1dcc5", - "x-request-time": "0.408" + "x-ms-routing-request-id": "JAPANEAST:20221118T095557Z:857070d1-7562-444d-99a9-2164380a4b98", + "x-request-time": "1.109" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f28835f2-9bb5-446d-8d52-f0cc6fe51907", - "name": "f28835f2-9bb5-446d-8d52-f0cc6fe51907", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f2514b9a-4479-4269-a4d1-af363b7a2480", + "name": "f2514b9a-4479-4269-a4d1-af363b7a2480", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -434,7 +444,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "f28835f2-9bb5-446d-8d52-f0cc6fe51907", + "version": "f2514b9a-4479-4269-a4d1-af363b7a2480", "display_name": "CommandComponentBasic", "is_deterministic": "True", "type": "command", @@ -484,8 +494,8 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1", - "environment": "azureml://registries/azureml/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", + "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" }, @@ -494,11 +504,11 @@ } }, "systemData": { - "createdAt": "2022-11-08T09:47:29.799922\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-11-18T09:50:33.0464018\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-11-08T09:47:29.9700963\u002B00:00", - "lastModifiedBy": "Honglin Du", + "lastModifiedAt": "2022-11-18T09:50:33.5643861\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -510,28 +520,32 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1068", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:09:08 GMT", + "Date": "Fri, 18 Nov 2022 09:55:56 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-c419ea6ef2fb84621a3113f7a07e9c90-4b425e29b03343ba-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-b3daaf47bbdba4543286e3b3dbdff4ee-b5072b868c9d2be9-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fd3452eb-04af-45b2-811b-9e111ddcf1b4", - "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-correlation-request-id": "93432984-f1ad-4d8d-822b-67c5a7f9f66f", + "x-ms-ratelimit-remaining-subscription-reads": "11984", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080909Z:fd3452eb-04af-45b2-811b-9e111ddcf1b4", - "x-request-time": "0.083" + "x-ms-routing-request-id": "JAPANEAST:20221118T095557Z:93432984-f1ad-4d8d-822b-67c5a7f9f66f", + "x-request-time": "0.107" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -546,17 +560,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sav3u7rijui4cza", - "containerName": "azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3", + "accountName": "teststorageaccount", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-10-10T07:43:07.7818269\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-10-10T07:43:08.5293577\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -570,27 +584,29 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "61", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:09:09 GMT", + "Date": "Fri, 18 Nov 2022 09:55:57 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-6fb336f91f6e2550e41d0344de77bad3-de7a3ea95eb9c907-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-cf1756b5f8c4c097d178ba8b1b2e1dd8-176a314bb1b398f9-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4d3dee79-9440-4df7-a98e-b0600214b47b", - "x-ms-ratelimit-remaining-subscription-writes": "1175", + "x-ms-correlation-request-id": "81bc815f-a8dc-4b5a-b88b-270ef9a415c8", + "x-ms-ratelimit-remaining-subscription-writes": "1188", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080909Z:4d3dee79-9440-4df7-a98e-b0600214b47b", - "x-request-time": "0.080" + "x-ms-routing-request-id": "JAPANEAST:20221118T095558Z:81bc815f-a8dc-4b5a-b88b-270ef9a415c8", + "x-request-time": "0.095" }, "ResponseBody": { "secretsType": "AccountKey", @@ -598,26 +614,26 @@ } }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:09:09 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:56:01 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Accept-Ranges": "bytes", - "Content-Length": "499", - "Content-MD5": "kD7N5\u002BygjTfbYTFhyEo7RA==", + "Content-Length": "508", + "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Wed, 09 Nov 2022 08:09:10 GMT", - "ETag": "\u00220x8DAC154D3DF99CE\u0022", - "Last-Modified": "Tue, 08 Nov 2022 06:45:30 GMT", + "Date": "Fri, 18 Nov 2022 09:55:57 GMT", + "ETag": "\u00220x8DA9D48AFBCE5A6\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:47:53 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -626,32 +642,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 08 Nov 2022 06:45:29 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:47:53 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "5fa55015-0323-4a0f-b7c2-1db6ccd3acbf", + "x-ms-meta-name": "da405283-c0d4-42bf-9cd0-2d052c9da84b", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "c0fd52f9-f2ed-44bf-bed3-c2f92c2fd4aa", + "x-ms-meta-version": "bcdecfd5-08fc-40e1-af7f-364ca3525a76", "x-ms-server-encrypted": "true", "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:09:10 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:56:02 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 09 Nov 2022 08:09:10 GMT", + "Date": "Fri, 18 Nov 2022 09:55:58 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -670,28 +686,32 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1068", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:09:10 GMT", + "Date": "Fri, 18 Nov 2022 09:55:58 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-bcde9e282b8a94a3ea1181def12d836a-a29597fb65ebbbb8-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-0b4dbb67785ab4307a86c658ecf46e7a-c59ecf28b0b0b51f-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5145dae2-46f6-46f4-a9a8-ee33f7c48d6c", - "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-correlation-request-id": "23c679fd-8920-41aa-b83c-bec89bc41945", + "x-ms-ratelimit-remaining-subscription-reads": "11983", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080911Z:5145dae2-46f6-46f4-a9a8-ee33f7c48d6c", - "x-request-time": "0.073" + "x-ms-routing-request-id": "JAPANEAST:20221118T095559Z:23c679fd-8920-41aa-b83c-bec89bc41945", + "x-request-time": "0.091" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -706,17 +726,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sav3u7rijui4cza", - "containerName": "azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3", + "accountName": "teststorageaccount", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-10-10T07:43:07.7818269\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-10-10T07:43:08.5293577\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -730,27 +750,29 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "61", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:09:11 GMT", + "Date": "Fri, 18 Nov 2022 09:55:59 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-232511780dc3a4c1ee8c46881549f46e-00d1b47d3b587667-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-f999c440cc7caccc53957a8c77c6e54f-13028d447f9a6f76-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b491c40d-62dc-4109-9aee-f71b78656c32", - "x-ms-ratelimit-remaining-subscription-writes": "1174", + "x-ms-correlation-request-id": "32455897-f44d-492f-ac93-dea73dd8ba97", + "x-ms-ratelimit-remaining-subscription-writes": "1187", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080911Z:b491c40d-62dc-4109-9aee-f71b78656c32", - "x-request-time": "0.088" + "x-ms-routing-request-id": "JAPANEAST:20221118T095600Z:32455897-f44d-492f-ac93-dea73dd8ba97", + "x-request-time": "0.104" }, "ResponseBody": { "secretsType": "AccountKey", @@ -758,26 +780,26 @@ } }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:09:11 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:56:03 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Accept-Ranges": "bytes", - "Content-Length": "499", - "Content-MD5": "kD7N5\u002BygjTfbYTFhyEo7RA==", + "Content-Length": "508", + "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Wed, 09 Nov 2022 08:09:11 GMT", - "ETag": "\u00220x8DAC16E43415F71\u0022", - "Last-Modified": "Tue, 08 Nov 2022 09:47:34 GMT", + "Date": "Fri, 18 Nov 2022 09:55:59 GMT", + "ETag": "\u00220x8DA9D50123677EA\u0022", + "Last-Modified": "Fri, 23 Sep 2022 10:40:45 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -786,32 +808,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 08 Nov 2022 09:47:34 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 10:40:45 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "a91c6464-f7fd-456e-b9e2-34951833ad6f", + "x-ms-meta-name": "0bd2889b-e21f-47f4-a44f-9ce6f86d2ed8", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "8ce5b729-ff48-46b3-a426-10230356c2cb", + "x-ms-meta-version": "24e72261-b9f5-4bf0-a875-b7edffb41cd8", "x-ms-server-encrypted": "true", "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/az-ml-artifacts/00000000000000000000000000000000/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:09:11 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:56:03 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 09 Nov 2022 08:09:12 GMT", + "Date": "Fri, 18 Nov 2022 09:55:59 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -824,7 +846,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_580007070811?api-version=2022-10-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_364907496001?api-version=2022-10-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -832,7 +854,7 @@ "Connection": "keep-alive", "Content-Length": "1529", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -885,7 +907,7 @@ } }, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f28835f2-9bb5-446d-8d52-f0cc6fe51907" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f2514b9a-4479-4269-a4d1-af363b7a2480" } }, "outputs": {}, @@ -897,26 +919,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3995", + "Content-Length": "4002", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:09:18 GMT", + "Date": "Fri, 18 Nov 2022 09:56:05 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_580007070811?api-version=2022-10-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_364907496001?api-version=2022-10-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-cc9f6439d1663e094b47ea69827451c9-7ae6ac8a68fac63d-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-aa7c4fcc7845391198d4759987d0caed-7a9971d440423a67-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "383b3a66-a62a-4842-a085-83bab7b25805", - "x-ms-ratelimit-remaining-subscription-writes": "1162", + "x-ms-correlation-request-id": "886be400-bf18-42f6-b23b-251f6dc0c93b", + "x-ms-ratelimit-remaining-subscription-writes": "1186", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080918Z:383b3a66-a62a-4842-a085-83bab7b25805", - "x-request-time": "3.571" + "x-ms-routing-request-id": "JAPANEAST:20221118T095605Z:886be400-bf18-42f6-b23b-251f6dc0c93b", + "x-request-time": "2.781" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_580007070811", - "name": "test_580007070811", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_364907496001", + "name": "test_364907496001", "type": "Microsoft.MachineLearningServices/workspaces/jobs", "properties": { "description": "The hello world pipeline job with data binding", @@ -943,7 +965,7 @@ "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null, @@ -952,7 +974,7 @@ "Studio": { "jobServiceType": "Studio", "port": null, - "endpoint": "https://ml.azure.com/runs/test_580007070811?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "endpoint": "https://ml.azure.com/runs/test_364907496001?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, "properties": null, @@ -979,7 +1001,7 @@ } }, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f28835f2-9bb5-446d-8d52-f0cc6fe51907" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f2514b9a-4479-4269-a4d1-af363b7a2480" } }, "inputs": { @@ -1020,14 +1042,14 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-11-09T08:09:18.4600766\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-11-18T09:56:04.9066507\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } } ], "Variables": { - "name": "test_580007070811" + "name": "test_364907496001" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_data_binding_expression[4-input_path_concatenate.yml].json b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_data_binding_expression[4-input_path_concatenate.yml].json index 9499e212dcd6..2289c2471d4c 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_data_binding_expression[4-input_path_concatenate.yml].json +++ b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_data_binding_expression[4-input_path_concatenate.yml].json @@ -1,49 +1,53 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1500", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:09:22 GMT", + "Date": "Fri, 18 Nov 2022 09:56:10 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-8fb4622226003d7affa2f0f2c5d4b015-ed773c4007502e6d-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-84c0c988e73b4815a02aa53a56d52f87-237ad16fa8d860e0-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e4871d55-b920-45cd-ba02-3be271300515", - "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-correlation-request-id": "5a7cefcd-38ad-4044-93af-48590cc8fe8c", + "x-ms-ratelimit-remaining-subscription-reads": "11982", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080922Z:e4871d55-b920-45cd-ba02-3be271300515", - "x-request-time": "0.037" + "x-ms-routing-request-id": "JAPANEAST:20221118T095610Z:5a7cefcd-38ad-4044-93af-48590cc8fe8c", + "x-request-time": "0.219" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2", + "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-10-10T07:44:03.2104968\u002B00:00", - "modifiedOn": "2022-11-08T03:58:27.2396848\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2", + "computeLocation": "centraluseuap", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -52,23 +56,36 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 0, - "targetNodeCount": 0, + "currentNodeCount": 2, + "targetNodeCount": 4, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 0, + "runningNodeCount": 2, "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Steady", - "allocationStateTransitionTime": "2022-11-09T08:07:30.719\u002B00:00", - "errors": null, + "allocationState": "Resizing", + "allocationStateTransitionTime": "2022-11-18T09:55:11.193\u002B00:00", + "errors": [ + { + "error": { + "code": "DiskFull", + "message": "ComputeNode.Id=tvmps_cb9237aaedb6e8d84ff1060da66d025a09b00f35f4dba0cf409a69c4c564de2f_d: There is not enough disk space on the node", + "details": [ + { + "code": "Message", + "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." + } + ] + } + } + ], "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -85,28 +102,32 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1068", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:09:24 GMT", + "Date": "Fri, 18 Nov 2022 09:56:12 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-079fa6a9b567ea28b408a72120789dea-e991c8e15c42bcc5-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-980134eb71bf06db544e0b1020ee91db-cfe35b8585810a79-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7c662cb9-8e14-426e-a5c7-9248db74a1bd", - "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-correlation-request-id": "83cb5dd4-dfd3-49d7-9b02-6b109b883429", + "x-ms-ratelimit-remaining-subscription-reads": "11981", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080924Z:7c662cb9-8e14-426e-a5c7-9248db74a1bd", - "x-request-time": "0.080" + "x-ms-routing-request-id": "JAPANEAST:20221118T095612Z:83cb5dd4-dfd3-49d7-9b02-6b109b883429", + "x-request-time": "0.082" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -121,17 +142,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sav3u7rijui4cza", - "containerName": "azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3", + "accountName": "teststorageaccount", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-10-10T07:43:07.7818269\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-10-10T07:43:08.5293577\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -145,26 +166,28 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "61", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:09:25 GMT", + "Date": "Fri, 18 Nov 2022 09:56:13 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-6d445cc833d93514d9e90b07b4c6edf3-36f25858453d9b99-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-a2a2df152fbdd403aaa26789038a0674-f22eef88682bf36f-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d9475dc8-87c1-4c3a-a0f7-03b043944e8c", - "x-ms-ratelimit-remaining-subscription-writes": "1173", + "x-ms-correlation-request-id": "f7276ba4-b8ec-4e19-9b77-221c3a884cee", + "x-ms-ratelimit-remaining-subscription-writes": "1186", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080925Z:d9475dc8-87c1-4c3a-a0f7-03b043944e8c", + "x-ms-routing-request-id": "JAPANEAST:20221118T095613Z:f7276ba4-b8ec-4e19-9b77-221c3a884cee", "x-request-time": "0.088" }, "ResponseBody": { @@ -173,14 +196,14 @@ } }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:09:25 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:56:16 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -190,9 +213,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 09 Nov 2022 08:09:25 GMT", - "ETag": "\u00220x8DAC13EFDFF2C0D\u0022", - "Last-Modified": "Tue, 08 Nov 2022 04:09:11 GMT", + "Date": "Fri, 18 Nov 2022 09:56:12 GMT", + "ETag": "\u00220x8DA9D48E17467D7\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:49:17 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -201,10 +224,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 08 Nov 2022 04:09:11 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:49:16 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "5d0c2440-3f92-4bf0-a277-a2158e0ee09d", + "x-ms-meta-name": "9c9cfba9-82bd-45db-ad06-07009d1d9672", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -213,20 +236,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:09:25 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:56:16 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 09 Nov 2022 08:09:25 GMT", + "Date": "Fri, 18 Nov 2022 09:56:12 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -239,15 +262,15 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "288", + "Content-Length": "291", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -257,31 +280,35 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "812", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:09:26 GMT", + "Date": "Fri, 18 Nov 2022 09:56:14 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-eb7e7a7f618022dc16a7fabb299d1914-808f0dbd0c18430b-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-5f5f7810a1b3d41704679952815a1bfc-9d1e933443737fdc-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "65b2fb5f-500e-4be7-a178-f277cf488799", - "x-ms-ratelimit-remaining-subscription-writes": "1161", + "x-ms-correlation-request-id": "6fcc4a2b-7f29-4213-8154-997e135262ee", + "x-ms-ratelimit-remaining-subscription-writes": "1185", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080926Z:65b2fb5f-500e-4be7-a178-f277cf488799", - "x-request-time": "0.063" + "x-ms-routing-request-id": "JAPANEAST:20221118T095614Z:6fcc4a2b-7f29-4213-8154-997e135262ee", + "x-request-time": "0.251" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -293,14 +320,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-11-08T04:09:13.0225939\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-09-23T09:49:20.984936\u002B00:00", + "createdBy": "Ying Chen", "createdByType": "User", - "lastModifiedAt": "2022-11-09T08:09:26.5231671\u002B00:00", - "lastModifiedBy": "Honglin Du", + "lastModifiedAt": "2022-11-18T09:56:14.1613636\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -314,7 +341,7 @@ "Connection": "keep-alive", "Content-Length": "1837", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -328,7 +355,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo ${{inputs.component_in_integer}} \u0026 echo ${{inputs.component_in_number}} \u0026 echo ${{inputs.component_in_string}} \u0026 echo ${{inputs.component_in_other_string}} \u0026 $[[echo ${{inputs.component_in_file}} \u0026]] $[[echo ${{inputs.component_in_folder}} \u0026]] echo ${{outputs.component_out_folder}} \u003E ${{outputs.component_out_folder}}/sample1.csv", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1", "name": "azureml_anonymous", "description": "This is the basic command component", @@ -385,26 +412,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3128", + "Content-Length": "3139", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:09:27 GMT", + "Date": "Fri, 18 Nov 2022 09:56:15 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-f5d091734b8bf8bd011d3d7ca22d693b-129a1edf99223b7b-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-7f87da3258063cf337b500fd165b6499-a171ced9aeae0527-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6430f3e2-4652-4e03-8ff8-98183b0481c4", - "x-ms-ratelimit-remaining-subscription-writes": "1160", + "x-ms-correlation-request-id": "2f4f2c69-a6ce-4b11-91e7-9dcb12d2c0b0", + "x-ms-ratelimit-remaining-subscription-writes": "1184", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080927Z:6430f3e2-4652-4e03-8ff8-98183b0481c4", - "x-request-time": "0.545" + "x-ms-routing-request-id": "JAPANEAST:20221118T095615Z:2f4f2c69-a6ce-4b11-91e7-9dcb12d2c0b0", + "x-request-time": "1.110" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f28835f2-9bb5-446d-8d52-f0cc6fe51907", - "name": "f28835f2-9bb5-446d-8d52-f0cc6fe51907", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f2514b9a-4479-4269-a4d1-af363b7a2480", + "name": "f2514b9a-4479-4269-a4d1-af363b7a2480", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -417,7 +444,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "f28835f2-9bb5-446d-8d52-f0cc6fe51907", + "version": "f2514b9a-4479-4269-a4d1-af363b7a2480", "display_name": "CommandComponentBasic", "is_deterministic": "True", "type": "command", @@ -467,8 +494,8 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1", - "environment": "azureml://registries/azureml/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", + "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" }, @@ -477,11 +504,11 @@ } }, "systemData": { - "createdAt": "2022-11-08T09:47:29.799922\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-11-18T09:50:33.0464018\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-11-08T09:47:29.9700963\u002B00:00", - "lastModifiedBy": "Honglin Du", + "lastModifiedAt": "2022-11-18T09:50:33.5643861\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -493,28 +520,32 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1068", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:09:28 GMT", + "Date": "Fri, 18 Nov 2022 09:56:16 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-4453a3e58bd38c36b4ed6014d28bce7c-a71388a7144873cc-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-1a82db2372174a877f61e07d129b2540-2d388da33ade21e0-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "07113c16-706a-4524-a9d2-eff6ff93c9e1", - "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-correlation-request-id": "bd754523-2710-46ef-b628-f95aad5626c6", + "x-ms-ratelimit-remaining-subscription-reads": "11980", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080928Z:07113c16-706a-4524-a9d2-eff6ff93c9e1", - "x-request-time": "0.105" + "x-ms-routing-request-id": "JAPANEAST:20221118T095616Z:bd754523-2710-46ef-b628-f95aad5626c6", + "x-request-time": "0.088" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -529,17 +560,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sav3u7rijui4cza", - "containerName": "azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3", + "accountName": "teststorageaccount", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-10-10T07:43:07.7818269\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-10-10T07:43:08.5293577\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -553,27 +584,29 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "61", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:09:29 GMT", + "Date": "Fri, 18 Nov 2022 09:56:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-42e4be44882e3d950bbfa80ab1da7b27-bff747be2434fb9c-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-6bf182f1eac691cc8b80b792ff23afb4-5edcb2304cf31929-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6c61af0a-6d18-4358-9811-75643362beb1", - "x-ms-ratelimit-remaining-subscription-writes": "1172", + "x-ms-correlation-request-id": "02b62418-7c7a-4216-923a-ef879bf3944f", + "x-ms-ratelimit-remaining-subscription-writes": "1185", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080929Z:6c61af0a-6d18-4358-9811-75643362beb1", - "x-request-time": "0.086" + "x-ms-routing-request-id": "JAPANEAST:20221118T095617Z:02b62418-7c7a-4216-923a-ef879bf3944f", + "x-request-time": "0.092" }, "ResponseBody": { "secretsType": "AccountKey", @@ -581,26 +614,26 @@ } }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:09:29 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:56:20 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Accept-Ranges": "bytes", - "Content-Length": "499", - "Content-MD5": "kD7N5\u002BygjTfbYTFhyEo7RA==", + "Content-Length": "508", + "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Wed, 09 Nov 2022 08:09:29 GMT", - "ETag": "\u00220x8DAC154D3DF99CE\u0022", - "Last-Modified": "Tue, 08 Nov 2022 06:45:30 GMT", + "Date": "Fri, 18 Nov 2022 09:56:16 GMT", + "ETag": "\u00220x8DA9D48AFBCE5A6\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:47:53 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -609,32 +642,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 08 Nov 2022 06:45:29 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:47:53 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "5fa55015-0323-4a0f-b7c2-1db6ccd3acbf", + "x-ms-meta-name": "da405283-c0d4-42bf-9cd0-2d052c9da84b", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "c0fd52f9-f2ed-44bf-bed3-c2f92c2fd4aa", + "x-ms-meta-version": "bcdecfd5-08fc-40e1-af7f-364ca3525a76", "x-ms-server-encrypted": "true", "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:09:29 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:56:20 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 09 Nov 2022 08:09:29 GMT", + "Date": "Fri, 18 Nov 2022 09:56:16 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -653,28 +686,32 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1068", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:09:30 GMT", + "Date": "Fri, 18 Nov 2022 09:56:18 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-fe5b91ab78e6c4ac0920949d3c76a1fd-b3a8e4afac702a4e-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-4d96ad6c5b3f0ec8582cf6152901d0e3-5ef26feda59c9d6a-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f5a03912-8a02-45ab-bb5e-c8a7d8921990", - "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-correlation-request-id": "1eb954f0-9c59-4ea6-9a6c-3827a7ca6ec9", + "x-ms-ratelimit-remaining-subscription-reads": "11979", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080930Z:f5a03912-8a02-45ab-bb5e-c8a7d8921990", - "x-request-time": "0.080" + "x-ms-routing-request-id": "JAPANEAST:20221118T095618Z:1eb954f0-9c59-4ea6-9a6c-3827a7ca6ec9", + "x-request-time": "0.122" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -689,17 +726,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sav3u7rijui4cza", - "containerName": "azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3", + "accountName": "teststorageaccount", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-10-10T07:43:07.7818269\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-10-10T07:43:08.5293577\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -713,27 +750,29 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "61", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:09:30 GMT", + "Date": "Fri, 18 Nov 2022 09:56:18 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-2bf93675b21bd6d41514a33c1d79ff17-a7c2ac9cfe90b1e0-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-75791bb390ead437ff45f7eb6c345e2e-13be198a36fc050d-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "92cd7ac7-5b46-429c-8405-ecc66851ff81", - "x-ms-ratelimit-remaining-subscription-writes": "1171", + "x-ms-correlation-request-id": "9445c462-1cc4-40ea-870d-e999294df812", + "x-ms-ratelimit-remaining-subscription-writes": "1184", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080931Z:92cd7ac7-5b46-429c-8405-ecc66851ff81", - "x-request-time": "0.086" + "x-ms-routing-request-id": "JAPANEAST:20221118T095618Z:9445c462-1cc4-40ea-870d-e999294df812", + "x-request-time": "0.096" }, "ResponseBody": { "secretsType": "AccountKey", @@ -741,26 +780,26 @@ } }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:09:31 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:56:22 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Accept-Ranges": "bytes", - "Content-Length": "499", - "Content-MD5": "kD7N5\u002BygjTfbYTFhyEo7RA==", + "Content-Length": "508", + "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Wed, 09 Nov 2022 08:09:31 GMT", - "ETag": "\u00220x8DAC16E43415F71\u0022", - "Last-Modified": "Tue, 08 Nov 2022 09:47:34 GMT", + "Date": "Fri, 18 Nov 2022 09:56:18 GMT", + "ETag": "\u00220x8DA9D50123677EA\u0022", + "Last-Modified": "Fri, 23 Sep 2022 10:40:45 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -769,32 +808,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 08 Nov 2022 09:47:34 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 10:40:45 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "a91c6464-f7fd-456e-b9e2-34951833ad6f", + "x-ms-meta-name": "0bd2889b-e21f-47f4-a44f-9ce6f86d2ed8", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "8ce5b729-ff48-46b3-a426-10230356c2cb", + "x-ms-meta-version": "24e72261-b9f5-4bf0-a875-b7edffb41cd8", "x-ms-server-encrypted": "true", "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/az-ml-artifacts/00000000000000000000000000000000/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:09:31 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:56:22 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 09 Nov 2022 08:09:31 GMT", + "Date": "Fri, 18 Nov 2022 09:56:18 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -807,7 +846,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_401066821799?api-version=2022-10-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_234265544790?api-version=2022-10-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -815,7 +854,7 @@ "Connection": "keep-alive", "Content-Length": "1521", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -867,7 +906,7 @@ } }, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f28835f2-9bb5-446d-8d52-f0cc6fe51907" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f2514b9a-4479-4269-a4d1-af363b7a2480" } }, "outputs": {}, @@ -879,20 +918,20 @@ "StatusCode": 400, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1329", + "Content-Length": "1328", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:09:36 GMT", + "Date": "Fri, 18 Nov 2022 09:56:22 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1c60436b-41fe-4c38-b3f2-454b8a10b649", - "x-ms-ratelimit-remaining-subscription-writes": "1159", + "x-ms-correlation-request-id": "660bf949-d436-42fb-86cf-97152cb5d75e", + "x-ms-ratelimit-remaining-subscription-writes": "1183", "x-ms-response-type": "error", - "x-ms-routing-request-id": "JAPANEAST:20221109T080937Z:1c60436b-41fe-4c38-b3f2-454b8a10b649", - "x-request-time": "2.416" + "x-ms-routing-request-id": "JAPANEAST:20221118T095622Z:660bf949-d436-42fb-86cf-97152cb5d75e", + "x-request-time": "1.244" }, "ResponseBody": { "error": { @@ -910,27 +949,27 @@ "type": "Correlation", "info": { "value": { - "operation": "a6ddc58fbfe2f95a74a449ce37f91c9e", - "request": "b54f585b7a2f1c27" + "operation": "717758b6e312ece6ac919ddc515423a8", + "request": "e1b1f26619f6f2e4" } } }, { "type": "Environment", "info": { - "value": "eastus2" + "value": "master" } }, { "type": "Location", "info": { - "value": "eastus2" + "value": "westus2" } }, { "type": "Time", "info": { - "value": "2022-11-09T08:09:36.9284057\u002B00:00" + "value": "2022-11-18T09:56:22.6968476\u002B00:00" } }, { @@ -957,6 +996,6 @@ } ], "Variables": { - "name": "test_401066821799" + "name": "test_234265544790" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_data_binding_expression[5-input_reason_expression.yml].json b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_data_binding_expression[5-input_reason_expression.yml].json index 14e62c845823..446d23c1c934 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_data_binding_expression[5-input_reason_expression.yml].json +++ b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_data_binding_expression[5-input_reason_expression.yml].json @@ -1,49 +1,53 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1500", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:09:40 GMT", + "Date": "Fri, 18 Nov 2022 09:56:25 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-c9cc1733fa227145ddec6becd68cd0d7-136c111abd084ede-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-6cae7320d41efe5893b575babccf4d01-7644c366ef651a35-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "04e85aee-89c8-4eda-b0c8-cf509a63629c", - "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-correlation-request-id": "9322342d-6b9f-4cf6-abe3-22a57c1ef9ff", + "x-ms-ratelimit-remaining-subscription-reads": "11978", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080940Z:04e85aee-89c8-4eda-b0c8-cf509a63629c", - "x-request-time": "0.028" + "x-ms-routing-request-id": "JAPANEAST:20221118T095626Z:9322342d-6b9f-4cf6-abe3-22a57c1ef9ff", + "x-request-time": "0.254" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2", + "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-10-10T07:44:03.2104968\u002B00:00", - "modifiedOn": "2022-11-08T03:58:27.2396848\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2", + "computeLocation": "centraluseuap", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -52,23 +56,36 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 0, - "targetNodeCount": 0, + "currentNodeCount": 2, + "targetNodeCount": 4, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 0, + "runningNodeCount": 2, "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Steady", - "allocationStateTransitionTime": "2022-11-09T08:07:30.719\u002B00:00", - "errors": null, + "allocationState": "Resizing", + "allocationStateTransitionTime": "2022-11-18T09:55:11.193\u002B00:00", + "errors": [ + { + "error": { + "code": "DiskFull", + "message": "ComputeNode.Id=tvmps_cb9237aaedb6e8d84ff1060da66d025a09b00f35f4dba0cf409a69c4c564de2f_d: There is not enough disk space on the node", + "details": [ + { + "code": "Message", + "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." + } + ] + } + } + ], "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -85,28 +102,32 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1068", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:09:41 GMT", + "Date": "Fri, 18 Nov 2022 09:56:28 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-2d1142a266fd2a3b02857d6a44349644-1c64fce24036b7cf-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-a02a8021ffa4f5af3dc332bcceb588a1-a271ea3ee9e3055a-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "aaaecdc3-8c4c-4412-a0da-d00d61a4ae8d", - "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-correlation-request-id": "366fdb48-2409-4195-8803-5e2047033076", + "x-ms-ratelimit-remaining-subscription-reads": "11977", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080942Z:aaaecdc3-8c4c-4412-a0da-d00d61a4ae8d", - "x-request-time": "0.138" + "x-ms-routing-request-id": "JAPANEAST:20221118T095628Z:366fdb48-2409-4195-8803-5e2047033076", + "x-request-time": "0.108" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -121,17 +142,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sav3u7rijui4cza", - "containerName": "azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3", + "accountName": "teststorageaccount", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-10-10T07:43:07.7818269\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-10-10T07:43:08.5293577\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -145,27 +166,29 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "61", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:09:43 GMT", + "Date": "Fri, 18 Nov 2022 09:56:28 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-4a9f4cf4ba509c7eb8050f5bc61e0bcc-7037b50e57c56d49-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-3ae9489d73d4710b2d37545c3706c460-2a6e5e8bc0f72d60-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "090cef49-93c3-4c70-8f96-ccb341d61a24", - "x-ms-ratelimit-remaining-subscription-writes": "1170", + "x-ms-correlation-request-id": "413cccb0-fbbd-479d-a8b1-3b6b79fde3a5", + "x-ms-ratelimit-remaining-subscription-writes": "1183", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080943Z:090cef49-93c3-4c70-8f96-ccb341d61a24", - "x-request-time": "0.081" + "x-ms-routing-request-id": "JAPANEAST:20221118T095628Z:413cccb0-fbbd-479d-a8b1-3b6b79fde3a5", + "x-request-time": "0.138" }, "ResponseBody": { "secretsType": "AccountKey", @@ -173,14 +196,14 @@ } }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:09:43 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:56:32 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -190,9 +213,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 09 Nov 2022 08:09:43 GMT", - "ETag": "\u00220x8DAC13EFDFF2C0D\u0022", - "Last-Modified": "Tue, 08 Nov 2022 04:09:11 GMT", + "Date": "Fri, 18 Nov 2022 09:56:28 GMT", + "ETag": "\u00220x8DA9D48E17467D7\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:49:17 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -201,10 +224,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 08 Nov 2022 04:09:11 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:49:16 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "5d0c2440-3f92-4bf0-a277-a2158e0ee09d", + "x-ms-meta-name": "9c9cfba9-82bd-45db-ad06-07009d1d9672", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -213,20 +236,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:09:43 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:56:32 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 09 Nov 2022 08:09:44 GMT", + "Date": "Fri, 18 Nov 2022 09:56:28 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -239,15 +262,15 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "288", + "Content-Length": "291", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -257,31 +280,35 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "812", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:09:44 GMT", + "Date": "Fri, 18 Nov 2022 09:56:29 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-006922e0643d9e13435cd2dc74f43a8b-cbfbfedd7e2b334c-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-0c691c3dff44b88b799bdd94ee9377c8-220af26bbe8092b6-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "428b255b-3e9d-4249-8023-5befb22fb309", - "x-ms-ratelimit-remaining-subscription-writes": "1158", + "x-ms-correlation-request-id": "34613f1c-25dd-4ecb-b040-851f2e9ba740", + "x-ms-ratelimit-remaining-subscription-writes": "1182", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080944Z:428b255b-3e9d-4249-8023-5befb22fb309", - "x-request-time": "0.076" + "x-ms-routing-request-id": "JAPANEAST:20221118T095630Z:34613f1c-25dd-4ecb-b040-851f2e9ba740", + "x-request-time": "0.257" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -293,14 +320,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-11-08T04:09:13.0225939\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-09-23T09:49:20.984936\u002B00:00", + "createdBy": "Ying Chen", "createdByType": "User", - "lastModifiedAt": "2022-11-09T08:09:44.7022724\u002B00:00", - "lastModifiedBy": "Honglin Du", + "lastModifiedAt": "2022-11-18T09:56:29.9480138\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -314,7 +341,7 @@ "Connection": "keep-alive", "Content-Length": "1837", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -328,7 +355,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo ${{inputs.component_in_integer}} \u0026 echo ${{inputs.component_in_number}} \u0026 echo ${{inputs.component_in_string}} \u0026 echo ${{inputs.component_in_other_string}} \u0026 $[[echo ${{inputs.component_in_file}} \u0026]] $[[echo ${{inputs.component_in_folder}} \u0026]] echo ${{outputs.component_out_folder}} \u003E ${{outputs.component_out_folder}}/sample1.csv", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1", "name": "azureml_anonymous", "description": "This is the basic command component", @@ -385,26 +412,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3128", + "Content-Length": "3139", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:09:48 GMT", + "Date": "Fri, 18 Nov 2022 09:56:31 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-56ea837e520da2930ed0290c17c755c2-0e9a424f59eefc71-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-a03dc538295f4fcd8c988b4cd67dbc3c-74e98fdffc750c32-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "98ba9856-db18-446a-b6d9-a58f504d0aaf", - "x-ms-ratelimit-remaining-subscription-writes": "1157", + "x-ms-correlation-request-id": "4d71aede-32f5-4cba-ade9-5220e154ef64", + "x-ms-ratelimit-remaining-subscription-writes": "1181", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080948Z:98ba9856-db18-446a-b6d9-a58f504d0aaf", - "x-request-time": "2.926" + "x-ms-routing-request-id": "JAPANEAST:20221118T095631Z:4d71aede-32f5-4cba-ade9-5220e154ef64", + "x-request-time": "1.057" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f28835f2-9bb5-446d-8d52-f0cc6fe51907", - "name": "f28835f2-9bb5-446d-8d52-f0cc6fe51907", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f2514b9a-4479-4269-a4d1-af363b7a2480", + "name": "f2514b9a-4479-4269-a4d1-af363b7a2480", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -417,7 +444,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "f28835f2-9bb5-446d-8d52-f0cc6fe51907", + "version": "f2514b9a-4479-4269-a4d1-af363b7a2480", "display_name": "CommandComponentBasic", "is_deterministic": "True", "type": "command", @@ -467,8 +494,8 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1", - "environment": "azureml://registries/azureml/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", + "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" }, @@ -477,11 +504,11 @@ } }, "systemData": { - "createdAt": "2022-11-08T09:47:29.799922\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-11-18T09:50:33.0464018\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-11-08T09:47:29.9700963\u002B00:00", - "lastModifiedBy": "Honglin Du", + "lastModifiedAt": "2022-11-18T09:50:33.5643861\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -493,28 +520,32 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1068", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:09:48 GMT", + "Date": "Fri, 18 Nov 2022 09:56:31 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-a36f213d7bc26ba5381ddcf9d43a6468-5f204b1b32318763-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-873816c8d57bd7fa15259a2b376eb5b4-38b55f3e3debc423-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "29df4519-e5ee-47b0-b453-8985027089a1", - "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-correlation-request-id": "249f5233-8b00-431c-a9e1-682c39df5c7a", + "x-ms-ratelimit-remaining-subscription-reads": "11976", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080949Z:29df4519-e5ee-47b0-b453-8985027089a1", - "x-request-time": "0.139" + "x-ms-routing-request-id": "JAPANEAST:20221118T095632Z:249f5233-8b00-431c-a9e1-682c39df5c7a", + "x-request-time": "0.087" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -529,17 +560,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sav3u7rijui4cza", - "containerName": "azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3", + "accountName": "teststorageaccount", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-10-10T07:43:07.7818269\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-10-10T07:43:08.5293577\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -553,27 +584,29 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "61", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:09:49 GMT", + "Date": "Fri, 18 Nov 2022 09:56:32 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-82c2b4f98d0afc8e03fdeaaaaeb940f3-ae841cfea11a6673-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-c7cc35e81d7aa3c6801e1289361a74c1-24cfceec509925ee-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "23942e4e-644f-479a-ad88-3e45d0acce37", - "x-ms-ratelimit-remaining-subscription-writes": "1169", + "x-ms-correlation-request-id": "7858ab06-7f8b-4fb1-aff1-1e714a31d6f4", + "x-ms-ratelimit-remaining-subscription-writes": "1182", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080950Z:23942e4e-644f-479a-ad88-3e45d0acce37", - "x-request-time": "0.121" + "x-ms-routing-request-id": "JAPANEAST:20221118T095632Z:7858ab06-7f8b-4fb1-aff1-1e714a31d6f4", + "x-request-time": "0.094" }, "ResponseBody": { "secretsType": "AccountKey", @@ -581,26 +614,26 @@ } }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:09:49 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:56:36 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Accept-Ranges": "bytes", - "Content-Length": "499", - "Content-MD5": "kD7N5\u002BygjTfbYTFhyEo7RA==", + "Content-Length": "508", + "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Wed, 09 Nov 2022 08:09:50 GMT", - "ETag": "\u00220x8DAC154D3DF99CE\u0022", - "Last-Modified": "Tue, 08 Nov 2022 06:45:30 GMT", + "Date": "Fri, 18 Nov 2022 09:56:32 GMT", + "ETag": "\u00220x8DA9D48AFBCE5A6\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:47:53 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -609,32 +642,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 08 Nov 2022 06:45:29 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:47:53 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "5fa55015-0323-4a0f-b7c2-1db6ccd3acbf", + "x-ms-meta-name": "da405283-c0d4-42bf-9cd0-2d052c9da84b", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "c0fd52f9-f2ed-44bf-bed3-c2f92c2fd4aa", + "x-ms-meta-version": "bcdecfd5-08fc-40e1-af7f-364ca3525a76", "x-ms-server-encrypted": "true", "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:09:50 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:56:36 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 09 Nov 2022 08:09:50 GMT", + "Date": "Fri, 18 Nov 2022 09:56:32 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -653,28 +686,32 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1068", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:09:50 GMT", + "Date": "Fri, 18 Nov 2022 09:56:33 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-786fa1c7d328043aebf8b039e2db409e-177c9d68d0ca5dec-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-0c3a834100a6e9afbc3eec6c2e167f5f-4cf03a835da4ddb3-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3b21beea-9dd6-4dcd-b6f1-ab4ffe8c1b3b", - "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-correlation-request-id": "6d79ff6f-b170-4958-a676-cd0742e61655", + "x-ms-ratelimit-remaining-subscription-reads": "11975", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080951Z:3b21beea-9dd6-4dcd-b6f1-ab4ffe8c1b3b", - "x-request-time": "0.124" + "x-ms-routing-request-id": "JAPANEAST:20221118T095633Z:6d79ff6f-b170-4958-a676-cd0742e61655", + "x-request-time": "0.097" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -689,17 +726,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sav3u7rijui4cza", - "containerName": "azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3", + "accountName": "teststorageaccount", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-10-10T07:43:07.7818269\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-10-10T07:43:08.5293577\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -713,27 +750,29 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "61", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:09:51 GMT", + "Date": "Fri, 18 Nov 2022 09:56:33 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-6abdeca00796925b7a2016ea0896ebfb-99ac44911e9f6683-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-30a9b2069959c3b53318a0ba7b02a064-867285c5d28ee931-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e48c4379-f00d-4fc7-a93b-7afb994dc67d", - "x-ms-ratelimit-remaining-subscription-writes": "1168", + "x-ms-correlation-request-id": "5618220e-e29b-42b7-8989-fe29bb31a2a4", + "x-ms-ratelimit-remaining-subscription-writes": "1181", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080952Z:e48c4379-f00d-4fc7-a93b-7afb994dc67d", - "x-request-time": "0.264" + "x-ms-routing-request-id": "JAPANEAST:20221118T095634Z:5618220e-e29b-42b7-8989-fe29bb31a2a4", + "x-request-time": "0.088" }, "ResponseBody": { "secretsType": "AccountKey", @@ -741,26 +780,26 @@ } }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:09:51 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:56:37 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Accept-Ranges": "bytes", - "Content-Length": "499", - "Content-MD5": "kD7N5\u002BygjTfbYTFhyEo7RA==", + "Content-Length": "508", + "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Wed, 09 Nov 2022 08:09:52 GMT", - "ETag": "\u00220x8DAC16E43415F71\u0022", - "Last-Modified": "Tue, 08 Nov 2022 09:47:34 GMT", + "Date": "Fri, 18 Nov 2022 09:56:33 GMT", + "ETag": "\u00220x8DA9D50123677EA\u0022", + "Last-Modified": "Fri, 23 Sep 2022 10:40:45 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -769,32 +808,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 08 Nov 2022 09:47:34 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 10:40:45 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "a91c6464-f7fd-456e-b9e2-34951833ad6f", + "x-ms-meta-name": "0bd2889b-e21f-47f4-a44f-9ce6f86d2ed8", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "8ce5b729-ff48-46b3-a426-10230356c2cb", + "x-ms-meta-version": "24e72261-b9f5-4bf0-a875-b7edffb41cd8", "x-ms-server-encrypted": "true", "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/az-ml-artifacts/00000000000000000000000000000000/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:09:52 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:56:37 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 09 Nov 2022 08:09:52 GMT", + "Date": "Fri, 18 Nov 2022 09:56:33 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -807,7 +846,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_343211374140?api-version=2022-10-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_638121801470?api-version=2022-10-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -815,7 +854,7 @@ "Connection": "keep-alive", "Content-Length": "1677", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -871,7 +910,7 @@ } }, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f28835f2-9bb5-446d-8d52-f0cc6fe51907" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f2514b9a-4479-4269-a4d1-af363b7a2480" } }, "outputs": {}, @@ -883,20 +922,20 @@ "StatusCode": 400, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1329", + "Content-Length": "1327", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:09:57 GMT", + "Date": "Fri, 18 Nov 2022 09:56:37 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c57b23f3-241e-4600-a100-f87071926c06", - "x-ms-ratelimit-remaining-subscription-writes": "1156", + "x-ms-correlation-request-id": "953d7c30-e336-4980-9074-122f53bc364d", + "x-ms-ratelimit-remaining-subscription-writes": "1180", "x-ms-response-type": "error", - "x-ms-routing-request-id": "JAPANEAST:20221109T080957Z:c57b23f3-241e-4600-a100-f87071926c06", - "x-request-time": "2.130" + "x-ms-routing-request-id": "JAPANEAST:20221118T095637Z:953d7c30-e336-4980-9074-122f53bc364d", + "x-request-time": "1.243" }, "ResponseBody": { "error": { @@ -914,27 +953,27 @@ "type": "Correlation", "info": { "value": { - "operation": "82546d3e23073a282e34a0cb1671ae31", - "request": "5beeecd07689e424" + "operation": "18d04d8c354089973f0bd6cbb56959cd", + "request": "e15b8af705783691" } } }, { "type": "Environment", "info": { - "value": "eastus2" + "value": "master" } }, { "type": "Location", "info": { - "value": "eastus2" + "value": "westus2" } }, { "type": "Time", "info": { - "value": "2022-11-09T08:09:57.8704385\u002B00:00" + "value": "2022-11-18T09:56:37.638352\u002B00:00" } }, { @@ -961,6 +1000,6 @@ } ], "Variables": { - "name": "test_343211374140" + "name": "test_638121801470" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_data_binding_expression[6-input_string_concatenate.yml].json b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_data_binding_expression[6-input_string_concatenate.yml].json index 09c948b2925e..29cec9d11a35 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_data_binding_expression[6-input_string_concatenate.yml].json +++ b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_data_binding_expression[6-input_string_concatenate.yml].json @@ -1,49 +1,53 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1500", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:10:00 GMT", + "Date": "Fri, 18 Nov 2022 09:56:40 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-973a27bd8ab62b148c36517e59b00bfc-c48593b445fc8a2a-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-30f0e58467ae2586339d1ef95b8b2283-31e236c6bc46e238-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f426047e-aaee-4542-86f7-3081a339c636", - "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-correlation-request-id": "82e5d644-7340-487b-bc84-5f5af07a71a2", + "x-ms-ratelimit-remaining-subscription-reads": "11974", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081001Z:f426047e-aaee-4542-86f7-3081a339c636", - "x-request-time": "0.064" + "x-ms-routing-request-id": "JAPANEAST:20221118T095640Z:82e5d644-7340-487b-bc84-5f5af07a71a2", + "x-request-time": "0.215" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2", + "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-10-10T07:44:03.2104968\u002B00:00", - "modifiedOn": "2022-11-08T03:58:27.2396848\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2", + "computeLocation": "centraluseuap", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -52,23 +56,36 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 0, - "targetNodeCount": 0, + "currentNodeCount": 2, + "targetNodeCount": 4, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 0, + "runningNodeCount": 2, "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Steady", - "allocationStateTransitionTime": "2022-11-09T08:07:30.719\u002B00:00", - "errors": null, + "allocationState": "Resizing", + "allocationStateTransitionTime": "2022-11-18T09:55:11.193\u002B00:00", + "errors": [ + { + "error": { + "code": "DiskFull", + "message": "ComputeNode.Id=tvmps_cb9237aaedb6e8d84ff1060da66d025a09b00f35f4dba0cf409a69c4c564de2f_d: There is not enough disk space on the node", + "details": [ + { + "code": "Message", + "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." + } + ] + } + } + ], "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -85,28 +102,32 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1068", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:10:02 GMT", + "Date": "Fri, 18 Nov 2022 09:56:42 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-4a6c44bccb240bf7bf549965acfb18b1-904c4cb545afccc8-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-62531ad64c1e0e4427e570e6cdfec067-ae29d3421f0be6c6-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9e44ab46-74ec-47c1-8288-e9e75e466963", - "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-correlation-request-id": "135db668-3649-418e-8111-11ddbbad0453", + "x-ms-ratelimit-remaining-subscription-reads": "11973", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081003Z:9e44ab46-74ec-47c1-8288-e9e75e466963", - "x-request-time": "0.158" + "x-ms-routing-request-id": "JAPANEAST:20221118T095642Z:135db668-3649-418e-8111-11ddbbad0453", + "x-request-time": "0.082" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -121,17 +142,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sav3u7rijui4cza", - "containerName": "azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3", + "accountName": "teststorageaccount", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-10-10T07:43:07.7818269\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-10-10T07:43:08.5293577\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -145,27 +166,29 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "61", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:10:03 GMT", + "Date": "Fri, 18 Nov 2022 09:56:43 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-f885972a4ca4acfea4c484afd27e0d93-79bf25d36769daab-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-88eebf9168568128530c49898e102cf0-0c6504ea863dd05d-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "913a8570-009d-49bf-b551-1cb3ecd28fdf", - "x-ms-ratelimit-remaining-subscription-writes": "1167", + "x-ms-correlation-request-id": "93348ff8-e5da-4e87-af03-1aa3f427b421", + "x-ms-ratelimit-remaining-subscription-writes": "1180", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081004Z:913a8570-009d-49bf-b551-1cb3ecd28fdf", - "x-request-time": "0.092" + "x-ms-routing-request-id": "JAPANEAST:20221118T095643Z:93348ff8-e5da-4e87-af03-1aa3f427b421", + "x-request-time": "0.101" }, "ResponseBody": { "secretsType": "AccountKey", @@ -173,14 +196,14 @@ } }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:10:04 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:56:46 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -190,9 +213,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 09 Nov 2022 08:10:04 GMT", - "ETag": "\u00220x8DAC13EFDFF2C0D\u0022", - "Last-Modified": "Tue, 08 Nov 2022 04:09:11 GMT", + "Date": "Fri, 18 Nov 2022 09:56:42 GMT", + "ETag": "\u00220x8DA9D48E17467D7\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:49:17 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -201,10 +224,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 08 Nov 2022 04:09:11 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:49:16 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "5d0c2440-3f92-4bf0-a277-a2158e0ee09d", + "x-ms-meta-name": "9c9cfba9-82bd-45db-ad06-07009d1d9672", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -213,20 +236,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:10:04 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:56:47 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 09 Nov 2022 08:10:04 GMT", + "Date": "Fri, 18 Nov 2022 09:56:43 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -239,15 +262,15 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "288", + "Content-Length": "291", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -257,31 +280,35 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "812", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:10:04 GMT", + "Date": "Fri, 18 Nov 2022 09:56:44 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-d6d86d4c519ba7b4a713717802f672ac-06b8ddbf9956fd7a-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-c451d74a870f474e102f37ac1bd55776-15cd081ac391b0f5-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4960b620-9fba-4f6c-9abd-716d66702cbc", - "x-ms-ratelimit-remaining-subscription-writes": "1155", + "x-ms-correlation-request-id": "e923ab8a-d6fb-4b9a-8442-287338055577", + "x-ms-ratelimit-remaining-subscription-writes": "1179", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081005Z:4960b620-9fba-4f6c-9abd-716d66702cbc", - "x-request-time": "0.083" + "x-ms-routing-request-id": "JAPANEAST:20221118T095644Z:e923ab8a-d6fb-4b9a-8442-287338055577", + "x-request-time": "0.234" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -293,14 +320,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-11-08T04:09:13.0225939\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-09-23T09:49:20.984936\u002B00:00", + "createdBy": "Ying Chen", "createdByType": "User", - "lastModifiedAt": "2022-11-09T08:10:05.3279825\u002B00:00", - "lastModifiedBy": "Honglin Du", + "lastModifiedAt": "2022-11-18T09:56:44.5693314\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -314,7 +341,7 @@ "Connection": "keep-alive", "Content-Length": "1837", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -328,7 +355,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo ${{inputs.component_in_integer}} \u0026 echo ${{inputs.component_in_number}} \u0026 echo ${{inputs.component_in_string}} \u0026 echo ${{inputs.component_in_other_string}} \u0026 $[[echo ${{inputs.component_in_file}} \u0026]] $[[echo ${{inputs.component_in_folder}} \u0026]] echo ${{outputs.component_out_folder}} \u003E ${{outputs.component_out_folder}}/sample1.csv", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1", "name": "azureml_anonymous", "description": "This is the basic command component", @@ -385,26 +412,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3128", + "Content-Length": "3139", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:10:06 GMT", + "Date": "Fri, 18 Nov 2022 09:56:45 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-3b66c624f0fda11f9f2dd91a278166bf-f3a5ddcd1e6fe17e-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-254157f01066bdc58f5d0b0167b7da20-2ed4feddeb921c57-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b59d459d-85ec-4d75-a821-196f1387f530", - "x-ms-ratelimit-remaining-subscription-writes": "1154", + "x-ms-correlation-request-id": "4c1db410-8b84-4d2e-b213-770cea6646e1", + "x-ms-ratelimit-remaining-subscription-writes": "1178", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081006Z:b59d459d-85ec-4d75-a821-196f1387f530", - "x-request-time": "0.446" + "x-ms-routing-request-id": "JAPANEAST:20221118T095646Z:4c1db410-8b84-4d2e-b213-770cea6646e1", + "x-request-time": "1.069" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f28835f2-9bb5-446d-8d52-f0cc6fe51907", - "name": "f28835f2-9bb5-446d-8d52-f0cc6fe51907", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f2514b9a-4479-4269-a4d1-af363b7a2480", + "name": "f2514b9a-4479-4269-a4d1-af363b7a2480", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -417,7 +444,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "f28835f2-9bb5-446d-8d52-f0cc6fe51907", + "version": "f2514b9a-4479-4269-a4d1-af363b7a2480", "display_name": "CommandComponentBasic", "is_deterministic": "True", "type": "command", @@ -467,8 +494,8 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1", - "environment": "azureml://registries/azureml/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", + "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" }, @@ -477,11 +504,11 @@ } }, "systemData": { - "createdAt": "2022-11-08T09:47:29.799922\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-11-18T09:50:33.0464018\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-11-08T09:47:29.9700963\u002B00:00", - "lastModifiedBy": "Honglin Du", + "lastModifiedAt": "2022-11-18T09:50:33.5643861\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -493,28 +520,32 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1068", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:10:06 GMT", + "Date": "Fri, 18 Nov 2022 09:56:46 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-cdcca271492328fed4145279f9965745-cd29f6b49ff939c5-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-98af0a4e2a407229f4a6fa0b2fc7f0e9-663524d7256f0716-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "08d873d8-b31a-4220-a6e9-1aadcf2c8be5", - "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-correlation-request-id": "cbf25d77-a960-46cc-ba9b-ac4c17e637fe", + "x-ms-ratelimit-remaining-subscription-reads": "11972", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081007Z:08d873d8-b31a-4220-a6e9-1aadcf2c8be5", - "x-request-time": "0.208" + "x-ms-routing-request-id": "JAPANEAST:20221118T095646Z:cbf25d77-a960-46cc-ba9b-ac4c17e637fe", + "x-request-time": "0.082" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -529,17 +560,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sav3u7rijui4cza", - "containerName": "azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3", + "accountName": "teststorageaccount", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-10-10T07:43:07.7818269\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-10-10T07:43:08.5293577\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -553,27 +584,29 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "61", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:10:07 GMT", + "Date": "Fri, 18 Nov 2022 09:56:47 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-6d4fbeeb4a8825f8c9adda46358ff1b0-d5f0f25e7a30ba7e-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-2c37e21231df61518e963f089d4d7ea3-d55fe239758b1a47-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "292ac681-8a9a-4379-8fec-e6fb64ea234e", - "x-ms-ratelimit-remaining-subscription-writes": "1166", + "x-ms-correlation-request-id": "1667cb82-e693-4bfa-86f4-72473cb9b14f", + "x-ms-ratelimit-remaining-subscription-writes": "1179", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081008Z:292ac681-8a9a-4379-8fec-e6fb64ea234e", - "x-request-time": "0.109" + "x-ms-routing-request-id": "JAPANEAST:20221118T095647Z:1667cb82-e693-4bfa-86f4-72473cb9b14f", + "x-request-time": "0.119" }, "ResponseBody": { "secretsType": "AccountKey", @@ -581,26 +614,26 @@ } }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:10:07 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:56:51 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Accept-Ranges": "bytes", - "Content-Length": "499", - "Content-MD5": "kD7N5\u002BygjTfbYTFhyEo7RA==", + "Content-Length": "508", + "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Wed, 09 Nov 2022 08:10:08 GMT", - "ETag": "\u00220x8DAC154D3DF99CE\u0022", - "Last-Modified": "Tue, 08 Nov 2022 06:45:30 GMT", + "Date": "Fri, 18 Nov 2022 09:56:47 GMT", + "ETag": "\u00220x8DA9D48AFBCE5A6\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:47:53 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -609,32 +642,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 08 Nov 2022 06:45:29 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:47:53 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "5fa55015-0323-4a0f-b7c2-1db6ccd3acbf", + "x-ms-meta-name": "da405283-c0d4-42bf-9cd0-2d052c9da84b", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "c0fd52f9-f2ed-44bf-bed3-c2f92c2fd4aa", + "x-ms-meta-version": "bcdecfd5-08fc-40e1-af7f-364ca3525a76", "x-ms-server-encrypted": "true", "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:10:08 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:56:51 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 09 Nov 2022 08:10:08 GMT", + "Date": "Fri, 18 Nov 2022 09:56:47 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -653,28 +686,32 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1068", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:10:08 GMT", + "Date": "Fri, 18 Nov 2022 09:56:48 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-75a37292b3e0440976d5654634474bed-c32f620a819411dd-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-56e1c5bddefcf2acbd837a099e1ecf2d-66779e411b557d35-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "13575edb-d435-4f78-97d0-c3175fa422c8", - "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-correlation-request-id": "3a506937-3192-43fb-a6f2-132b82da0d1e", + "x-ms-ratelimit-remaining-subscription-reads": "11971", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081009Z:13575edb-d435-4f78-97d0-c3175fa422c8", - "x-request-time": "0.137" + "x-ms-routing-request-id": "JAPANEAST:20221118T095648Z:3a506937-3192-43fb-a6f2-132b82da0d1e", + "x-request-time": "0.081" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -689,17 +726,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sav3u7rijui4cza", - "containerName": "azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3", + "accountName": "teststorageaccount", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-10-10T07:43:07.7818269\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-10-10T07:43:08.5293577\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -713,27 +750,29 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "61", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:10:09 GMT", + "Date": "Fri, 18 Nov 2022 09:56:49 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-c62262de873f251f28d2e16afedc7a35-3af931ad9c50c127-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-45e2f4f3689a79cd27541cf35d7c0c3d-867317daca470081-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "291dbc25-77d9-4646-bb14-cf64a4449a6b", - "x-ms-ratelimit-remaining-subscription-writes": "1165", + "x-ms-correlation-request-id": "629d9b44-e969-4400-a2cc-1ac13b26da10", + "x-ms-ratelimit-remaining-subscription-writes": "1178", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081009Z:291dbc25-77d9-4646-bb14-cf64a4449a6b", - "x-request-time": "0.101" + "x-ms-routing-request-id": "JAPANEAST:20221118T095649Z:629d9b44-e969-4400-a2cc-1ac13b26da10", + "x-request-time": "0.421" }, "ResponseBody": { "secretsType": "AccountKey", @@ -741,26 +780,26 @@ } }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:10:09 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:56:52 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Accept-Ranges": "bytes", - "Content-Length": "499", - "Content-MD5": "kD7N5\u002BygjTfbYTFhyEo7RA==", + "Content-Length": "508", + "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Wed, 09 Nov 2022 08:10:10 GMT", - "ETag": "\u00220x8DAC16E43415F71\u0022", - "Last-Modified": "Tue, 08 Nov 2022 09:47:34 GMT", + "Date": "Fri, 18 Nov 2022 09:56:48 GMT", + "ETag": "\u00220x8DA9D50123677EA\u0022", + "Last-Modified": "Fri, 23 Sep 2022 10:40:45 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -769,32 +808,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 08 Nov 2022 09:47:34 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 10:40:45 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "a91c6464-f7fd-456e-b9e2-34951833ad6f", + "x-ms-meta-name": "0bd2889b-e21f-47f4-a44f-9ce6f86d2ed8", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "8ce5b729-ff48-46b3-a426-10230356c2cb", + "x-ms-meta-version": "24e72261-b9f5-4bf0-a875-b7edffb41cd8", "x-ms-server-encrypted": "true", "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/az-ml-artifacts/00000000000000000000000000000000/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:10:10 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:56:53 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 09 Nov 2022 08:10:10 GMT", + "Date": "Fri, 18 Nov 2022 09:56:49 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -807,7 +846,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_404645334032?api-version=2022-10-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_934346631513?api-version=2022-10-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -815,7 +854,7 @@ "Connection": "keep-alive", "Content-Length": "1523", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -867,7 +906,7 @@ } }, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f28835f2-9bb5-446d-8d52-f0cc6fe51907" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f2514b9a-4479-4269-a4d1-af363b7a2480" } }, "outputs": {}, @@ -879,26 +918,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3977", + "Content-Length": "3984", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:10:18 GMT", + "Date": "Fri, 18 Nov 2022 09:56:54 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_404645334032?api-version=2022-10-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_934346631513?api-version=2022-10-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-beae15c4d3f908ae0ea87ddc2f4dd4a8-b3445d8cd6bab23e-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-1b6d7e73c80d23573bd6b9f46cb6f9e4-fec6986dc20d284c-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cd9f83cc-266e-4dab-9031-ed01f6ea8f0d", - "x-ms-ratelimit-remaining-subscription-writes": "1153", + "x-ms-correlation-request-id": "f4c9c5ef-faf7-4ee5-9167-3aba1ce725c9", + "x-ms-ratelimit-remaining-subscription-writes": "1177", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081019Z:cd9f83cc-266e-4dab-9031-ed01f6ea8f0d", - "x-request-time": "5.384" + "x-ms-routing-request-id": "JAPANEAST:20221118T095654Z:f4c9c5ef-faf7-4ee5-9167-3aba1ce725c9", + "x-request-time": "2.638" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_404645334032", - "name": "test_404645334032", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_934346631513", + "name": "test_934346631513", "type": "Microsoft.MachineLearningServices/workspaces/jobs", "properties": { "description": "The hello world pipeline job with data binding", @@ -925,7 +964,7 @@ "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null, @@ -934,7 +973,7 @@ "Studio": { "jobServiceType": "Studio", "port": null, - "endpoint": "https://ml.azure.com/runs/test_404645334032?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "endpoint": "https://ml.azure.com/runs/test_934346631513?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, "properties": null, @@ -960,7 +999,7 @@ } }, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f28835f2-9bb5-446d-8d52-f0cc6fe51907" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f2514b9a-4479-4269-a4d1-af363b7a2480" } }, "inputs": { @@ -1001,14 +1040,14 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-11-09T08:10:18.5245765\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-11-18T09:56:53.8152837\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } } ], "Variables": { - "name": "test_404645334032" + "name": "test_934346631513" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_data_binding_expression[7-run_settings_compute.yml].json b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_data_binding_expression[7-run_settings_compute.yml].json index 4e0eed63832b..4a12ef2d9b49 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_data_binding_expression[7-run_settings_compute.yml].json +++ b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_data_binding_expression[7-run_settings_compute.yml].json @@ -1,49 +1,53 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1500", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:10:22 GMT", + "Date": "Fri, 18 Nov 2022 09:56:58 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-f65be0f0932902c507dba4466466a885-b6041ca6f81f7654-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-f652e8de0a686b908a8f951ae36b20ca-733387182e0e4f5c-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d067b2ed-9266-41ce-b899-1e46019245eb", - "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-correlation-request-id": "6ad64cf8-52d9-4a91-abb5-b7c84b9a7a27", + "x-ms-ratelimit-remaining-subscription-reads": "11970", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081023Z:d067b2ed-9266-41ce-b899-1e46019245eb", - "x-request-time": "0.047" + "x-ms-routing-request-id": "JAPANEAST:20221118T095659Z:6ad64cf8-52d9-4a91-abb5-b7c84b9a7a27", + "x-request-time": "0.244" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2", + "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-10-10T07:44:03.2104968\u002B00:00", - "modifiedOn": "2022-11-08T03:58:27.2396848\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2", + "computeLocation": "centraluseuap", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -52,23 +56,36 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 0, - "targetNodeCount": 0, + "currentNodeCount": 2, + "targetNodeCount": 4, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 0, + "runningNodeCount": 2, "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Steady", - "allocationStateTransitionTime": "2022-11-09T08:07:30.719\u002B00:00", - "errors": null, + "allocationState": "Resizing", + "allocationStateTransitionTime": "2022-11-18T09:55:11.193\u002B00:00", + "errors": [ + { + "error": { + "code": "DiskFull", + "message": "ComputeNode.Id=tvmps_cb9237aaedb6e8d84ff1060da66d025a09b00f35f4dba0cf409a69c4c564de2f_d: There is not enough disk space on the node", + "details": [ + { + "code": "Message", + "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." + } + ] + } + } + ], "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -85,28 +102,32 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1068", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:10:24 GMT", + "Date": "Fri, 18 Nov 2022 09:57:01 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-f59cdc97a492ce67c9280612e6cfc091-1d85e20db2667753-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-36a86cd8549625a2948d3440b9a7c1d2-66669722dcaec50a-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fb966379-7a69-42bd-ae57-a66c99df62cb", - "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-correlation-request-id": "fa40a7e0-d2b9-4537-b6d4-f2834a80bb3a", + "x-ms-ratelimit-remaining-subscription-reads": "11969", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081025Z:fb966379-7a69-42bd-ae57-a66c99df62cb", - "x-request-time": "0.093" + "x-ms-routing-request-id": "JAPANEAST:20221118T095701Z:fa40a7e0-d2b9-4537-b6d4-f2834a80bb3a", + "x-request-time": "0.094" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -121,17 +142,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sav3u7rijui4cza", - "containerName": "azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3", + "accountName": "teststorageaccount", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-10-10T07:43:07.7818269\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-10-10T07:43:08.5293577\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -145,27 +166,29 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "61", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:10:25 GMT", + "Date": "Fri, 18 Nov 2022 09:57:01 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-92073f4591bbcbe5b071e17ca107b91f-7e76dc4d119682f1-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-25395ca2b7846796bf48d8f1e8599c85-c82c6504cbbe30b3-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "19ec149c-ac8b-4b63-82f2-66ba318bb792", - "x-ms-ratelimit-remaining-subscription-writes": "1164", + "x-ms-correlation-request-id": "dd10d113-a41e-4e6b-b810-697bde55a088", + "x-ms-ratelimit-remaining-subscription-writes": "1177", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081026Z:19ec149c-ac8b-4b63-82f2-66ba318bb792", - "x-request-time": "0.118" + "x-ms-routing-request-id": "JAPANEAST:20221118T095702Z:dd10d113-a41e-4e6b-b810-697bde55a088", + "x-request-time": "0.101" }, "ResponseBody": { "secretsType": "AccountKey", @@ -173,14 +196,14 @@ } }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:10:25 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:57:05 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -190,9 +213,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 09 Nov 2022 08:10:26 GMT", - "ETag": "\u00220x8DAC13EFDFF2C0D\u0022", - "Last-Modified": "Tue, 08 Nov 2022 04:09:11 GMT", + "Date": "Fri, 18 Nov 2022 09:57:01 GMT", + "ETag": "\u00220x8DA9D48E17467D7\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:49:17 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -201,10 +224,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 08 Nov 2022 04:09:11 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:49:16 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "5d0c2440-3f92-4bf0-a277-a2158e0ee09d", + "x-ms-meta-name": "9c9cfba9-82bd-45db-ad06-07009d1d9672", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -213,20 +236,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:10:26 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:57:05 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 09 Nov 2022 08:10:26 GMT", + "Date": "Fri, 18 Nov 2022 09:57:01 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -239,15 +262,15 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "288", + "Content-Length": "291", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -257,31 +280,35 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "812", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:10:26 GMT", + "Date": "Fri, 18 Nov 2022 09:57:02 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-22d923789ea535972ca3dca6628b595f-d219ba61c8c2d1a9-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-55e40683c4d5d70d290d9b53db8d7a70-f7648f915a8e3779-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "01c2ec8c-7b9a-4d9a-b84f-d1b0568e6d84", - "x-ms-ratelimit-remaining-subscription-writes": "1152", + "x-ms-correlation-request-id": "25b93019-ff0d-4312-85cb-8a38673f54c8", + "x-ms-ratelimit-remaining-subscription-writes": "1176", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081027Z:01c2ec8c-7b9a-4d9a-b84f-d1b0568e6d84", - "x-request-time": "0.104" + "x-ms-routing-request-id": "JAPANEAST:20221118T095703Z:25b93019-ff0d-4312-85cb-8a38673f54c8", + "x-request-time": "0.221" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -293,14 +320,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-11-08T04:09:13.0225939\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-09-23T09:49:20.984936\u002B00:00", + "createdBy": "Ying Chen", "createdByType": "User", - "lastModifiedAt": "2022-11-09T08:10:27.1530915\u002B00:00", - "lastModifiedBy": "Honglin Du", + "lastModifiedAt": "2022-11-18T09:57:03.0762733\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -314,7 +341,7 @@ "Connection": "keep-alive", "Content-Length": "1837", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -328,7 +355,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo ${{inputs.component_in_integer}} \u0026 echo ${{inputs.component_in_number}} \u0026 echo ${{inputs.component_in_string}} \u0026 echo ${{inputs.component_in_other_string}} \u0026 $[[echo ${{inputs.component_in_file}} \u0026]] $[[echo ${{inputs.component_in_folder}} \u0026]] echo ${{outputs.component_out_folder}} \u003E ${{outputs.component_out_folder}}/sample1.csv", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1", "name": "azureml_anonymous", "description": "This is the basic command component", @@ -385,26 +412,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3128", + "Content-Length": "3139", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:10:27 GMT", + "Date": "Fri, 18 Nov 2022 09:57:04 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-e08c7a5810804cb4873a972c2baa532e-e0c0e9ce85bd3e93-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-587e4a650baf2d5d609bb55f10d760e6-9946e1993e59414c-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "98d22a58-aa2c-4b41-a7b6-ce1a3ab92261", - "x-ms-ratelimit-remaining-subscription-writes": "1151", + "x-ms-correlation-request-id": "70d9d93a-57ec-4aa4-9ffc-174baa1adeff", + "x-ms-ratelimit-remaining-subscription-writes": "1175", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081028Z:98d22a58-aa2c-4b41-a7b6-ce1a3ab92261", - "x-request-time": "0.458" + "x-ms-routing-request-id": "JAPANEAST:20221118T095704Z:70d9d93a-57ec-4aa4-9ffc-174baa1adeff", + "x-request-time": "1.077" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f28835f2-9bb5-446d-8d52-f0cc6fe51907", - "name": "f28835f2-9bb5-446d-8d52-f0cc6fe51907", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f2514b9a-4479-4269-a4d1-af363b7a2480", + "name": "f2514b9a-4479-4269-a4d1-af363b7a2480", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -417,7 +444,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "f28835f2-9bb5-446d-8d52-f0cc6fe51907", + "version": "f2514b9a-4479-4269-a4d1-af363b7a2480", "display_name": "CommandComponentBasic", "is_deterministic": "True", "type": "command", @@ -467,8 +494,8 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1", - "environment": "azureml://registries/azureml/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", + "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" }, @@ -477,11 +504,11 @@ } }, "systemData": { - "createdAt": "2022-11-08T09:47:29.799922\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-11-18T09:50:33.0464018\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-11-08T09:47:29.9700963\u002B00:00", - "lastModifiedBy": "Honglin Du", + "lastModifiedAt": "2022-11-18T09:50:33.5643861\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -493,28 +520,32 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1068", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:10:28 GMT", + "Date": "Fri, 18 Nov 2022 09:57:05 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-a5920ec3e4a038b15ba4b5339acc66fb-e728e5d14431bf36-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-ff9b98da4df668043d35d40e67101e21-9f49cd7c4f35f122-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a2362e15-b95f-4c85-909b-f728c8e00cc8", - "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-correlation-request-id": "a1f7cca9-4322-42af-9411-ef2497f25b45", + "x-ms-ratelimit-remaining-subscription-reads": "11968", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081029Z:a2362e15-b95f-4c85-909b-f728c8e00cc8", - "x-request-time": "0.098" + "x-ms-routing-request-id": "JAPANEAST:20221118T095705Z:a1f7cca9-4322-42af-9411-ef2497f25b45", + "x-request-time": "0.084" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -529,17 +560,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sav3u7rijui4cza", - "containerName": "azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3", + "accountName": "teststorageaccount", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-10-10T07:43:07.7818269\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-10-10T07:43:08.5293577\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -553,27 +584,29 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "61", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:10:29 GMT", + "Date": "Fri, 18 Nov 2022 09:57:05 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-3d9dd59d27c8e274bc510c1751ffd021-4baf87ef6cadbd6e-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-e49083cc94874785781333d1f109f27c-034d1693e7ea2039-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "19bdee68-f539-4590-b717-c9b3d0c8ec28", - "x-ms-ratelimit-remaining-subscription-writes": "1163", + "x-ms-correlation-request-id": "72e248f5-961d-4761-8c29-154724433b10", + "x-ms-ratelimit-remaining-subscription-writes": "1176", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081030Z:19bdee68-f539-4590-b717-c9b3d0c8ec28", - "x-request-time": "0.191" + "x-ms-routing-request-id": "JAPANEAST:20221118T095705Z:72e248f5-961d-4761-8c29-154724433b10", + "x-request-time": "0.095" }, "ResponseBody": { "secretsType": "AccountKey", @@ -581,26 +614,26 @@ } }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:10:29 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:57:09 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Accept-Ranges": "bytes", - "Content-Length": "499", - "Content-MD5": "kD7N5\u002BygjTfbYTFhyEo7RA==", + "Content-Length": "508", + "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Wed, 09 Nov 2022 08:10:30 GMT", - "ETag": "\u00220x8DAC154D3DF99CE\u0022", - "Last-Modified": "Tue, 08 Nov 2022 06:45:30 GMT", + "Date": "Fri, 18 Nov 2022 09:57:05 GMT", + "ETag": "\u00220x8DA9D48AFBCE5A6\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:47:53 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -609,32 +642,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 08 Nov 2022 06:45:29 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:47:53 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "5fa55015-0323-4a0f-b7c2-1db6ccd3acbf", + "x-ms-meta-name": "da405283-c0d4-42bf-9cd0-2d052c9da84b", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "c0fd52f9-f2ed-44bf-bed3-c2f92c2fd4aa", + "x-ms-meta-version": "bcdecfd5-08fc-40e1-af7f-364ca3525a76", "x-ms-server-encrypted": "true", "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:10:30 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:57:09 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 09 Nov 2022 08:10:30 GMT", + "Date": "Fri, 18 Nov 2022 09:57:05 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -653,28 +686,32 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1068", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:10:30 GMT", + "Date": "Fri, 18 Nov 2022 09:57:06 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-dbc51683cc8d4c76a62fdf03229b6ead-219f4b891e3bd786-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-ff8b9dde56d3833b458e1f3ff29a87d5-2f2194b368a68bef-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6501314d-929b-458f-a091-4c4bc2b9f43f", - "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-correlation-request-id": "0f5a5901-7998-48e1-87b7-64ed7c98d2ea", + "x-ms-ratelimit-remaining-subscription-reads": "11967", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081031Z:6501314d-929b-458f-a091-4c4bc2b9f43f", - "x-request-time": "0.099" + "x-ms-routing-request-id": "JAPANEAST:20221118T095706Z:0f5a5901-7998-48e1-87b7-64ed7c98d2ea", + "x-request-time": "0.089" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -689,17 +726,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sav3u7rijui4cza", - "containerName": "azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3", + "accountName": "teststorageaccount", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-10-10T07:43:07.7818269\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-10-10T07:43:08.5293577\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -713,27 +750,29 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "61", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:10:31 GMT", + "Date": "Fri, 18 Nov 2022 09:57:06 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-433685f34edbc02c1aa684b02e58f5c9-d8594a31d573094d-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-d6181bc3d44f9b7e834363d5e4c03228-019fa9b0c9e04ecf-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a932347a-b42d-4af0-8ca4-9e351597b7a5", - "x-ms-ratelimit-remaining-subscription-writes": "1162", + "x-ms-correlation-request-id": "a6447e30-971c-42cc-9314-cc8fa5caf25d", + "x-ms-ratelimit-remaining-subscription-writes": "1175", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081032Z:a932347a-b42d-4af0-8ca4-9e351597b7a5", - "x-request-time": "0.093" + "x-ms-routing-request-id": "JAPANEAST:20221118T095707Z:a6447e30-971c-42cc-9314-cc8fa5caf25d", + "x-request-time": "0.089" }, "ResponseBody": { "secretsType": "AccountKey", @@ -741,26 +780,26 @@ } }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:10:31 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:57:10 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Accept-Ranges": "bytes", - "Content-Length": "499", - "Content-MD5": "kD7N5\u002BygjTfbYTFhyEo7RA==", + "Content-Length": "508", + "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Wed, 09 Nov 2022 08:10:32 GMT", - "ETag": "\u00220x8DAC16E43415F71\u0022", - "Last-Modified": "Tue, 08 Nov 2022 09:47:34 GMT", + "Date": "Fri, 18 Nov 2022 09:57:06 GMT", + "ETag": "\u00220x8DA9D50123677EA\u0022", + "Last-Modified": "Fri, 23 Sep 2022 10:40:45 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -769,32 +808,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 08 Nov 2022 09:47:34 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 10:40:45 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "a91c6464-f7fd-456e-b9e2-34951833ad6f", + "x-ms-meta-name": "0bd2889b-e21f-47f4-a44f-9ce6f86d2ed8", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "8ce5b729-ff48-46b3-a426-10230356c2cb", + "x-ms-meta-version": "24e72261-b9f5-4bf0-a875-b7edffb41cd8", "x-ms-server-encrypted": "true", "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/az-ml-artifacts/00000000000000000000000000000000/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:10:32 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:57:11 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 09 Nov 2022 08:10:32 GMT", + "Date": "Fri, 18 Nov 2022 09:57:07 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -807,7 +846,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_688149801026?api-version=2022-10-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_467995345391?api-version=2022-10-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -815,7 +854,7 @@ "Connection": "keep-alive", "Content-Length": "1450", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -862,7 +901,7 @@ "type": "command", "computeId": "${{parent.inputs.target_compute}}", "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f28835f2-9bb5-446d-8d52-f0cc6fe51907" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f2514b9a-4479-4269-a4d1-af363b7a2480" } }, "outputs": {}, @@ -874,26 +913,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3848", + "Content-Length": "3855", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:10:38 GMT", + "Date": "Fri, 18 Nov 2022 09:57:12 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_688149801026?api-version=2022-10-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_467995345391?api-version=2022-10-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-1521239292f0a8d6b147448b6cd9b064-ee14e5c51c738764-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-8a93736a044dda492bcdb97d1cafdfe0-77abb98fe686b34a-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cc422d95-ced2-4d15-9df7-f0091749cd43", - "x-ms-ratelimit-remaining-subscription-writes": "1150", + "x-ms-correlation-request-id": "76cfd3b6-218b-40ae-b2b1-b9bf529697d4", + "x-ms-ratelimit-remaining-subscription-writes": "1174", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081039Z:cc422d95-ced2-4d15-9df7-f0091749cd43", - "x-request-time": "3.629" + "x-ms-routing-request-id": "JAPANEAST:20221118T095713Z:76cfd3b6-218b-40ae-b2b1-b9bf529697d4", + "x-request-time": "2.990" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_688149801026", - "name": "test_688149801026", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_467995345391", + "name": "test_467995345391", "type": "Microsoft.MachineLearningServices/workspaces/jobs", "properties": { "description": "The hello world pipeline job with data binding", @@ -920,7 +959,7 @@ "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null, @@ -929,7 +968,7 @@ "Studio": { "jobServiceType": "Studio", "port": null, - "endpoint": "https://ml.azure.com/runs/test_688149801026?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "endpoint": "https://ml.azure.com/runs/test_467995345391?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, "properties": null, @@ -950,7 +989,7 @@ "type": "command", "computeId": "${{parent.inputs.target_compute}}", "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f28835f2-9bb5-446d-8d52-f0cc6fe51907" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f2514b9a-4479-4269-a4d1-af363b7a2480" } }, "inputs": { @@ -991,14 +1030,14 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-11-09T08:10:38.8379224\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-11-18T09:57:12.4530147\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } } ], "Variables": { - "name": "test_688149801026" + "name": "test_467995345391" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_data_binding_expression[8-run_settings_literal.yml].json b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_data_binding_expression[8-run_settings_literal.yml].json index 3412f1e71450..a51f2277daac 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_data_binding_expression[8-run_settings_literal.yml].json +++ b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_data_binding_expression[8-run_settings_literal.yml].json @@ -1,49 +1,53 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1500", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:10:43 GMT", + "Date": "Fri, 18 Nov 2022 09:57:18 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-a70504c1c006876b5f4d1bb6c2c6fe3c-825d50aaf6821562-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-31a6b7e0db112bac5d255ca19002d792-6c40a8b8b29cf01d-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8aea4c6d-d6d7-42f2-aa7c-6ad46f13a16c", - "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-correlation-request-id": "c1498505-25e2-4f55-a376-5e14684b161e", + "x-ms-ratelimit-remaining-subscription-reads": "11966", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081043Z:8aea4c6d-d6d7-42f2-aa7c-6ad46f13a16c", - "x-request-time": "0.038" + "x-ms-routing-request-id": "JAPANEAST:20221118T095718Z:c1498505-25e2-4f55-a376-5e14684b161e", + "x-request-time": "0.217" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2", + "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-10-10T07:44:03.2104968\u002B00:00", - "modifiedOn": "2022-11-08T03:58:27.2396848\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2", + "computeLocation": "centraluseuap", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -52,23 +56,36 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 0, - "targetNodeCount": 0, + "currentNodeCount": 2, + "targetNodeCount": 4, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 0, + "runningNodeCount": 2, "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Steady", - "allocationStateTransitionTime": "2022-11-09T08:07:30.719\u002B00:00", - "errors": null, + "allocationState": "Resizing", + "allocationStateTransitionTime": "2022-11-18T09:55:11.193\u002B00:00", + "errors": [ + { + "error": { + "code": "DiskFull", + "message": "ComputeNode.Id=tvmps_cb9237aaedb6e8d84ff1060da66d025a09b00f35f4dba0cf409a69c4c564de2f_d: There is not enough disk space on the node", + "details": [ + { + "code": "Message", + "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." + } + ] + } + } + ], "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -85,28 +102,32 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1068", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:10:44 GMT", + "Date": "Fri, 18 Nov 2022 09:57:20 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-82be669e4c4a1768a3ced74f370169cf-3d587a7214fe04ae-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-ebf8364dd4701c604abe46846702761b-4b25cb09f3bd873f-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "588a9f51-97ac-406d-b467-5e660a70196c", - "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-correlation-request-id": "06c533a9-413c-4770-8f2f-7d37c7f7a1da", + "x-ms-ratelimit-remaining-subscription-reads": "11965", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081045Z:588a9f51-97ac-406d-b467-5e660a70196c", - "x-request-time": "0.132" + "x-ms-routing-request-id": "JAPANEAST:20221118T095721Z:06c533a9-413c-4770-8f2f-7d37c7f7a1da", + "x-request-time": "0.086" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -121,17 +142,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sav3u7rijui4cza", - "containerName": "azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3", + "accountName": "teststorageaccount", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-10-10T07:43:07.7818269\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-10-10T07:43:08.5293577\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -145,27 +166,29 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "61", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:10:45 GMT", + "Date": "Fri, 18 Nov 2022 09:57:21 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-0763e120f6b34df8273d00604750e131-df2f853f5978fe98-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-b3368ecf900defe0ab862d2ac12a3e62-c94455824d3fc0ac-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8b2870e6-44f1-4e14-b9c2-14ea089f64ea", - "x-ms-ratelimit-remaining-subscription-writes": "1161", + "x-ms-correlation-request-id": "8f2db4fc-3351-4863-93fb-2be4f0264542", + "x-ms-ratelimit-remaining-subscription-writes": "1174", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081046Z:8b2870e6-44f1-4e14-b9c2-14ea089f64ea", - "x-request-time": "0.088" + "x-ms-routing-request-id": "JAPANEAST:20221118T095722Z:8f2db4fc-3351-4863-93fb-2be4f0264542", + "x-request-time": "0.094" }, "ResponseBody": { "secretsType": "AccountKey", @@ -173,14 +196,14 @@ } }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:10:46 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:57:25 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -190,9 +213,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 09 Nov 2022 08:10:46 GMT", - "ETag": "\u00220x8DAC13EFDFF2C0D\u0022", - "Last-Modified": "Tue, 08 Nov 2022 04:09:11 GMT", + "Date": "Fri, 18 Nov 2022 09:57:21 GMT", + "ETag": "\u00220x8DA9D48E17467D7\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:49:17 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -201,10 +224,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 08 Nov 2022 04:09:11 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:49:16 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "5d0c2440-3f92-4bf0-a277-a2158e0ee09d", + "x-ms-meta-name": "9c9cfba9-82bd-45db-ad06-07009d1d9672", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -213,20 +236,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:10:46 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:57:25 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 09 Nov 2022 08:10:46 GMT", + "Date": "Fri, 18 Nov 2022 09:57:21 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -239,15 +262,15 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "288", + "Content-Length": "291", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -257,31 +280,35 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "812", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:10:46 GMT", + "Date": "Fri, 18 Nov 2022 09:57:23 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-3e36e2e3a1a3e4786b800c313a1a29ce-f1a7ab143a303a9a-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-155a3817688b64329c518c46a2bb7bec-7e77442634596350-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "be6f8dd8-4f32-4fbc-8b65-b02483ef8b82", - "x-ms-ratelimit-remaining-subscription-writes": "1149", + "x-ms-correlation-request-id": "ab74e93c-b303-46ba-a975-62aab133375f", + "x-ms-ratelimit-remaining-subscription-writes": "1173", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081047Z:be6f8dd8-4f32-4fbc-8b65-b02483ef8b82", - "x-request-time": "0.103" + "x-ms-routing-request-id": "JAPANEAST:20221118T095723Z:ab74e93c-b303-46ba-a975-62aab133375f", + "x-request-time": "0.230" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -293,14 +320,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-11-08T04:09:13.0225939\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-09-23T09:49:20.984936\u002B00:00", + "createdBy": "Ying Chen", "createdByType": "User", - "lastModifiedAt": "2022-11-09T08:10:47.4484741\u002B00:00", - "lastModifiedBy": "Honglin Du", + "lastModifiedAt": "2022-11-18T09:57:23.3313989\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -314,7 +341,7 @@ "Connection": "keep-alive", "Content-Length": "1903", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -328,7 +355,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo ${{inputs.component_in_integer}} \u0026 echo ${{inputs.component_in_number}} \u0026 echo ${{inputs.component_in_string}} \u0026 echo ${{inputs.component_in_other_string}} \u0026 $[[echo ${{inputs.component_in_file}} \u0026]] $[[echo ${{inputs.component_in_folder}} \u0026]] echo ${{outputs.component_out_folder}} \u003E ${{outputs.component_out_folder}}/sample1.csv", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1", "distribution": { "type": "mpi", @@ -389,26 +416,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3227", + "Content-Length": "3237", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:10:48 GMT", + "Date": "Fri, 18 Nov 2022 09:57:24 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-d0c9313e052ba98fd10133d6055dd8cc-09ad4a2866bc3d62-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-ba848e8b04bad0fb7acf720952b6ecbf-e03d7ee38d7d6b7b-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "872794d1-617f-4ee4-a99b-53d9d8e7219f", - "x-ms-ratelimit-remaining-subscription-writes": "1148", + "x-ms-correlation-request-id": "c35337b2-e698-4673-95fd-631122ca41a9", + "x-ms-ratelimit-remaining-subscription-writes": "1172", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081048Z:872794d1-617f-4ee4-a99b-53d9d8e7219f", - "x-request-time": "0.391" + "x-ms-routing-request-id": "JAPANEAST:20221118T095725Z:c35337b2-e698-4673-95fd-631122ca41a9", + "x-request-time": "1.040" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/6a4052ab-f41c-4712-ac1e-624ecc23f4b9", - "name": "6a4052ab-f41c-4712-ac1e-624ecc23f4b9", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a616645b-40a4-451c-a0fa-133659da8132", + "name": "a616645b-40a4-451c-a0fa-133659da8132", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -421,7 +448,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "6a4052ab-f41c-4712-ac1e-624ecc23f4b9", + "version": "a616645b-40a4-451c-a0fa-133659da8132", "display_name": "CommandComponentBasic", "is_deterministic": "True", "type": "command", @@ -471,8 +498,8 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1", - "environment": "azureml://registries/azureml/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", + "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" }, @@ -485,11 +512,11 @@ } }, "systemData": { - "createdAt": "2022-11-08T09:47:25.8969284\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-11-18T09:50:27.9443643\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-11-08T09:47:26.0605759\u002B00:00", - "lastModifiedBy": "Honglin Du", + "lastModifiedAt": "2022-11-18T09:50:28.4394476\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -501,28 +528,32 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1068", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:10:48 GMT", + "Date": "Fri, 18 Nov 2022 09:57:25 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-7758ea5b7e47e4f95c527c146b7e757d-b2a57888bee147e4-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-d49b780a7ec015a92344736c2a7b2f81-a75a77c99f197b18-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "28a3f7b2-dfcb-48dd-85a8-6cda7382d018", - "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-correlation-request-id": "ce628ce8-eb64-4a98-a7d1-e26f9e100fe0", + "x-ms-ratelimit-remaining-subscription-reads": "11964", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081049Z:28a3f7b2-dfcb-48dd-85a8-6cda7382d018", - "x-request-time": "0.120" + "x-ms-routing-request-id": "JAPANEAST:20221118T095725Z:ce628ce8-eb64-4a98-a7d1-e26f9e100fe0", + "x-request-time": "0.086" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -537,17 +568,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sav3u7rijui4cza", - "containerName": "azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3", + "accountName": "teststorageaccount", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-10-10T07:43:07.7818269\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-10-10T07:43:08.5293577\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -561,27 +592,29 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "61", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:10:49 GMT", + "Date": "Fri, 18 Nov 2022 09:57:25 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-2e3a4d6656b2216a612565ef58106576-267f374c22c07e96-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-815934e9138d786e1df52463a395363b-cbf46721ed3f1440-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "044ea53d-a938-4dd2-bfed-fb33cdd8fd8c", - "x-ms-ratelimit-remaining-subscription-writes": "1160", + "x-ms-correlation-request-id": "a9d5d7bb-45d1-43fa-b911-c32971e4ab89", + "x-ms-ratelimit-remaining-subscription-writes": "1173", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081050Z:044ea53d-a938-4dd2-bfed-fb33cdd8fd8c", - "x-request-time": "0.153" + "x-ms-routing-request-id": "JAPANEAST:20221118T095726Z:a9d5d7bb-45d1-43fa-b911-c32971e4ab89", + "x-request-time": "0.090" }, "ResponseBody": { "secretsType": "AccountKey", @@ -589,26 +622,26 @@ } }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:10:50 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:57:29 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Accept-Ranges": "bytes", - "Content-Length": "499", - "Content-MD5": "kD7N5\u002BygjTfbYTFhyEo7RA==", + "Content-Length": "508", + "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Wed, 09 Nov 2022 08:10:50 GMT", - "ETag": "\u00220x8DAC154D3DF99CE\u0022", - "Last-Modified": "Tue, 08 Nov 2022 06:45:30 GMT", + "Date": "Fri, 18 Nov 2022 09:57:25 GMT", + "ETag": "\u00220x8DA9D48AFBCE5A6\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:47:53 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -617,32 +650,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 08 Nov 2022 06:45:29 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:47:53 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "5fa55015-0323-4a0f-b7c2-1db6ccd3acbf", + "x-ms-meta-name": "da405283-c0d4-42bf-9cd0-2d052c9da84b", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "c0fd52f9-f2ed-44bf-bed3-c2f92c2fd4aa", + "x-ms-meta-version": "bcdecfd5-08fc-40e1-af7f-364ca3525a76", "x-ms-server-encrypted": "true", "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:10:50 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:57:30 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 09 Nov 2022 08:10:50 GMT", + "Date": "Fri, 18 Nov 2022 09:57:26 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -661,28 +694,32 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1068", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:10:50 GMT", + "Date": "Fri, 18 Nov 2022 09:57:27 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-998858f17030fd10a4ea12b2a581efec-800b495a9ea6c10d-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-6b7e52a969596ec55431e4da8df3ab8c-5a9965c716ce1df9-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "44b7572c-1c38-4c9a-8b62-6154ea676ac3", - "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-correlation-request-id": "f3369f82-dcd2-4c0d-aca7-30041de0c1ec", + "x-ms-ratelimit-remaining-subscription-reads": "11963", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081051Z:44b7572c-1c38-4c9a-8b62-6154ea676ac3", - "x-request-time": "0.084" + "x-ms-routing-request-id": "JAPANEAST:20221118T095727Z:f3369f82-dcd2-4c0d-aca7-30041de0c1ec", + "x-request-time": "0.104" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -697,17 +734,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sav3u7rijui4cza", - "containerName": "azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3", + "accountName": "teststorageaccount", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-10-10T07:43:07.7818269\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-10-10T07:43:08.5293577\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -721,27 +758,29 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "61", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:10:51 GMT", + "Date": "Fri, 18 Nov 2022 09:57:27 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-7765b42cab275fa482a8de3f3a02757a-337e1c1df4bee57c-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-d86de337ccbf70b83051ede98d2e69dd-e549d06fc7247f3a-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2630d8c0-27e1-46a2-a2b4-7e5c9769895f", - "x-ms-ratelimit-remaining-subscription-writes": "1159", + "x-ms-correlation-request-id": "47044ec5-c230-41eb-a3ec-5d47a3916873", + "x-ms-ratelimit-remaining-subscription-writes": "1172", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081052Z:2630d8c0-27e1-46a2-a2b4-7e5c9769895f", - "x-request-time": "0.083" + "x-ms-routing-request-id": "JAPANEAST:20221118T095727Z:47044ec5-c230-41eb-a3ec-5d47a3916873", + "x-request-time": "0.088" }, "ResponseBody": { "secretsType": "AccountKey", @@ -749,26 +788,26 @@ } }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:10:51 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:57:31 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Accept-Ranges": "bytes", - "Content-Length": "499", - "Content-MD5": "kD7N5\u002BygjTfbYTFhyEo7RA==", + "Content-Length": "508", + "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Wed, 09 Nov 2022 08:10:52 GMT", - "ETag": "\u00220x8DAC16E43415F71\u0022", - "Last-Modified": "Tue, 08 Nov 2022 09:47:34 GMT", + "Date": "Fri, 18 Nov 2022 09:57:27 GMT", + "ETag": "\u00220x8DA9D50123677EA\u0022", + "Last-Modified": "Fri, 23 Sep 2022 10:40:45 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -777,32 +816,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 08 Nov 2022 09:47:34 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 10:40:45 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "a91c6464-f7fd-456e-b9e2-34951833ad6f", + "x-ms-meta-name": "0bd2889b-e21f-47f4-a44f-9ce6f86d2ed8", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "8ce5b729-ff48-46b3-a426-10230356c2cb", + "x-ms-meta-version": "24e72261-b9f5-4bf0-a875-b7edffb41cd8", "x-ms-server-encrypted": "true", "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/az-ml-artifacts/00000000000000000000000000000000/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:10:52 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:57:31 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 09 Nov 2022 08:10:52 GMT", + "Date": "Fri, 18 Nov 2022 09:57:27 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -815,7 +854,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_864253397802?api-version=2022-10-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_877977499648?api-version=2022-10-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -823,7 +862,7 @@ "Connection": "keep-alive", "Content-Length": "1512", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -873,7 +912,7 @@ "name": "hello_world", "type": "command", "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/6a4052ab-f41c-4712-ac1e-624ecc23f4b9" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a616645b-40a4-451c-a0fa-133659da8132" } }, "outputs": {}, @@ -885,26 +924,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3940", + "Content-Length": "3947", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:10:58 GMT", + "Date": "Fri, 18 Nov 2022 09:57:33 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_864253397802?api-version=2022-10-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_877977499648?api-version=2022-10-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-3e98ab14d2edbec05a8aa9b1e5317952-2cd3f2777610b21f-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-9fa82dc3be2b2d7b372b364fbb684b78-15132d23e469abda-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d8f849fc-03c3-4004-a44a-6e76bce91120", - "x-ms-ratelimit-remaining-subscription-writes": "1147", + "x-ms-correlation-request-id": "207331bd-d867-4f6e-b8b0-456166b81d0b", + "x-ms-ratelimit-remaining-subscription-writes": "1171", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081059Z:d8f849fc-03c3-4004-a44a-6e76bce91120", - "x-request-time": "3.810" + "x-ms-routing-request-id": "JAPANEAST:20221118T095733Z:207331bd-d867-4f6e-b8b0-456166b81d0b", + "x-request-time": "2.927" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_864253397802", - "name": "test_864253397802", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_877977499648", + "name": "test_877977499648", "type": "Microsoft.MachineLearningServices/workspaces/jobs", "properties": { "description": "The hello world pipeline job with data binding", @@ -931,7 +970,7 @@ "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null, @@ -940,7 +979,7 @@ "Studio": { "jobServiceType": "Studio", "port": null, - "endpoint": "https://ml.azure.com/runs/test_864253397802?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "endpoint": "https://ml.azure.com/runs/test_877977499648?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, "properties": null, @@ -964,7 +1003,7 @@ "name": "hello_world", "type": "command", "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/6a4052ab-f41c-4712-ac1e-624ecc23f4b9" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a616645b-40a4-451c-a0fa-133659da8132" } }, "inputs": { @@ -1005,14 +1044,14 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-11-09T08:10:59.0106891\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-11-18T09:57:32.7354367\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } } ], "Variables": { - "name": "test_864253397802" + "name": "test_877977499648" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_data_binding_expression[9-run_settings_sweep_literal.yml].json b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_data_binding_expression[9-run_settings_sweep_literal.yml].json index 3d457b0d17cc..d00db39a034b 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_data_binding_expression[9-run_settings_sweep_literal.yml].json +++ b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_data_binding_expression[9-run_settings_sweep_literal.yml].json @@ -1,49 +1,53 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1500", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:11:03 GMT", + "Date": "Fri, 18 Nov 2022 09:57:37 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-ceb0662e8b07cea3f50ceeeb3fa0624d-70cb5b51a66edc49-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-280b5e96148bf2d2b8f6da46d6e886ba-0d1059d2dc1f8077-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "882987c9-d140-47e8-be87-af61dfce8169", - "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-correlation-request-id": "e695f33a-3f71-4612-93e2-1078a3c0b236", + "x-ms-ratelimit-remaining-subscription-reads": "11962", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081104Z:882987c9-d140-47e8-be87-af61dfce8169", - "x-request-time": "0.034" + "x-ms-routing-request-id": "JAPANEAST:20221118T095738Z:e695f33a-3f71-4612-93e2-1078a3c0b236", + "x-request-time": "0.210" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2", + "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-10-10T07:44:03.2104968\u002B00:00", - "modifiedOn": "2022-11-08T03:58:27.2396848\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2", + "computeLocation": "centraluseuap", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -52,23 +56,36 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 0, - "targetNodeCount": 0, + "currentNodeCount": 2, + "targetNodeCount": 4, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 0, + "runningNodeCount": 2, "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Steady", - "allocationStateTransitionTime": "2022-11-09T08:07:30.719\u002B00:00", - "errors": null, + "allocationState": "Resizing", + "allocationStateTransitionTime": "2022-11-18T09:55:11.193\u002B00:00", + "errors": [ + { + "error": { + "code": "DiskFull", + "message": "ComputeNode.Id=tvmps_cb9237aaedb6e8d84ff1060da66d025a09b00f35f4dba0cf409a69c4c564de2f_d: There is not enough disk space on the node", + "details": [ + { + "code": "Message", + "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." + } + ] + } + } + ], "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -85,28 +102,32 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1068", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:11:05 GMT", + "Date": "Fri, 18 Nov 2022 09:57:39 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-dc57f1f8d0168c40f07b1d7c8a2a3bea-52ea52d552e65990-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-1ae5228329c304e71031b575be84781a-dc74b763d196a237-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5eb7e5b9-d0a6-44b8-b368-e9c63d63c7f5", - "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-correlation-request-id": "59599bb2-fc77-4d26-b8b5-5d04e260dabe", + "x-ms-ratelimit-remaining-subscription-reads": "11961", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081106Z:5eb7e5b9-d0a6-44b8-b368-e9c63d63c7f5", - "x-request-time": "0.142" + "x-ms-routing-request-id": "JAPANEAST:20221118T095740Z:59599bb2-fc77-4d26-b8b5-5d04e260dabe", + "x-request-time": "0.111" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -121,17 +142,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sav3u7rijui4cza", - "containerName": "azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3", + "accountName": "teststorageaccount", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-10-10T07:43:07.7818269\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-10-10T07:43:08.5293577\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -145,27 +166,29 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "61", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:11:06 GMT", + "Date": "Fri, 18 Nov 2022 09:57:40 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-a444d3e49612aeb657684ba232f1a16a-010659fc3544c0eb-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-e8b3f83ff3b1045bf0a00085a2fd4752-0660a9a1f0b9e75b-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a76e7183-0fdf-4a78-a63a-94607ef6784e", - "x-ms-ratelimit-remaining-subscription-writes": "1158", + "x-ms-correlation-request-id": "d92e9d2d-1473-42c6-9163-e7304d4acd5e", + "x-ms-ratelimit-remaining-subscription-writes": "1171", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081107Z:a76e7183-0fdf-4a78-a63a-94607ef6784e", - "x-request-time": "0.128" + "x-ms-routing-request-id": "JAPANEAST:20221118T095741Z:d92e9d2d-1473-42c6-9163-e7304d4acd5e", + "x-request-time": "0.099" }, "ResponseBody": { "secretsType": "AccountKey", @@ -173,14 +196,14 @@ } }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:11:07 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:57:44 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -190,9 +213,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 09 Nov 2022 08:11:07 GMT", - "ETag": "\u00220x8DAC13EFDFF2C0D\u0022", - "Last-Modified": "Tue, 08 Nov 2022 04:09:11 GMT", + "Date": "Fri, 18 Nov 2022 09:57:40 GMT", + "ETag": "\u00220x8DA9D48E17467D7\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:49:17 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -201,10 +224,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 08 Nov 2022 04:09:11 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:49:16 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "5d0c2440-3f92-4bf0-a277-a2158e0ee09d", + "x-ms-meta-name": "9c9cfba9-82bd-45db-ad06-07009d1d9672", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -213,20 +236,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:11:07 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:57:44 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 09 Nov 2022 08:11:07 GMT", + "Date": "Fri, 18 Nov 2022 09:57:40 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -239,15 +262,15 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "288", + "Content-Length": "291", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -257,31 +280,35 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "812", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:11:07 GMT", + "Date": "Fri, 18 Nov 2022 09:57:41 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-653d9239ae42d74aeb200e26af443837-7fa1ac04dda87b53-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-1358bda955691830f30d9b68b05e6ca5-9aa7abf905d5fb80-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ce62f091-e796-4c2b-b9df-fa5e25fd87f8", - "x-ms-ratelimit-remaining-subscription-writes": "1146", + "x-ms-correlation-request-id": "0fd687df-9724-4e1c-83ea-f273877a36a5", + "x-ms-ratelimit-remaining-subscription-writes": "1170", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081108Z:ce62f091-e796-4c2b-b9df-fa5e25fd87f8", - "x-request-time": "0.112" + "x-ms-routing-request-id": "JAPANEAST:20221118T095742Z:0fd687df-9724-4e1c-83ea-f273877a36a5", + "x-request-time": "0.247" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -293,14 +320,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-11-08T04:09:13.0225939\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-09-23T09:49:20.984936\u002B00:00", + "createdBy": "Ying Chen", "createdByType": "User", - "lastModifiedAt": "2022-11-09T08:11:08.5016668\u002B00:00", - "lastModifiedBy": "Honglin Du", + "lastModifiedAt": "2022-11-18T09:57:42.1751163\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -314,7 +341,7 @@ "Connection": "keep-alive", "Content-Length": "1895", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -328,7 +355,7 @@ "isArchived": false, "componentSpec": { "command": "echo \u0022Start training ...\u0022 \u0026\u0026 python mnist.py --data_folder ${{inputs.data_folder}} --batch_size ${{inputs.batch_size}} --first_layer_neurons ${{inputs.first_layer_neurons}} --second_layer_neurons ${{inputs.second_layer_neurons}} --third_layer_neurons ${{inputs.third_layer_neurons}} --epochs ${{inputs.epochs}} --f1 ${{inputs.f1}} --f2 ${{inputs.f2}} --weight_decay ${{inputs.weight_decay}} --momentum ${{inputs.momentum}} --learning_rate ${{inputs.learning_rate}} --saved_model ${{outputs.trained_model_dir}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1", "name": "azureml_anonymous", "description": "This is the command component for sweep", @@ -392,26 +419,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3485", + "Content-Length": "3495", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:11:09 GMT", + "Date": "Fri, 18 Nov 2022 09:57:43 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-1c938e99b9912e57ca0be38d11522dc4-725bdb620a062d66-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-44922c385b8252f5af557dd98a22be2b-e50c71ca47c52884-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6aeea617-2992-481f-a866-79e66ca91187", - "x-ms-ratelimit-remaining-subscription-writes": "1145", + "x-ms-correlation-request-id": "82322c4c-bb13-4eff-834f-7359f8cfbf9a", + "x-ms-ratelimit-remaining-subscription-writes": "1169", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081109Z:6aeea617-2992-481f-a866-79e66ca91187", - "x-request-time": "0.475" + "x-ms-routing-request-id": "JAPANEAST:20221118T095744Z:82322c4c-bb13-4eff-834f-7359f8cfbf9a", + "x-request-time": "1.061" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/5af25209-e882-4123-89c4-6c596c33cdfa", - "name": "5af25209-e882-4123-89c4-6c596c33cdfa", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/747e9377-9711-4601-97cc-2b4f13ed39c3", + "name": "747e9377-9711-4601-97cc-2b4f13ed39c3", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -424,7 +451,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "5af25209-e882-4123-89c4-6c596c33cdfa", + "version": "747e9377-9711-4601-97cc-2b4f13ed39c3", "display_name": "CommandComponentForSweep", "is_deterministic": "True", "type": "command", @@ -489,8 +516,8 @@ "type": "mlflow_model" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1", - "environment": "azureml://registries/azureml/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", + "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" }, @@ -499,11 +526,11 @@ } }, "systemData": { - "createdAt": "2022-11-08T09:45:24.9421611\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-11-18T09:44:37.4149466\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-11-08T09:45:25.1129232\u002B00:00", - "lastModifiedBy": "Honglin Du", + "lastModifiedAt": "2022-11-18T09:44:37.9494974\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -515,28 +542,32 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1068", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:11:09 GMT", + "Date": "Fri, 18 Nov 2022 09:57:44 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-2cfc4f05d3148fc5bec7bdc139fee6c6-b2801736bed0bcfb-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-3614152187b4103468f3a98997044642-73837386420e75bd-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cce82516-5593-40ec-8386-7c0c64da864d", - "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-correlation-request-id": "c65879a6-c00d-4c13-bc9a-1ce98b9135ef", + "x-ms-ratelimit-remaining-subscription-reads": "11960", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081110Z:cce82516-5593-40ec-8386-7c0c64da864d", - "x-request-time": "0.111" + "x-ms-routing-request-id": "JAPANEAST:20221118T095744Z:c65879a6-c00d-4c13-bc9a-1ce98b9135ef", + "x-request-time": "0.082" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -551,17 +582,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sav3u7rijui4cza", - "containerName": "azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3", + "accountName": "teststorageaccount", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-10-10T07:43:07.7818269\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-10-10T07:43:08.5293577\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -575,27 +606,29 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "61", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:11:10 GMT", + "Date": "Fri, 18 Nov 2022 09:57:44 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-b422f0f86a20613da8700771cae84e2d-3e7fc3b210f7fc95-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-2c0eb9fac7eaf2bb643d41f304caa625-b9d49dab53170a58-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b0993969-b9c0-4e7e-83f6-0f858617118b", - "x-ms-ratelimit-remaining-subscription-writes": "1157", + "x-ms-correlation-request-id": "aacbe417-1fa2-4deb-805c-1c61b2630818", + "x-ms-ratelimit-remaining-subscription-writes": "1170", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081111Z:b0993969-b9c0-4e7e-83f6-0f858617118b", - "x-request-time": "0.096" + "x-ms-routing-request-id": "JAPANEAST:20221118T095745Z:aacbe417-1fa2-4deb-805c-1c61b2630818", + "x-request-time": "0.094" }, "ResponseBody": { "secretsType": "AccountKey", @@ -603,26 +636,26 @@ } }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:11:11 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:57:48 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Accept-Ranges": "bytes", - "Content-Length": "499", - "Content-MD5": "kD7N5\u002BygjTfbYTFhyEo7RA==", + "Content-Length": "508", + "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Wed, 09 Nov 2022 08:11:11 GMT", - "ETag": "\u00220x8DAC154D3DF99CE\u0022", - "Last-Modified": "Tue, 08 Nov 2022 06:45:30 GMT", + "Date": "Fri, 18 Nov 2022 09:57:44 GMT", + "ETag": "\u00220x8DA9D48AFBCE5A6\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:47:53 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -631,32 +664,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 08 Nov 2022 06:45:29 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:47:53 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "5fa55015-0323-4a0f-b7c2-1db6ccd3acbf", + "x-ms-meta-name": "da405283-c0d4-42bf-9cd0-2d052c9da84b", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "c0fd52f9-f2ed-44bf-bed3-c2f92c2fd4aa", + "x-ms-meta-version": "bcdecfd5-08fc-40e1-af7f-364ca3525a76", "x-ms-server-encrypted": "true", "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:11:11 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:57:49 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 09 Nov 2022 08:11:11 GMT", + "Date": "Fri, 18 Nov 2022 09:57:45 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -675,28 +708,32 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1068", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:11:11 GMT", + "Date": "Fri, 18 Nov 2022 09:57:45 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-b558d593358794abc66833e829aaa018-df5c4b79aff0f215-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-9f08f58ba6174f4d0e2017587c6dd8a4-901039dda1220876-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "190b8e86-f390-4416-8a34-e57ea3e101dd", - "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-correlation-request-id": "82bdb79b-5671-4849-912a-984a7fad8999", + "x-ms-ratelimit-remaining-subscription-reads": "11959", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081112Z:190b8e86-f390-4416-8a34-e57ea3e101dd", - "x-request-time": "0.135" + "x-ms-routing-request-id": "JAPANEAST:20221118T095746Z:82bdb79b-5671-4849-912a-984a7fad8999", + "x-request-time": "0.084" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -711,17 +748,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sav3u7rijui4cza", - "containerName": "azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3", + "accountName": "teststorageaccount", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-10-10T07:43:07.7818269\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-10-10T07:43:08.5293577\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -735,27 +772,29 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "61", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:11:12 GMT", + "Date": "Fri, 18 Nov 2022 09:57:46 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-490a4b9c39b91e835485c8b4f02b481a-59ad2bdbb418d6bc-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-ec67e83f0df615c4a9a063cc588dd27b-93c043be29855cc9-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0a769571-c585-4e48-b77e-14664cac8dab", - "x-ms-ratelimit-remaining-subscription-writes": "1156", + "x-ms-correlation-request-id": "28b3de5e-3e18-49e3-ab22-91345a0a9924", + "x-ms-ratelimit-remaining-subscription-writes": "1169", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081113Z:0a769571-c585-4e48-b77e-14664cac8dab", - "x-request-time": "0.090" + "x-ms-routing-request-id": "JAPANEAST:20221118T095747Z:28b3de5e-3e18-49e3-ab22-91345a0a9924", + "x-request-time": "0.089" }, "ResponseBody": { "secretsType": "AccountKey", @@ -763,26 +802,26 @@ } }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:11:13 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:57:50 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Accept-Ranges": "bytes", - "Content-Length": "499", - "Content-MD5": "kD7N5\u002BygjTfbYTFhyEo7RA==", + "Content-Length": "508", + "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Wed, 09 Nov 2022 08:11:13 GMT", - "ETag": "\u00220x8DAC16E43415F71\u0022", - "Last-Modified": "Tue, 08 Nov 2022 09:47:34 GMT", + "Date": "Fri, 18 Nov 2022 09:57:46 GMT", + "ETag": "\u00220x8DA9D50123677EA\u0022", + "Last-Modified": "Fri, 23 Sep 2022 10:40:45 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -791,32 +830,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 08 Nov 2022 09:47:34 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 10:40:45 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "a91c6464-f7fd-456e-b9e2-34951833ad6f", + "x-ms-meta-name": "0bd2889b-e21f-47f4-a44f-9ce6f86d2ed8", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "8ce5b729-ff48-46b3-a426-10230356c2cb", + "x-ms-meta-version": "24e72261-b9f5-4bf0-a875-b7edffb41cd8", "x-ms-server-encrypted": "true", "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/az-ml-artifacts/00000000000000000000000000000000/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:11:13 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:57:50 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 09 Nov 2022 08:11:13 GMT", + "Date": "Fri, 18 Nov 2022 09:57:46 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -829,15 +868,15 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_553988243800?api-version=2022-10-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_489212510146?api-version=2022-10-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "2447", + "Content-Length": "2402", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -908,9 +947,6 @@ "job_input_type": "literal", "value": "${{parent.inputs.job_in_folder}}" }, - "batch_size": { - "job_input_type": "literal" - }, "first_layer_neurons": { "job_input_type": "literal", "value": "32" @@ -950,7 +986,7 @@ }, "_source": "YAML.JOB", "trial": { - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/5af25209-e882-4123-89c4-6c596c33cdfa" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/747e9377-9711-4601-97cc-2b4f13ed39c3" } } }, @@ -963,26 +999,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "5597", + "Content-Length": "5526", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:11:19 GMT", + "Date": "Fri, 18 Nov 2022 09:57:52 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_553988243800?api-version=2022-10-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_489212510146?api-version=2022-10-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-6feff221a43c8a7f3bf49868b30a20fe-6d85c05f69fedc91-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-5f91fb17e17950c271b096333f6a0794-b7ffcbf9326f79f2-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "61a4f0df-0bf2-4f51-8b89-9adb31334fbf", - "x-ms-ratelimit-remaining-subscription-writes": "1144", + "x-ms-correlation-request-id": "5bd189f1-0268-406f-bedd-b0c1978989c4", + "x-ms-ratelimit-remaining-subscription-writes": "1168", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T081120Z:61a4f0df-0bf2-4f51-8b89-9adb31334fbf", - "x-request-time": "4.026" + "x-ms-routing-request-id": "JAPANEAST:20221118T095753Z:5bd189f1-0268-406f-bedd-b0c1978989c4", + "x-request-time": "3.746" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_553988243800", - "name": "test_553988243800", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_489212510146", + "name": "test_489212510146", "type": "Microsoft.MachineLearningServices/workspaces/jobs", "properties": { "description": "The hello world pipeline job with data binding", @@ -1009,7 +1045,7 @@ "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null, @@ -1018,7 +1054,7 @@ "Studio": { "jobServiceType": "Studio", "port": null, - "endpoint": "https://ml.azure.com/runs/test_553988243800?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "endpoint": "https://ml.azure.com/runs/test_489212510146?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, "properties": null, @@ -1063,9 +1099,6 @@ "job_input_type": "literal", "value": "${{parent.inputs.job_in_folder}}" }, - "batch_size": { - "job_input_type": "literal" - }, "first_layer_neurons": { "job_input_type": "literal", "value": "32" @@ -1105,7 +1138,7 @@ }, "_source": "YAML.JOB", "trial": { - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/5af25209-e882-4123-89c4-6c596c33cdfa" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/747e9377-9711-4601-97cc-2b4f13ed39c3" } } }, @@ -1147,14 +1180,14 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-11-09T08:11:20.351951\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-11-18T09:57:52.3089363\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } } ], "Variables": { - "name": "test_553988243800" + "name": "test_489212510146" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_sweep_node.json b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_sweep_node.json index 337c34f58d87..b3bb50674d86 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_sweep_node.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_sweep_node.json @@ -1,49 +1,49 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1502", + "Content-Length": "2335", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 07:55:42 GMT", + "Date": "Fri, 18 Nov 2022 09:45:04 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-417c97eaec1da93f5a9453986867341d-c87642496c83fda4-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-31041951760d197f46cc12920940c7d2-9b43493044ae2355-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8721ea82-0741-4c22-924d-85ff22bf1a4f", - "x-ms-ratelimit-remaining-subscription-reads": "11866", + "x-ms-correlation-request-id": "7e412500-f988-4d3c-ba55-c1d598ca9514", + "x-ms-ratelimit-remaining-subscription-reads": "11995", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T075543Z:8721ea82-0741-4c22-924d-85ff22bf1a4f", - "x-request-time": "0.035" + "x-ms-routing-request-id": "JAPANEAST:20221118T094505Z:7e412500-f988-4d3c-ba55-c1d598ca9514", + "x-request-time": "0.221" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2", + "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-10-10T07:44:03.2104968\u002B00:00", - "modifiedOn": "2022-11-08T03:58:27.2396848\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2", + "computeLocation": "centraluseuap", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -52,23 +52,40 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 0, + "currentNodeCount": 2, "targetNodeCount": 4, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 0, + "runningNodeCount": 2, "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-11-09T07:53:07.813\u002B00:00", - "errors": null, + "allocationStateTransitionTime": "2022-11-18T09:27:41.01\u002B00:00", + "errors": [ + { + "error": { + "code": "DiskFull", + "message": "ComputeNode.Id=tvmps_cb9237aaedb6e8d84ff1060da66d025a09b00f35f4dba0cf409a69c4c564de2f_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_d03498209eaf215218a4852f31422f71f9f4e4238f6b9981fea0a9487f19210d_d: There is not enough disk space on the node", + "details": [ + { + "code": "Message", + "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." + }, + { + "code": "Message", + "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." + } + ] + } + } + ], "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -79,55 +96,55 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/gpu-cluster?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/gpu-cluster?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1382", + "Content-Length": "1649", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 07:55:43 GMT", + "Date": "Fri, 18 Nov 2022 09:45:05 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-00387f65669d66f472f09ad03dab6899-bb31cf96c01aefa3-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-1fc0a4642a755ebbdf3819f385e12f5f-07c60fd44d1dae68-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c81a1fd4-babe-455e-aa3f-6e3112e14c33", - "x-ms-ratelimit-remaining-subscription-reads": "11865", + "x-ms-correlation-request-id": "b49c7100-bb83-4a0e-8160-6f980b2c1608", + "x-ms-ratelimit-remaining-subscription-reads": "11994", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T075544Z:c81a1fd4-babe-455e-aa3f-6e3112e14c33", - "x-request-time": "0.018" + "x-ms-routing-request-id": "JAPANEAST:20221118T094506Z:b49c7100-bb83-4a0e-8160-6f980b2c1608", + "x-request-time": "0.030" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/gpu-cluster", "name": "gpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2", + "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-10-10T07:52:02.2174383\u002B00:00", - "modifiedOn": "2022-10-10T07:52:02.7726776\u002B00:00", + "createdOn": "2022-09-22T09:04:32.8245567\u002B00:00", + "modifiedOn": "2022-09-22T09:04:38.3624603\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2", + "computeLocation": "centraluseuap", "provisioningState": "Failed", "provisioningErrors": [ { "error": { - "code": "VmSizeNotSupported", - "message": "STANDARD_ND6S is not supported in region eastus2. Please choose a different VM size." + "code": "ClusterMinNodesExceedCoreQuota", + "message": "The specified subscription has a Standard ND family vCPU quota of 0 and cannot accomodate for at least 1 requested managed compute nodes which maps to 6 vCPUs. Talk to your Subscription Admin or refer to https://docs.microsoft.com/azure/machine-learning/how-to-manage-quotas#request-quota-increases to increase the family quota" } } ], @@ -160,28 +177,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1068", + "Content-Length": "1070", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 07:55:45 GMT", + "Date": "Fri, 18 Nov 2022 09:45:07 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-f23b0150ca080f2a611edd619d902ad1-588bf62c85d111fc-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-974479117b18da43c44c8db26dede9ea-ce7672071216e86a-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fb61c078-bbb1-4362-a5c3-5ca716f45755", - "x-ms-ratelimit-remaining-subscription-reads": "11864", + "x-ms-correlation-request-id": "89a28ca6-19f8-4828-83de-c635e772cb8c", + "x-ms-ratelimit-remaining-subscription-reads": "11993", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T075546Z:fb61c078-bbb1-4362-a5c3-5ca716f45755", - "x-request-time": "0.097" + "x-ms-routing-request-id": "JAPANEAST:20221118T094508Z:89a28ca6-19f8-4828-83de-c635e772cb8c", + "x-request-time": "0.085" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -196,17 +213,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sav3u7rijui4cza", - "containerName": "azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3", + "accountName": "teststorageaccount", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-10-10T07:43:07.7818269\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-10-10T07:43:08.5293577\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -220,7 +237,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -228,19 +245,19 @@ "Cache-Control": "no-cache", "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 07:55:46 GMT", + "Date": "Fri, 18 Nov 2022 09:45:08 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-10e22ea87633a46553b341a853a6e2f0-8c47adfc65c759bf-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-76669f96a1355cd04145030c1880d5bb-a1633160d8fc51d8-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ba5e9a75-11b6-495a-a732-e4f141da4310", - "x-ms-ratelimit-remaining-subscription-writes": "1143", + "x-ms-correlation-request-id": "9201878e-3c00-4abb-9021-6d70b17bc5b6", + "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T075546Z:ba5e9a75-11b6-495a-a732-e4f141da4310", - "x-request-time": "0.108" + "x-ms-routing-request-id": "JAPANEAST:20221118T094509Z:9201878e-3c00-4abb-9021-6d70b17bc5b6", + "x-request-time": "0.116" }, "ResponseBody": { "secretsType": "AccountKey", @@ -248,26 +265,26 @@ } }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/python/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/python/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 07:55:46 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:45:12 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Accept-Ranges": "bytes", - "Content-Length": "499", - "Content-MD5": "kD7N5\u002BygjTfbYTFhyEo7RA==", + "Content-Length": "508", + "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Wed, 09 Nov 2022 07:55:46 GMT", - "ETag": "\u00220x8DAC13F0774B6FC\u0022", - "Last-Modified": "Tue, 08 Nov 2022 04:09:27 GMT", + "Date": "Fri, 18 Nov 2022 09:45:09 GMT", + "ETag": "\u00220x8DA9D482EE600C0\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:44:17 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -276,10 +293,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 08 Nov 2022 04:09:26 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:44:17 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "5d1c99d2-15f5-472f-9477-5696b13a0426", + "x-ms-meta-name": "92e51c4c-40c7-4f95-ba55-e3a63d7d7c14", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -288,20 +305,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/az-ml-artifacts/00000000000000000000000000000000/python/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/python/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 07:55:47 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:45:13 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 09 Nov 2022 07:55:46 GMT", + "Date": "Fri, 18 Nov 2022 09:45:10 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -314,15 +331,15 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d1c99d2-15f5-472f-9477-5696b13a0426/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/92e51c4c-40c7-4f95-ba55-e3a63d7d7c14/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "295", + "Content-Length": "298", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -332,31 +349,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/python" + "codeUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/python" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "819", + "Content-Length": "824", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 07:55:47 GMT", + "Date": "Fri, 18 Nov 2022 09:45:12 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-3016d9882b0b2aa5a04b73ef124b6c5c-af4dcb151aef5164-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-d2677d3402730dcfa729565b7924d175-2fb2c63da88455fb-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6e405306-c1e7-4603-a6e6-85e498c263b4", - "x-ms-ratelimit-remaining-subscription-writes": "1101", + "x-ms-correlation-request-id": "7618ef08-59a9-49df-b5fa-3b0eca8e50e7", + "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T075548Z:6e405306-c1e7-4603-a6e6-85e498c263b4", - "x-request-time": "0.065" + "x-ms-routing-request-id": "JAPANEAST:20221118T094512Z:7618ef08-59a9-49df-b5fa-3b0eca8e50e7", + "x-request-time": "0.210" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d1c99d2-15f5-472f-9477-5696b13a0426/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/92e51c4c-40c7-4f95-ba55-e3a63d7d7c14/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -368,14 +385,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/python" + "codeUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/python" }, "systemData": { - "createdAt": "2022-11-08T04:09:28.4882209\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-09-23T09:44:19.3941658\u002B00:00", + "createdBy": "Ying Chen", "createdByType": "User", - "lastModifiedAt": "2022-11-09T07:55:48.0175695\u002B00:00", - "lastModifiedBy": "Honglin Du", + "lastModifiedAt": "2022-11-18T09:45:11.9182504\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -389,7 +406,7 @@ "Connection": "keep-alive", "Content-Length": "686", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -399,7 +416,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo ${{inputs.component_in_number}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d1c99d2-15f5-472f-9477-5696b13a0426/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/92e51c4c-40c7-4f95-ba55-e3a63d7d7c14/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1", "name": "azureml_anonymous", "version": "000000000000000000000", @@ -419,26 +436,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1675", + "Content-Length": "1683", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 07:55:48 GMT", + "Date": "Fri, 18 Nov 2022 09:45:13 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-7e82419aee233caf60efd4f205a4fb8b-6781552994d88850-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-979194f4a773145b82c3082bb175f76f-53cd34b30d8539ce-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a9f8fbd5-a92d-42f4-89ae-3b9218bee4c2", - "x-ms-ratelimit-remaining-subscription-writes": "1100", + "x-ms-correlation-request-id": "8e1e179a-f646-4fc1-8332-40e7c9686170", + "x-ms-ratelimit-remaining-subscription-writes": "1198", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T075549Z:a9f8fbd5-a92d-42f4-89ae-3b9218bee4c2", - "x-request-time": "0.338" + "x-ms-routing-request-id": "JAPANEAST:20221118T094513Z:8e1e179a-f646-4fc1-8332-40e7c9686170", + "x-request-time": "0.932" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b3e0a8fe-f10f-419f-8010-16af86c8db2b", - "name": "b3e0a8fe-f10f-419f-8010-16af86c8db2b", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ce6b9f37-b325-4d92-a9b4-577435ca629b", + "name": "ce6b9f37-b325-4d92-a9b4-577435ca629b", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -448,7 +465,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "b3e0a8fe-f10f-419f-8010-16af86c8db2b", + "version": "ce6b9f37-b325-4d92-a9b4-577435ca629b", "is_deterministic": "True", "type": "command", "inputs": { @@ -459,8 +476,8 @@ "description": "Am integer" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d1c99d2-15f5-472f-9477-5696b13a0426/versions/1", - "environment": "azureml://registries/azureml/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/92e51c4c-40c7-4f95-ba55-e3a63d7d7c14/versions/1", + "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" }, @@ -469,11 +486,11 @@ } }, "systemData": { - "createdAt": "2022-11-08T09:45:20.3794548\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-11-18T09:44:32.81992\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-11-08T09:45:20.5400255\u002B00:00", - "lastModifiedBy": "Honglin Du", + "lastModifiedAt": "2022-11-18T09:44:33.3217232\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -485,28 +502,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1068", + "Content-Length": "1070", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 07:55:49 GMT", + "Date": "Fri, 18 Nov 2022 09:45:14 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-904293dbae6ebd7f0dcbd26f44309754-95759f518b3b01d5-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-64f744ff9fc09094702d0bf65ab87c9f-cfebdad85a6a456d-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e863f196-508d-40a2-a440-a5c825100872", - "x-ms-ratelimit-remaining-subscription-reads": "11863", + "x-ms-correlation-request-id": "e5c9ff79-98ff-41cb-a1c7-9a54a2a57b33", + "x-ms-ratelimit-remaining-subscription-reads": "11992", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T075549Z:e863f196-508d-40a2-a440-a5c825100872", - "x-request-time": "0.095" + "x-ms-routing-request-id": "JAPANEAST:20221118T094514Z:e5c9ff79-98ff-41cb-a1c7-9a54a2a57b33", + "x-request-time": "0.087" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -521,17 +538,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sav3u7rijui4cza", - "containerName": "azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3", + "accountName": "teststorageaccount", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-10-10T07:43:07.7818269\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-10-10T07:43:08.5293577\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -545,7 +562,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -553,19 +570,19 @@ "Cache-Control": "no-cache", "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 07:55:50 GMT", + "Date": "Fri, 18 Nov 2022 09:45:14 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-a7f9010f34235df172e7392277d88012-c6653b4f7bb00f6c-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-62c8d65bb6cc2b840e8db6602494b30d-52ee01174baa7f34-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "02d64ba2-ccea-443e-b26a-06d2527d94dd", - "x-ms-ratelimit-remaining-subscription-writes": "1142", + "x-ms-correlation-request-id": "881c0b6d-51fb-4fea-af39-129da8043740", + "x-ms-ratelimit-remaining-subscription-writes": "1198", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T075550Z:02d64ba2-ccea-443e-b26a-06d2527d94dd", - "x-request-time": "0.081" + "x-ms-routing-request-id": "JAPANEAST:20221118T094514Z:881c0b6d-51fb-4fea-af39-129da8043740", + "x-request-time": "0.094" }, "ResponseBody": { "secretsType": "AccountKey", @@ -573,14 +590,14 @@ } }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 07:55:50 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:45:17 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -590,9 +607,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 09 Nov 2022 07:55:50 GMT", - "ETag": "\u00220x8DAC13EFDFF2C0D\u0022", - "Last-Modified": "Tue, 08 Nov 2022 04:09:11 GMT", + "Date": "Fri, 18 Nov 2022 09:45:14 GMT", + "ETag": "\u00220x8DA9D48E17467D7\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:49:17 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -601,10 +618,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 08 Nov 2022 04:09:11 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:49:16 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "5d0c2440-3f92-4bf0-a277-a2158e0ee09d", + "x-ms-meta-name": "9c9cfba9-82bd-45db-ad06-07009d1d9672", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -613,20 +630,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 07:55:52 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:45:18 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 09 Nov 2022 07:55:51 GMT", + "Date": "Fri, 18 Nov 2022 09:45:14 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -639,15 +656,15 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "288", + "Content-Length": "291", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -657,31 +674,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "812", + "Content-Length": "816", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 07:55:52 GMT", + "Date": "Fri, 18 Nov 2022 09:45:15 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-e772e7073f99fc36b962046cbbf51327-6fcf477495916792-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-ccde428c24a690bec4e45c7adabfb6ca-c7cae13d67123492-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3b7126cc-94a1-46db-9b81-af4191f80ff7", - "x-ms-ratelimit-remaining-subscription-writes": "1099", + "x-ms-correlation-request-id": "dd8f68b0-364b-4437-934b-fc58819be763", + "x-ms-ratelimit-remaining-subscription-writes": "1197", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T075553Z:3b7126cc-94a1-46db-9b81-af4191f80ff7", - "x-request-time": "0.065" + "x-ms-routing-request-id": "JAPANEAST:20221118T094515Z:dd8f68b0-364b-4437-934b-fc58819be763", + "x-request-time": "0.218" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -693,14 +710,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-11-08T04:09:13.0225939\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-09-23T09:49:20.984936\u002B00:00", + "createdBy": "Ying Chen", "createdByType": "User", - "lastModifiedAt": "2022-11-09T07:55:53.0447735\u002B00:00", - "lastModifiedBy": "Honglin Du", + "lastModifiedAt": "2022-11-18T09:45:15.4833597\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -714,7 +731,7 @@ "Connection": "keep-alive", "Content-Length": "1895", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -728,7 +745,7 @@ "isArchived": false, "componentSpec": { "command": "echo \u0022Start training ...\u0022 \u0026\u0026 python mnist.py --data_folder ${{inputs.data_folder}} --batch_size ${{inputs.batch_size}} --first_layer_neurons ${{inputs.first_layer_neurons}} --second_layer_neurons ${{inputs.second_layer_neurons}} --third_layer_neurons ${{inputs.third_layer_neurons}} --epochs ${{inputs.epochs}} --f1 ${{inputs.f1}} --f2 ${{inputs.f2}} --weight_decay ${{inputs.weight_decay}} --momentum ${{inputs.momentum}} --learning_rate ${{inputs.learning_rate}} --saved_model ${{outputs.trained_model_dir}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1", "name": "azureml_anonymous", "description": "This is the command component for sweep", @@ -792,26 +809,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3485", + "Content-Length": "3495", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 07:55:53 GMT", + "Date": "Fri, 18 Nov 2022 09:45:17 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-9880cb0733d39c7a04a7bad5d355c366-7ab0b2a0dd6966ee-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-72e15d2dd31e3c85eb8c801b5f9d32e3-2497e640054a8aba-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5150852e-81d4-4c09-98a3-92b312978c31", - "x-ms-ratelimit-remaining-subscription-writes": "1098", + "x-ms-correlation-request-id": "5b5145d8-dc83-410b-8253-9c70f174d709", + "x-ms-ratelimit-remaining-subscription-writes": "1196", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T075554Z:5150852e-81d4-4c09-98a3-92b312978c31", - "x-request-time": "0.437" + "x-ms-routing-request-id": "JAPANEAST:20221118T094517Z:5b5145d8-dc83-410b-8253-9c70f174d709", + "x-request-time": "1.102" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/5af25209-e882-4123-89c4-6c596c33cdfa", - "name": "5af25209-e882-4123-89c4-6c596c33cdfa", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/747e9377-9711-4601-97cc-2b4f13ed39c3", + "name": "747e9377-9711-4601-97cc-2b4f13ed39c3", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -824,7 +841,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "5af25209-e882-4123-89c4-6c596c33cdfa", + "version": "747e9377-9711-4601-97cc-2b4f13ed39c3", "display_name": "CommandComponentForSweep", "is_deterministic": "True", "type": "command", @@ -889,8 +906,8 @@ "type": "mlflow_model" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1", - "environment": "azureml://registries/azureml/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", + "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" }, @@ -899,11 +916,11 @@ } }, "systemData": { - "createdAt": "2022-11-08T09:45:24.9421611\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-11-18T09:44:37.4149466\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-11-08T09:45:25.1129232\u002B00:00", - "lastModifiedBy": "Honglin Du", + "lastModifiedAt": "2022-11-18T09:44:37.9494974\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -915,28 +932,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1068", + "Content-Length": "1070", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 07:55:54 GMT", + "Date": "Fri, 18 Nov 2022 09:45:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-6db07a49372406cf9e44c8347b830d8e-afdca06eeb89007a-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-a28a7e8363d207222b052ba0a4b788a8-afe34614e83c10fe-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "473cbfe3-c411-454b-a2d2-6c5ddfec851a", - "x-ms-ratelimit-remaining-subscription-reads": "11862", + "x-ms-correlation-request-id": "aa21438c-4ee8-4efc-9b65-41bdd281a436", + "x-ms-ratelimit-remaining-subscription-reads": "11991", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T075554Z:473cbfe3-c411-454b-a2d2-6c5ddfec851a", - "x-request-time": "0.080" + "x-ms-routing-request-id": "JAPANEAST:20221118T094517Z:aa21438c-4ee8-4efc-9b65-41bdd281a436", + "x-request-time": "0.097" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -951,17 +968,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sav3u7rijui4cza", - "containerName": "azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3", + "accountName": "teststorageaccount", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-10-10T07:43:07.7818269\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-10-10T07:43:08.5293577\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -975,7 +992,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -983,19 +1000,19 @@ "Cache-Control": "no-cache", "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 07:55:55 GMT", + "Date": "Fri, 18 Nov 2022 09:45:18 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-588a44c424b4c9b3eefe9fd5e88541b1-f9b5ead0d38f6dd9-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-cd6cc51f99e619e0cc58f5837c2bb8b3-38d0c49d7169efa8-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9b4c9f4e-4aae-452f-a895-391d2dc975bd", - "x-ms-ratelimit-remaining-subscription-writes": "1141", + "x-ms-correlation-request-id": "8e5f4a4b-69da-462b-9b08-7be58574abfd", + "x-ms-ratelimit-remaining-subscription-writes": "1197", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T075555Z:9b4c9f4e-4aae-452f-a895-391d2dc975bd", - "x-request-time": "0.078" + "x-ms-routing-request-id": "JAPANEAST:20221118T094518Z:8e5f4a4b-69da-462b-9b08-7be58574abfd", + "x-request-time": "0.091" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1003,26 +1020,26 @@ } }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 07:55:55 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:45:21 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Accept-Ranges": "bytes", - "Content-Length": "499", - "Content-MD5": "kD7N5\u002BygjTfbYTFhyEo7RA==", + "Content-Length": "508", + "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Wed, 09 Nov 2022 07:55:55 GMT", - "ETag": "\u00220x8DAC154D3DF99CE\u0022", - "Last-Modified": "Tue, 08 Nov 2022 06:45:30 GMT", + "Date": "Fri, 18 Nov 2022 09:45:18 GMT", + "ETag": "\u00220x8DA9D48AFBCE5A6\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:47:53 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1031,32 +1048,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 08 Nov 2022 06:45:29 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:47:53 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "5fa55015-0323-4a0f-b7c2-1db6ccd3acbf", + "x-ms-meta-name": "da405283-c0d4-42bf-9cd0-2d052c9da84b", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "c0fd52f9-f2ed-44bf-bed3-c2f92c2fd4aa", + "x-ms-meta-version": "bcdecfd5-08fc-40e1-af7f-364ca3525a76", "x-ms-server-encrypted": "true", "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 07:55:56 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:45:21 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 09 Nov 2022 07:55:56 GMT", + "Date": "Fri, 18 Nov 2022 09:45:18 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1069,15 +1086,15 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_987586919315?api-version=2022-10-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_192327011701?api-version=2022-10-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "4018", + "Content-Length": "3445", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -1088,7 +1105,7 @@ "owner": "sdkteam" }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", - "displayName": "test_987586919315", + "displayName": "test_192327011701", "experimentName": "azure-ai-ml", "isArchived": false, "jobType": "Pipeline", @@ -1131,14 +1148,9 @@ "name": "hello_sweep_inline_trial", "type": "sweep", "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/gpu-cluster", - "inputs": { - "component_in_number": { - "job_input_type": "literal" - } - }, "_source": "YAML.JOB", "trial": { - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b3e0a8fe-f10f-419f-8010-16af86c8db2b" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ce6b9f37-b325-4d92-a9b4-577435ca629b" } }, "hello_sweep_inline_file_trial": { @@ -1210,39 +1222,6 @@ "name": "hello_sweep_inline_file_trial", "type": "sweep", "inputs": { - "batch_size": { - "job_input_type": "literal" - }, - "first_layer_neurons": { - "job_input_type": "literal" - }, - "second_layer_neurons": { - "job_input_type": "literal" - }, - "third_layer_neurons": { - "job_input_type": "literal" - }, - "epochs": { - "job_input_type": "literal" - }, - "momentum": { - "job_input_type": "literal" - }, - "weight_decay": { - "job_input_type": "literal" - }, - "learning_rate": { - "job_input_type": "literal" - }, - "f1": { - "job_input_type": "literal" - }, - "f2": { - "job_input_type": "literal" - }, - "random_seed": { - "job_input_type": "literal" - }, "data_folder": { "mode": "ReadOnlyMount", "uri": "azureml://datastores/workspaceblobstore/paths/LocalUpload/00000000000000000000000000000000/data", @@ -1251,7 +1230,7 @@ }, "_source": "YAML.JOB", "trial": { - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/5af25209-e882-4123-89c4-6c596c33cdfa" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/747e9377-9711-4601-97cc-2b4f13ed39c3" } }, "hello_sweep_inline_remote_trial": { @@ -1289,26 +1268,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "7869", + "Content-Length": "6877", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 07:56:05 GMT", + "Date": "Fri, 18 Nov 2022 09:45:24 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_987586919315?api-version=2022-10-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_192327011701?api-version=2022-10-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-d560de182c27a6acd6cfc95b6ab314fe-a8dde396bf98e2b3-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-93a153236ebf7b214a4c76c35368590b-0ce7488aba56b23c-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "506a7a9f-f66a-4121-a4c9-1303379eb394", - "x-ms-ratelimit-remaining-subscription-writes": "1097", + "x-ms-correlation-request-id": "a6713e22-9c32-48d6-97cd-00784fe8a075", + "x-ms-ratelimit-remaining-subscription-writes": "1195", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T075606Z:506a7a9f-f66a-4121-a4c9-1303379eb394", - "x-request-time": "5.707" + "x-ms-routing-request-id": "JAPANEAST:20221118T094524Z:a6713e22-9c32-48d6-97cd-00784fe8a075", + "x-request-time": "4.225" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_987586919315", - "name": "test_987586919315", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_192327011701", + "name": "test_192327011701", "type": "Microsoft.MachineLearningServices/workspaces/jobs", "properties": { "description": "The hello world pipeline job with inline components", @@ -1328,14 +1307,14 @@ "azureml.defaultDataStoreName": "workspaceblobstore", "azureml.pipelineComponent": "pipelinerun" }, - "displayName": "test_987586919315", + "displayName": "test_192327011701", "status": "Preparing", "experimentName": "azure-ai-ml", "services": { "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null, @@ -1344,7 +1323,7 @@ "Studio": { "jobServiceType": "Studio", "port": null, - "endpoint": "https://ml.azure.com/runs/test_987586919315?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "endpoint": "https://ml.azure.com/runs/test_192327011701?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, "properties": null, @@ -1388,14 +1367,9 @@ "name": "hello_sweep_inline_trial", "type": "sweep", "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/gpu-cluster", - "inputs": { - "component_in_number": { - "job_input_type": "literal" - } - }, "_source": "YAML.JOB", "trial": { - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b3e0a8fe-f10f-419f-8010-16af86c8db2b" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ce6b9f37-b325-4d92-a9b4-577435ca629b" } }, "hello_sweep_inline_file_trial": { @@ -1467,39 +1441,6 @@ "name": "hello_sweep_inline_file_trial", "type": "sweep", "inputs": { - "batch_size": { - "job_input_type": "literal" - }, - "first_layer_neurons": { - "job_input_type": "literal" - }, - "second_layer_neurons": { - "job_input_type": "literal" - }, - "third_layer_neurons": { - "job_input_type": "literal" - }, - "epochs": { - "job_input_type": "literal" - }, - "momentum": { - "job_input_type": "literal" - }, - "weight_decay": { - "job_input_type": "literal" - }, - "learning_rate": { - "job_input_type": "literal" - }, - "f1": { - "job_input_type": "literal" - }, - "f2": { - "job_input_type": "literal" - }, - "random_seed": { - "job_input_type": "literal" - }, "data_folder": { "mode": "ReadOnlyMount", "uri": "azureml://datastores/workspaceblobstore/paths/LocalUpload/00000000000000000000000000000000/data", @@ -1508,7 +1449,7 @@ }, "_source": "YAML.JOB", "trial": { - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/5af25209-e882-4123-89c4-6c596c33cdfa" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/747e9377-9711-4601-97cc-2b4f13ed39c3" } }, "hello_sweep_inline_remote_trial": { @@ -1553,14 +1494,14 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-11-09T07:56:05.6347084\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-11-18T09:45:24.2695599\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } } ], "Variables": { - "name": "test_987586919315" + "name": "test_192327011701" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_sweep_node_early_termination_policy[policy_yaml_dict0].json b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_sweep_node_early_termination_policy[policy_yaml_dict0].json index a85d07a3e4d8..1d2cb70fbc36 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_sweep_node_early_termination_policy[policy_yaml_dict0].json +++ b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_sweep_node_early_termination_policy[policy_yaml_dict0].json @@ -1,49 +1,49 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2324", + "Content-Length": "2335", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:06:19 GMT", + "Date": "Fri, 18 Nov 2022 09:47:51 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-bb9049eef42cefa5ff9c4d08c55ce1ea-992d9c93a94e2a3f-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-c5821982f7f16e322a0f2ed0d79fac55-ea8ec8fb8ddfaa38-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "427ea84f-5466-4fd8-90ee-5ecdb3dba8f8", - "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-correlation-request-id": "a6e5cd7a-0319-46b3-a307-5f09384caa76", + "x-ms-ratelimit-remaining-subscription-reads": "11990", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080619Z:427ea84f-5466-4fd8-90ee-5ecdb3dba8f8", - "x-request-time": "0.038" + "x-ms-routing-request-id": "JAPANEAST:20221118T094752Z:a6e5cd7a-0319-46b3-a307-5f09384caa76", + "x-request-time": "0.241" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2", + "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-10-10T07:44:03.2104968\u002B00:00", - "modifiedOn": "2022-11-08T03:58:27.2396848\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2", + "computeLocation": "centraluseuap", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -52,27 +52,27 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 0, - "targetNodeCount": 0, + "currentNodeCount": 2, + "targetNodeCount": 4, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 0, + "runningNodeCount": 2, "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-11-09T08:05:13.531\u002B00:00", + "allocationStateTransitionTime": "2022-11-18T09:27:41.01\u002B00:00", "errors": [ { "error": { "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_22ef6b2454a4d7020ae0509a0ed488c4efc2b26c6eeb699555614f462b85653b_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_2f648ede638979a526f7fa7b345fbc5026cdf791a5b1c3ba210d6f9168c8e632_d: There is not enough disk space on the node", + "message": "ComputeNode.Id=tvmps_cb9237aaedb6e8d84ff1060da66d025a09b00f35f4dba0cf409a69c4c564de2f_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_d03498209eaf215218a4852f31422f71f9f4e4238f6b9981fea0a9487f19210d_d: There is not enough disk space on the node", "details": [ { "code": "Message", @@ -96,55 +96,55 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/gpu-cluster?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/gpu-cluster?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1382", + "Content-Length": "1649", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:06:20 GMT", + "Date": "Fri, 18 Nov 2022 09:47:52 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-8fcdb98f5866e0667c5f4340a2ed2c91-15615b1ef64884d1-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-75d437d7479ba9acd61256409a9b9cf3-a8c42cc88b370a62-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0c2f13f8-270c-48cf-b279-35f0fa7c08e9", - "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-correlation-request-id": "32dd1225-18e8-4254-9795-281948621175", + "x-ms-ratelimit-remaining-subscription-reads": "11989", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080620Z:0c2f13f8-270c-48cf-b279-35f0fa7c08e9", - "x-request-time": "0.021" + "x-ms-routing-request-id": "JAPANEAST:20221118T094752Z:32dd1225-18e8-4254-9795-281948621175", + "x-request-time": "0.024" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/gpu-cluster", "name": "gpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2", + "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-10-10T07:52:02.2174383\u002B00:00", - "modifiedOn": "2022-10-10T07:52:02.7726776\u002B00:00", + "createdOn": "2022-09-22T09:04:32.8245567\u002B00:00", + "modifiedOn": "2022-09-22T09:04:38.3624603\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2", + "computeLocation": "centraluseuap", "provisioningState": "Failed", "provisioningErrors": [ { "error": { - "code": "VmSizeNotSupported", - "message": "STANDARD_ND6S is not supported in region eastus2. Please choose a different VM size." + "code": "ClusterMinNodesExceedCoreQuota", + "message": "The specified subscription has a Standard ND family vCPU quota of 0 and cannot accomodate for at least 1 requested managed compute nodes which maps to 6 vCPUs. Talk to your Subscription Admin or refer to https://docs.microsoft.com/azure/machine-learning/how-to-manage-quotas#request-quota-increases to increase the family quota" } } ], @@ -177,28 +177,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1068", + "Content-Length": "1070", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:06:22 GMT", + "Date": "Fri, 18 Nov 2022 09:47:55 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-9c88e9caacb67d98b78ad150e86b337a-54cbf56c90709a7e-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-b4e52a93ee3fcf86e198c5db7d201bac-f2f7e5831f166f05-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fc504e53-dc29-48ab-906e-9f06dafef508", - "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-correlation-request-id": "2679d9e3-650e-434f-8cba-58685dfc9bc1", + "x-ms-ratelimit-remaining-subscription-reads": "11988", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080622Z:fc504e53-dc29-48ab-906e-9f06dafef508", - "x-request-time": "0.093" + "x-ms-routing-request-id": "JAPANEAST:20221118T094755Z:2679d9e3-650e-434f-8cba-58685dfc9bc1", + "x-request-time": "0.088" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -213,17 +213,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sav3u7rijui4cza", - "containerName": "azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3", + "accountName": "teststorageaccount", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-10-10T07:43:07.7818269\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-10-10T07:43:08.5293577\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -237,7 +237,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -245,19 +245,19 @@ "Cache-Control": "no-cache", "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:06:23 GMT", + "Date": "Fri, 18 Nov 2022 09:47:55 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-08642c27f0d8b1de16e4c58bdaa31de4-fa9e1b25b4fb50c4-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-47c2c4ae18a630171b3f42884f3c4a3c-99f9d85a799b44e1-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "114c8602-7f6e-4aed-8e73-2f66f2913f2d", - "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-correlation-request-id": "a2210806-16e3-408c-8b67-d7e3d44193ef", + "x-ms-ratelimit-remaining-subscription-writes": "1196", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080623Z:114c8602-7f6e-4aed-8e73-2f66f2913f2d", - "x-request-time": "0.175" + "x-ms-routing-request-id": "JAPANEAST:20221118T094755Z:a2210806-16e3-408c-8b67-d7e3d44193ef", + "x-request-time": "0.132" }, "ResponseBody": { "secretsType": "AccountKey", @@ -265,26 +265,26 @@ } }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/python/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/python/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:06:23 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:47:59 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Accept-Ranges": "bytes", - "Content-Length": "499", - "Content-MD5": "kD7N5\u002BygjTfbYTFhyEo7RA==", + "Content-Length": "508", + "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Wed, 09 Nov 2022 08:06:24 GMT", - "ETag": "\u00220x8DAC13F0774B6FC\u0022", - "Last-Modified": "Tue, 08 Nov 2022 04:09:27 GMT", + "Date": "Fri, 18 Nov 2022 09:47:56 GMT", + "ETag": "\u00220x8DA9D482EE600C0\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:44:17 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -293,10 +293,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 08 Nov 2022 04:09:26 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:44:17 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "5d1c99d2-15f5-472f-9477-5696b13a0426", + "x-ms-meta-name": "92e51c4c-40c7-4f95-ba55-e3a63d7d7c14", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -305,20 +305,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/az-ml-artifacts/00000000000000000000000000000000/python/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/python/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:06:25 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:48:00 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 09 Nov 2022 08:06:24 GMT", + "Date": "Fri, 18 Nov 2022 09:47:56 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -331,15 +331,15 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d1c99d2-15f5-472f-9477-5696b13a0426/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/92e51c4c-40c7-4f95-ba55-e3a63d7d7c14/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "295", + "Content-Length": "298", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -349,31 +349,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/python" + "codeUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/python" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "819", + "Content-Length": "824", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:06:26 GMT", + "Date": "Fri, 18 Nov 2022 09:47:58 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-630cc9198010eaf80bdad7dc4c7569c4-8c37551e87535894-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-62e03fe8ed482a79b414f38217dfc09d-b845eedf321c0cd5-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1e167bab-9d35-41f8-8702-605402bf35fc", - "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-correlation-request-id": "f0a14ff9-970a-4b65-8e5c-6dfb00f636a6", + "x-ms-ratelimit-remaining-subscription-writes": "1194", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080627Z:1e167bab-9d35-41f8-8702-605402bf35fc", - "x-request-time": "0.958" + "x-ms-routing-request-id": "JAPANEAST:20221118T094758Z:f0a14ff9-970a-4b65-8e5c-6dfb00f636a6", + "x-request-time": "0.497" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d1c99d2-15f5-472f-9477-5696b13a0426/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/92e51c4c-40c7-4f95-ba55-e3a63d7d7c14/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -385,14 +385,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/python" + "codeUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/python" }, "systemData": { - "createdAt": "2022-11-08T04:09:28.4882209\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-09-23T09:44:19.3941658\u002B00:00", + "createdBy": "Ying Chen", "createdByType": "User", - "lastModifiedAt": "2022-11-09T08:06:27.1816362\u002B00:00", - "lastModifiedBy": "Honglin Du", + "lastModifiedAt": "2022-11-18T09:47:57.9713113\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -406,7 +406,7 @@ "Connection": "keep-alive", "Content-Length": "686", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -416,7 +416,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo ${{inputs.component_in_number}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d1c99d2-15f5-472f-9477-5696b13a0426/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/92e51c4c-40c7-4f95-ba55-e3a63d7d7c14/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1", "name": "azureml_anonymous", "version": "000000000000000000000", @@ -436,26 +436,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1675", + "Content-Length": "1683", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:06:28 GMT", + "Date": "Fri, 18 Nov 2022 09:47:59 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-6ca910f553db47e00200709ee7fd18a7-951a0e7cf137ff57-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-bf29d8ee87c6c37d369b93ed1e8fe021-5978bf9cd184d0a9-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9118f898-5791-4d82-a784-c33912fc0376", - "x-ms-ratelimit-remaining-subscription-writes": "1194", + "x-ms-correlation-request-id": "06cc3db1-1f73-4b65-9905-113d801db56c", + "x-ms-ratelimit-remaining-subscription-writes": "1193", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080629Z:9118f898-5791-4d82-a784-c33912fc0376", - "x-request-time": "1.334" + "x-ms-routing-request-id": "JAPANEAST:20221118T094759Z:06cc3db1-1f73-4b65-9905-113d801db56c", + "x-request-time": "1.067" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b3e0a8fe-f10f-419f-8010-16af86c8db2b", - "name": "b3e0a8fe-f10f-419f-8010-16af86c8db2b", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ce6b9f37-b325-4d92-a9b4-577435ca629b", + "name": "ce6b9f37-b325-4d92-a9b4-577435ca629b", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -465,7 +465,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "b3e0a8fe-f10f-419f-8010-16af86c8db2b", + "version": "ce6b9f37-b325-4d92-a9b4-577435ca629b", "is_deterministic": "True", "type": "command", "inputs": { @@ -476,8 +476,8 @@ "description": "Am integer" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d1c99d2-15f5-472f-9477-5696b13a0426/versions/1", - "environment": "azureml://registries/azureml/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/92e51c4c-40c7-4f95-ba55-e3a63d7d7c14/versions/1", + "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" }, @@ -486,11 +486,11 @@ } }, "systemData": { - "createdAt": "2022-11-08T09:45:20.3794548\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-11-18T09:44:32.81992\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-11-08T09:45:20.5400255\u002B00:00", - "lastModifiedBy": "Honglin Du", + "lastModifiedAt": "2022-11-18T09:44:33.3217232\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -502,28 +502,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1068", + "Content-Length": "1070", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:06:29 GMT", + "Date": "Fri, 18 Nov 2022 09:48:00 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-afc0f49e991e385d2e39f11d56a8586e-d76c77fb824a0615-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-f49ebc10e5f403640651b3781771e692-ebfa97e2da50c675-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b4a610c1-89f6-4046-8702-bf43dcfae67a", - "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-correlation-request-id": "453a8cbe-2d32-43a8-9e2d-34572c7b0d17", + "x-ms-ratelimit-remaining-subscription-reads": "11987", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080630Z:b4a610c1-89f6-4046-8702-bf43dcfae67a", - "x-request-time": "0.078" + "x-ms-routing-request-id": "JAPANEAST:20221118T094800Z:453a8cbe-2d32-43a8-9e2d-34572c7b0d17", + "x-request-time": "0.112" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -538,17 +538,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sav3u7rijui4cza", - "containerName": "azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3", + "accountName": "teststorageaccount", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-10-10T07:43:07.7818269\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-10-10T07:43:08.5293577\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -562,7 +562,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -570,19 +570,19 @@ "Cache-Control": "no-cache", "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:06:30 GMT", + "Date": "Fri, 18 Nov 2022 09:48:00 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-fc111d66f99071bdbec2438005df8f30-779a0fa09c124ec3-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-07937c242e89ecaa34791cdd5b8d7630-47eb4dbae7a74f59-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "af40e8e1-2a08-4408-8e3f-d99e6389f856", - "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-correlation-request-id": "1931cf34-8e69-495e-98f0-5dd2dfad8604", + "x-ms-ratelimit-remaining-subscription-writes": "1195", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080630Z:af40e8e1-2a08-4408-8e3f-d99e6389f856", - "x-request-time": "0.088" + "x-ms-routing-request-id": "JAPANEAST:20221118T094801Z:1931cf34-8e69-495e-98f0-5dd2dfad8604", + "x-request-time": "0.100" }, "ResponseBody": { "secretsType": "AccountKey", @@ -590,14 +590,14 @@ } }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:06:30 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:48:04 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -607,9 +607,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 09 Nov 2022 08:06:30 GMT", - "ETag": "\u00220x8DAC13EFDFF2C0D\u0022", - "Last-Modified": "Tue, 08 Nov 2022 04:09:11 GMT", + "Date": "Fri, 18 Nov 2022 09:48:00 GMT", + "ETag": "\u00220x8DA9D48E17467D7\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:49:17 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -618,10 +618,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 08 Nov 2022 04:09:11 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:49:16 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "5d0c2440-3f92-4bf0-a277-a2158e0ee09d", + "x-ms-meta-name": "9c9cfba9-82bd-45db-ad06-07009d1d9672", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -630,20 +630,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:06:30 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:48:04 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 09 Nov 2022 08:06:30 GMT", + "Date": "Fri, 18 Nov 2022 09:48:01 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -656,15 +656,15 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "288", + "Content-Length": "291", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -674,31 +674,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "812", + "Content-Length": "816", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:06:31 GMT", + "Date": "Fri, 18 Nov 2022 09:48:01 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-c5bec5c6abd87fab5cb2ca2d1176d5ef-43b6bd91b7270a4b-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-541525fca605ea3a16f6600ec2a3b6aa-b9b54806d3b16cb9-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8b23b438-7357-4e13-bac9-a9c8a892aafe", - "x-ms-ratelimit-remaining-subscription-writes": "1193", + "x-ms-correlation-request-id": "ac8f88bd-f110-4454-93a3-ce2c5bf0d2bf", + "x-ms-ratelimit-remaining-subscription-writes": "1192", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080631Z:8b23b438-7357-4e13-bac9-a9c8a892aafe", - "x-request-time": "0.109" + "x-ms-routing-request-id": "JAPANEAST:20221118T094802Z:ac8f88bd-f110-4454-93a3-ce2c5bf0d2bf", + "x-request-time": "0.228" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -710,14 +710,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-11-08T04:09:13.0225939\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-09-23T09:49:20.984936\u002B00:00", + "createdBy": "Ying Chen", "createdByType": "User", - "lastModifiedAt": "2022-11-09T08:06:31.8443748\u002B00:00", - "lastModifiedBy": "Honglin Du", + "lastModifiedAt": "2022-11-18T09:48:01.9693072\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -731,7 +731,7 @@ "Connection": "keep-alive", "Content-Length": "1895", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -745,7 +745,7 @@ "isArchived": false, "componentSpec": { "command": "echo \u0022Start training ...\u0022 \u0026\u0026 python mnist.py --data_folder ${{inputs.data_folder}} --batch_size ${{inputs.batch_size}} --first_layer_neurons ${{inputs.first_layer_neurons}} --second_layer_neurons ${{inputs.second_layer_neurons}} --third_layer_neurons ${{inputs.third_layer_neurons}} --epochs ${{inputs.epochs}} --f1 ${{inputs.f1}} --f2 ${{inputs.f2}} --weight_decay ${{inputs.weight_decay}} --momentum ${{inputs.momentum}} --learning_rate ${{inputs.learning_rate}} --saved_model ${{outputs.trained_model_dir}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1", "name": "azureml_anonymous", "description": "This is the command component for sweep", @@ -809,26 +809,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3485", + "Content-Length": "3495", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:06:32 GMT", + "Date": "Fri, 18 Nov 2022 09:48:03 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-eb99ed333a542c3ab59689699d8126a8-305f61f08ba0c041-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-0bad2aa2d245de9e5b2b8f733cb53db9-3ea35b4b8d10ffa1-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f97cac11-981f-4cf8-a344-e214ea8ac9b4", - "x-ms-ratelimit-remaining-subscription-writes": "1192", + "x-ms-correlation-request-id": "b8aee678-3856-4fa2-bb23-ce91d27c3cf8", + "x-ms-ratelimit-remaining-subscription-writes": "1191", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080633Z:f97cac11-981f-4cf8-a344-e214ea8ac9b4", - "x-request-time": "0.431" + "x-ms-routing-request-id": "JAPANEAST:20221118T094803Z:b8aee678-3856-4fa2-bb23-ce91d27c3cf8", + "x-request-time": "1.035" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/5af25209-e882-4123-89c4-6c596c33cdfa", - "name": "5af25209-e882-4123-89c4-6c596c33cdfa", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/747e9377-9711-4601-97cc-2b4f13ed39c3", + "name": "747e9377-9711-4601-97cc-2b4f13ed39c3", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -841,7 +841,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "5af25209-e882-4123-89c4-6c596c33cdfa", + "version": "747e9377-9711-4601-97cc-2b4f13ed39c3", "display_name": "CommandComponentForSweep", "is_deterministic": "True", "type": "command", @@ -906,8 +906,8 @@ "type": "mlflow_model" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1", - "environment": "azureml://registries/azureml/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", + "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" }, @@ -916,11 +916,11 @@ } }, "systemData": { - "createdAt": "2022-11-08T09:45:24.9421611\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-11-18T09:44:37.4149466\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-11-08T09:45:25.1129232\u002B00:00", - "lastModifiedBy": "Honglin Du", + "lastModifiedAt": "2022-11-18T09:44:37.9494974\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -932,28 +932,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1068", + "Content-Length": "1070", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:06:33 GMT", + "Date": "Fri, 18 Nov 2022 09:48:03 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-863e8e33a1067ae533eb35ff2a0464f5-f988aa458e2407ae-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-266b7855ab887531f5cc4297176cd6f3-f246c7ea7fbc06ca-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4f258fb7-7ddd-43ca-abed-d00e737fa111", - "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-correlation-request-id": "516833fe-02a9-40da-a81a-45b7db383593", + "x-ms-ratelimit-remaining-subscription-reads": "11986", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080633Z:4f258fb7-7ddd-43ca-abed-d00e737fa111", - "x-request-time": "0.081" + "x-ms-routing-request-id": "JAPANEAST:20221118T094804Z:516833fe-02a9-40da-a81a-45b7db383593", + "x-request-time": "0.096" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -968,17 +968,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sav3u7rijui4cza", - "containerName": "azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3", + "accountName": "teststorageaccount", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-10-10T07:43:07.7818269\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-10-10T07:43:08.5293577\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -992,7 +992,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1000,19 +1000,19 @@ "Cache-Control": "no-cache", "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:06:33 GMT", + "Date": "Fri, 18 Nov 2022 09:48:04 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-69ceaa49b93cd4cba75fc08a073cc807-e0860c988a032f28-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-a64811f381bff425af84d1817042f27a-7f19cd9a831a1c19-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dde58ded-297c-4cdd-8a4c-734377bd1309", - "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-correlation-request-id": "5dc6f8e7-4810-43ad-8c89-04f0d0756a78", + "x-ms-ratelimit-remaining-subscription-writes": "1194", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080634Z:dde58ded-297c-4cdd-8a4c-734377bd1309", - "x-request-time": "0.121" + "x-ms-routing-request-id": "JAPANEAST:20221118T094804Z:5dc6f8e7-4810-43ad-8c89-04f0d0756a78", + "x-request-time": "0.101" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1020,26 +1020,26 @@ } }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:06:34 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:48:08 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Accept-Ranges": "bytes", - "Content-Length": "499", - "Content-MD5": "kD7N5\u002BygjTfbYTFhyEo7RA==", + "Content-Length": "508", + "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Wed, 09 Nov 2022 08:06:33 GMT", - "ETag": "\u00220x8DAC154D3DF99CE\u0022", - "Last-Modified": "Tue, 08 Nov 2022 06:45:30 GMT", + "Date": "Fri, 18 Nov 2022 09:48:04 GMT", + "ETag": "\u00220x8DA9D48AFBCE5A6\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:47:53 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1048,32 +1048,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 08 Nov 2022 06:45:29 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:47:53 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "5fa55015-0323-4a0f-b7c2-1db6ccd3acbf", + "x-ms-meta-name": "da405283-c0d4-42bf-9cd0-2d052c9da84b", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "c0fd52f9-f2ed-44bf-bed3-c2f92c2fd4aa", + "x-ms-meta-version": "bcdecfd5-08fc-40e1-af7f-364ca3525a76", "x-ms-server-encrypted": "true", "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:06:34 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:48:08 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 09 Nov 2022 08:06:34 GMT", + "Date": "Fri, 18 Nov 2022 09:48:04 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1086,15 +1086,15 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_695118826456?api-version=2022-10-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_72402307697?api-version=2022-10-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "4018", + "Content-Length": "3444", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -1105,7 +1105,7 @@ "owner": "sdkteam" }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", - "displayName": "test_695118826456", + "displayName": "test_72402307697", "experimentName": "azure-ai-ml", "isArchived": false, "jobType": "Pipeline", @@ -1148,14 +1148,9 @@ "name": "hello_sweep_inline_trial", "type": "sweep", "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/gpu-cluster", - "inputs": { - "component_in_number": { - "job_input_type": "literal" - } - }, "_source": "YAML.JOB", "trial": { - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b3e0a8fe-f10f-419f-8010-16af86c8db2b" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ce6b9f37-b325-4d92-a9b4-577435ca629b" } }, "hello_sweep_inline_file_trial": { @@ -1227,39 +1222,6 @@ "name": "hello_sweep_inline_file_trial", "type": "sweep", "inputs": { - "batch_size": { - "job_input_type": "literal" - }, - "first_layer_neurons": { - "job_input_type": "literal" - }, - "second_layer_neurons": { - "job_input_type": "literal" - }, - "third_layer_neurons": { - "job_input_type": "literal" - }, - "epochs": { - "job_input_type": "literal" - }, - "momentum": { - "job_input_type": "literal" - }, - "weight_decay": { - "job_input_type": "literal" - }, - "learning_rate": { - "job_input_type": "literal" - }, - "f1": { - "job_input_type": "literal" - }, - "f2": { - "job_input_type": "literal" - }, - "random_seed": { - "job_input_type": "literal" - }, "data_folder": { "mode": "ReadOnlyMount", "uri": "azureml://datastores/workspaceblobstore/paths/LocalUpload/00000000000000000000000000000000/data", @@ -1268,7 +1230,7 @@ }, "_source": "YAML.JOB", "trial": { - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/5af25209-e882-4123-89c4-6c596c33cdfa" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/747e9377-9711-4601-97cc-2b4f13ed39c3" } }, "hello_sweep_inline_remote_trial": { @@ -1306,26 +1268,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "7869", + "Content-Length": "6873", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:06:45 GMT", + "Date": "Fri, 18 Nov 2022 09:48:11 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_695118826456?api-version=2022-10-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_72402307697?api-version=2022-10-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-70927b705edef3f951c3b0e6b961f3da-17a3bc8686ac78f8-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-ea0b5b002a723478eb34b0a6edb8d6c3-7abda5bb5f8a2957-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "434dc2c8-86a5-484a-a8ba-f58698abb181", - "x-ms-ratelimit-remaining-subscription-writes": "1191", + "x-ms-correlation-request-id": "49e3e46e-f2a4-483b-b908-ecf94e62c917", + "x-ms-ratelimit-remaining-subscription-writes": "1190", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080646Z:434dc2c8-86a5-484a-a8ba-f58698abb181", - "x-request-time": "6.315" + "x-ms-routing-request-id": "JAPANEAST:20221118T094811Z:49e3e46e-f2a4-483b-b908-ecf94e62c917", + "x-request-time": "4.053" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_695118826456", - "name": "test_695118826456", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_72402307697", + "name": "test_72402307697", "type": "Microsoft.MachineLearningServices/workspaces/jobs", "properties": { "description": "The hello world pipeline job with inline components", @@ -1345,14 +1307,14 @@ "azureml.defaultDataStoreName": "workspaceblobstore", "azureml.pipelineComponent": "pipelinerun" }, - "displayName": "test_695118826456", + "displayName": "test_72402307697", "status": "Preparing", "experimentName": "azure-ai-ml", "services": { "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null, @@ -1361,7 +1323,7 @@ "Studio": { "jobServiceType": "Studio", "port": null, - "endpoint": "https://ml.azure.com/runs/test_695118826456?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "endpoint": "https://ml.azure.com/runs/test_72402307697?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, "properties": null, @@ -1405,14 +1367,9 @@ "name": "hello_sweep_inline_trial", "type": "sweep", "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/gpu-cluster", - "inputs": { - "component_in_number": { - "job_input_type": "literal" - } - }, "_source": "YAML.JOB", "trial": { - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b3e0a8fe-f10f-419f-8010-16af86c8db2b" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ce6b9f37-b325-4d92-a9b4-577435ca629b" } }, "hello_sweep_inline_file_trial": { @@ -1484,39 +1441,6 @@ "name": "hello_sweep_inline_file_trial", "type": "sweep", "inputs": { - "batch_size": { - "job_input_type": "literal" - }, - "first_layer_neurons": { - "job_input_type": "literal" - }, - "second_layer_neurons": { - "job_input_type": "literal" - }, - "third_layer_neurons": { - "job_input_type": "literal" - }, - "epochs": { - "job_input_type": "literal" - }, - "momentum": { - "job_input_type": "literal" - }, - "weight_decay": { - "job_input_type": "literal" - }, - "learning_rate": { - "job_input_type": "literal" - }, - "f1": { - "job_input_type": "literal" - }, - "f2": { - "job_input_type": "literal" - }, - "random_seed": { - "job_input_type": "literal" - }, "data_folder": { "mode": "ReadOnlyMount", "uri": "azureml://datastores/workspaceblobstore/paths/LocalUpload/00000000000000000000000000000000/data", @@ -1525,7 +1449,7 @@ }, "_source": "YAML.JOB", "trial": { - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/5af25209-e882-4123-89c4-6c596c33cdfa" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/747e9377-9711-4601-97cc-2b4f13ed39c3" } }, "hello_sweep_inline_remote_trial": { @@ -1570,14 +1494,14 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-11-09T08:06:45.6851275\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-11-18T09:48:10.5914785\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } } ], "Variables": { - "randstr": "test_695118826456" + "randstr": "test_72402307697" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_sweep_node_early_termination_policy[policy_yaml_dict1].json b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_sweep_node_early_termination_policy[policy_yaml_dict1].json index e276eafc0243..46fafa4bf89c 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_sweep_node_early_termination_policy[policy_yaml_dict1].json +++ b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_sweep_node_early_termination_policy[policy_yaml_dict1].json @@ -1,49 +1,49 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2324", + "Content-Length": "2335", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:06:50 GMT", + "Date": "Fri, 18 Nov 2022 09:48:15 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-f1843306e88dd89ef9a3bd1aba272b2b-817afaadfb648fd5-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-c0574c5c60f17fc9d4cd412096339c4b-6c7ff4e9856e3cdf-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4ccf81a4-8012-417c-8c2b-06c5f4e33c93", - "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-correlation-request-id": "a974bfd4-c515-48d8-a424-3e71029bca32", + "x-ms-ratelimit-remaining-subscription-reads": "11985", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080651Z:4ccf81a4-8012-417c-8c2b-06c5f4e33c93", - "x-request-time": "0.043" + "x-ms-routing-request-id": "JAPANEAST:20221118T094816Z:a974bfd4-c515-48d8-a424-3e71029bca32", + "x-request-time": "0.241" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2", + "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-10-10T07:44:03.2104968\u002B00:00", - "modifiedOn": "2022-11-08T03:58:27.2396848\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2", + "computeLocation": "centraluseuap", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -52,27 +52,27 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 0, - "targetNodeCount": 0, + "currentNodeCount": 2, + "targetNodeCount": 4, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 0, + "runningNodeCount": 2, "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-11-09T08:05:13.531\u002B00:00", + "allocationStateTransitionTime": "2022-11-18T09:27:41.01\u002B00:00", "errors": [ { "error": { "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_22ef6b2454a4d7020ae0509a0ed488c4efc2b26c6eeb699555614f462b85653b_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_2f648ede638979a526f7fa7b345fbc5026cdf791a5b1c3ba210d6f9168c8e632_d: There is not enough disk space on the node", + "message": "ComputeNode.Id=tvmps_cb9237aaedb6e8d84ff1060da66d025a09b00f35f4dba0cf409a69c4c564de2f_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_d03498209eaf215218a4852f31422f71f9f4e4238f6b9981fea0a9487f19210d_d: There is not enough disk space on the node", "details": [ { "code": "Message", @@ -96,55 +96,55 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/gpu-cluster?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/gpu-cluster?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1382", + "Content-Length": "1649", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:06:51 GMT", + "Date": "Fri, 18 Nov 2022 09:48:16 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-638a30140fc2e5d5b2e559c7d068d8db-682b19e6aee588fe-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-eb43f070a437a085456adbe6832ae76d-5e032690a97f9f80-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "545cc230-bee4-4dcf-b869-0361cd33fcdc", - "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-correlation-request-id": "08036119-7604-4508-bb18-fea0eeea2371", + "x-ms-ratelimit-remaining-subscription-reads": "11984", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080651Z:545cc230-bee4-4dcf-b869-0361cd33fcdc", - "x-request-time": "0.021" + "x-ms-routing-request-id": "JAPANEAST:20221118T094816Z:08036119-7604-4508-bb18-fea0eeea2371", + "x-request-time": "0.028" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/gpu-cluster", "name": "gpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2", + "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-10-10T07:52:02.2174383\u002B00:00", - "modifiedOn": "2022-10-10T07:52:02.7726776\u002B00:00", + "createdOn": "2022-09-22T09:04:32.8245567\u002B00:00", + "modifiedOn": "2022-09-22T09:04:38.3624603\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2", + "computeLocation": "centraluseuap", "provisioningState": "Failed", "provisioningErrors": [ { "error": { - "code": "VmSizeNotSupported", - "message": "STANDARD_ND6S is not supported in region eastus2. Please choose a different VM size." + "code": "ClusterMinNodesExceedCoreQuota", + "message": "The specified subscription has a Standard ND family vCPU quota of 0 and cannot accomodate for at least 1 requested managed compute nodes which maps to 6 vCPUs. Talk to your Subscription Admin or refer to https://docs.microsoft.com/azure/machine-learning/how-to-manage-quotas#request-quota-increases to increase the family quota" } } ], @@ -177,28 +177,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1068", + "Content-Length": "1070", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:06:53 GMT", + "Date": "Fri, 18 Nov 2022 09:48:18 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-a17b0c4302082b8ebfc3d6ece68965b5-d7512d4eca1761b3-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-e3e66478f5cad8ade7ccfb43376aa36f-94779dbf4507bfdd-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bb5fa4dd-ddfc-415b-b4f0-2e0557c97fef", - "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-correlation-request-id": "a923b80c-053d-4f9f-a8d7-fa56e653c5e9", + "x-ms-ratelimit-remaining-subscription-reads": "11983", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080653Z:bb5fa4dd-ddfc-415b-b4f0-2e0557c97fef", - "x-request-time": "0.138" + "x-ms-routing-request-id": "JAPANEAST:20221118T094818Z:a923b80c-053d-4f9f-a8d7-fa56e653c5e9", + "x-request-time": "0.089" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -213,17 +213,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sav3u7rijui4cza", - "containerName": "azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3", + "accountName": "teststorageaccount", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-10-10T07:43:07.7818269\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-10-10T07:43:08.5293577\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -237,7 +237,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -245,19 +245,19 @@ "Cache-Control": "no-cache", "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:06:53 GMT", + "Date": "Fri, 18 Nov 2022 09:48:18 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-417dbc77c02db52cd01f0a0e569c0863-15c9d80e524c4e82-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-0187937f102aba3e1d4c97108817440f-6f977f2347825a1b-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4f1df693-0c60-48d4-9855-d697490c52b8", - "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-correlation-request-id": "184b2b07-b82e-40f2-b928-1fcd2f20f704", + "x-ms-ratelimit-remaining-subscription-writes": "1193", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080654Z:4f1df693-0c60-48d4-9855-d697490c52b8", - "x-request-time": "0.080" + "x-ms-routing-request-id": "JAPANEAST:20221118T094819Z:184b2b07-b82e-40f2-b928-1fcd2f20f704", + "x-request-time": "0.102" }, "ResponseBody": { "secretsType": "AccountKey", @@ -265,26 +265,26 @@ } }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/python/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/python/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:06:54 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:48:22 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Accept-Ranges": "bytes", - "Content-Length": "499", - "Content-MD5": "kD7N5\u002BygjTfbYTFhyEo7RA==", + "Content-Length": "508", + "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Wed, 09 Nov 2022 08:06:53 GMT", - "ETag": "\u00220x8DAC13F0774B6FC\u0022", - "Last-Modified": "Tue, 08 Nov 2022 04:09:27 GMT", + "Date": "Fri, 18 Nov 2022 09:48:19 GMT", + "ETag": "\u00220x8DA9D482EE600C0\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:44:17 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -293,10 +293,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 08 Nov 2022 04:09:26 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:44:17 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "5d1c99d2-15f5-472f-9477-5696b13a0426", + "x-ms-meta-name": "92e51c4c-40c7-4f95-ba55-e3a63d7d7c14", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -305,20 +305,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/az-ml-artifacts/00000000000000000000000000000000/python/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/python/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:06:54 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:48:22 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 09 Nov 2022 08:06:54 GMT", + "Date": "Fri, 18 Nov 2022 09:48:19 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -331,15 +331,15 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d1c99d2-15f5-472f-9477-5696b13a0426/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/92e51c4c-40c7-4f95-ba55-e3a63d7d7c14/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "295", + "Content-Length": "298", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -349,31 +349,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/python" + "codeUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/python" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "819", + "Content-Length": "824", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:06:55 GMT", + "Date": "Fri, 18 Nov 2022 09:48:20 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-79fded1617a73b14739468a756da54d4-0b94b42369e63aac-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-7938b54a23134ca9de8014cde2d5f45e-848a9b7ae35f111e-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3bcfa9b3-840c-45be-8d55-90562d0830b3", - "x-ms-ratelimit-remaining-subscription-writes": "1190", + "x-ms-correlation-request-id": "a209f8fc-16dd-4e85-8626-1b709b3700e8", + "x-ms-ratelimit-remaining-subscription-writes": "1189", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080655Z:3bcfa9b3-840c-45be-8d55-90562d0830b3", - "x-request-time": "0.120" + "x-ms-routing-request-id": "JAPANEAST:20221118T094820Z:a209f8fc-16dd-4e85-8626-1b709b3700e8", + "x-request-time": "0.231" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d1c99d2-15f5-472f-9477-5696b13a0426/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/92e51c4c-40c7-4f95-ba55-e3a63d7d7c14/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -385,14 +385,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/python" + "codeUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/python" }, "systemData": { - "createdAt": "2022-11-08T04:09:28.4882209\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-09-23T09:44:19.3941658\u002B00:00", + "createdBy": "Ying Chen", "createdByType": "User", - "lastModifiedAt": "2022-11-09T08:06:55.8453313\u002B00:00", - "lastModifiedBy": "Honglin Du", + "lastModifiedAt": "2022-11-18T09:48:20.2546221\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -406,7 +406,7 @@ "Connection": "keep-alive", "Content-Length": "686", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -416,7 +416,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo ${{inputs.component_in_number}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d1c99d2-15f5-472f-9477-5696b13a0426/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/92e51c4c-40c7-4f95-ba55-e3a63d7d7c14/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1", "name": "azureml_anonymous", "version": "000000000000000000000", @@ -436,26 +436,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1675", + "Content-Length": "1683", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:06:56 GMT", + "Date": "Fri, 18 Nov 2022 09:48:21 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-b9c05920bea5d4c48a3308c55c480aed-4564917ac57f1442-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-e43f5c7213ebf22111f4eb60f398c80b-4365bff6e9afcd62-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e03cce93-65a5-424a-b52d-697884503a43", - "x-ms-ratelimit-remaining-subscription-writes": "1189", + "x-ms-correlation-request-id": "b515f22a-3225-4e35-8d6d-4a67d3ae6708", + "x-ms-ratelimit-remaining-subscription-writes": "1188", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080657Z:e03cce93-65a5-424a-b52d-697884503a43", - "x-request-time": "0.446" + "x-ms-routing-request-id": "JAPANEAST:20221118T094821Z:b515f22a-3225-4e35-8d6d-4a67d3ae6708", + "x-request-time": "0.982" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b3e0a8fe-f10f-419f-8010-16af86c8db2b", - "name": "b3e0a8fe-f10f-419f-8010-16af86c8db2b", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ce6b9f37-b325-4d92-a9b4-577435ca629b", + "name": "ce6b9f37-b325-4d92-a9b4-577435ca629b", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -465,7 +465,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "b3e0a8fe-f10f-419f-8010-16af86c8db2b", + "version": "ce6b9f37-b325-4d92-a9b4-577435ca629b", "is_deterministic": "True", "type": "command", "inputs": { @@ -476,8 +476,8 @@ "description": "Am integer" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d1c99d2-15f5-472f-9477-5696b13a0426/versions/1", - "environment": "azureml://registries/azureml/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/92e51c4c-40c7-4f95-ba55-e3a63d7d7c14/versions/1", + "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" }, @@ -486,11 +486,11 @@ } }, "systemData": { - "createdAt": "2022-11-08T09:45:20.3794548\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-11-18T09:44:32.81992\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-11-08T09:45:20.5400255\u002B00:00", - "lastModifiedBy": "Honglin Du", + "lastModifiedAt": "2022-11-18T09:44:33.3217232\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -502,28 +502,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1068", + "Content-Length": "1070", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:06:57 GMT", + "Date": "Fri, 18 Nov 2022 09:48:22 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-2e214e0df2c932d9333e608961021bf0-847456bb4ded22b8-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-f2e5445204ee3ab2f6ea01cbe131d6ce-eaeaf747f99171be-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2812425b-5318-476a-a92d-e9812236d3c3", - "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-correlation-request-id": "f24ec604-09c1-4243-a08c-4c6702310c64", + "x-ms-ratelimit-remaining-subscription-reads": "11982", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080658Z:2812425b-5318-476a-a92d-e9812236d3c3", - "x-request-time": "0.520" + "x-ms-routing-request-id": "JAPANEAST:20221118T094822Z:f24ec604-09c1-4243-a08c-4c6702310c64", + "x-request-time": "0.087" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -538,17 +538,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sav3u7rijui4cza", - "containerName": "azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3", + "accountName": "teststorageaccount", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-10-10T07:43:07.7818269\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-10-10T07:43:08.5293577\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -562,7 +562,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -570,19 +570,19 @@ "Cache-Control": "no-cache", "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:06:58 GMT", + "Date": "Fri, 18 Nov 2022 09:48:22 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-55e8f3c0f5c58abf11b078ed4f24bdd6-919e543ceb854809-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-474f5cf2d05437a2ace8bd4d004bf661-22f591038a8af330-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "42e3e51c-c992-4d45-9af7-71ca029609e7", - "x-ms-ratelimit-remaining-subscription-writes": "1194", + "x-ms-correlation-request-id": "c9aeb619-7d97-47d1-b51c-95c72e0ad2fa", + "x-ms-ratelimit-remaining-subscription-writes": "1192", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080659Z:42e3e51c-c992-4d45-9af7-71ca029609e7", - "x-request-time": "0.165" + "x-ms-routing-request-id": "JAPANEAST:20221118T094822Z:c9aeb619-7d97-47d1-b51c-95c72e0ad2fa", + "x-request-time": "0.093" }, "ResponseBody": { "secretsType": "AccountKey", @@ -590,14 +590,14 @@ } }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:06:59 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:48:26 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -607,9 +607,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 09 Nov 2022 08:06:58 GMT", - "ETag": "\u00220x8DAC13EFDFF2C0D\u0022", - "Last-Modified": "Tue, 08 Nov 2022 04:09:11 GMT", + "Date": "Fri, 18 Nov 2022 09:48:22 GMT", + "ETag": "\u00220x8DA9D48E17467D7\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:49:17 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -618,10 +618,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 08 Nov 2022 04:09:11 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:49:16 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "5d0c2440-3f92-4bf0-a277-a2158e0ee09d", + "x-ms-meta-name": "9c9cfba9-82bd-45db-ad06-07009d1d9672", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -630,20 +630,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:06:59 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:48:26 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 09 Nov 2022 08:06:58 GMT", + "Date": "Fri, 18 Nov 2022 09:48:23 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -656,15 +656,15 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "288", + "Content-Length": "291", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -674,31 +674,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "812", + "Content-Length": "816", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:06:59 GMT", + "Date": "Fri, 18 Nov 2022 09:48:23 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-ea209b483becdde52df085db202ed3b9-3c5d03052b52ac03-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-f060d36926c51f66d2e7815b46bbab5f-0af84382318827ce-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2cfbfa2c-a836-4a16-a51b-1455174338ea", - "x-ms-ratelimit-remaining-subscription-writes": "1188", + "x-ms-correlation-request-id": "667f1d15-a4c4-4b43-86ce-a1570ea4b329", + "x-ms-ratelimit-remaining-subscription-writes": "1187", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080700Z:2cfbfa2c-a836-4a16-a51b-1455174338ea", - "x-request-time": "0.097" + "x-ms-routing-request-id": "JAPANEAST:20221118T094823Z:667f1d15-a4c4-4b43-86ce-a1570ea4b329", + "x-request-time": "0.206" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -710,14 +710,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-11-08T04:09:13.0225939\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-09-23T09:49:20.984936\u002B00:00", + "createdBy": "Ying Chen", "createdByType": "User", - "lastModifiedAt": "2022-11-09T08:07:00.4090597\u002B00:00", - "lastModifiedBy": "Honglin Du", + "lastModifiedAt": "2022-11-18T09:48:23.7921761\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -731,7 +731,7 @@ "Connection": "keep-alive", "Content-Length": "1895", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -745,7 +745,7 @@ "isArchived": false, "componentSpec": { "command": "echo \u0022Start training ...\u0022 \u0026\u0026 python mnist.py --data_folder ${{inputs.data_folder}} --batch_size ${{inputs.batch_size}} --first_layer_neurons ${{inputs.first_layer_neurons}} --second_layer_neurons ${{inputs.second_layer_neurons}} --third_layer_neurons ${{inputs.third_layer_neurons}} --epochs ${{inputs.epochs}} --f1 ${{inputs.f1}} --f2 ${{inputs.f2}} --weight_decay ${{inputs.weight_decay}} --momentum ${{inputs.momentum}} --learning_rate ${{inputs.learning_rate}} --saved_model ${{outputs.trained_model_dir}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1", "name": "azureml_anonymous", "description": "This is the command component for sweep", @@ -809,26 +809,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3485", + "Content-Length": "3495", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:07:00 GMT", + "Date": "Fri, 18 Nov 2022 09:48:25 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-a3fe737c92c82c0f75225e71d145a483-799b0737d2b6468a-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-f7aae543fc9882ea6d82c5da69dc4aef-5bdae57a399469bd-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d442e214-f930-4bd3-bb56-3f1ef79e2cf9", - "x-ms-ratelimit-remaining-subscription-writes": "1187", + "x-ms-correlation-request-id": "0c884271-6832-427d-a171-2cf8314fd6b9", + "x-ms-ratelimit-remaining-subscription-writes": "1186", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080701Z:d442e214-f930-4bd3-bb56-3f1ef79e2cf9", - "x-request-time": "0.422" + "x-ms-routing-request-id": "JAPANEAST:20221118T094825Z:0c884271-6832-427d-a171-2cf8314fd6b9", + "x-request-time": "1.099" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/5af25209-e882-4123-89c4-6c596c33cdfa", - "name": "5af25209-e882-4123-89c4-6c596c33cdfa", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/747e9377-9711-4601-97cc-2b4f13ed39c3", + "name": "747e9377-9711-4601-97cc-2b4f13ed39c3", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -841,7 +841,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "5af25209-e882-4123-89c4-6c596c33cdfa", + "version": "747e9377-9711-4601-97cc-2b4f13ed39c3", "display_name": "CommandComponentForSweep", "is_deterministic": "True", "type": "command", @@ -906,8 +906,8 @@ "type": "mlflow_model" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1", - "environment": "azureml://registries/azureml/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", + "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" }, @@ -916,11 +916,11 @@ } }, "systemData": { - "createdAt": "2022-11-08T09:45:24.9421611\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-11-18T09:44:37.4149466\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-11-08T09:45:25.1129232\u002B00:00", - "lastModifiedBy": "Honglin Du", + "lastModifiedAt": "2022-11-18T09:44:37.9494974\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -932,28 +932,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1068", + "Content-Length": "1070", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:07:01 GMT", + "Date": "Fri, 18 Nov 2022 09:48:25 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-a1e4c4cdadf897716147445fa7534bc4-e2c716a1dab75c6c-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-9861da7b9302aabb61a0c8cd396d20ae-3c2f2c6d67c1551b-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cf21eb9e-9160-460d-b370-584758367935", - "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-correlation-request-id": "e6433e45-839f-4ff3-a856-bf51a263448c", + "x-ms-ratelimit-remaining-subscription-reads": "11981", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080702Z:cf21eb9e-9160-460d-b370-584758367935", - "x-request-time": "0.094" + "x-ms-routing-request-id": "JAPANEAST:20221118T094826Z:e6433e45-839f-4ff3-a856-bf51a263448c", + "x-request-time": "0.098" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -968,17 +968,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sav3u7rijui4cza", - "containerName": "azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3", + "accountName": "teststorageaccount", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-10-10T07:43:07.7818269\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-10-10T07:43:08.5293577\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -992,7 +992,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1000,19 +1000,19 @@ "Cache-Control": "no-cache", "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:07:02 GMT", + "Date": "Fri, 18 Nov 2022 09:48:26 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-9fb6729cd682a35128a5fb6a6b02d16c-ce4978404b86d885-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-bd186c46e213e70683a58a76ed3f2059-bc849ae894cacd11-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e10a02ae-ec10-4ccb-bc83-a2566355f692", - "x-ms-ratelimit-remaining-subscription-writes": "1193", + "x-ms-correlation-request-id": "764ecb54-9f9e-4238-a026-0ed23ecef5fe", + "x-ms-ratelimit-remaining-subscription-writes": "1191", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080702Z:e10a02ae-ec10-4ccb-bc83-a2566355f692", - "x-request-time": "0.101" + "x-ms-routing-request-id": "JAPANEAST:20221118T094826Z:764ecb54-9f9e-4238-a026-0ed23ecef5fe", + "x-request-time": "0.103" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1020,26 +1020,26 @@ } }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:07:02 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:48:30 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Accept-Ranges": "bytes", - "Content-Length": "499", - "Content-MD5": "kD7N5\u002BygjTfbYTFhyEo7RA==", + "Content-Length": "508", + "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Wed, 09 Nov 2022 08:07:02 GMT", - "ETag": "\u00220x8DAC154D3DF99CE\u0022", - "Last-Modified": "Tue, 08 Nov 2022 06:45:30 GMT", + "Date": "Fri, 18 Nov 2022 09:48:26 GMT", + "ETag": "\u00220x8DA9D48AFBCE5A6\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:47:53 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1048,32 +1048,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 08 Nov 2022 06:45:29 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:47:53 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "5fa55015-0323-4a0f-b7c2-1db6ccd3acbf", + "x-ms-meta-name": "da405283-c0d4-42bf-9cd0-2d052c9da84b", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "c0fd52f9-f2ed-44bf-bed3-c2f92c2fd4aa", + "x-ms-meta-version": "bcdecfd5-08fc-40e1-af7f-364ca3525a76", "x-ms-server-encrypted": "true", "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:07:03 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:48:30 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 09 Nov 2022 08:07:02 GMT", + "Date": "Fri, 18 Nov 2022 09:48:26 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1086,15 +1086,15 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_635383314162?api-version=2022-10-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_173801110962?api-version=2022-10-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "4027", + "Content-Length": "3454", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -1105,7 +1105,7 @@ "owner": "sdkteam" }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", - "displayName": "test_635383314162", + "displayName": "test_173801110962", "experimentName": "azure-ai-ml", "isArchived": false, "jobType": "Pipeline", @@ -1149,14 +1149,9 @@ "name": "hello_sweep_inline_trial", "type": "sweep", "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/gpu-cluster", - "inputs": { - "component_in_number": { - "job_input_type": "literal" - } - }, "_source": "YAML.JOB", "trial": { - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b3e0a8fe-f10f-419f-8010-16af86c8db2b" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ce6b9f37-b325-4d92-a9b4-577435ca629b" } }, "hello_sweep_inline_file_trial": { @@ -1228,39 +1223,6 @@ "name": "hello_sweep_inline_file_trial", "type": "sweep", "inputs": { - "batch_size": { - "job_input_type": "literal" - }, - "first_layer_neurons": { - "job_input_type": "literal" - }, - "second_layer_neurons": { - "job_input_type": "literal" - }, - "third_layer_neurons": { - "job_input_type": "literal" - }, - "epochs": { - "job_input_type": "literal" - }, - "momentum": { - "job_input_type": "literal" - }, - "weight_decay": { - "job_input_type": "literal" - }, - "learning_rate": { - "job_input_type": "literal" - }, - "f1": { - "job_input_type": "literal" - }, - "f2": { - "job_input_type": "literal" - }, - "random_seed": { - "job_input_type": "literal" - }, "data_folder": { "mode": "ReadOnlyMount", "uri": "azureml://datastores/workspaceblobstore/paths/LocalUpload/00000000000000000000000000000000/data", @@ -1269,7 +1231,7 @@ }, "_source": "YAML.JOB", "trial": { - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/5af25209-e882-4123-89c4-6c596c33cdfa" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/747e9377-9711-4601-97cc-2b4f13ed39c3" } }, "hello_sweep_inline_remote_trial": { @@ -1307,26 +1269,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "7888", + "Content-Length": "6896", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:07:10 GMT", + "Date": "Fri, 18 Nov 2022 09:48:32 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_635383314162?api-version=2022-10-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_173801110962?api-version=2022-10-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-b9d24d0da5dd38e4b90c677d744eb504-ca9ec00c5ace3664-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-f5a3a7e1177ed9dcb7d1950473867f78-5fa63b8ec5df0fde-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3a2c8c1e-4593-46ac-b7a4-6b2979bf5dad", - "x-ms-ratelimit-remaining-subscription-writes": "1186", + "x-ms-correlation-request-id": "6bc64883-fe6b-4b95-81b1-906f3a45baef", + "x-ms-ratelimit-remaining-subscription-writes": "1185", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080711Z:3a2c8c1e-4593-46ac-b7a4-6b2979bf5dad", - "x-request-time": "4.128" + "x-ms-routing-request-id": "JAPANEAST:20221118T094833Z:6bc64883-fe6b-4b95-81b1-906f3a45baef", + "x-request-time": "4.258" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_635383314162", - "name": "test_635383314162", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_173801110962", + "name": "test_173801110962", "type": "Microsoft.MachineLearningServices/workspaces/jobs", "properties": { "description": "The hello world pipeline job with inline components", @@ -1346,14 +1308,14 @@ "azureml.defaultDataStoreName": "workspaceblobstore", "azureml.pipelineComponent": "pipelinerun" }, - "displayName": "test_635383314162", + "displayName": "test_173801110962", "status": "Preparing", "experimentName": "azure-ai-ml", "services": { "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null, @@ -1362,7 +1324,7 @@ "Studio": { "jobServiceType": "Studio", "port": null, - "endpoint": "https://ml.azure.com/runs/test_635383314162?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "endpoint": "https://ml.azure.com/runs/test_173801110962?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, "properties": null, @@ -1407,14 +1369,9 @@ "name": "hello_sweep_inline_trial", "type": "sweep", "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/gpu-cluster", - "inputs": { - "component_in_number": { - "job_input_type": "literal" - } - }, "_source": "YAML.JOB", "trial": { - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b3e0a8fe-f10f-419f-8010-16af86c8db2b" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ce6b9f37-b325-4d92-a9b4-577435ca629b" } }, "hello_sweep_inline_file_trial": { @@ -1486,39 +1443,6 @@ "name": "hello_sweep_inline_file_trial", "type": "sweep", "inputs": { - "batch_size": { - "job_input_type": "literal" - }, - "first_layer_neurons": { - "job_input_type": "literal" - }, - "second_layer_neurons": { - "job_input_type": "literal" - }, - "third_layer_neurons": { - "job_input_type": "literal" - }, - "epochs": { - "job_input_type": "literal" - }, - "momentum": { - "job_input_type": "literal" - }, - "weight_decay": { - "job_input_type": "literal" - }, - "learning_rate": { - "job_input_type": "literal" - }, - "f1": { - "job_input_type": "literal" - }, - "f2": { - "job_input_type": "literal" - }, - "random_seed": { - "job_input_type": "literal" - }, "data_folder": { "mode": "ReadOnlyMount", "uri": "azureml://datastores/workspaceblobstore/paths/LocalUpload/00000000000000000000000000000000/data", @@ -1527,7 +1451,7 @@ }, "_source": "YAML.JOB", "trial": { - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/5af25209-e882-4123-89c4-6c596c33cdfa" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/747e9377-9711-4601-97cc-2b4f13ed39c3" } }, "hello_sweep_inline_remote_trial": { @@ -1572,14 +1496,14 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-11-09T08:07:11.0749573\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-11-18T09:48:32.4602906\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } } ], "Variables": { - "randstr": "test_635383314162" + "randstr": "test_173801110962" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_sweep_node_early_termination_policy[policy_yaml_dict2].json b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_sweep_node_early_termination_policy[policy_yaml_dict2].json index efce8d3b2b58..0e2c67950bf8 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_sweep_node_early_termination_policy[policy_yaml_dict2].json +++ b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_sweep_node_early_termination_policy[policy_yaml_dict2].json @@ -1,49 +1,49 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2324", + "Content-Length": "2335", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:07:14 GMT", + "Date": "Fri, 18 Nov 2022 09:48:38 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-605696b989783790b4f9af5a8ecb1aeb-d01ce25914dd6285-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-c9f0794f625513e48033c414c03c21c6-1132322e4ff473f8-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5379d8e3-2540-42ee-bad5-ac06a97cc5d4", - "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-correlation-request-id": "f8ba5a99-e32d-4227-af3b-9776783cc725", + "x-ms-ratelimit-remaining-subscription-reads": "11980", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080715Z:5379d8e3-2540-42ee-bad5-ac06a97cc5d4", - "x-request-time": "0.038" + "x-ms-routing-request-id": "JAPANEAST:20221118T094838Z:f8ba5a99-e32d-4227-af3b-9776783cc725", + "x-request-time": "0.232" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2", + "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-10-10T07:44:03.2104968\u002B00:00", - "modifiedOn": "2022-11-08T03:58:27.2396848\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2", + "computeLocation": "centraluseuap", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -52,27 +52,27 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 0, - "targetNodeCount": 0, + "currentNodeCount": 2, + "targetNodeCount": 4, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 0, + "runningNodeCount": 2, "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-11-09T08:05:13.531\u002B00:00", + "allocationStateTransitionTime": "2022-11-18T09:27:41.01\u002B00:00", "errors": [ { "error": { "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_22ef6b2454a4d7020ae0509a0ed488c4efc2b26c6eeb699555614f462b85653b_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_2f648ede638979a526f7fa7b345fbc5026cdf791a5b1c3ba210d6f9168c8e632_d: There is not enough disk space on the node", + "message": "ComputeNode.Id=tvmps_cb9237aaedb6e8d84ff1060da66d025a09b00f35f4dba0cf409a69c4c564de2f_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_d03498209eaf215218a4852f31422f71f9f4e4238f6b9981fea0a9487f19210d_d: There is not enough disk space on the node", "details": [ { "code": "Message", @@ -96,55 +96,55 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/gpu-cluster?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/gpu-cluster?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1382", + "Content-Length": "1649", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:07:15 GMT", + "Date": "Fri, 18 Nov 2022 09:48:38 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-5cb3ab46083b97043cfb3e4e9d6de520-c5d0e33542dd55a8-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-0226723e74b9b4cbd8f5348a199fbd90-48241cef6a90a3af-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e07c38f0-b1c6-4a0f-b7e1-bc9e847f7ea9", - "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-correlation-request-id": "a65fdb46-8f45-417b-9d70-d8c81d8c49db", + "x-ms-ratelimit-remaining-subscription-reads": "11979", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080716Z:e07c38f0-b1c6-4a0f-b7e1-bc9e847f7ea9", - "x-request-time": "0.023" + "x-ms-routing-request-id": "JAPANEAST:20221118T094839Z:a65fdb46-8f45-417b-9d70-d8c81d8c49db", + "x-request-time": "0.024" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/gpu-cluster", "name": "gpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2", + "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-10-10T07:52:02.2174383\u002B00:00", - "modifiedOn": "2022-10-10T07:52:02.7726776\u002B00:00", + "createdOn": "2022-09-22T09:04:32.8245567\u002B00:00", + "modifiedOn": "2022-09-22T09:04:38.3624603\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2", + "computeLocation": "centraluseuap", "provisioningState": "Failed", "provisioningErrors": [ { "error": { - "code": "VmSizeNotSupported", - "message": "STANDARD_ND6S is not supported in region eastus2. Please choose a different VM size." + "code": "ClusterMinNodesExceedCoreQuota", + "message": "The specified subscription has a Standard ND family vCPU quota of 0 and cannot accomodate for at least 1 requested managed compute nodes which maps to 6 vCPUs. Talk to your Subscription Admin or refer to https://docs.microsoft.com/azure/machine-learning/how-to-manage-quotas#request-quota-increases to increase the family quota" } } ], @@ -177,28 +177,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1068", + "Content-Length": "1070", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:07:17 GMT", + "Date": "Fri, 18 Nov 2022 09:48:40 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-c0c1b4b9eeca89f08341015190d6d7ff-9700da4cb2fea82a-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-b1ef05347026286c50c48f08865f3834-e01bf3daad9385bd-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4526962e-ab91-4e20-879b-cdc312eb1e33", - "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-correlation-request-id": "162da06c-c190-40a1-aa6f-fb7e96d7d8c8", + "x-ms-ratelimit-remaining-subscription-reads": "11978", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080718Z:4526962e-ab91-4e20-879b-cdc312eb1e33", - "x-request-time": "0.110" + "x-ms-routing-request-id": "JAPANEAST:20221118T094841Z:162da06c-c190-40a1-aa6f-fb7e96d7d8c8", + "x-request-time": "0.091" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -213,17 +213,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sav3u7rijui4cza", - "containerName": "azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3", + "accountName": "teststorageaccount", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-10-10T07:43:07.7818269\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-10-10T07:43:08.5293577\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -237,7 +237,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -245,19 +245,19 @@ "Cache-Control": "no-cache", "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:07:18 GMT", + "Date": "Fri, 18 Nov 2022 09:48:41 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-70b4e6219925a460357ac02a8a946b2f-fad95562e85c98f6-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-d1c8ceb7cf20ab94b968681b9431f339-3d4cf0e12879c7c0-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b00eb00f-bc38-4023-b5c4-7711991cef02", - "x-ms-ratelimit-remaining-subscription-writes": "1192", + "x-ms-correlation-request-id": "868bfcf7-4ee2-415d-a6ca-0b8a395807e4", + "x-ms-ratelimit-remaining-subscription-writes": "1190", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080718Z:b00eb00f-bc38-4023-b5c4-7711991cef02", - "x-request-time": "0.117" + "x-ms-routing-request-id": "JAPANEAST:20221118T094841Z:868bfcf7-4ee2-415d-a6ca-0b8a395807e4", + "x-request-time": "0.091" }, "ResponseBody": { "secretsType": "AccountKey", @@ -265,26 +265,26 @@ } }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/python/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/python/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:07:18 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:48:45 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Accept-Ranges": "bytes", - "Content-Length": "499", - "Content-MD5": "kD7N5\u002BygjTfbYTFhyEo7RA==", + "Content-Length": "508", + "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Wed, 09 Nov 2022 08:07:18 GMT", - "ETag": "\u00220x8DAC13F0774B6FC\u0022", - "Last-Modified": "Tue, 08 Nov 2022 04:09:27 GMT", + "Date": "Fri, 18 Nov 2022 09:48:41 GMT", + "ETag": "\u00220x8DA9D482EE600C0\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:44:17 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -293,10 +293,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 08 Nov 2022 04:09:26 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:44:17 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "5d1c99d2-15f5-472f-9477-5696b13a0426", + "x-ms-meta-name": "92e51c4c-40c7-4f95-ba55-e3a63d7d7c14", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -305,20 +305,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/az-ml-artifacts/00000000000000000000000000000000/python/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/python/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:07:19 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:48:45 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 09 Nov 2022 08:07:18 GMT", + "Date": "Fri, 18 Nov 2022 09:48:41 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -331,15 +331,15 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d1c99d2-15f5-472f-9477-5696b13a0426/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/92e51c4c-40c7-4f95-ba55-e3a63d7d7c14/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "295", + "Content-Length": "298", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -349,31 +349,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/python" + "codeUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/python" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "818", + "Content-Length": "824", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:07:19 GMT", + "Date": "Fri, 18 Nov 2022 09:48:42 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-90c237e0e59c494b3f4476289a4fb4b4-17fa26214eca5b03-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-330c84dabc1d7463aae63f69434a4f36-d0b5b0c7882a5698-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "63784bb9-b371-47c4-b957-d055a14d3d3b", - "x-ms-ratelimit-remaining-subscription-writes": "1185", + "x-ms-correlation-request-id": "af6de874-5f80-4264-ae99-6f9cef6c9935", + "x-ms-ratelimit-remaining-subscription-writes": "1184", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080720Z:63784bb9-b371-47c4-b957-d055a14d3d3b", - "x-request-time": "0.062" + "x-ms-routing-request-id": "JAPANEAST:20221118T094842Z:af6de874-5f80-4264-ae99-6f9cef6c9935", + "x-request-time": "0.231" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d1c99d2-15f5-472f-9477-5696b13a0426/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/92e51c4c-40c7-4f95-ba55-e3a63d7d7c14/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -385,14 +385,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/python" + "codeUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/python" }, "systemData": { - "createdAt": "2022-11-08T04:09:28.4882209\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-09-23T09:44:19.3941658\u002B00:00", + "createdBy": "Ying Chen", "createdByType": "User", - "lastModifiedAt": "2022-11-09T08:07:20.203932\u002B00:00", - "lastModifiedBy": "Honglin Du", + "lastModifiedAt": "2022-11-18T09:48:42.7231155\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -406,7 +406,7 @@ "Connection": "keep-alive", "Content-Length": "686", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -416,7 +416,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo ${{inputs.component_in_number}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d1c99d2-15f5-472f-9477-5696b13a0426/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/92e51c4c-40c7-4f95-ba55-e3a63d7d7c14/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1", "name": "azureml_anonymous", "version": "000000000000000000000", @@ -436,26 +436,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1675", + "Content-Length": "1683", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:07:20 GMT", + "Date": "Fri, 18 Nov 2022 09:48:44 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-460856d3449c627bba75e4ebb1625dae-781753bcab0af357-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-4f51f5940e3f8273b8a38e25a76896c1-4399dcea82fb5e5a-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bd1cfbc8-fea8-41ca-8ec1-02d258dbcdf8", - "x-ms-ratelimit-remaining-subscription-writes": "1184", + "x-ms-correlation-request-id": "515a487e-f4ce-4a0a-b23f-719792b23511", + "x-ms-ratelimit-remaining-subscription-writes": "1183", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080721Z:bd1cfbc8-fea8-41ca-8ec1-02d258dbcdf8", - "x-request-time": "0.332" + "x-ms-routing-request-id": "JAPANEAST:20221118T094844Z:515a487e-f4ce-4a0a-b23f-719792b23511", + "x-request-time": "0.975" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b3e0a8fe-f10f-419f-8010-16af86c8db2b", - "name": "b3e0a8fe-f10f-419f-8010-16af86c8db2b", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ce6b9f37-b325-4d92-a9b4-577435ca629b", + "name": "ce6b9f37-b325-4d92-a9b4-577435ca629b", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -465,7 +465,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "b3e0a8fe-f10f-419f-8010-16af86c8db2b", + "version": "ce6b9f37-b325-4d92-a9b4-577435ca629b", "is_deterministic": "True", "type": "command", "inputs": { @@ -476,8 +476,8 @@ "description": "Am integer" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d1c99d2-15f5-472f-9477-5696b13a0426/versions/1", - "environment": "azureml://registries/azureml/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/92e51c4c-40c7-4f95-ba55-e3a63d7d7c14/versions/1", + "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" }, @@ -486,11 +486,11 @@ } }, "systemData": { - "createdAt": "2022-11-08T09:45:20.3794548\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-11-18T09:44:32.81992\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-11-08T09:45:20.5400255\u002B00:00", - "lastModifiedBy": "Honglin Du", + "lastModifiedAt": "2022-11-18T09:44:33.3217232\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -502,28 +502,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1068", + "Content-Length": "1070", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:07:21 GMT", + "Date": "Fri, 18 Nov 2022 09:48:44 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-c110f11eb94f18500ba7fcb45a1a0cbd-0a87825bf2adefbf-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-e10448453327a11246ab50feb46052ca-add2e7e9cbed31e1-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fb92803b-1d50-4b1c-8dea-62221f860349", - "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-correlation-request-id": "5bbf7b95-aa2f-41bd-b6dc-9ab6c510a2ff", + "x-ms-ratelimit-remaining-subscription-reads": "11977", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080721Z:fb92803b-1d50-4b1c-8dea-62221f860349", - "x-request-time": "0.088" + "x-ms-routing-request-id": "JAPANEAST:20221118T094845Z:5bbf7b95-aa2f-41bd-b6dc-9ab6c510a2ff", + "x-request-time": "0.108" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -538,17 +538,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sav3u7rijui4cza", - "containerName": "azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3", + "accountName": "teststorageaccount", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-10-10T07:43:07.7818269\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-10-10T07:43:08.5293577\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -562,7 +562,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -570,19 +570,19 @@ "Cache-Control": "no-cache", "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:07:21 GMT", + "Date": "Fri, 18 Nov 2022 09:48:45 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-7a096c979ebe6f8125618cf7bada5ce4-2cfb318f24a3c51b-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-c98239ffa096a88b63318a86c7f461bf-01e60ec6043862e7-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "86be2ee0-3289-4739-b030-681ee76831b2", - "x-ms-ratelimit-remaining-subscription-writes": "1191", + "x-ms-correlation-request-id": "d9245a52-761d-4b6d-9fab-fa52a6c7f952", + "x-ms-ratelimit-remaining-subscription-writes": "1189", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080722Z:86be2ee0-3289-4739-b030-681ee76831b2", - "x-request-time": "0.106" + "x-ms-routing-request-id": "JAPANEAST:20221118T094846Z:d9245a52-761d-4b6d-9fab-fa52a6c7f952", + "x-request-time": "0.105" }, "ResponseBody": { "secretsType": "AccountKey", @@ -590,14 +590,14 @@ } }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:07:22 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:48:49 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -607,9 +607,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 09 Nov 2022 08:07:21 GMT", - "ETag": "\u00220x8DAC13EFDFF2C0D\u0022", - "Last-Modified": "Tue, 08 Nov 2022 04:09:11 GMT", + "Date": "Fri, 18 Nov 2022 09:48:46 GMT", + "ETag": "\u00220x8DA9D48E17467D7\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:49:17 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -618,10 +618,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 08 Nov 2022 04:09:11 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:49:16 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "5d0c2440-3f92-4bf0-a277-a2158e0ee09d", + "x-ms-meta-name": "9c9cfba9-82bd-45db-ad06-07009d1d9672", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -630,20 +630,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:07:22 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:48:49 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 09 Nov 2022 08:07:21 GMT", + "Date": "Fri, 18 Nov 2022 09:48:46 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -656,15 +656,15 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "288", + "Content-Length": "291", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -674,31 +674,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "812", + "Content-Length": "816", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:07:22 GMT", + "Date": "Fri, 18 Nov 2022 09:48:46 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-d57eae8cba6b9f7536d69173ab42bba8-eed774b30e21cea8-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-e64e892c03ee4b71ea6193d2a8e1dd80-1c58eafa6b5e64d9-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "19806810-bd7e-4ada-94ea-da3d8ce7c900", - "x-ms-ratelimit-remaining-subscription-writes": "1183", + "x-ms-correlation-request-id": "0fea4972-c414-4daa-8c97-a4a371056a5a", + "x-ms-ratelimit-remaining-subscription-writes": "1182", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080723Z:19806810-bd7e-4ada-94ea-da3d8ce7c900", - "x-request-time": "0.073" + "x-ms-routing-request-id": "JAPANEAST:20221118T094847Z:0fea4972-c414-4daa-8c97-a4a371056a5a", + "x-request-time": "0.218" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -710,14 +710,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-11-08T04:09:13.0225939\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-09-23T09:49:20.984936\u002B00:00", + "createdBy": "Ying Chen", "createdByType": "User", - "lastModifiedAt": "2022-11-09T08:07:23.6771598\u002B00:00", - "lastModifiedBy": "Honglin Du", + "lastModifiedAt": "2022-11-18T09:48:47.1048338\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -731,7 +731,7 @@ "Connection": "keep-alive", "Content-Length": "1895", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -745,7 +745,7 @@ "isArchived": false, "componentSpec": { "command": "echo \u0022Start training ...\u0022 \u0026\u0026 python mnist.py --data_folder ${{inputs.data_folder}} --batch_size ${{inputs.batch_size}} --first_layer_neurons ${{inputs.first_layer_neurons}} --second_layer_neurons ${{inputs.second_layer_neurons}} --third_layer_neurons ${{inputs.third_layer_neurons}} --epochs ${{inputs.epochs}} --f1 ${{inputs.f1}} --f2 ${{inputs.f2}} --weight_decay ${{inputs.weight_decay}} --momentum ${{inputs.momentum}} --learning_rate ${{inputs.learning_rate}} --saved_model ${{outputs.trained_model_dir}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1", "name": "azureml_anonymous", "description": "This is the command component for sweep", @@ -809,26 +809,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3485", + "Content-Length": "3495", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:07:24 GMT", + "Date": "Fri, 18 Nov 2022 09:48:48 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-3a8b861d94b63177c08a3e8fe7fe3acd-77d0bc68505b7afe-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-b9c3744eb55d12db9c51b430d1e61407-b93d90a815ef7504-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9bb599c5-da79-4e0e-ad87-d6581883e113", - "x-ms-ratelimit-remaining-subscription-writes": "1182", + "x-ms-correlation-request-id": "b9325a55-de20-4137-b107-6520e549f007", + "x-ms-ratelimit-remaining-subscription-writes": "1181", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080724Z:9bb599c5-da79-4e0e-ad87-d6581883e113", - "x-request-time": "0.422" + "x-ms-routing-request-id": "JAPANEAST:20221118T094848Z:b9325a55-de20-4137-b107-6520e549f007", + "x-request-time": "1.068" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/5af25209-e882-4123-89c4-6c596c33cdfa", - "name": "5af25209-e882-4123-89c4-6c596c33cdfa", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/747e9377-9711-4601-97cc-2b4f13ed39c3", + "name": "747e9377-9711-4601-97cc-2b4f13ed39c3", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -841,7 +841,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "5af25209-e882-4123-89c4-6c596c33cdfa", + "version": "747e9377-9711-4601-97cc-2b4f13ed39c3", "display_name": "CommandComponentForSweep", "is_deterministic": "True", "type": "command", @@ -906,8 +906,8 @@ "type": "mlflow_model" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1", - "environment": "azureml://registries/azureml/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", + "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" }, @@ -916,11 +916,11 @@ } }, "systemData": { - "createdAt": "2022-11-08T09:45:24.9421611\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-11-18T09:44:37.4149466\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-11-08T09:45:25.1129232\u002B00:00", - "lastModifiedBy": "Honglin Du", + "lastModifiedAt": "2022-11-18T09:44:37.9494974\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -932,28 +932,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1068", + "Content-Length": "1070", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:07:24 GMT", + "Date": "Fri, 18 Nov 2022 09:48:48 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-e2a675a6fb263c2cdc1d0a98fc24898a-238ee7f3ac3eed4a-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-ea153e0d9329ca89d1509463c4205162-0a0c1a15c1fb3936-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3d3c7f41-9918-4597-9bb6-970c7b83e3ae", - "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-correlation-request-id": "e62b450d-80c3-4aa9-8ad2-261954717151", + "x-ms-ratelimit-remaining-subscription-reads": "11976", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080725Z:3d3c7f41-9918-4597-9bb6-970c7b83e3ae", - "x-request-time": "0.095" + "x-ms-routing-request-id": "JAPANEAST:20221118T094849Z:e62b450d-80c3-4aa9-8ad2-261954717151", + "x-request-time": "0.131" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -968,17 +968,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sav3u7rijui4cza", - "containerName": "azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3", + "accountName": "teststorageaccount", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-10-10T07:43:07.7818269\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-10-10T07:43:08.5293577\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -992,7 +992,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1000,19 +1000,19 @@ "Cache-Control": "no-cache", "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:07:25 GMT", + "Date": "Fri, 18 Nov 2022 09:48:49 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-33f3b451873a4db5478d90168d77f69a-6a90dfa9ba898d5e-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-637a01e02913ea1a8961ab0af500a411-239f8c885d035484-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "919e19e3-ba18-49ad-9b1c-9452bd18fd4b", - "x-ms-ratelimit-remaining-subscription-writes": "1190", + "x-ms-correlation-request-id": "8480b382-f502-4dc1-87fa-aec347559aa9", + "x-ms-ratelimit-remaining-subscription-writes": "1188", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080726Z:919e19e3-ba18-49ad-9b1c-9452bd18fd4b", - "x-request-time": "0.085" + "x-ms-routing-request-id": "JAPANEAST:20221118T094849Z:8480b382-f502-4dc1-87fa-aec347559aa9", + "x-request-time": "0.095" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1020,26 +1020,26 @@ } }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:07:26 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:48:53 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Accept-Ranges": "bytes", - "Content-Length": "499", - "Content-MD5": "kD7N5\u002BygjTfbYTFhyEo7RA==", + "Content-Length": "508", + "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Wed, 09 Nov 2022 08:07:25 GMT", - "ETag": "\u00220x8DAC154D3DF99CE\u0022", - "Last-Modified": "Tue, 08 Nov 2022 06:45:30 GMT", + "Date": "Fri, 18 Nov 2022 09:48:49 GMT", + "ETag": "\u00220x8DA9D48AFBCE5A6\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:47:53 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1048,32 +1048,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 08 Nov 2022 06:45:29 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:47:53 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "5fa55015-0323-4a0f-b7c2-1db6ccd3acbf", + "x-ms-meta-name": "da405283-c0d4-42bf-9cd0-2d052c9da84b", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "c0fd52f9-f2ed-44bf-bed3-c2f92c2fd4aa", + "x-ms-meta-version": "bcdecfd5-08fc-40e1-af7f-364ca3525a76", "x-ms-server-encrypted": "true", "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:07:26 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:48:53 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 09 Nov 2022 08:07:26 GMT", + "Date": "Fri, 18 Nov 2022 09:48:50 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1086,15 +1086,15 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_728212645197?api-version=2022-10-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_934899264785?api-version=2022-10-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "4027", + "Content-Length": "3454", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -1105,7 +1105,7 @@ "owner": "sdkteam" }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", - "displayName": "test_728212645197", + "displayName": "test_934899264785", "experimentName": "azure-ai-ml", "isArchived": false, "jobType": "Pipeline", @@ -1149,14 +1149,9 @@ "name": "hello_sweep_inline_trial", "type": "sweep", "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/gpu-cluster", - "inputs": { - "component_in_number": { - "job_input_type": "literal" - } - }, "_source": "YAML.JOB", "trial": { - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b3e0a8fe-f10f-419f-8010-16af86c8db2b" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ce6b9f37-b325-4d92-a9b4-577435ca629b" } }, "hello_sweep_inline_file_trial": { @@ -1228,39 +1223,6 @@ "name": "hello_sweep_inline_file_trial", "type": "sweep", "inputs": { - "batch_size": { - "job_input_type": "literal" - }, - "first_layer_neurons": { - "job_input_type": "literal" - }, - "second_layer_neurons": { - "job_input_type": "literal" - }, - "third_layer_neurons": { - "job_input_type": "literal" - }, - "epochs": { - "job_input_type": "literal" - }, - "momentum": { - "job_input_type": "literal" - }, - "weight_decay": { - "job_input_type": "literal" - }, - "learning_rate": { - "job_input_type": "literal" - }, - "f1": { - "job_input_type": "literal" - }, - "f2": { - "job_input_type": "literal" - }, - "random_seed": { - "job_input_type": "literal" - }, "data_folder": { "mode": "ReadOnlyMount", "uri": "azureml://datastores/workspaceblobstore/paths/LocalUpload/00000000000000000000000000000000/data", @@ -1269,7 +1231,7 @@ }, "_source": "YAML.JOB", "trial": { - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/5af25209-e882-4123-89c4-6c596c33cdfa" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/747e9377-9711-4601-97cc-2b4f13ed39c3" } }, "hello_sweep_inline_remote_trial": { @@ -1307,26 +1269,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "7888", + "Content-Length": "6896", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:07:33 GMT", + "Date": "Fri, 18 Nov 2022 09:48:55 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_728212645197?api-version=2022-10-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_934899264785?api-version=2022-10-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-6bbe9333c97dc5f729082939221dbd13-e7978c89145785d9-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-ddca61acb84258f51bc3603f495f37c1-7c38e60b4e4a64c1-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f823e52c-af59-4168-ba2b-1954b36f47c8", - "x-ms-ratelimit-remaining-subscription-writes": "1181", + "x-ms-correlation-request-id": "eee491ee-08e9-4fa8-ae84-5d5583451e45", + "x-ms-ratelimit-remaining-subscription-writes": "1180", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080734Z:f823e52c-af59-4168-ba2b-1954b36f47c8", - "x-request-time": "4.280" + "x-ms-routing-request-id": "JAPANEAST:20221118T094856Z:eee491ee-08e9-4fa8-ae84-5d5583451e45", + "x-request-time": "4.063" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_728212645197", - "name": "test_728212645197", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_934899264785", + "name": "test_934899264785", "type": "Microsoft.MachineLearningServices/workspaces/jobs", "properties": { "description": "The hello world pipeline job with inline components", @@ -1346,14 +1308,14 @@ "azureml.defaultDataStoreName": "workspaceblobstore", "azureml.pipelineComponent": "pipelinerun" }, - "displayName": "test_728212645197", + "displayName": "test_934899264785", "status": "Preparing", "experimentName": "azure-ai-ml", "services": { "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null, @@ -1362,7 +1324,7 @@ "Studio": { "jobServiceType": "Studio", "port": null, - "endpoint": "https://ml.azure.com/runs/test_728212645197?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "endpoint": "https://ml.azure.com/runs/test_934899264785?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, "properties": null, @@ -1407,14 +1369,9 @@ "name": "hello_sweep_inline_trial", "type": "sweep", "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/gpu-cluster", - "inputs": { - "component_in_number": { - "job_input_type": "literal" - } - }, "_source": "YAML.JOB", "trial": { - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b3e0a8fe-f10f-419f-8010-16af86c8db2b" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ce6b9f37-b325-4d92-a9b4-577435ca629b" } }, "hello_sweep_inline_file_trial": { @@ -1486,39 +1443,6 @@ "name": "hello_sweep_inline_file_trial", "type": "sweep", "inputs": { - "batch_size": { - "job_input_type": "literal" - }, - "first_layer_neurons": { - "job_input_type": "literal" - }, - "second_layer_neurons": { - "job_input_type": "literal" - }, - "third_layer_neurons": { - "job_input_type": "literal" - }, - "epochs": { - "job_input_type": "literal" - }, - "momentum": { - "job_input_type": "literal" - }, - "weight_decay": { - "job_input_type": "literal" - }, - "learning_rate": { - "job_input_type": "literal" - }, - "f1": { - "job_input_type": "literal" - }, - "f2": { - "job_input_type": "literal" - }, - "random_seed": { - "job_input_type": "literal" - }, "data_folder": { "mode": "ReadOnlyMount", "uri": "azureml://datastores/workspaceblobstore/paths/LocalUpload/00000000000000000000000000000000/data", @@ -1527,7 +1451,7 @@ }, "_source": "YAML.JOB", "trial": { - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/5af25209-e882-4123-89c4-6c596c33cdfa" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/747e9377-9711-4601-97cc-2b4f13ed39c3" } }, "hello_sweep_inline_remote_trial": { @@ -1572,14 +1496,14 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-11-09T08:07:33.9313169\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-11-18T09:48:55.5829767\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } } ], "Variables": { - "randstr": "test_728212645197" + "randstr": "test_934899264785" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_sweep_node_early_termination_policy[policy_yaml_dict3].json b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_sweep_node_early_termination_policy[policy_yaml_dict3].json index ee961c4ca98d..1323ec4381d0 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_sweep_node_early_termination_policy[policy_yaml_dict3].json +++ b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_sweep_node_early_termination_policy[policy_yaml_dict3].json @@ -1,49 +1,49 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2324", + "Content-Length": "2335", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:07:37 GMT", + "Date": "Fri, 18 Nov 2022 09:49:00 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-c56d03673f592f091139e08724d6b00d-964bf9b8b6a05c04-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-d87a741e570f3d6fbcf0c9bb8667b7dc-517b8fc30ef1eb70-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1dafa596-5779-4c96-be76-4fd709a0a902", - "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-correlation-request-id": "e2704b66-1577-49bf-b423-60c672971714", + "x-ms-ratelimit-remaining-subscription-reads": "11975", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080738Z:1dafa596-5779-4c96-be76-4fd709a0a902", - "x-request-time": "0.055" + "x-ms-routing-request-id": "JAPANEAST:20221118T094901Z:e2704b66-1577-49bf-b423-60c672971714", + "x-request-time": "0.223" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2", + "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-10-10T07:44:03.2104968\u002B00:00", - "modifiedOn": "2022-11-08T03:58:27.2396848\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2", + "computeLocation": "centraluseuap", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -52,27 +52,27 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, "currentNodeCount": 2, - "targetNodeCount": 0, + "targetNodeCount": 4, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 0, + "runningNodeCount": 2, "idleNodeCount": 0, "unusableNodeCount": 0, - "leavingNodeCount": 2, + "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-11-09T08:05:13.531\u002B00:00", + "allocationStateTransitionTime": "2022-11-18T09:27:41.01\u002B00:00", "errors": [ { "error": { "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_22ef6b2454a4d7020ae0509a0ed488c4efc2b26c6eeb699555614f462b85653b_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_2f648ede638979a526f7fa7b345fbc5026cdf791a5b1c3ba210d6f9168c8e632_d: There is not enough disk space on the node", + "message": "ComputeNode.Id=tvmps_cb9237aaedb6e8d84ff1060da66d025a09b00f35f4dba0cf409a69c4c564de2f_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_d03498209eaf215218a4852f31422f71f9f4e4238f6b9981fea0a9487f19210d_d: There is not enough disk space on the node", "details": [ { "code": "Message", @@ -96,55 +96,55 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/gpu-cluster?api-version=2022-01-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/gpu-cluster?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1382", + "Content-Length": "1649", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:07:38 GMT", + "Date": "Fri, 18 Nov 2022 09:49:01 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-3f3e1c5c5f0058f14dc275240795c9c1-08ac1b1e80b57916-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-986ad28d2dd442a48ef03c559f8a4c51-1abe71d822c1f95a-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "745b795a-30dc-4dd6-bfc4-8a0e25090854", - "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-correlation-request-id": "8ce863d5-99f0-4c16-9262-8e55629144e8", + "x-ms-ratelimit-remaining-subscription-reads": "11974", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080739Z:745b795a-30dc-4dd6-bfc4-8a0e25090854", - "x-request-time": "0.019" + "x-ms-routing-request-id": "JAPANEAST:20221118T094901Z:8ce863d5-99f0-4c16-9262-8e55629144e8", + "x-request-time": "0.025" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/gpu-cluster", "name": "gpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2", + "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-10-10T07:52:02.2174383\u002B00:00", - "modifiedOn": "2022-10-10T07:52:02.7726776\u002B00:00", + "createdOn": "2022-09-22T09:04:32.8245567\u002B00:00", + "modifiedOn": "2022-09-22T09:04:38.3624603\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2", + "computeLocation": "centraluseuap", "provisioningState": "Failed", "provisioningErrors": [ { "error": { - "code": "VmSizeNotSupported", - "message": "STANDARD_ND6S is not supported in region eastus2. Please choose a different VM size." + "code": "ClusterMinNodesExceedCoreQuota", + "message": "The specified subscription has a Standard ND family vCPU quota of 0 and cannot accomodate for at least 1 requested managed compute nodes which maps to 6 vCPUs. Talk to your Subscription Admin or refer to https://docs.microsoft.com/azure/machine-learning/how-to-manage-quotas#request-quota-increases to increase the family quota" } } ], @@ -177,28 +177,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1068", + "Content-Length": "1070", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:07:39 GMT", + "Date": "Fri, 18 Nov 2022 09:49:03 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-00b0f19f3e95b1fabe3f202dfcfed206-4875d5d10dc6a147-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-31f990428eac56af4d8db8979fe5f299-4fbb9fe39cc3052f-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "36534f37-a998-4f37-a86a-8bdcd9af8d3e", - "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-correlation-request-id": "ac2ee95b-f3d7-471c-bf78-89db9c0f116c", + "x-ms-ratelimit-remaining-subscription-reads": "11973", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080740Z:36534f37-a998-4f37-a86a-8bdcd9af8d3e", - "x-request-time": "0.084" + "x-ms-routing-request-id": "JAPANEAST:20221118T094904Z:ac2ee95b-f3d7-471c-bf78-89db9c0f116c", + "x-request-time": "0.091" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -213,17 +213,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sav3u7rijui4cza", - "containerName": "azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3", + "accountName": "teststorageaccount", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-10-10T07:43:07.7818269\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-10-10T07:43:08.5293577\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -237,7 +237,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -245,18 +245,18 @@ "Cache-Control": "no-cache", "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:07:40 GMT", + "Date": "Fri, 18 Nov 2022 09:49:04 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-76483c7f60bcdf66e927331a3e2f13c5-43765f91d982b908-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-6f9b09216bf93ce10f4c4bc65c4b9c26-7ba0634b9d3ef41e-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7f26f4fd-2538-4ec2-99c4-b18991ed15bf", - "x-ms-ratelimit-remaining-subscription-writes": "1189", + "x-ms-correlation-request-id": "0745b39a-af36-4825-9dc7-270f966f62aa", + "x-ms-ratelimit-remaining-subscription-writes": "1187", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080741Z:7f26f4fd-2538-4ec2-99c4-b18991ed15bf", + "x-ms-routing-request-id": "JAPANEAST:20221118T094904Z:0745b39a-af36-4825-9dc7-270f966f62aa", "x-request-time": "0.099" }, "ResponseBody": { @@ -265,26 +265,26 @@ } }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/python/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/python/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:07:41 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:49:08 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Accept-Ranges": "bytes", - "Content-Length": "499", - "Content-MD5": "kD7N5\u002BygjTfbYTFhyEo7RA==", + "Content-Length": "508", + "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Wed, 09 Nov 2022 08:07:41 GMT", - "ETag": "\u00220x8DAC13F0774B6FC\u0022", - "Last-Modified": "Tue, 08 Nov 2022 04:09:27 GMT", + "Date": "Fri, 18 Nov 2022 09:49:04 GMT", + "ETag": "\u00220x8DA9D482EE600C0\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:44:17 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -293,10 +293,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 08 Nov 2022 04:09:26 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:44:17 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "5d1c99d2-15f5-472f-9477-5696b13a0426", + "x-ms-meta-name": "92e51c4c-40c7-4f95-ba55-e3a63d7d7c14", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -305,20 +305,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/az-ml-artifacts/00000000000000000000000000000000/python/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/python/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:07:41 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:49:08 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 09 Nov 2022 08:07:42 GMT", + "Date": "Fri, 18 Nov 2022 09:49:05 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -331,15 +331,15 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d1c99d2-15f5-472f-9477-5696b13a0426/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/92e51c4c-40c7-4f95-ba55-e3a63d7d7c14/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "295", + "Content-Length": "298", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -349,31 +349,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/python" + "codeUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/python" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "818", + "Content-Length": "824", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:07:42 GMT", + "Date": "Fri, 18 Nov 2022 09:49:05 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-ece50569a1dd23020f1bb66edd1177bc-b2f726d020805e37-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-1804c4ac0c731acb34f69b392fed9dec-8b0f77365b9c8573-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "84a2025c-83f9-43f8-92a5-a710246ae31b", - "x-ms-ratelimit-remaining-subscription-writes": "1180", + "x-ms-correlation-request-id": "8b8c58e3-0d57-4a78-bd44-e32ce6e9ca18", + "x-ms-ratelimit-remaining-subscription-writes": "1179", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080743Z:84a2025c-83f9-43f8-92a5-a710246ae31b", - "x-request-time": "0.076" + "x-ms-routing-request-id": "JAPANEAST:20221118T094906Z:8b8c58e3-0d57-4a78-bd44-e32ce6e9ca18", + "x-request-time": "0.231" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d1c99d2-15f5-472f-9477-5696b13a0426/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/92e51c4c-40c7-4f95-ba55-e3a63d7d7c14/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -385,14 +385,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/python" + "codeUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/python" }, "systemData": { - "createdAt": "2022-11-08T04:09:28.4882209\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-09-23T09:44:19.3941658\u002B00:00", + "createdBy": "Ying Chen", "createdByType": "User", - "lastModifiedAt": "2022-11-09T08:07:42.880727\u002B00:00", - "lastModifiedBy": "Honglin Du", + "lastModifiedAt": "2022-11-18T09:49:05.9054146\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -406,7 +406,7 @@ "Connection": "keep-alive", "Content-Length": "686", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -416,7 +416,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo ${{inputs.component_in_number}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d1c99d2-15f5-472f-9477-5696b13a0426/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/92e51c4c-40c7-4f95-ba55-e3a63d7d7c14/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1", "name": "azureml_anonymous", "version": "000000000000000000000", @@ -436,26 +436,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1675", + "Content-Length": "1683", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:07:43 GMT", + "Date": "Fri, 18 Nov 2022 09:49:06 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-7e708f811a526550c2f60bf315e521bf-e2d820c002982753-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-8bb3c40e1424e17ff19d33802c500885-910d314e744d350b-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "56ebfcba-1d84-4d64-87cc-8b5255aa15b1", - "x-ms-ratelimit-remaining-subscription-writes": "1179", + "x-ms-correlation-request-id": "1a955668-d72c-4d4b-b2a1-c47fbcb71158", + "x-ms-ratelimit-remaining-subscription-writes": "1178", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080744Z:56ebfcba-1d84-4d64-87cc-8b5255aa15b1", - "x-request-time": "0.365" + "x-ms-routing-request-id": "JAPANEAST:20221118T094907Z:1a955668-d72c-4d4b-b2a1-c47fbcb71158", + "x-request-time": "0.925" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b3e0a8fe-f10f-419f-8010-16af86c8db2b", - "name": "b3e0a8fe-f10f-419f-8010-16af86c8db2b", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ce6b9f37-b325-4d92-a9b4-577435ca629b", + "name": "ce6b9f37-b325-4d92-a9b4-577435ca629b", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -465,7 +465,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "b3e0a8fe-f10f-419f-8010-16af86c8db2b", + "version": "ce6b9f37-b325-4d92-a9b4-577435ca629b", "is_deterministic": "True", "type": "command", "inputs": { @@ -476,8 +476,8 @@ "description": "Am integer" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d1c99d2-15f5-472f-9477-5696b13a0426/versions/1", - "environment": "azureml://registries/azureml/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/92e51c4c-40c7-4f95-ba55-e3a63d7d7c14/versions/1", + "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" }, @@ -486,11 +486,11 @@ } }, "systemData": { - "createdAt": "2022-11-08T09:45:20.3794548\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-11-18T09:44:32.81992\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-11-08T09:45:20.5400255\u002B00:00", - "lastModifiedBy": "Honglin Du", + "lastModifiedAt": "2022-11-18T09:44:33.3217232\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -502,28 +502,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1068", + "Content-Length": "1070", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:07:43 GMT", + "Date": "Fri, 18 Nov 2022 09:49:07 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-1b37e19b272fef31641a7d0e243c7b86-ab821b88e90be41a-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-d016ef2aa65836c466821a10b64be5c5-aad555e3270058c0-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2d3b275f-c58d-459b-aa11-71a9e7b4752a", - "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-correlation-request-id": "f971d85d-0811-41a4-92c4-3b14e7833e32", + "x-ms-ratelimit-remaining-subscription-reads": "11972", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080744Z:2d3b275f-c58d-459b-aa11-71a9e7b4752a", - "x-request-time": "0.108" + "x-ms-routing-request-id": "JAPANEAST:20221118T094908Z:f971d85d-0811-41a4-92c4-3b14e7833e32", + "x-request-time": "0.081" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -538,17 +538,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sav3u7rijui4cza", - "containerName": "azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3", + "accountName": "teststorageaccount", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-10-10T07:43:07.7818269\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-10-10T07:43:08.5293577\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -562,7 +562,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -570,19 +570,19 @@ "Cache-Control": "no-cache", "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:07:44 GMT", + "Date": "Fri, 18 Nov 2022 09:49:08 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-ab7847bc69a13ba0ddb086427faa7925-27370d4db34c5e5d-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-5d43becadfe1d47176407bb13b802453-a1b6778b97cc2e2e-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1c668e8c-306b-49ac-9b89-37b63d1bdb39", - "x-ms-ratelimit-remaining-subscription-writes": "1188", + "x-ms-correlation-request-id": "cf573eeb-d6d4-4ad4-96a2-5917825ef1d2", + "x-ms-ratelimit-remaining-subscription-writes": "1186", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080745Z:1c668e8c-306b-49ac-9b89-37b63d1bdb39", - "x-request-time": "0.078" + "x-ms-routing-request-id": "JAPANEAST:20221118T094908Z:cf573eeb-d6d4-4ad4-96a2-5917825ef1d2", + "x-request-time": "0.105" }, "ResponseBody": { "secretsType": "AccountKey", @@ -590,14 +590,14 @@ } }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:07:45 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:49:12 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -607,9 +607,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 09 Nov 2022 08:07:45 GMT", - "ETag": "\u00220x8DAC13EFDFF2C0D\u0022", - "Last-Modified": "Tue, 08 Nov 2022 04:09:11 GMT", + "Date": "Fri, 18 Nov 2022 09:49:08 GMT", + "ETag": "\u00220x8DA9D48E17467D7\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:49:17 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -618,10 +618,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 08 Nov 2022 04:09:11 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:49:16 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "5d0c2440-3f92-4bf0-a277-a2158e0ee09d", + "x-ms-meta-name": "9c9cfba9-82bd-45db-ad06-07009d1d9672", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -630,20 +630,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:07:45 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:49:12 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 09 Nov 2022 08:07:46 GMT", + "Date": "Fri, 18 Nov 2022 09:49:09 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -656,15 +656,15 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "288", + "Content-Length": "291", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -674,31 +674,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "812", + "Content-Length": "815", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:07:45 GMT", + "Date": "Fri, 18 Nov 2022 09:49:09 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-f9c35e6f479f690882b4761e81a63888-6144b4945aa2e59f-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-b33da2b12ffa00a13e07d6825a6c0861-1a45989016592675-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5b9075e3-c6e8-4f08-824b-315b80eb8947", - "x-ms-ratelimit-remaining-subscription-writes": "1178", + "x-ms-correlation-request-id": "af7973c2-8ddd-4c76-a2f4-c90941b4dbd9", + "x-ms-ratelimit-remaining-subscription-writes": "1177", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080746Z:5b9075e3-c6e8-4f08-824b-315b80eb8947", - "x-request-time": "0.066" + "x-ms-routing-request-id": "JAPANEAST:20221118T094910Z:af7973c2-8ddd-4c76-a2f4-c90941b4dbd9", + "x-request-time": "0.238" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -710,14 +710,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-11-08T04:09:13.0225939\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-09-23T09:49:20.984936\u002B00:00", + "createdBy": "Ying Chen", "createdByType": "User", - "lastModifiedAt": "2022-11-09T08:07:46.7568661\u002B00:00", - "lastModifiedBy": "Honglin Du", + "lastModifiedAt": "2022-11-18T09:49:09.905201\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -731,7 +731,7 @@ "Connection": "keep-alive", "Content-Length": "1895", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -745,7 +745,7 @@ "isArchived": false, "componentSpec": { "command": "echo \u0022Start training ...\u0022 \u0026\u0026 python mnist.py --data_folder ${{inputs.data_folder}} --batch_size ${{inputs.batch_size}} --first_layer_neurons ${{inputs.first_layer_neurons}} --second_layer_neurons ${{inputs.second_layer_neurons}} --third_layer_neurons ${{inputs.third_layer_neurons}} --epochs ${{inputs.epochs}} --f1 ${{inputs.f1}} --f2 ${{inputs.f2}} --weight_decay ${{inputs.weight_decay}} --momentum ${{inputs.momentum}} --learning_rate ${{inputs.learning_rate}} --saved_model ${{outputs.trained_model_dir}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1", "name": "azureml_anonymous", "description": "This is the command component for sweep", @@ -809,26 +809,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3485", + "Content-Length": "3495", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:07:46 GMT", + "Date": "Fri, 18 Nov 2022 09:49:11 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-d5ab313a55b68663de39eef671de643e-ca6c78313d450287-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-88012106fbb653228e0d9db3240e56b8-9f32cca696fa6968-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7385186d-b0ba-4030-81f5-1b97f6c28473", - "x-ms-ratelimit-remaining-subscription-writes": "1177", + "x-ms-correlation-request-id": "5c474e2f-7653-4d50-8ee5-68487a64cac7", + "x-ms-ratelimit-remaining-subscription-writes": "1176", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080747Z:7385186d-b0ba-4030-81f5-1b97f6c28473", - "x-request-time": "0.429" + "x-ms-routing-request-id": "JAPANEAST:20221118T094911Z:5c474e2f-7653-4d50-8ee5-68487a64cac7", + "x-request-time": "1.079" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/5af25209-e882-4123-89c4-6c596c33cdfa", - "name": "5af25209-e882-4123-89c4-6c596c33cdfa", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/747e9377-9711-4601-97cc-2b4f13ed39c3", + "name": "747e9377-9711-4601-97cc-2b4f13ed39c3", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -841,7 +841,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "5af25209-e882-4123-89c4-6c596c33cdfa", + "version": "747e9377-9711-4601-97cc-2b4f13ed39c3", "display_name": "CommandComponentForSweep", "is_deterministic": "True", "type": "command", @@ -906,8 +906,8 @@ "type": "mlflow_model" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5d0c2440-3f92-4bf0-a277-a2158e0ee09d/versions/1", - "environment": "azureml://registries/azureml/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", + "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" }, @@ -916,11 +916,11 @@ } }, "systemData": { - "createdAt": "2022-11-08T09:45:24.9421611\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-11-18T09:44:37.4149466\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-11-08T09:45:25.1129232\u002B00:00", - "lastModifiedBy": "Honglin Du", + "lastModifiedAt": "2022-11-18T09:44:37.9494974\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -932,28 +932,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1068", + "Content-Length": "1070", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:07:47 GMT", + "Date": "Fri, 18 Nov 2022 09:49:11 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-47941427380a6aa4e5c609bfde81f7ef-2db1edaaeff0c32c-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-bdc6d20e7f386ae912ed5a75af67400f-0eed641b8ef322f2-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "88564bf6-c56d-41a1-9eac-2a4cea8b5865", - "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-correlation-request-id": "ec52928d-2b04-4a97-a2f9-8e2b8c94c914", + "x-ms-ratelimit-remaining-subscription-reads": "11971", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080748Z:88564bf6-c56d-41a1-9eac-2a4cea8b5865", - "x-request-time": "0.102" + "x-ms-routing-request-id": "JAPANEAST:20221118T094912Z:ec52928d-2b04-4a97-a2f9-8e2b8c94c914", + "x-request-time": "0.092" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -968,17 +968,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sav3u7rijui4cza", - "containerName": "azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3", + "accountName": "teststorageaccount", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-10-10T07:43:07.7818269\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-10-10T07:43:08.5293577\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -992,7 +992,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1000,19 +1000,19 @@ "Cache-Control": "no-cache", "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:07:48 GMT", + "Date": "Fri, 18 Nov 2022 09:49:12 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-04ec7da82442bf57fb5aa34f09db6fff-f19c2e227e358e89-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-1f6aeb3afb5c40c12fd3a1bdb3d503b9-aa210047151a3f28-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7d2b384c-1996-42b2-b227-4f6ba9a117f8", - "x-ms-ratelimit-remaining-subscription-writes": "1187", + "x-ms-correlation-request-id": "9edc777d-61ad-453c-bebe-37b594b56bf1", + "x-ms-ratelimit-remaining-subscription-writes": "1185", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080749Z:7d2b384c-1996-42b2-b227-4f6ba9a117f8", - "x-request-time": "0.126" + "x-ms-routing-request-id": "JAPANEAST:20221118T094912Z:9edc777d-61ad-453c-bebe-37b594b56bf1", + "x-request-time": "0.087" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1020,26 +1020,26 @@ } }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/LocalUpload/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:07:49 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:49:16 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Accept-Ranges": "bytes", - "Content-Length": "499", - "Content-MD5": "kD7N5\u002BygjTfbYTFhyEo7RA==", + "Content-Length": "508", + "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Wed, 09 Nov 2022 08:07:49 GMT", - "ETag": "\u00220x8DAC154D3DF99CE\u0022", - "Last-Modified": "Tue, 08 Nov 2022 06:45:30 GMT", + "Date": "Fri, 18 Nov 2022 09:49:12 GMT", + "ETag": "\u00220x8DA9D48AFBCE5A6\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:47:53 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1048,32 +1048,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 08 Nov 2022 06:45:29 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:47:53 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "5fa55015-0323-4a0f-b7c2-1db6ccd3acbf", + "x-ms-meta-name": "da405283-c0d4-42bf-9cd0-2d052c9da84b", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "c0fd52f9-f2ed-44bf-bed3-c2f92c2fd4aa", + "x-ms-meta-version": "bcdecfd5-08fc-40e1-af7f-364ca3525a76", "x-ms-server-encrypted": "true", "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sav3u7rijui4cza.blob.core.windows.net/azureml-blobstore-a6db4a2a-8424-44da-a5a8-d604852f4fc3/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://teststorageaccount.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)", - "x-ms-date": "Wed, 09 Nov 2022 08:07:49 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22623-SP0)", + "x-ms-date": "Fri, 18 Nov 2022 09:49:16 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 09 Nov 2022 08:07:49 GMT", + "Date": "Fri, 18 Nov 2022 09:49:12 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1086,15 +1086,15 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_533724187038?api-version=2022-10-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_362382673823?api-version=2022-10-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "4048", + "Content-Length": "3475", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (macOS-13.0-arm64-i386-64bit)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22623-SP0)" }, "RequestBody": { "properties": { @@ -1105,7 +1105,7 @@ "owner": "sdkteam" }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", - "displayName": "test_533724187038", + "displayName": "test_362382673823", "experimentName": "azure-ai-ml", "isArchived": false, "jobType": "Pipeline", @@ -1149,14 +1149,9 @@ "name": "hello_sweep_inline_trial", "type": "sweep", "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/gpu-cluster", - "inputs": { - "component_in_number": { - "job_input_type": "literal" - } - }, "_source": "YAML.JOB", "trial": { - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b3e0a8fe-f10f-419f-8010-16af86c8db2b" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ce6b9f37-b325-4d92-a9b4-577435ca629b" } }, "hello_sweep_inline_file_trial": { @@ -1228,39 +1223,6 @@ "name": "hello_sweep_inline_file_trial", "type": "sweep", "inputs": { - "batch_size": { - "job_input_type": "literal" - }, - "first_layer_neurons": { - "job_input_type": "literal" - }, - "second_layer_neurons": { - "job_input_type": "literal" - }, - "third_layer_neurons": { - "job_input_type": "literal" - }, - "epochs": { - "job_input_type": "literal" - }, - "momentum": { - "job_input_type": "literal" - }, - "weight_decay": { - "job_input_type": "literal" - }, - "learning_rate": { - "job_input_type": "literal" - }, - "f1": { - "job_input_type": "literal" - }, - "f2": { - "job_input_type": "literal" - }, - "random_seed": { - "job_input_type": "literal" - }, "data_folder": { "mode": "ReadOnlyMount", "uri": "azureml://datastores/workspaceblobstore/paths/LocalUpload/00000000000000000000000000000000/data", @@ -1269,7 +1231,7 @@ }, "_source": "YAML.JOB", "trial": { - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/5af25209-e882-4123-89c4-6c596c33cdfa" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/747e9377-9711-4601-97cc-2b4f13ed39c3" } }, "hello_sweep_inline_remote_trial": { @@ -1307,26 +1269,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "7909", + "Content-Length": "6917", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Nov 2022 08:07:56 GMT", + "Date": "Fri, 18 Nov 2022 09:49:19 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_533724187038?api-version=2022-10-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_362382673823?api-version=2022-10-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-48b6187a22dbdedbdcd20dc1a24e2c52-40971f678c5db8cf-00\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-f3b8ceb6b4cb83710798e94b74c8d874-9bd3bd7d97d2793f-00\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5f772199-168a-490b-ba18-2105801edeb3", - "x-ms-ratelimit-remaining-subscription-writes": "1176", + "x-ms-correlation-request-id": "14ae4575-9619-4f23-b722-92a189db1a6a", + "x-ms-ratelimit-remaining-subscription-writes": "1175", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20221109T080757Z:5f772199-168a-490b-ba18-2105801edeb3", - "x-request-time": "4.821" + "x-ms-routing-request-id": "JAPANEAST:20221118T094920Z:14ae4575-9619-4f23-b722-92a189db1a6a", + "x-request-time": "4.296" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_533724187038", - "name": "test_533724187038", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_362382673823", + "name": "test_362382673823", "type": "Microsoft.MachineLearningServices/workspaces/jobs", "properties": { "description": "The hello world pipeline job with inline components", @@ -1346,14 +1308,14 @@ "azureml.defaultDataStoreName": "workspaceblobstore", "azureml.pipelineComponent": "pipelinerun" }, - "displayName": "test_533724187038", + "displayName": "test_362382673823", "status": "Preparing", "experimentName": "azure-ai-ml", "services": { "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null, @@ -1362,7 +1324,7 @@ "Studio": { "jobServiceType": "Studio", "port": null, - "endpoint": "https://ml.azure.com/runs/test_533724187038?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "endpoint": "https://ml.azure.com/runs/test_362382673823?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, "properties": null, @@ -1407,14 +1369,9 @@ "name": "hello_sweep_inline_trial", "type": "sweep", "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/gpu-cluster", - "inputs": { - "component_in_number": { - "job_input_type": "literal" - } - }, "_source": "YAML.JOB", "trial": { - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b3e0a8fe-f10f-419f-8010-16af86c8db2b" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ce6b9f37-b325-4d92-a9b4-577435ca629b" } }, "hello_sweep_inline_file_trial": { @@ -1486,39 +1443,6 @@ "name": "hello_sweep_inline_file_trial", "type": "sweep", "inputs": { - "batch_size": { - "job_input_type": "literal" - }, - "first_layer_neurons": { - "job_input_type": "literal" - }, - "second_layer_neurons": { - "job_input_type": "literal" - }, - "third_layer_neurons": { - "job_input_type": "literal" - }, - "epochs": { - "job_input_type": "literal" - }, - "momentum": { - "job_input_type": "literal" - }, - "weight_decay": { - "job_input_type": "literal" - }, - "learning_rate": { - "job_input_type": "literal" - }, - "f1": { - "job_input_type": "literal" - }, - "f2": { - "job_input_type": "literal" - }, - "random_seed": { - "job_input_type": "literal" - }, "data_folder": { "mode": "ReadOnlyMount", "uri": "azureml://datastores/workspaceblobstore/paths/LocalUpload/00000000000000000000000000000000/data", @@ -1527,7 +1451,7 @@ }, "_source": "YAML.JOB", "trial": { - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/5af25209-e882-4123-89c4-6c596c33cdfa" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/747e9377-9711-4601-97cc-2b4f13ed39c3" } }, "hello_sweep_inline_remote_trial": { @@ -1572,14 +1496,14 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-11-09T08:07:56.9752384\u002B00:00", - "createdBy": "Honglin Du", + "createdAt": "2022-11-18T09:49:19.7371522\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } } ], "Variables": { - "randstr": "test_533724187038" + "randstr": "test_362382673823" } } From 2f2e10452817a9835046ad7d70ece5a98a78988b Mon Sep 17 00:00:00 2001 From: Zhengfei Wang Date: Fri, 18 Nov 2022 18:01:51 +0800 Subject: [PATCH 6/7] fix: update breaking test by updating expected result --- .../tests/pipeline_job/unittests/test_pipeline_job_schema.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/sdk/ml/azure-ai-ml/tests/pipeline_job/unittests/test_pipeline_job_schema.py b/sdk/ml/azure-ai-ml/tests/pipeline_job/unittests/test_pipeline_job_schema.py index 1de29adabfed..7f08ebc64a43 100644 --- a/sdk/ml/azure-ai-ml/tests/pipeline_job/unittests/test_pipeline_job_schema.py +++ b/sdk/ml/azure-ai-ml/tests/pipeline_job/unittests/test_pipeline_job_schema.py @@ -757,9 +757,6 @@ def mock_get_asset_arm_id(*args, **kwargs): "tests/test_configs/pipeline_jobs/pipeline_job_with_sweep_job_with_input_bindings.yml", { "hello_world": { - "component_in_number": { - "job_input_type": "literal", - }, "test1": { "job_input_type": "literal", "value": "${{parent.inputs.job_data_path}}", From d56f3b3fcd3358840f4fac752ff143ae0bdf3ebf Mon Sep 17 00:00:00 2001 From: Zhengfei Wang Date: Mon, 21 Nov 2022 11:52:50 +0800 Subject: [PATCH 7/7] not update CHANGELOG for now --- sdk/ml/azure-ai-ml/CHANGELOG.md | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/sdk/ml/azure-ai-ml/CHANGELOG.md b/sdk/ml/azure-ai-ml/CHANGELOG.md index ef5302eef7a2..fa8b6e3ad886 100644 --- a/sdk/ml/azure-ai-ml/CHANGELOG.md +++ b/sdk/ml/azure-ai-ml/CHANGELOG.md @@ -1,10 +1,5 @@ # Release History -## 1.2.0 (Unreleased) - -### Bugs Fixed -- Fix sweep job optional input cannot be None. - ## 1.1.2 (2022-11-21) ### Features Added @@ -160,4 +155,4 @@ ### Features Added -- First preview. +- First preview. \ No newline at end of file