- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-2024 02:39 AM
{"error_code":"INVALID_PARAMETER_VALUE","message":"Cannot modify catalog of an existing pipeline. Existing catalog: 'doha'. Requested catalog: ''"}
kindly help
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-02-2024 03:28 AM
Hi @anantkharat ,
Can you please try something like
pipelines.update(pipeline_id, configuration=configuration, catalog='doha')
From the error message it says catalog was empty.
Check this section https://docs.databricks.com/api/workspace/pipelines/update#catalog
A catalog in Unity Catalog to publish data from this pipeline to. If target
is specified, tables in this pipeline are published to a target
schema inside catalog
(for example, catalog
.target
.table
). If target
is not specified, no data is published to Unity Catalog.
Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-02-2024 03:28 AM
Hi @anantkharat ,
Can you please try something like
pipelines.update(pipeline_id, configuration=configuration, catalog='doha')
From the error message it says catalog was empty.
Check this section https://docs.databricks.com/api/workspace/pipelines/update#catalog
A catalog in Unity Catalog to publish data from this pipeline to. If target
is specified, tables in this pipeline are published to a target
schema inside catalog
(for example, catalog
.target
.table
). If target
is not specified, no data is published to Unity Catalog.
Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2024 01:34 AM
Thank you for accepting the solution, I am glad it worked.