From 08d0b8cf0813d09e0a1497c6340a4b56d5c8bdfa Mon Sep 17 00:00:00 2001 From: gison93 <43569657+gison93@users.noreply.github.com> Date: Tue, 29 Jan 2019 12:42:48 +0100 Subject: [PATCH 1/3] fix typo Bloband -> Blob and --- .../aml-pipelines-use-databricks-as-compute-target.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/how-to-use-azureml/machine-learning-pipelines/intro-to-pipelines/aml-pipelines-use-databricks-as-compute-target.ipynb b/how-to-use-azureml/machine-learning-pipelines/intro-to-pipelines/aml-pipelines-use-databricks-as-compute-target.ipynb index 9097ecf1..53f28970 100644 --- a/how-to-use-azureml/machine-learning-pipelines/intro-to-pipelines/aml-pipelines-use-databricks-as-compute-target.ipynb +++ b/how-to-use-azureml/machine-learning-pipelines/intro-to-pipelines/aml-pipelines-use-databricks-as-compute-target.ipynb @@ -168,7 +168,7 @@ "metadata": {}, "source": [ "## Data Connections with Inputs and Outputs\n", - "The DatabricksStep supports Azure Bloband ADLS for inputs and outputs. You also will need to define a [Secrets](https://docs.azuredatabricks.net/user-guide/secrets/index.html) scope to enable authentication to external data sources such as Blob and ADLS from Databricks.\n", + "The DatabricksStep supports Azure Blob and ADLS for inputs and outputs. You also will need to define a [Secrets](https://docs.azuredatabricks.net/user-guide/secrets/index.html) scope to enable authentication to external data sources such as Blob and ADLS from Databricks.\n", "\n", "- Databricks documentation on [Azure Blob](https://docs.azuredatabricks.net/spark/latest/data-sources/azure/azure-storage.html)\n", "- Databricks documentation on [ADLS](https://docs.databricks.com/spark/latest/data-sources/azure/azure-datalake.html)\n", @@ -695,4 +695,4 @@ }, "nbformat": 4, "nbformat_minor": 2 -} \ No newline at end of file +} From 1307efe7bccdc3995304581ef3fde370894ecf3f Mon Sep 17 00:00:00 2001 From: gison93 <43569657+gison93@users.noreply.github.com> Date: Tue, 29 Jan 2019 14:34:07 +0100 Subject: [PATCH 2/3] fix typo remove trailing \u00c2\u00a0 from variable and notebook_path --- .../aml-pipelines-use-databricks-as-compute-target.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/how-to-use-azureml/machine-learning-pipelines/intro-to-pipelines/aml-pipelines-use-databricks-as-compute-target.ipynb b/how-to-use-azureml/machine-learning-pipelines/intro-to-pipelines/aml-pipelines-use-databricks-as-compute-target.ipynb index 53f28970..cb3f66e8 100644 --- a/how-to-use-azureml/machine-learning-pipelines/intro-to-pipelines/aml-pipelines-use-databricks-as-compute-target.ipynb +++ b/how-to-use-azureml/machine-learning-pipelines/intro-to-pipelines/aml-pipelines-use-databricks-as-compute-target.ipynb @@ -389,7 +389,7 @@ "metadata": {}, "source": [ "### 1. Running the demo notebook already added to the Databricks workspace\n", - "Create a notebook in the Azure Databricks workspace, and provide the path to that notebook as the value associated with the environment variable \"DATABRICKS_NOTEBOOK_PATH\". This will then set the variable\u00c2\u00a0notebook_path\u00c2\u00a0when you run the code cell below:" + "Create a notebook in the Azure Databricks workspace, and provide the path to that notebook as the value associated with the environment variable \"DATABRICKS_NOTEBOOK_PATH\". This will then set the variable notebook_path when you run the code cell below:" ] }, { From 100ab10797c72fe1bc8e3fb1838fe9358ac5b7e8 Mon Sep 17 00:00:00 2001 From: gison93 <43569657+gison93@users.noreply.github.com> Date: Tue, 29 Jan 2019 14:50:00 +0100 Subject: [PATCH 3/3] add pipeline validation --- .../aml-pipelines-use-databricks-as-compute-target.ipynb | 1 + 1 file changed, 1 insertion(+) diff --git a/how-to-use-azureml/machine-learning-pipelines/intro-to-pipelines/aml-pipelines-use-databricks-as-compute-target.ipynb b/how-to-use-azureml/machine-learning-pipelines/intro-to-pipelines/aml-pipelines-use-databricks-as-compute-target.ipynb index cb3f66e8..68c9be22 100644 --- a/how-to-use-azureml/machine-learning-pipelines/intro-to-pipelines/aml-pipelines-use-databricks-as-compute-target.ipynb +++ b/how-to-use-azureml/machine-learning-pipelines/intro-to-pipelines/aml-pipelines-use-databricks-as-compute-target.ipynb @@ -428,6 +428,7 @@ "source": [ "steps = [dbNbStep]\n", "pipeline = Pipeline(workspace=ws, steps=steps)\n", + "pipeline.validate()\n", "pipeline_run = Experiment(ws, 'DB_Notebook_demo').submit(pipeline)\n", "pipeline_run.wait_for_completion()" ]