diff --git a/acceptance/bundle/help/bundle-init/output.txt b/acceptance/bundle/help/bundle-init/output.txt index 2eca47a0f2..b66253e08a 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 / Lakeflow Declarative Pipelines / Workflows +- default-python: The default Python template for Notebooks and Lakeflow - 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/acceptance/bundle/templates/default-python/classic/output/my_default_python/src/pipeline.ipynb b/acceptance/bundle/templates/default-python/classic/output/my_default_python/src/pipeline.ipynb index 8845c185df..53148beff1 100644 --- a/acceptance/bundle/templates/default-python/classic/output/my_default_python/src/pipeline.ipynb +++ b/acceptance/bundle/templates/default-python/classic/output/my_default_python/src/pipeline.ipynb @@ -14,7 +14,7 @@ "source": [ "# Lakeflow Declarative Pipeline\n", "\n", - "This Lakeflow Declarative Pipeline (LDP) definition is executed using a pipeline defined in resources/my_default_python.pipeline.yml." + "This Lakeflow Declarative Pipeline definition is executed using a pipeline defined in resources/my_default_python.pipeline.yml." ] }, { diff --git a/acceptance/bundle/templates/default-python/serverless/output/my_default_python/src/pipeline.ipynb b/acceptance/bundle/templates/default-python/serverless/output/my_default_python/src/pipeline.ipynb index 8845c185df..53148beff1 100644 --- a/acceptance/bundle/templates/default-python/serverless/output/my_default_python/src/pipeline.ipynb +++ b/acceptance/bundle/templates/default-python/serverless/output/my_default_python/src/pipeline.ipynb @@ -14,7 +14,7 @@ "source": [ "# Lakeflow Declarative Pipeline\n", "\n", - "This Lakeflow Declarative Pipeline (LDP) definition is executed using a pipeline defined in resources/my_default_python.pipeline.yml." + "This Lakeflow Declarative Pipeline definition is executed using a pipeline defined in resources/my_default_python.pipeline.yml." ] }, { 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 ad3d366482..9b1c66629e 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 Lakeflow Declarative Pipeline (LDP) definition is executed using a pipeline defined in resources/my_jobs_as_code.pipeline.yml." + "This Lakeflow Declarative Pipeline definition is executed using a pipeline defined in resources/my_jobs_as_code.pipeline.yml." ] }, { diff --git a/libs/template/template.go b/libs/template/template.go index 22ecb07413..48dd5f9236 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 / Lakeflow Declarative Pipelines / Workflows", + description: "The default Python template for Notebooks and Lakeflow", 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 3f6168e38d..c738bac801 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 / Lakeflow Declarative Pipelines / Workflows + expected := `- default-python: The default Python template for Notebooks and Lakeflow - 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 / Lakeflow Declarative Pipelines / Workflows"}, + {Name: "default-python", Id: "The default Python template for Notebooks and Lakeflow"}, {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)"}, diff --git a/libs/template/templates/default-python/template/{{.project_name}}/src/pipeline.ipynb.tmpl b/libs/template/templates/default-python/template/{{.project_name}}/src/pipeline.ipynb.tmpl index 2060557a30..a8e35c53be 100644 --- a/libs/template/templates/default-python/template/{{.project_name}}/src/pipeline.ipynb.tmpl +++ b/libs/template/templates/default-python/template/{{.project_name}}/src/pipeline.ipynb.tmpl @@ -14,7 +14,7 @@ "source": [ "# Lakeflow Declarative Pipeline\n", "\n", - "This Lakeflow Declarative Pipeline (LDP) definition is executed using a pipeline defined in resources/{{.project_name}}.pipeline.yml." + "This Lakeflow Declarative Pipeline definition is executed using a pipeline defined in resources/{{.project_name}}.pipeline.yml." ] }, { 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 105eb9726c..6c64b4378a 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 Lakeflow Declarative Pipeline (LDP) definition is executed using a pipeline defined in resources/{{.project_name}}.pipeline.yml." + "This Lakeflow Declarative Pipeline definition is executed using a pipeline defined in resources/{{.project_name}}.pipeline.yml." ] }, {