<?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 Re: Production-scale ADF → Fabric migration: REST API approach vs Microsoft Migration Utility in Data Engineering</title>
    <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Production-scale-ADF-Fabric-migration-REST-API-approach-vs/m-p/5238053#M16935</link>
    <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1604035" data-lia-user-login="dataengineerv2" class="lia-mention lia-mention-user"&gt;dataengineerv2&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;Thanks for reaching out to the Microsoft Fabric Community forum.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-teams="true"&gt;Your proposed architecture is well suited for enterprise-scale ADF to Fabric migrations because it is scalable, repeatable, and can be fully automated. By parsing ARM templates to extract pipelines, datasets, linked services, triggers, and other resources, you can build an intermediate representation of the ADF assets before provisioning the corresponding Fabric resources through the REST APIs using a Service Principal. This approach also makes it easier to incorporate custom transformation logic, such as mapping ADF activities to their Fabric equivalents, and integrate the migration process. However, there are some considerations to keep in mind. Since Fabric continues to evolve, you'll need to maintain the mapping logic over time, and not every ADF activity or connector has a direct equivalent in Fabric. Additionally, certain resources, such as Linked Services, Integration Runtimes, and some connectors, may still require manual intervention or custom handling.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Alternate solution that you can use to migrate:&lt;/P&gt;
&lt;P&gt;1) Using Powershell: &lt;A class="" title="https://learn.microsoft.com/en-us/fabric/data-factory/migrate-pipelines-powershell-upgrade-module-for-azure-data-factory-to-fabric?utm_source=chatgpt.com" href="https://learn.microsoft.com/en-us/fabric/data-factory/migrate-pipelines-powershell-upgrade-module-for-azure-data-factory-to-fabric?utm_source=chatgpt.com" target="_blank" rel="noreferrer noopener" aria-label="Link PowerShell Migration of Azure Data Factory and Synapse Pipelines to Fabric - Microsoft Fabric | Mic…"&gt;PowerShell Migration of Azure Data Factory and Synapse Pipelines to Fabric - Microsoft Fabric | Mic…&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;2) Using Built in tool: &lt;A class="" title="https://learn.microsoft.com/en-us/azure/data-factory/how-to-upgrade-your-azure-data-factory-pipelines-to-fabric-data-factory?utm_source=chatgpt.com" href="https://learn.microsoft.com/en-us/azure/data-factory/how-to-upgrade-your-azure-data-factory-pipelines-to-fabric-data-factory?utm_source=chatgpt.com" target="_blank" rel="noreferrer noopener" aria-label="Link Upgrade your Azure Data Factory pipelines to Fabric - Azure Data Factory | Microsoft Learn"&gt;Upgrade your Azure Data Factory pipelines to Fabric - Azure Data Factory | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please check this article on best practices for Migration: &lt;A class="" title="https://learn.microsoft.com/en-us/fabric/data-factory/migration-best-practices?utm_source=chatgpt.com" href="https://learn.microsoft.com/en-us/fabric/data-factory/migration-best-practices?utm_source=chatgpt.com" target="_blank" rel="noreferrer noopener" aria-label="Link Migration Best Practices for Azure Data Factory to Fabric Data Factory - Microsoft Fabric | Microso…"&gt;Migration Best Practices for Azure Data Factory to Fabric Data Factory - Microsoft Fabric | Microso…&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this helps. Please feel free to reach out if you have any further questions.&lt;BR /&gt;Thank you.&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 26 Jun 2026 05:49:58 GMT</pubDate>
    <dc:creator>v-abhinavmu</dc:creator>
    <dc:date>2026-06-26T05:49:58Z</dc:date>
    <item>
      <title>Production-scale ADF → Fabric migration: REST API approach vs Microsoft Migration Utility</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Production-scale-ADF-Fabric-migration-REST-API-approach-vs/m-p/5235385#M16884</link>
      <description>&lt;P&gt;I'm automating Azure Data Factory → Microsoft Fabric Data Factory migration using ARM export + Fabric REST APIs instead of the Microsoft migration UI.&lt;/P&gt;&lt;P&gt;Current approach:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;Parse ARM templates (pipelines, datasets, linked services, etc.) using a custom parser.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Create Fabric resources via REST APIs.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Use a Service Principal (SPN) for authentication.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;For connections:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;SP creates the connection using POST /v1/connections.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;SP then grants my user &lt;STRONG&gt;Owner&lt;/STRONG&gt; using the role assignment API.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;The connection becomes visible in &lt;STRONG&gt;Manage Connections&lt;/STRONG&gt; and behaves like a manually created one.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;The approach is working for my current testing, but before investing further I'd like some feedback.&lt;/P&gt;&lt;P&gt;Has anyone used a similar approach for large ADF environments (100+ pipelines)? Any scalability, dependency, or production concerns that I should be aware of, especially around linked services, datasets, or API limitations?&lt;/P&gt;&lt;P&gt;Would appreciate any insights from people who have done enterprise-scale ADF → Fabric migrations.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jun 2026 08:11:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Production-scale-ADF-Fabric-migration-REST-API-approach-vs/m-p/5235385#M16884</guid>
      <dc:creator>dataengineerv2</dc:creator>
      <dc:date>2026-06-25T08:11:52Z</dc:date>
    </item>
    <item>
      <title>Re: Production-scale ADF → Fabric migration: REST API approach vs Microsoft Migration Utility</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Production-scale-ADF-Fabric-migration-REST-API-approach-vs/m-p/5238053#M16935</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1604035" data-lia-user-login="dataengineerv2" class="lia-mention lia-mention-user"&gt;dataengineerv2&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;Thanks for reaching out to the Microsoft Fabric Community forum.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-teams="true"&gt;Your proposed architecture is well suited for enterprise-scale ADF to Fabric migrations because it is scalable, repeatable, and can be fully automated. By parsing ARM templates to extract pipelines, datasets, linked services, triggers, and other resources, you can build an intermediate representation of the ADF assets before provisioning the corresponding Fabric resources through the REST APIs using a Service Principal. This approach also makes it easier to incorporate custom transformation logic, such as mapping ADF activities to their Fabric equivalents, and integrate the migration process. However, there are some considerations to keep in mind. Since Fabric continues to evolve, you'll need to maintain the mapping logic over time, and not every ADF activity or connector has a direct equivalent in Fabric. Additionally, certain resources, such as Linked Services, Integration Runtimes, and some connectors, may still require manual intervention or custom handling.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Alternate solution that you can use to migrate:&lt;/P&gt;
&lt;P&gt;1) Using Powershell: &lt;A class="" title="https://learn.microsoft.com/en-us/fabric/data-factory/migrate-pipelines-powershell-upgrade-module-for-azure-data-factory-to-fabric?utm_source=chatgpt.com" href="https://learn.microsoft.com/en-us/fabric/data-factory/migrate-pipelines-powershell-upgrade-module-for-azure-data-factory-to-fabric?utm_source=chatgpt.com" target="_blank" rel="noreferrer noopener" aria-label="Link PowerShell Migration of Azure Data Factory and Synapse Pipelines to Fabric - Microsoft Fabric | Mic…"&gt;PowerShell Migration of Azure Data Factory and Synapse Pipelines to Fabric - Microsoft Fabric | Mic…&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;2) Using Built in tool: &lt;A class="" title="https://learn.microsoft.com/en-us/azure/data-factory/how-to-upgrade-your-azure-data-factory-pipelines-to-fabric-data-factory?utm_source=chatgpt.com" href="https://learn.microsoft.com/en-us/azure/data-factory/how-to-upgrade-your-azure-data-factory-pipelines-to-fabric-data-factory?utm_source=chatgpt.com" target="_blank" rel="noreferrer noopener" aria-label="Link Upgrade your Azure Data Factory pipelines to Fabric - Azure Data Factory | Microsoft Learn"&gt;Upgrade your Azure Data Factory pipelines to Fabric - Azure Data Factory | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please check this article on best practices for Migration: &lt;A class="" title="https://learn.microsoft.com/en-us/fabric/data-factory/migration-best-practices?utm_source=chatgpt.com" href="https://learn.microsoft.com/en-us/fabric/data-factory/migration-best-practices?utm_source=chatgpt.com" target="_blank" rel="noreferrer noopener" aria-label="Link Migration Best Practices for Azure Data Factory to Fabric Data Factory - Microsoft Fabric | Microso…"&gt;Migration Best Practices for Azure Data Factory to Fabric Data Factory - Microsoft Fabric | Microso…&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this helps. Please feel free to reach out if you have any further questions.&lt;BR /&gt;Thank you.&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jun 2026 05:49:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Production-scale-ADF-Fabric-migration-REST-API-approach-vs/m-p/5238053#M16935</guid>
      <dc:creator>v-abhinavmu</dc:creator>
      <dc:date>2026-06-26T05:49:58Z</dc:date>
    </item>
    <item>
      <title>Re: Production-scale ADF → Fabric migration: REST API approach vs Microsoft Migration Utility</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Production-scale-ADF-Fabric-migration-REST-API-approach-vs/m-p/5247239#M16950</link>
      <description>&lt;P&gt;Your approach is valid and aligns with how many teams are bypassing the UI for scale, but at prod level there are a few realities you need to factor in. The Fabric REST APIs are still evolving, so expect gaps (especially around complex linked services, credentials, managed identity mappings, and dataflows) and occasional breaking changes, which the microsoft migration utility quietly handles for you.&lt;/P&gt;
&lt;P&gt;Dependency orchestration is the biggest risk: ADF ARM templates are loosely ordered, but Fabric APIs require strict sequencing (connections -&amp;gt; datasets -&amp;gt; pipelines -&amp;gt; triggers), so you will need a robust dependency graph and retry logic. At 100+ pipelines, throttling and eventual consistency issues will show up, so build in idempotency, backoff, and state tracking rather than fire-and-forget deployments. Security-wise, SPN-created connections can behave differently with credential scoping and gateway bindings, so validate runtime execution, not just creation. Also watch for feature parity gaps (for ex, custom activities, mapping data flows, parameterization patterns) because some will not translate cleanly. Bottom line: your approach is scalable and more controllable than the UI, but only if you treat it like a full migration framework (stateful, versioned, retry-safe) rather than a onetime script.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 28 Jun 2026 10:47:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Production-scale-ADF-Fabric-migration-REST-API-approach-vs/m-p/5247239#M16950</guid>
      <dc:creator>Vinodh247</dc:creator>
      <dc:date>2026-06-28T10:47:44Z</dc:date>
    </item>
  </channel>
</rss>

