User Profile
009co
Helper IV
Joined 5 years ago
User Widgets
Contributions
Re: Dataflow Gen 2 dataflow queries with PIVOT long running, never return results
Hey miguel, it appears that Dataflow Gen 2 simply cannot do the pivot transform. My guess is that it is related to lack of resources. But maybe it is just on my trial account? But are you able to use the data I linked below to replicate my steps?2.9KViews0likes1CommentRe: Create new KQL database - stuck on loading indefinitely after being created
Simply removing &clientSideAuth=0 from the url string allowed the url to be resolved! I was then able to activate the database. Even after activating the database, if I try using the full url that includes &clientSideAuth=0 it then goes in to the endless loading. RE the &clientSideAuth=0 part of the url string: 1) It is somehow being added to my url but it isn't for other people? 2) It is being added to other people's url too but for some reason it works for them but not me? Thanks!2.9KViews0likes0CommentsRe: Create new KQL database - stuck on loading indefinitely after being created
I just tried creating new KQL Database as above and it gets stuck on loading. That page's url: https://app.powerbi.com/groups/0817e2db-1f14-458e-9f73-aafb5fea21d1/databases/9b950f27-6e36-4b13-81e4-04296f0bcbee?experience=power-bi&clientSideAuth=0 Thanks! Edited to add: I have another unresolved unrelated issue (see thread link below) where a very simple Dataflow Gen2 query also runs indefinitely / times out. Maybe related to this KQL Database issue? Possibly my Fabric instance is under resourced or otherwise degraded? https://community.fabric.microsoft.com/t5/Dataflows/Dataflow-Gen-2-dataflow-queries-with-PIVOT-long-running-never/m-p/32681222.9KViews0likes2CommentsRe: Create new KQL database - stuck on loading indefinitely after being created
Thanks for reply GeethaT Yes that is what I am doing. Here are screenshots: Create new KQL Database However instead of showing the detail page for the new KQL Database it gets stuck indefinitely on the Loading page. If I try to go back to the Workspace and try to open the new KQL Database it gets stuck indefinitely on the Loading page. I have not yet been able to create a KQL Database successfully in many many attempts. It always gets stuck on the loading page and never goes past it. Something in my Fabric instance seems to be off.3KViews0likes4CommentsCreate new KQL database - stuck on loading indefinitely after being created
I am going through one of the Fabric real time analytics tutorials https://learn.microsoft.com/en-us/fabric/real-time-analytics/tutorial-1-resources I am having problems with the create new KQL database step. After entering the new KQL database name, and clicking Create button, the page doesn't show the database details page instead it shows "loading" indefinitely. I have tried this several times with existing and new Workspaces with no success. It seems like the KQL database creation process has issues. When I try to navigate way from the loading page by clicking Home button it takes a few seconds. When I navigate back to the Workspace where i created the new KQL database, i can see the new KQL database item. However if I try to open it then I get back into the "loading" indefinitely situation. This prevents me from seeing the new KQL database details page and enabling OneLake availability per the tutorial. I am not able to use the new KQL database for the purposes of the tutorial. Any ideas on what is happening here? I am on the Fabric trial btw.Solved3KViews0likes6CommentsRe: Dataflow Gen 2 dataflow queries with PIVOT long running, never return results
Thanks for following up. Cardinality is low. Parameter column has only 3 distinct values eg pivots to give 3 columns. It completes quickly successfully in Power BI Desktop. I created Dataset containing the 4 Lakehouse Tables, then exported Dataset tables to csv and put them here https://github.com/sitrucp/Deadman-River Test: * Upload csv files to Lakehouse Tables * Create Dataflow Gen2 query that => appends 4 Tables => Pivot appended data on Parameter column with Value resulting in one row per Date with 3 columns (Discharge, Level, Precipitation) => Data destination to new Lakehouse Table. => Run Dataflow Gen2 Edit to add: I actually did the test described above in a brand new Workspace, Lakehouse, Dataflow Gen2, etc and got same results eg the dataflow with the pivot will not complete and not ever create new Lakehouse Table. ----------------------------- More details on dataflow publish fail / message that I get: The dataflow could not be saved. The Model evaluation was cancelled. Please try again later. Session ID: 9b7d629f-404f-0562-9575-1095d2ed09ee Root activity ID:: 31686fac-a385-4266-bdb8-054688650a55 Time: 2023-06-05T13:59:40.677Z3.2KViews0likes0CommentsRe: Lakehouse staging "ghosts" - intended to be hidden but show when dataflow gen 2 dataflows created
From Dataflow Gen 2 Known Issues: https://learn.microsoft.com/en-us/fabric/data-factory/known-issue-staging-artifact Known issue - Staging artifacts aren't hidden and can be modified by the end-user Article 06/06/2023 2 contributors Feedback In this article Symptoms Solutions and workarounds In a new workspace, when an end-user first launches a Dataflow Gen2, a set of staging artifacts, such as a new Lakehouse and a new Data Warehouse, are automatically created for the whole workspace. These artifacts can be used for a set of functionalities available for Dataflow Gen2. A user is able to see these staging artifacts in the workspace list and lineage and being able to interact with these artifacts. If a user deletes or modifies any of these staging artifacts, the workspace can be set in a state that won't be able to use these artifacts because of misconfiguration. APPLIES TO: ✔️ Dataflow Gen2 in Microsoft Fabric Status: Open Problem area: Data Factory Symptoms When trying to refresh a Dataflow gen2 and the error refers to: null Error: Couldn't refresh the entity because of an issue with the mashup document MashupException.Error: PowerBIEntityNotFound: PowerBIEntityNotFound After deleting the staging artifacts, you're unable to get them back. Solutions and workarounds Recreate your Dataflow Gen2 solution in a new workspace.2.6KViews0likes0CommentsDataflow Gen 2 query or table changes appear to cause errors or failures
My scenario is pretty simple: * csv files that have been manually uploaded to Lakehouse Files * Dataflow Gen 2 queries sourcing from these Lakehouse csv files * Dataflow Gen 2 Data destination to Lakehouse tables I am finding that any changes after creating a Dataflow Gen 2 such adding new or renamed query columns, new or renamed data destination Lakehouse tables can cause errors or failures and the only apparent way to get past this is to delete the entire Workspace and start from scratch. I am guessing there are things happening in the staging artifacts that are not able to adapt to these changes or perhaps that the new query and table articifacts do not connect to new staging artifacts. This might be due to data pipeline artifacts that appear to be created automatically behind the scenes might not be updated when new dataflows or tables are created?Solved3.6KViews0likes3CommentsRe: Dataflow Gen 2 dataflow queries with PIVOT long running, never return results
Hi thanks, here is the query m-code. * If Pivot step is removed the query completes successfully, otherwise it doesn't has described in this thread. * The combined / appended tables have about 4500 records. * Parameter column has 3 distinct values eg pivots to give 3 columns.. let Source = Table.Combine({#"2011_to_2021_level_and_discharge", #"2013_to_2023_precipitation", #"2021_to_present_discharge", #"2021_to_present_level"}), #"Changed column type" = Table.TransformColumnTypes(Source, {{"Parameter", type text}, {"Value", type number}, {"Date", type datetime}}), #"Pivoted column" = Table.Pivot(Table.TransformColumnTypes(#"Changed column type", {{"Parameter", type text}}), List.Distinct(Table.TransformColumnTypes(#"Changed column type", {{"Parameter", type text}})[Parameter]), "Parameter", "Value") in #"Pivoted column"3.2KViews0likes4CommentsRe: Dataflow Gen 2 dataflow queries with PIVOT long running, never return results
When you mention that this has never returned results, you mean during a refresh? or while you were inside the Power Query editor? Both. Below is the dataflow query (named Data), that appends 4 tables and pivots on string column, waiting to show results. Note that the Source step does quickly show the appended results. It is the Pivot step that is the issue. Below is the dataflow (named Dataflow 2) which is the above but Published, waiting to show results. Below is screenshot of the above screen after maybe 20 or 30 minutes when it stops, shows the highlighted red triangle beside dataflow name, that pops the message about "The dataflow was could not be saved. The Model evaluation was cancelled. Please try again later." Below is query plan which is also waiting to show results (I guess the query has to return results before the query plan can be shown?)3.2KViews0likes0Comments
Data Privacy
Microsoft Fabric Community and Privacy
To learn more about how we manage your data, please review the Microsoft Fabric Community Data Privacy guide.