From 184a92d70f2a167c7d99acc54f08b98b773f83bd Mon Sep 17 00:00:00 2001 From: Alex Ott Date: Fri, 19 Jul 2024 15:54:17 +0200 Subject: [PATCH] [Doc] Document `serverless` flag in `databricks_pipeline` (#3797) ## Changes With GA of Serverless DLT pipelines we need to add this flag to the documentation ## Tests - [ ] `make test` run locally - [x] relevant change in `docs/` folder - [ ] covered with integration tests in `internal/acceptance` - [ ] relevant acceptance tests are passing - [ ] using Go SDK --- docs/resources/pipeline.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/resources/pipeline.md b/docs/resources/pipeline.md index 7fa7a90e76..8517845acd 100644 --- a/docs/resources/pipeline.md +++ b/docs/resources/pipeline.md @@ -78,9 +78,10 @@ The following arguments are supported: * `continuous` - A flag indicating whether to run the pipeline continuously. The default value is `false`. * `development` - A flag indicating whether to run the pipeline in development mode. The default value is `true`. * `photon` - A flag indicating whether to use Photon engine. The default value is `false`. +* `serverless` - An optional flag indicating if serverless compute should be used for this DLT pipeline. Requires `catalog` to be set, as it could be used only with Unity Catalog. * `catalog` - The name of catalog in Unity Catalog. *Change of this parameter forces recreation of the pipeline.* (Conflicts with `storage`). * `target` - The name of a database (in either the Hive metastore or in a UC catalog) for persisting pipeline output data. Configuring the target setting allows you to view and query the pipeline output data from the Databricks UI. -* `edition` - optional name of the [product edition](https://docs.databricks.com/data-engineering/delta-live-tables/delta-live-tables-concepts.html#editions). Supported values are: `CORE`, `PRO`, `ADVANCED` (default). +* `edition` - optional name of the [product edition](https://docs.databricks.com/data-engineering/delta-live-tables/delta-live-tables-concepts.html#editions). Supported values are: `CORE`, `PRO`, `ADVANCED` (default). Not required when `serverless` is set to `true`. * `channel` - optional name of the release channel for Spark version used by DLT pipeline. Supported values are: `CURRENT` (default) and `PREVIEW`. ### notification block