From 0f86128d6c279aeaf911ee75cfcac0463c993b21 Mon Sep 17 00:00:00 2001 From: johnson-jay-l <75233770+johnson-jay-l@users.noreply.github.com> Date: Fri, 6 Sep 2024 11:31:45 -0700 Subject: [PATCH 1/2] Replace angled single quotes with regular single quotes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Copy/paste required editing the ‘’ characters with '' --- .../docs/reference/resource-configs/databricks-configs.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/website/docs/reference/resource-configs/databricks-configs.md b/website/docs/reference/resource-configs/databricks-configs.md index de1bb075015..0f339235989 100644 --- a/website/docs/reference/resource-configs/databricks-configs.md +++ b/website/docs/reference/resource-configs/databricks-configs.md @@ -427,11 +427,11 @@ To take advantage of this capability, you will need to add compute blocks to you ### Name that you will use to refer to an alternate compute Compute1: - http_path: [‘/sql/your/http/path’] # Required of each alternate compute + http_path: ['/sql/your/http/path'] # Required of each alternate compute ### A third named compute, use whatever name you like Compute2: - http_path: [‘/some/other/path’] # Required of each alternate compute + http_path: ['/some/other/path'] # Required of each alternate compute ... : # additional targets @@ -442,11 +442,11 @@ To take advantage of this capability, you will need to add compute blocks to you ### Name that you will use to refer to an alternate compute Compute1: - http_path: [‘/sql/your/http/path’] # Required of each alternate compute + http_path: ['/sql/your/http/path'] # Required of each alternate compute ### A third named compute, use whatever name you like Compute2: - http_path: [‘/some/other/path’] # Required of each alternate compute + http_path: ['/some/other/path'] # Required of each alternate compute ... ``` From 564b11a29d08c3c8c3c65b3cf0c21c689688363a Mon Sep 17 00:00:00 2001 From: Mirna Wong <89008547+mirnawong1@users.noreply.github.com> Date: Mon, 9 Sep 2024 11:50:05 +0100 Subject: [PATCH 2/2] Update databricks-configs.md --- .../resource-configs/databricks-configs.md | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/website/docs/reference/resource-configs/databricks-configs.md b/website/docs/reference/resource-configs/databricks-configs.md index 0f339235989..5823fe7d9a4 100644 --- a/website/docs/reference/resource-configs/databricks-configs.md +++ b/website/docs/reference/resource-configs/databricks-configs.md @@ -410,31 +410,31 @@ To take advantage of this capability, you will need to add compute blocks to you ```yaml -: - target: # this is the default target +profile-name: + target: target-name # this is the default target outputs: - : + target-name: type: databricks - catalog: [optional catalog name if you are using Unity Catalog] - schema: [schema name] # Required - host: [yourorg.databrickshost.com] # Required + catalog: optional catalog name if you are using Unity Catalog + schema: schema name # Required + host: yourorg.databrickshost.com # Required ### This path is used as the default compute - http_path: [/sql/your/http/path] # Required + http_path: /sql/your/http/path # Required ### New compute section compute: ### Name that you will use to refer to an alternate compute Compute1: - http_path: ['/sql/your/http/path'] # Required of each alternate compute + http_path: '/sql/your/http/path' # Required of each alternate compute ### A third named compute, use whatever name you like Compute2: - http_path: ['/some/other/path'] # Required of each alternate compute + http_path: '/some/other/path' # Required of each alternate compute ... - : # additional targets + target-name: # additional targets ... ### For each target, you need to define the same compute, ### but you can specify different paths @@ -442,11 +442,11 @@ To take advantage of this capability, you will need to add compute blocks to you ### Name that you will use to refer to an alternate compute Compute1: - http_path: ['/sql/your/http/path'] # Required of each alternate compute + http_path: '/sql/your/http/path' # Required of each alternate compute ### A third named compute, use whatever name you like Compute2: - http_path: ['/some/other/path'] # Required of each alternate compute + http_path: '/some/other/path' # Required of each alternate compute ... ```