Multi-stage pipeline + scoring observability#122
Merged
dtzar merged 16 commits intomicrosoft:masterfrom Dec 9, 2019
Merged
Conversation
bump pip requirements versions (microsoft#104)
* Use Azure CLI tasks to remove need for variables SP_APP_ID, SP_APP_SECRET, SUBSCRIPTION_ID, TENANT_ID * Updated gettin_started.md to point out variable path to artifact (microsoft#117) * Made random hyperparameter (ridge regression alpha) a pipeline parameter, setting its value in the DevOps pipeline (microsoft#107) * Changed unit test to test actual training code (partially solves microsoft#74) * Fixed: attach_compute should set exit code after exception (microsoft#113) * Fixed scoring endpoint HTTP behavior (microsoft#110) * Fixed PipelineParameters format in call to Azure ML Extension (microsoft#118) * Fixed Model build environment for Azure Web App for containers (microsoft#119)
Builds on top of PR microsoft#121, and: - Replaces separate build + release pipelines with a single multi-stage pipeline with stages for Build, Train, ACI, AKS and Webapp deployment. - ACI, AKS and Webapp deployment are optionally enabled (through Variables). - Added example of custom traces (logging) and correlating traces with requests with Kusto queries. - Added example of distributed tracing (client passes a trace header, logged by the scoring service). 
dtzar
suggested changes
Dec 7, 2019
Contributor
There was a problem hiding this comment.
@algattik So close on this after a bit of tweaking it with my commits. The only thing remaining is dynamically getting the MODEL_VERSION variable for when we deploy. Right now this build fails because it's looking for the hard-coded model version 1 in the variable template file while I have version 17 of the file, so it can't find it to deploy. IMO we should use the verify model registered script to return the model version for use in other steps.
Contributor
Author
|
Restored the pre-merge version where MODEL_VERSION is set by the verify_train_pipeline.py task. |
Contributor
dtzar
approved these changes
Dec 9, 2019
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Builds on top of PR #121, and: