Forum Discussion

FVarelaI's avatar
FVarelaI
Regular Visitor
8 months ago
Solved

Dataflow Gen 2 output differs from Lakehouse table values - Data inconsistency issue

I have a Dataflow Gen 2 that give me a result like this:
Project (str) || Pending Tasks (int) || Overdue Task (int) || dataDate (datetime)
P406 || 59 || 5 || 18-11-2025 12:15:00
P426 || 1 || 0 || 18-11-2025 12:15:00

P418 || 6 || 2 || 18-11-2025 12:15:00

 

These results are loaded into a Lakehouse, anexing them into a specific table. There is no other step between the obtained result and the writing. The problem is the data I read in that table after the writing:

Project (str) || Pending Tasks (int) || Overdue Task (int) || dataDate (datetime)
P406 || 78 || 23 || 18-11-2025 12:15:00
P426 || 8 || 5 || 18-11-2025 12:15:00

P418 || 6 || 2 || 18-11-2025 12:15:00

There is a discrepance between the Dataflow results and the writing. I even duplicate the code (in the same dataflow) and loaded this duplicate M Query into a Warehouse and obtained another different writing:

Project (str) || Pending Tasks (int) || Overdue Task (int) || dataDate (datetime)
P406 || 2 || 36 || 18-11-2025 12:15:00
P426 || 21 || 10 || 18-11-2025 12:15:00

P418 || 1 || 1 || 18-11-2025 12:15:00

I really don't understand whats happening here, the data was writing perfectly fine 2 or 3 days ago and received no modification.

The complete flow consists in obtain data with a notebook, from an API; save that data into a Lakehouse; retrieve that data from a Dataflow and ETL that (i know this is, maybe, an inefficient way to work); and then use that ETLed data to feed a PBI panel. (This is real data btw)

Is there a known problem that explains this?
Thanks.

8 Replies