From 892b611e80dbab28ce9ad204df2c67d821c032ae Mon Sep 17 00:00:00 2001 From: Shreyas Goenka Date: Mon, 25 Aug 2025 14:53:08 +0200 Subject: [PATCH 1/5] Rename Delta Live Tables to Lakeflow Declarative Pipelines in the default-pipeline template --- NEXT_CHANGELOG.md | 1 + acceptance/bundle/debug/out.stderr.terraform.txt | 2 +- .../bundle/deploy/pipeline/recreate/databricks.yml.tmpl | 2 +- .../classic/output/my_default_python/pyproject.toml | 2 +- .../resources/my_default_python.pipeline.yml | 2 +- .../src/{dlt_pipeline.ipynb => pipeline.ipynb} | 6 +++--- .../integration_classic/out.validate.dev.json | 2 +- .../default-python/integration_classic/output.txt | 8 ++++---- .../serverless/output/my_default_python/pyproject.toml | 2 +- .../resources/my_default_python.pipeline.yml | 2 +- .../src/{dlt_pipeline.ipynb => pipeline.ipynb} | 6 +++--- .../output/my_jobs_as_code/src/dlt_pipeline.ipynb | 2 +- .../default-python/databricks_template_schema.json | 2 +- .../templates/default-python/template/__preamble.tmpl | 2 +- .../template/{{.project_name}}/pyproject.toml.tmpl | 2 +- .../resources/{{.project_name}}.job.yml.tmpl | 2 +- .../resources/{{.project_name}}.pipeline.yml.tmpl | 2 +- .../src/{dlt_pipeline.ipynb.tmpl => pipeline.ipynb.tmpl} | 6 +++--- .../{{.project_name}}/src/dlt_pipeline.ipynb.tmpl | 2 +- 19 files changed, 28 insertions(+), 27 deletions(-) rename acceptance/bundle/templates/default-python/classic/output/my_default_python/src/{dlt_pipeline.ipynb => pipeline.ipynb} (89%) rename acceptance/bundle/templates/default-python/serverless/output/my_default_python/src/{dlt_pipeline.ipynb => pipeline.ipynb} (89%) rename libs/template/templates/default-python/template/{{.project_name}}/src/{dlt_pipeline.ipynb.tmpl => pipeline.ipynb.tmpl} (91%) diff --git a/NEXT_CHANGELOG.md b/NEXT_CHANGELOG.md index 54e0ad8e8d2..7ed7e0d5a87 100644 --- a/NEXT_CHANGELOG.md +++ b/NEXT_CHANGELOG.md @@ -16,5 +16,6 @@ See more details here: ([#3225](https://github.com/databricks/cli/pull/3225)) ### Bundles * [Breaking Change] Remove deprecated path fallback mechanism for jobs and pipelines ([#3225](https://github.com/databricks/cli/pull/3225)) +* Rename Delta Live Tables to Lakeflow Declarative Pipelines in the default-pipeline template. ### API Changes diff --git a/acceptance/bundle/debug/out.stderr.terraform.txt b/acceptance/bundle/debug/out.stderr.terraform.txt index 99c0d4688fd..d298952d593 100644 --- a/acceptance/bundle/debug/out.stderr.terraform.txt +++ b/acceptance/bundle/debug/out.stderr.terraform.txt @@ -64,7 +64,7 @@ 10:07:59 Debug: Apply pid=12345 mutator=metadata.AnnotatePipelines 10:07:59 Debug: Apply pid=12345 mutator=terraform.Initialize 10:07:59 Debug: Using Terraform from DATABRICKS_TF_EXEC_PATH at [TERRAFORM] pid=12345 mutator=terraform.Initialize -10:07:59 Debug: Using Terraform CLI config from DATABRICKS_TF_CLI_CONFIG_FILE at [DATABRICKS_TF_CLI_CONFIG_FILE] pid=12345 mutator=terraform.Initialize +10:07:59 Debug: DATABRICKS_TF_PROVIDER_VERSION as 1.84.0 does not match the current version 1.87.0, ignoring DATABRICKS_TF_CLI_CONFIG_FILE pid=12345 mutator=terraform.Initialize 10:07:59 Debug: Environment variables for Terraform: ...redacted... pid=12345 mutator=terraform.Initialize 10:07:59 Debug: Apply pid=12345 mutator=scripts.postinit 10:07:59 Debug: No script defined for postinit, skipping pid=12345 mutator=scripts.postinit diff --git a/acceptance/bundle/deploy/pipeline/recreate/databricks.yml.tmpl b/acceptance/bundle/deploy/pipeline/recreate/databricks.yml.tmpl index 64c36afbd7c..f0e4dc4c3ca 100644 --- a/acceptance/bundle/deploy/pipeline/recreate/databricks.yml.tmpl +++ b/acceptance/bundle/deploy/pipeline/recreate/databricks.yml.tmpl @@ -6,7 +6,7 @@ workspace: variables: catalog: - description: The catalog the DLT pipeline should use. + description: The catalog the Lakeflow Declarative Pipeline should use. default: main resources: diff --git a/acceptance/bundle/templates/default-python/classic/output/my_default_python/pyproject.toml b/acceptance/bundle/templates/default-python/classic/output/my_default_python/pyproject.toml index f0fa52bc627..5049f8a3ea5 100644 --- a/acceptance/bundle/templates/default-python/classic/output/my_default_python/pyproject.toml +++ b/acceptance/bundle/templates/default-python/classic/output/my_default_python/pyproject.toml @@ -8,7 +8,7 @@ requires-python = ">= 3.11" dev = [ "pytest", - # Code completion support for DLT, also install databricks-connect + # Code completion support for Lakeflow Declarative Pipelines, also install databricks-connect "databricks-dlt", # databricks-connect can be used to run parts of this project locally. diff --git a/acceptance/bundle/templates/default-python/classic/output/my_default_python/resources/my_default_python.pipeline.yml b/acceptance/bundle/templates/default-python/classic/output/my_default_python/resources/my_default_python.pipeline.yml index d07d4fa6ce7..6e499470831 100644 --- a/acceptance/bundle/templates/default-python/classic/output/my_default_python/resources/my_default_python.pipeline.yml +++ b/acceptance/bundle/templates/default-python/classic/output/my_default_python/resources/my_default_python.pipeline.yml @@ -8,7 +8,7 @@ resources: schema: my_default_python_${bundle.target} libraries: - notebook: - path: ../src/dlt_pipeline.ipynb + path: ../src/pipeline.ipynb configuration: bundle.sourcePath: ${workspace.file_path}/src diff --git a/acceptance/bundle/templates/default-python/classic/output/my_default_python/src/dlt_pipeline.ipynb b/acceptance/bundle/templates/default-python/classic/output/my_default_python/src/pipeline.ipynb similarity index 89% rename from acceptance/bundle/templates/default-python/classic/output/my_default_python/src/dlt_pipeline.ipynb rename to acceptance/bundle/templates/default-python/classic/output/my_default_python/src/pipeline.ipynb index 8a02183e750..8845c185df4 100644 --- a/acceptance/bundle/templates/default-python/classic/output/my_default_python/src/dlt_pipeline.ipynb +++ b/acceptance/bundle/templates/default-python/classic/output/my_default_python/src/pipeline.ipynb @@ -12,9 +12,9 @@ } }, "source": [ - "# DLT pipeline\n", + "# Lakeflow Declarative Pipeline\n", "\n", - "This Delta Live Tables (DLT) definition is executed using a pipeline defined in resources/my_default_python.pipeline.yml." + "This Lakeflow Declarative Pipeline (LDP) definition is executed using a pipeline defined in resources/my_default_python.pipeline.yml." ] }, { @@ -72,7 +72,7 @@ "notebookMetadata": { "pythonIndentUnit": 2 }, - "notebookName": "dlt_pipeline", + "notebookName": "pipeline", "widgets": {} }, "kernelspec": { diff --git a/acceptance/bundle/templates/default-python/integration_classic/out.validate.dev.json b/acceptance/bundle/templates/default-python/integration_classic/out.validate.dev.json index d0804d16b6b..ac1ea3922c6 100644 --- a/acceptance/bundle/templates/default-python/integration_classic/out.validate.dev.json +++ b/acceptance/bundle/templates/default-python/integration_classic/out.validate.dev.json @@ -137,7 +137,7 @@ "libraries": [ { "notebook": { - "path": "/Workspace/Users/[USERNAME]/.bundle/project_name_[UNIQUE_NAME]/dev/files/src/dlt_pipeline" + "path": "/Workspace/Users/[USERNAME]/.bundle/project_name_[UNIQUE_NAME]/dev/files/src/pipeline" } } ], diff --git a/acceptance/bundle/templates/default-python/integration_classic/output.txt b/acceptance/bundle/templates/default-python/integration_classic/output.txt index 4c21ebf8714..7c98fbc22f8 100644 --- a/acceptance/bundle/templates/default-python/integration_classic/output.txt +++ b/acceptance/bundle/templates/default-python/integration_classic/output.txt @@ -211,8 +211,8 @@ Validation OK! "libraries": [ { "notebook": { -- "path": "/Workspace/Users/[USERNAME]/.bundle/project_name_[UNIQUE_NAME]/dev/files/src/dlt_pipeline" -+ "path": "/Workspace/Users/[USERNAME]/.bundle/project_name_[UNIQUE_NAME]/prod/files/src/dlt_pipeline" +- "path": "/Workspace/Users/[USERNAME]/.bundle/project_name_[UNIQUE_NAME]/dev/files/src/pipeline" ++ "path": "/Workspace/Users/[USERNAME]/.bundle/project_name_[UNIQUE_NAME]/prod/files/src/pipeline" } } ], @@ -373,8 +373,8 @@ Resources: @@ -141,14 +127,11 @@ { "notebook": { -- "path": "/Workspace/Users/[USERNAME]/.bundle/project_name_[UNIQUE_NAME]/dev/files/src/dlt_pipeline" -+ "path": "/Workspace/Users/[USERNAME]/.bundle/project_name_[UNIQUE_NAME]/prod/files/src/dlt_pipeline" +- "path": "/Workspace/Users/[USERNAME]/.bundle/project_name_[UNIQUE_NAME]/dev/files/src/pipeline" ++ "path": "/Workspace/Users/[USERNAME]/.bundle/project_name_[UNIQUE_NAME]/prod/files/src/pipeline" } } ], diff --git a/acceptance/bundle/templates/default-python/serverless/output/my_default_python/pyproject.toml b/acceptance/bundle/templates/default-python/serverless/output/my_default_python/pyproject.toml index f0fa52bc627..5049f8a3ea5 100644 --- a/acceptance/bundle/templates/default-python/serverless/output/my_default_python/pyproject.toml +++ b/acceptance/bundle/templates/default-python/serverless/output/my_default_python/pyproject.toml @@ -8,7 +8,7 @@ requires-python = ">= 3.11" dev = [ "pytest", - # Code completion support for DLT, also install databricks-connect + # Code completion support for Lakeflow Declarative Pipelines, also install databricks-connect "databricks-dlt", # databricks-connect can be used to run parts of this project locally. diff --git a/acceptance/bundle/templates/default-python/serverless/output/my_default_python/resources/my_default_python.pipeline.yml b/acceptance/bundle/templates/default-python/serverless/output/my_default_python/resources/my_default_python.pipeline.yml index f8a0521db5e..545a5ce5561 100644 --- a/acceptance/bundle/templates/default-python/serverless/output/my_default_python/resources/my_default_python.pipeline.yml +++ b/acceptance/bundle/templates/default-python/serverless/output/my_default_python/resources/my_default_python.pipeline.yml @@ -9,7 +9,7 @@ resources: serverless: true libraries: - notebook: - path: ../src/dlt_pipeline.ipynb + path: ../src/pipeline.ipynb configuration: bundle.sourcePath: ${workspace.file_path}/src diff --git a/acceptance/bundle/templates/default-python/serverless/output/my_default_python/src/dlt_pipeline.ipynb b/acceptance/bundle/templates/default-python/serverless/output/my_default_python/src/pipeline.ipynb similarity index 89% rename from acceptance/bundle/templates/default-python/serverless/output/my_default_python/src/dlt_pipeline.ipynb rename to acceptance/bundle/templates/default-python/serverless/output/my_default_python/src/pipeline.ipynb index 8a02183e750..8845c185df4 100644 --- a/acceptance/bundle/templates/default-python/serverless/output/my_default_python/src/dlt_pipeline.ipynb +++ b/acceptance/bundle/templates/default-python/serverless/output/my_default_python/src/pipeline.ipynb @@ -12,9 +12,9 @@ } }, "source": [ - "# DLT pipeline\n", + "# Lakeflow Declarative Pipeline\n", "\n", - "This Delta Live Tables (DLT) definition is executed using a pipeline defined in resources/my_default_python.pipeline.yml." + "This Lakeflow Declarative Pipeline (LDP) definition is executed using a pipeline defined in resources/my_default_python.pipeline.yml." ] }, { @@ -72,7 +72,7 @@ "notebookMetadata": { "pythonIndentUnit": 2 }, - "notebookName": "dlt_pipeline", + "notebookName": "pipeline", "widgets": {} }, "kernelspec": { diff --git a/acceptance/bundle/templates/experimental-jobs-as-code/output/my_jobs_as_code/src/dlt_pipeline.ipynb b/acceptance/bundle/templates/experimental-jobs-as-code/output/my_jobs_as_code/src/dlt_pipeline.ipynb index a1ba11f7201..ad3d366482d 100644 --- a/acceptance/bundle/templates/experimental-jobs-as-code/output/my_jobs_as_code/src/dlt_pipeline.ipynb +++ b/acceptance/bundle/templates/experimental-jobs-as-code/output/my_jobs_as_code/src/dlt_pipeline.ipynb @@ -14,7 +14,7 @@ "source": [ "# DLT pipeline\n", "\n", - "This Delta Live Tables (DLT) definition is executed using a pipeline defined in resources/my_jobs_as_code.pipeline.yml." + "This Lakeflow Declarative Pipeline (LDP) definition is executed using a pipeline defined in resources/my_jobs_as_code.pipeline.yml." ] }, { diff --git a/libs/template/templates/default-python/databricks_template_schema.json b/libs/template/templates/default-python/databricks_template_schema.json index 1b99fefb15d..c4207a3b352 100644 --- a/libs/template/templates/default-python/databricks_template_schema.json +++ b/libs/template/templates/default-python/databricks_template_schema.json @@ -20,7 +20,7 @@ "type": "string", "default": "yes", "enum": ["yes", "no"], - "description": "Include a stub (sample) Delta Live Tables pipeline in '{{.project_name}}{{path_separator}}src'", + "description": "Include a stub (sample) Lakeflow Declarative Pipeline in '{{.project_name}}{{path_separator}}src'", "order": 3 }, "include_python": { diff --git a/libs/template/templates/default-python/template/__preamble.tmpl b/libs/template/templates/default-python/template/__preamble.tmpl index 69b769cde9e..e579c34fb08 100644 --- a/libs/template/templates/default-python/template/__preamble.tmpl +++ b/libs/template/templates/default-python/template/__preamble.tmpl @@ -17,7 +17,7 @@ This file only template directives; it is skipped for the actual output. {{end}} {{if $notDLT}} - {{skip "{{.project_name}}/src/dlt_pipeline.ipynb"}} + {{skip "{{.project_name}}/src/pipeline.ipynb"}} {{skip "{{.project_name}}/resources/{{.project_name}}.pipeline.yml"}} {{end}} diff --git a/libs/template/templates/default-python/template/{{.project_name}}/pyproject.toml.tmpl b/libs/template/templates/default-python/template/{{.project_name}}/pyproject.toml.tmpl index 5c06441fe84..7dd4694ea98 100644 --- a/libs/template/templates/default-python/template/{{.project_name}}/pyproject.toml.tmpl +++ b/libs/template/templates/default-python/template/{{.project_name}}/pyproject.toml.tmpl @@ -8,7 +8,7 @@ requires-python = ">= 3.11" dev = [ "pytest", - # Code completion support for DLT, also install databricks-connect + # Code completion support for Lakeflow Declarative Pipelines, also install databricks-connect "databricks-dlt", # databricks-connect can be used to run parts of this project locally. diff --git a/libs/template/templates/default-python/template/{{.project_name}}/resources/{{.project_name}}.job.yml.tmpl b/libs/template/templates/default-python/template/{{.project_name}}/resources/{{.project_name}}.job.yml.tmpl index 3d8d7e318ab..419c4cd2e94 100644 --- a/libs/template/templates/default-python/template/{{.project_name}}/resources/{{.project_name}}.job.yml.tmpl +++ b/libs/template/templates/default-python/template/{{.project_name}}/resources/{{.project_name}}.job.yml.tmpl @@ -1,6 +1,6 @@ # The main job for {{.project_name}}. -{{- /* Clarify what this job is for for DLT-only users. */}} +{{- /* Clarify what this job is for Lakeflow Declarative Pipelines only users. */}} {{if and (eq .include_dlt "yes") (and (eq .include_notebook "no") (eq .include_python "no")) -}} # This job runs {{.project_name}}_pipeline on a schedule. {{end -}} diff --git a/libs/template/templates/default-python/template/{{.project_name}}/resources/{{.project_name}}.pipeline.yml.tmpl b/libs/template/templates/default-python/template/{{.project_name}}/resources/{{.project_name}}.pipeline.yml.tmpl index 2e858d681ae..093b087a013 100644 --- a/libs/template/templates/default-python/template/{{.project_name}}/resources/{{.project_name}}.pipeline.yml.tmpl +++ b/libs/template/templates/default-python/template/{{.project_name}}/resources/{{.project_name}}.pipeline.yml.tmpl @@ -19,7 +19,7 @@ resources: {{- end}} libraries: - notebook: - path: ../src/dlt_pipeline.ipynb + path: ../src/pipeline.ipynb configuration: bundle.sourcePath: ${workspace.file_path}/src diff --git a/libs/template/templates/default-python/template/{{.project_name}}/src/dlt_pipeline.ipynb.tmpl b/libs/template/templates/default-python/template/{{.project_name}}/src/pipeline.ipynb.tmpl similarity index 91% rename from libs/template/templates/default-python/template/{{.project_name}}/src/dlt_pipeline.ipynb.tmpl rename to libs/template/templates/default-python/template/{{.project_name}}/src/pipeline.ipynb.tmpl index d0286639f25..2060557a30b 100644 --- a/libs/template/templates/default-python/template/{{.project_name}}/src/dlt_pipeline.ipynb.tmpl +++ b/libs/template/templates/default-python/template/{{.project_name}}/src/pipeline.ipynb.tmpl @@ -12,9 +12,9 @@ } }, "source": [ - "# DLT pipeline\n", + "# Lakeflow Declarative Pipeline\n", "\n", - "This Delta Live Tables (DLT) definition is executed using a pipeline defined in resources/{{.project_name}}.pipeline.yml." + "This Lakeflow Declarative Pipeline (LDP) definition is executed using a pipeline defined in resources/{{.project_name}}.pipeline.yml." ] }, { @@ -86,7 +86,7 @@ "notebookMetadata": { "pythonIndentUnit": 2 }, - "notebookName": "dlt_pipeline", + "notebookName": "pipeline", "widgets": {} }, "kernelspec": { diff --git a/libs/template/templates/experimental-jobs-as-code/template/{{.project_name}}/src/dlt_pipeline.ipynb.tmpl b/libs/template/templates/experimental-jobs-as-code/template/{{.project_name}}/src/dlt_pipeline.ipynb.tmpl index 629106dbf36..105eb9726ce 100644 --- a/libs/template/templates/experimental-jobs-as-code/template/{{.project_name}}/src/dlt_pipeline.ipynb.tmpl +++ b/libs/template/templates/experimental-jobs-as-code/template/{{.project_name}}/src/dlt_pipeline.ipynb.tmpl @@ -14,7 +14,7 @@ "source": [ "# DLT pipeline\n", "\n", - "This Delta Live Tables (DLT) definition is executed using a pipeline defined in resources/{{.project_name}}.pipeline.yml." + "This Lakeflow Declarative Pipeline (LDP) definition is executed using a pipeline defined in resources/{{.project_name}}.pipeline.yml." ] }, { From 3716ffa10af3db193949ad2f0f0d82d06c1505cf Mon Sep 17 00:00:00 2001 From: Shreyas Goenka Date: Mon, 25 Aug 2025 14:54:05 +0200 Subject: [PATCH 2/5] backlink PR --- NEXT_CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NEXT_CHANGELOG.md b/NEXT_CHANGELOG.md index 7ed7e0d5a87..40898591cc1 100644 --- a/NEXT_CHANGELOG.md +++ b/NEXT_CHANGELOG.md @@ -16,6 +16,6 @@ See more details here: ([#3225](https://github.com/databricks/cli/pull/3225)) ### Bundles * [Breaking Change] Remove deprecated path fallback mechanism for jobs and pipelines ([#3225](https://github.com/databricks/cli/pull/3225)) -* Rename Delta Live Tables to Lakeflow Declarative Pipelines in the default-pipeline template. +* Rename Delta Live Tables to Lakeflow Declarative Pipelines in the default-pipeline template ([#3476](https://github.com/databricks/cli/pull/3476)). ### API Changes From 71a4d30fbac13f6a39ba9f63b17c92140632df76 Mon Sep 17 00:00:00 2001 From: Shreyas Goenka Date: Mon, 25 Aug 2025 14:54:27 +0200 Subject: [PATCH 3/5] - --- acceptance/bundle/debug/out.stderr.terraform.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acceptance/bundle/debug/out.stderr.terraform.txt b/acceptance/bundle/debug/out.stderr.terraform.txt index d298952d593..99c0d4688fd 100644 --- a/acceptance/bundle/debug/out.stderr.terraform.txt +++ b/acceptance/bundle/debug/out.stderr.terraform.txt @@ -64,7 +64,7 @@ 10:07:59 Debug: Apply pid=12345 mutator=metadata.AnnotatePipelines 10:07:59 Debug: Apply pid=12345 mutator=terraform.Initialize 10:07:59 Debug: Using Terraform from DATABRICKS_TF_EXEC_PATH at [TERRAFORM] pid=12345 mutator=terraform.Initialize -10:07:59 Debug: DATABRICKS_TF_PROVIDER_VERSION as 1.84.0 does not match the current version 1.87.0, ignoring DATABRICKS_TF_CLI_CONFIG_FILE pid=12345 mutator=terraform.Initialize +10:07:59 Debug: Using Terraform CLI config from DATABRICKS_TF_CLI_CONFIG_FILE at [DATABRICKS_TF_CLI_CONFIG_FILE] pid=12345 mutator=terraform.Initialize 10:07:59 Debug: Environment variables for Terraform: ...redacted... pid=12345 mutator=terraform.Initialize 10:07:59 Debug: Apply pid=12345 mutator=scripts.postinit 10:07:59 Debug: No script defined for postinit, skipping pid=12345 mutator=scripts.postinit From 15a93848d805d47885a5fb614a011c4a6fcb7b87 Mon Sep 17 00:00:00 2001 From: Shreyas Goenka Date: Mon, 25 Aug 2025 14:55:00 +0200 Subject: [PATCH 4/5] - --- NEXT_CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NEXT_CHANGELOG.md b/NEXT_CHANGELOG.md index 40898591cc1..23715f17da3 100644 --- a/NEXT_CHANGELOG.md +++ b/NEXT_CHANGELOG.md @@ -16,6 +16,6 @@ See more details here: ([#3225](https://github.com/databricks/cli/pull/3225)) ### Bundles * [Breaking Change] Remove deprecated path fallback mechanism for jobs and pipelines ([#3225](https://github.com/databricks/cli/pull/3225)) -* Rename Delta Live Tables to Lakeflow Declarative Pipelines in the default-pipeline template ([#3476](https://github.com/databricks/cli/pull/3476)). +* Rename Delta Live Tables to Lakeflow Declarative Pipelines in the default-python template ([#3476](https://github.com/databricks/cli/pull/3476)). ### API Changes From 6f0ba6077d2777cf5c2e3b4cffa39b6084dc5e25 Mon Sep 17 00:00:00 2001 From: Shreyas Goenka Date: Mon, 25 Aug 2025 15:05:20 +0200 Subject: [PATCH 5/5] fix prompt --- acceptance/bundle/help/bundle-init/output.txt | 2 +- libs/template/template.go | 2 +- libs/template/template_test.go | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/acceptance/bundle/help/bundle-init/output.txt b/acceptance/bundle/help/bundle-init/output.txt index bd46ef98056..2eca47a0f22 100644 --- a/acceptance/bundle/help/bundle-init/output.txt +++ b/acceptance/bundle/help/bundle-init/output.txt @@ -3,7 +3,7 @@ Initialize using a bundle template to get started quickly. TEMPLATE_PATH optionally specifies which template to use. It can be one of the following: -- default-python: The default Python template for Notebooks / Delta Live Tables / Workflows +- default-python: The default Python template for Notebooks / Lakeflow Declarative Pipelines / Workflows - default-sql: The default SQL template for .sql files that run with Databricks SQL - dbt-sql: The dbt SQL template (databricks.com/blog/delivering-cost-effective-data-real-time-dbt-and-databricks) - mlops-stacks: The Databricks MLOps Stacks template (github.com/databricks/mlops-stacks) diff --git a/libs/template/template.go b/libs/template/template.go index aa9609380d3..22ecb074134 100644 --- a/libs/template/template.go +++ b/libs/template/template.go @@ -38,7 +38,7 @@ const ( var databricksTemplates = []Template{ { name: DefaultPython, - description: "The default Python template for Notebooks / Delta Live Tables / Workflows", + description: "The default Python template for Notebooks / Lakeflow Declarative Pipelines / Workflows", Reader: &builtinReader{name: string(DefaultPython)}, Writer: &writerWithFullTelemetry{defaultWriter: defaultWriter{name: DefaultPython}}, }, diff --git a/libs/template/template_test.go b/libs/template/template_test.go index 0caad048f51..3f6168e38d1 100644 --- a/libs/template/template_test.go +++ b/libs/template/template_test.go @@ -8,7 +8,7 @@ import ( ) func TestTemplateHelpDescriptions(t *testing.T) { - expected := `- default-python: The default Python template for Notebooks / Delta Live Tables / Workflows + expected := `- default-python: The default Python template for Notebooks / Lakeflow Declarative Pipelines / Workflows - default-sql: The default SQL template for .sql files that run with Databricks SQL - dbt-sql: The dbt SQL template (databricks.com/blog/delivering-cost-effective-data-real-time-dbt-and-databricks) - mlops-stacks: The Databricks MLOps Stacks template (github.com/databricks/mlops-stacks) @@ -18,7 +18,7 @@ func TestTemplateHelpDescriptions(t *testing.T) { func TestTemplateOptions(t *testing.T) { expected := []cmdio.Tuple{ - {Name: "default-python", Id: "The default Python template for Notebooks / Delta Live Tables / Workflows"}, + {Name: "default-python", Id: "The default Python template for Notebooks / Lakeflow Declarative Pipelines / Workflows"}, {Name: "default-sql", Id: "The default SQL template for .sql files that run with Databricks SQL"}, {Name: "dbt-sql", Id: "The dbt SQL template (databricks.com/blog/delivering-cost-effective-data-real-time-dbt-and-databricks)"}, {Name: "mlops-stacks", Id: "The Databricks MLOps Stacks template (github.com/databricks/mlops-stacks)"},