Forum Discussion

jp_here2026's avatar
jp_here2026
Frequent Visitor
1 month ago
Solved

Gen2 Dataflow (CI/CD)

I am facing refresh error in my Fabric pipeline. Irony is i am facing this error only for 3 APIs out of 5 APIs. Other 2 APIs working fine. I tried one troubleshooot by replacing symbols like "." from...
  • Murtaza_Ghafoor's avatar
    1 month ago

    jp_here2026 
    This is issue more probably due to increase in datasize.
    and the problem occurs when you try to write this into lakehouse.

    Steps to follow:
    1-To confirm this only try to limit the load of data like first 100 rows for each 

    Table.FirstN(Source,100)

    If this solve the issue it means you have data limitation constraint.

     

    if not then it means it is definitely related to Schema or Fabric Related issue.

    2- Next recommendation is try to write data for failed piplines in another lakehouse or in another warehouse 

        This helps to identy whether the problem is with the source or destination, 

        further write to in a new table, if succeed then it means you need to create new Delta tables in lakehouse.

    Check the fabric capacity size.

     

    My suggestion:

     

    1. Lakehouse write timeout due to increased data volume or slower writes- Most Likely
    2. Recent Microsoft Fabric backend issue/regression, Most likely
    3. API response has changed (size or schema) due to schema drift.-Less Likely coz pipelines were working previously.
    4. Corrupted Delta Table metadata, need to create new table.- Less Likely

    If this helps, ✓ Mark as Kudos | Help Others