Forum Discussion
Pipeline Failed: Error Code 20302 User configuration Issue (Dataflow)
- 1 year ago
We raised a ticket with Microsoft and the solution was besides changing the 'Owned by' of the pipeline by opening up 'Settings' of the pipeline and selecting 'Take over' button you also have to make a change within the pipeline. In our case within the dataflow of the pipeline in the properties of the General or Settings tab I modified the text by tweaking the name or adding a description then saved. This will then change the 'Last Modified By' to the new owner. Having this two items changed will allow the pipeline to run under the new owner. Previously we only changed the 'Owned by'. Here is the link for the solution: Take ownership of Fabric items - Microsoft Fabric | Microsoft Learn
For completeness, we also got this error when dynamically setting the Dataflow Id instead of manually selecting a dataflow from the dropdown list. It turned out that selecting one from the dropdown list was automatically adding
"dataflowType": "DataflowFabric"
to the pipeline JSON (within the object representing the relevent activity), whilst it was missing if using the dynamic options. Manually inserting that field into the "typeProperties" JSON object resolved this issue. Apparently this identifies it as a Gen2 DataFlow (instead of Gen1).