Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion acceptance/bundle/help/bundle-init/output.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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."
]
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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."
]
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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."
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion libs/template/template.go
Original file line number Diff line number Diff line change
Expand Up @@ -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}},
},
Expand Down
4 changes: 2 additions & 2 deletions libs/template/template_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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)"},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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."
]
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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."
]
},
{
Expand Down
Loading