Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 1.19 KB

File metadata and controls

33 lines (22 loc) · 1.19 KB

Test and validation

Check that trigger has been triggered

In the Synapse Studio (web portal), go to Monitor and then Trigger runs. Verify that the trigger has successfully run immediately after uploading the file to the container.

Monitor trigger runs

Check that pipeline has run successfully

In the Synpase Studio (web portal), go to Monitor and then Pipeline runs. Verify that the pipeline completes or has completed successfully.

Monitor pipeline runs

You may also enter the pipeline to validate each step.

Monitor pipeline run granular

Fetch file generic (record ID) and validate that the file is consistent

Get the output id from the Post File Metadata step in the pipeline.

Verify file consistency

Now download the file from Microsoft Energy Data Services using the record ID.

curl -X 'GET' `
  'https://<instance>.energy.azure.com/api/file/v2/files/<record-ID>/downloadURL?expiryTime=1D' `
  -H 'accept: application/json' `
  -H 'data-partition-id: <data-partition>' `
  -H 'Authorization: Bearer <access-token>'