- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-23-2025 11:55 PM
What is this legacy pipeline warning? I cannot find anything related on the internet and related forums. Thanks in advance.
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-25-2025 12:41 AM
Ah I've found the issue. There is one more diff:
This is the new key-value for target schema:
"schema": "dev",
This is the old key-value for target schema:
"target": "prod"
After changing the key from "target" to "schema", the warning has gone. Thanks anyway.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2025 08:03 AM
Hi @aonurdemir,
Thanks for your question. Are you using run_as
configuration for pipeline, and how did you provision it, via UI or DABs?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2025 11:06 PM
Hi @Alberto_Umana,
I provision it via UI. And, this is the json config of it:
{
"id": "...",
"pipeline_type": "WORKSPACE",
"development": true,
"continuous": false,
"channel": "PREVIEW",
"libraries": [
...
],
"name": "Prod Lookup Pipeline",
"serverless": true,
"catalog": "...",
"configuration": {
"helpers-path": "...",
"s3-base-topic-path-prefix": "...",
"s3-base-topic-path-daily-suffix": "..."
},
"target": "prod"
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-25-2025 12:28 AM
I realized that creating pipeline button has changed. Databricks has brought new options to the create pipeline button. After selecting create etl option, the new json configuration is seen as the following:
{
"development": true,
"continuous": false,
"channel": "CURRENT",
"photon": true,
"libraries": [
...
],
"name": "Test pipe",
"serverless": true,
"catalog": "...",
"schema": "dev",
"data_sampling": false,
"budget_policy_id": "..."
}
The diffs are those:
- "photon": true,
- "data_sampling": false,
- "budget_policy_id": "..."
Is this relevant?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-25-2025 12:41 AM
Ah I've found the issue. There is one more diff:
This is the new key-value for target schema:
"schema": "dev",
This is the old key-value for target schema:
"target": "prod"
After changing the key from "target" to "schema", the warning has gone. Thanks anyway.

