<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Something went wrong, Dataflow publish failed in Dataflow</title>
    <link>https://community.fabric.microsoft.com/t5/Dataflow/Something-went-wrong-Dataflow-publish-failed/m-p/3452513#M900</link>
    <description>&lt;P&gt;Hi, Im getting a strange and vague error when I publish my data flow gen 2.&lt;BR /&gt;&lt;BR /&gt;All I get is "Something went wrong" and can't seem to find out anything else about where it is going wrong.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can publish without error but then I get:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(Clicking See details just shows me the IDs of the flow and what time the error occurred.)&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;let
    FetchPage = (url) =&amp;gt;
        let
            Source = Json.Document(Web.Contents(url)),
            Data = Source[data],
            NextPage = Source[meta][pagination][next],
            More = Source[meta][pagination][more],
            Result = if More then Data &amp;amp; @FetchPage(NextPage) else Data
        in
            Result,
    StartURL = "https://api.wonde.com/v1.0/schools?page=1",
    AllData = FetchPage(StartURL),

...and so on with some more data changes&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 28 Sep 2023 22:14:18 GMT</pubDate>
    <dc:creator>danielmccluskey</dc:creator>
    <dc:date>2023-09-28T22:14:18Z</dc:date>
    <item>
      <title>Something went wrong, Dataflow publish failed</title>
      <link>https://community.fabric.microsoft.com/t5/Dataflow/Something-went-wrong-Dataflow-publish-failed/m-p/3452513#M900</link>
      <description>&lt;P&gt;Hi, Im getting a strange and vague error when I publish my data flow gen 2.&lt;BR /&gt;&lt;BR /&gt;All I get is "Something went wrong" and can't seem to find out anything else about where it is going wrong.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can publish without error but then I get:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(Clicking See details just shows me the IDs of the flow and what time the error occurred.)&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;let
    FetchPage = (url) =&amp;gt;
        let
            Source = Json.Document(Web.Contents(url)),
            Data = Source[data],
            NextPage = Source[meta][pagination][next],
            More = Source[meta][pagination][more],
            Result = if More then Data &amp;amp; @FetchPage(NextPage) else Data
        in
            Result,
    StartURL = "https://api.wonde.com/v1.0/schools?page=1",
    AllData = FetchPage(StartURL),

...and so on with some more data changes&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Sep 2023 22:14:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Dataflow/Something-went-wrong-Dataflow-publish-failed/m-p/3452513#M900</guid>
      <dc:creator>danielmccluskey</dc:creator>
      <dc:date>2023-09-28T22:14:18Z</dc:date>
    </item>
    <item>
      <title>Re: Something went wrong, Dataflow publish failed</title>
      <link>https://community.fabric.microsoft.com/t5/Dataflow/Something-went-wrong-Dataflow-publish-failed/m-p/3452529#M901</link>
      <description>&lt;P&gt;Hey!&lt;/P&gt;
&lt;P&gt;I'd recommend that you raise a support ticket so an engineer can take a closer look at it.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Sep 2023 22:35:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Dataflow/Something-went-wrong-Dataflow-publish-failed/m-p/3452529#M901</guid>
      <dc:creator>miguel</dc:creator>
      <dc:date>2023-09-28T22:35:54Z</dc:date>
    </item>
    <item>
      <title>Re: Something went wrong, Dataflow publish failed</title>
      <link>https://community.fabric.microsoft.com/t5/Dataflow/Something-went-wrong-Dataflow-publish-failed/m-p/3452969#M902</link>
      <description>&lt;P&gt;I managed to solve this, I was changing the base URL of the Web.Contents which meant the flow didn't know what connector to use everytime it changed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Fixed by using one Base URL and then using RelativePath and Query properly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So I changed this&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;let
    FetchPage = (url) =&amp;gt;
        let
            Source = Json.Document(Web.Contents(url)),
            Data = Source[data],
            NextPage = Source[meta][pagination][next],
            More = Source[meta][pagination][more],
            Result = if More then Data &amp;amp; @FetchPage(NextPage) else Data
        in
            Result,
    StartURL = "https://api.wonde.com/v1.0/schools?page=1",
    AllData = FetchPage(StartURL),

...and so on with some more data changes&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;into this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;FetchPage = (url) =&amp;gt;
        let
            baseURL = "https://api.wonde.com/v1.0/",
            relativePath = "schools",
            queryList = Uri.Parts(url)[Query],
            response = Web.Contents(baseURL,
            [
                RelativePath = relativePath,
                Query = queryList
            ]),
            Source = Json.Document(response),
            Data = Source[data],
            NextPage = Source[meta][pagination][next],
            More = Source[meta][pagination][more],
            Result = if More then Data &amp;amp; @FetchPage(NextPage) else Data
        in
            Result,
    StartURL = "https://api.wonde.com/v1.0/schools?page=1",
    AllData = FetchPage(StartURL),&lt;/LI-CODE&gt;&lt;P&gt;which means it always uses the same connector and is using the relative path correctly.&lt;/P&gt;</description>
      <pubDate>Fri, 29 Sep 2023 07:06:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Dataflow/Something-went-wrong-Dataflow-publish-failed/m-p/3452969#M902</guid>
      <dc:creator>danielmccluskey</dc:creator>
      <dc:date>2023-09-29T07:06:25Z</dc:date>
    </item>
    <item>
      <title>Re: Something went wrong, Dataflow publish failed</title>
      <link>https://community.fabric.microsoft.com/t5/Dataflow/Something-went-wrong-Dataflow-publish-failed/m-p/3461297#M917</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="624164" data-lia-user-login="danielmccluskey" class="lia-mention lia-mention-user"&gt;danielmccluskey&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;SPAN&gt;Glad that your issue got resolved. Please continue using Fabric Community for help regarding your queries.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Oct 2023 08:43:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Dataflow/Something-went-wrong-Dataflow-publish-failed/m-p/3461297#M917</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-10-05T08:43:41Z</dc:date>
    </item>
    <item>
      <title>Re: Something went wrong, Dataflow publish failed</title>
      <link>https://community.fabric.microsoft.com/t5/Dataflow/Something-went-wrong-Dataflow-publish-failed/m-p/3649114#M1610</link>
      <description>&lt;P&gt;I encountered similar issue recently with Dataflow Gen2 in Microsoft Fabric. I mean nothing really fancy here, only selecting a .csv file uploaded in&amp;nbsp;Lakehouse folder which I had previously created,&amp;nbsp;then define a destination through Add Data Destination to very same Lakehouse with new table name though in different folder. "Dataflow Failed to Publish!"&amp;nbsp; [sigh...]&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jan 2024 22:03:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Dataflow/Something-went-wrong-Dataflow-publish-failed/m-p/3649114#M1610</guid>
      <dc:creator>MawashiKid2</dc:creator>
      <dc:date>2024-01-19T22:03:05Z</dc:date>
    </item>
    <item>
      <title>Re: Something went wrong, Dataflow publish failed</title>
      <link>https://community.fabric.microsoft.com/t5/Dataflow/Something-went-wrong-Dataflow-publish-failed/m-p/3649149#M1612</link>
      <description>&lt;P&gt;Okay never mind... solved it! It seems Dataflow Gen2 didn't seem to accept any blank space after a comma... in csv. So I simply removed all blank spaces in original csv file, deleted the wrong formatted csv file version in Lakehouse, then re-uploaded new corrected csv version in same Lakehouse and it worked this time...just as stupid as that... [sigh...]&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jan 2024 22:28:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Dataflow/Something-went-wrong-Dataflow-publish-failed/m-p/3649149#M1612</guid>
      <dc:creator>MawashiKid2</dc:creator>
      <dc:date>2024-01-19T22:28:55Z</dc:date>
    </item>
    <item>
      <title>Re: Something went wrong, Dataflow publish failed</title>
      <link>https://community.fabric.microsoft.com/t5/Dataflow/Something-went-wrong-Dataflow-publish-failed/m-p/3649159#M1613</link>
      <description>&lt;P&gt;Interesting.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How did you find out that it was the reason?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Was there some error values in some of the data columns?&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jan 2024 22:38:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Dataflow/Something-went-wrong-Dataflow-publish-failed/m-p/3649159#M1613</guid>
      <dc:creator>frithjof_v</dc:creator>
      <dc:date>2024-01-19T22:38:33Z</dc:date>
    </item>
    <item>
      <title>Re: Something went wrong, Dataflow publish failed</title>
      <link>https://community.fabric.microsoft.com/t5/Dataflow/Something-went-wrong-Dataflow-publish-failed/m-p/3649765#M1617</link>
      <description>&lt;P&gt;To resume...&lt;BR /&gt;It turns out a &lt;STRONG&gt;Column name&lt;/STRONG&gt; from a .csv sample file I had downloaded to use for simple &lt;STRONG&gt;SCD2&lt;/STRONG&gt; test- and had previously uploaded in a &lt;STRONG&gt;Lakehouse&lt;/STRONG&gt; under &lt;STRONG&gt;Files&lt;/STRONG&gt; folder - was &lt;U&gt;not well formatted&lt;/U&gt;.&lt;BR /&gt;So I then created &lt;STRONG&gt;DataFlow Gen2&lt;/STRONG&gt; (&lt;STRONG&gt;WhateverDF...&lt;/STRONG&gt;). Once the csv file as loaded in the DataFlow,&lt;BR /&gt;I then selected &lt;STRONG&gt;Use first row as header&lt;/STRONG&gt;, defined a new &lt;STRONG&gt;Table&lt;/STRONG&gt; name in same&amp;nbsp;&lt;STRONG&gt;Lakehouse&lt;/STRONG&gt; as destination using &lt;STRONG&gt;Add data destination,&lt;/STRONG&gt; then simply clicked on &lt;STRONG&gt;Publish&lt;/STRONG&gt;.&lt;BR /&gt;A popup notification displayed &lt;STRONG&gt;Dataflow WhateverDF failed to pulished!&lt;/STRONG&gt; error.&lt;img /&gt;&lt;BR /&gt;I then located the &lt;STRONG&gt;WhateverDF Dataflow&lt;/STRONG&gt; instance in main &lt;STRONG&gt;Workspace Name&lt;/STRONG&gt; column and noticed a small red border triangle next to it.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;I simply clicked on it to get more details about the error.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;BR /&gt;So that was it. The &lt;STRONG&gt;Name&lt;/STRONG&gt; column name was formatted as &lt;STRONG&gt;', Name'&lt;/STRONG&gt; when it should have been formatted as &lt;STRONG&gt;',Name'&lt;/STRONG&gt;&amp;nbsp;that is with &lt;U&gt;&lt;STRONG&gt;NO SPACE&lt;/STRONG&gt;&lt;/U&gt; between the&amp;nbsp;&lt;STRONG&gt;comma&lt;/STRONG&gt; and &lt;STRONG&gt;first letter&lt;/STRONG&gt; of &lt;STRONG&gt;column name&lt;/STRONG&gt;. So I simply fixed the error and was then able to &lt;STRONG&gt;Publish&lt;/STRONG&gt; and run &lt;STRONG&gt;DataFlow Gen2&lt;/STRONG&gt; as expected. N.B. The &lt;STRONG&gt;DataFlow Gen2&lt;/STRONG&gt; doesn't imply much transformation here - beside selecting first row as header - and is used mainly in combination with a &lt;STRONG&gt;Notebook&lt;/STRONG&gt; in a &lt;STRONG&gt;data pipeline&lt;/STRONG&gt;.&amp;nbsp; All &lt;STRONG&gt;SCD2&lt;/STRONG&gt; logic is defined in &lt;STRONG&gt;Notebook&lt;/STRONG&gt;. That's when the rubber hits the road!&lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 20 Jan 2024 20:46:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Dataflow/Something-went-wrong-Dataflow-publish-failed/m-p/3649765#M1617</guid>
      <dc:creator>MawashiKid2</dc:creator>
      <dc:date>2024-01-20T20:46:01Z</dc:date>
    </item>
    <item>
      <title>Re: Something went wrong, Dataflow publish failed</title>
      <link>https://community.fabric.microsoft.com/t5/Dataflow/Something-went-wrong-Dataflow-publish-failed/m-p/3649767#M1618</link>
      <description>&lt;P&gt;Thank you for sharing!&lt;BR /&gt;&lt;BR /&gt;Nice to learn that an explanatory error message for failed publishes can be found in the workspace interface (triangle icon)&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":grinning_face:"&gt;😀&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Since the error popup you received immediately when the publish failed, didn't seem to provide much guidance.&lt;/P&gt;</description>
      <pubDate>Sat, 20 Jan 2024 21:19:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Dataflow/Something-went-wrong-Dataflow-publish-failed/m-p/3649767#M1618</guid>
      <dc:creator>frithjof_v</dc:creator>
      <dc:date>2024-01-20T21:19:25Z</dc:date>
    </item>
  </channel>
</rss>

