<?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: %run magic works manually but fails in pipeline when using runMultiple -cross kernel execution e in Data Engineering</title>
    <link>https://community.fabric.microsoft.com/t5/Data-Engineering/run-magic-works-manually-but-fails-in-pipeline-when-using/m-p/5130305#M15410</link>
    <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1362190"&gt;@mhosseini&lt;/a&gt;, confirms my point -&amp;nbsp;Mixing Spark + Python notebooks in the same orchestration graph is&amp;nbsp;not supported, which is also what the error message indicates.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;P&gt;In practice:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Controller / orchestrator&amp;nbsp;- must be Spark&lt;/LI&gt;&lt;LI&gt;Child notebooks&amp;nbsp;- should also be Spark&lt;/LI&gt;&lt;/UL&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 11 Mar 2026 19:54:55 GMT</pubDate>
    <dc:creator>deborshi_nag</dc:creator>
    <dc:date>2026-03-11T19:54:55Z</dc:date>
    <item>
      <title>%run magic works manually but fails in pipeline when using runMultiple -cross kernel execution error</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/run-magic-works-manually-but-fails-in-pipeline-when-using/m-p/5130077#M15401</link>
      <description>&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;It was recently announced that %run magic is now supported for Python notebooks in Fabric, so I started using it to keep my common functions in a separate notebook.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My setup is as follows:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;I have a common notebook that contains shared functions.&lt;/LI&gt;&lt;LI&gt;I have several processing notebooks that use those functions.&lt;/LI&gt;&lt;LI&gt;I have an orchestrator notebook that runs everything using notebookutils.notebook.runMultiple().&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;In the orchestrator notebook, I first run the common notebook, and then execute the rest of the notebooks.&lt;/P&gt;&lt;P&gt;When I run the notebooks manually, everything works fine.&lt;/P&gt;&lt;P&gt;However, when the orchestrator notebook is executed from a pipeline, the cell that runs runMultiple() fails with the following error:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Notebook execution failed at Notebook service with http status code - '200',&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;please check the Run logs on Notebook, additional details -&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Error name - Exception&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;Error value - NBS request failed: 400 - Cross kernel type execution is not supported in %run magic.&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;Child notebook kernel: python3.11, Current notebook kernel: .&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;It seems the pipeline execution is triggering a cross-kernel execution issue, but all notebooks are Python notebooks.&lt;/P&gt;&lt;P&gt;Has anyone run into this issue when using %run together with notebookutils.notebook.runMultiple() in a pipeline?&lt;/P&gt;&lt;P&gt;Any suggestions on how to resolve this would be greatly appreciated.&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Wed, 11 Mar 2026 14:11:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/run-magic-works-manually-but-fails-in-pipeline-when-using/m-p/5130077#M15401</guid>
      <dc:creator>mhosseini</dc:creator>
      <dc:date>2026-03-11T14:11:33Z</dc:date>
    </item>
    <item>
      <title>Re: %run magic works manually but fails in pipeline when using runMultiple -cross kernel execution e</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/run-magic-works-manually-but-fails-in-pipeline-when-using/m-p/5130194#M15403</link>
      <description>&lt;P&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1362190"&gt;@mhosseini&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;STRONG&gt;Why this happening:&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;The error happens because pipelines run notebooks in separate kernels, and %run does not support cross-kernel execution.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Temporary Solution:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Make sure every notebook that uses shared functions runs &lt;STRONG&gt;%run&lt;/STRONG&gt; itself, instead of running it only in the orchestrator.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Example inside each notebook:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#993300"&gt;&lt;STRONG&gt;&lt;EM&gt;%run "./CommonFunctions"&lt;/EM&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But this still may not be ideal for pipelines.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Best Possible Approach:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Convert the Common Notebook to a Library&lt;/P&gt;&lt;P&gt;Fabric supports creating workspace libraries.&lt;/P&gt;&lt;P&gt;You can:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Package your shared functions as a Python module&lt;/LI&gt;&lt;LI&gt;Upload it as a workspace library&lt;/LI&gt;&lt;LI&gt;Import it in notebooks&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;This is the most scalable enterprise approach.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Best Architecture for Fabric Notebooks&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Instead of:&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE&gt;&lt;STRONG&gt;Common Notebook&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ↑&lt;BR /&gt;&amp;nbsp;&amp;nbsp; %run&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ↑&lt;BR /&gt;Processing Notebooks&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ↑&lt;BR /&gt;Orchestrator Notebook&lt;/STRONG&gt;&lt;/PRE&gt;&lt;P&gt;Use&lt;/P&gt;&lt;PRE&gt;&lt;STRONG&gt;Python Module / Library&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ↑&lt;BR /&gt;Processing Notebooks&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ↑&lt;BR /&gt;Orchestrator Notebook&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ↑&lt;BR /&gt;Pipeline&lt;/STRONG&gt;&lt;/PRE&gt;&lt;PRE&gt;This will remove the dependency on kernel. &lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#993300"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#993300"&gt;&lt;STRONG&gt;If this helps, &lt;/STRONG&gt;&lt;STRONG&gt;✓&lt;/STRONG&gt;&lt;STRONG&gt; Mark as Kudos | Mark as Solution| Help Others&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Mar 2026 17:21:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/run-magic-works-manually-but-fails-in-pipeline-when-using/m-p/5130194#M15403</guid>
      <dc:creator>Murtaza_Ghafoor</dc:creator>
      <dc:date>2026-03-11T17:21:00Z</dc:date>
    </item>
    <item>
      <title>Re: %run magic works manually but fails in pipeline when using runMultiple -cross kernel execution e</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/run-magic-works-manually-but-fails-in-pipeline-when-using/m-p/5130205#M15404</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1362190"&gt;@mhosseini&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have run an orchestrator notebook that runs other notebooks using&amp;nbsp;notebookutils.notebook.runMultiple() where the first cell in each notebook is the %run command. I have run the orchestrator notebook in a pipeline, and it works fine.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The error message suggests a cross-kernel issue.&amp;nbsp;Mixing Spark + Python notebooks in the same orchestration graph is &lt;STRONG&gt;not supported&lt;/STRONG&gt; and commonly results in error.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In my workspace I have used Pyspark notebooks for both the orchestrator as well as the child notebooks - the environments used in each is the workspace default.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here's the code I used for my test.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Orchestrator notebook:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;from notebookutils import notebook

# Define the DAG
DAG = {
    "activities": [
        {
            "name": "extract_customers",
            "path": "nb_extract_customers",           # notebook item path/name
            "timeoutPerCellInSeconds": 120,
            "args": {"rows": 1000}
        },
        {
            "name": "extract_products",
            "path": "nb_extract_products",
            "timeoutPerCellInSeconds": 120,
            "args": {"rows": 5000},
            "dependencies": ["extract_customers"]
        },
        {
            "name": "products_table",
            "path": "nb_build_product_table",
            "timeoutPerCellInSeconds": 300,
            "retry": 1,
            "retryIntervalInSeconds": 10,
            "dependencies": ["extract_products"]      # wait for products first
        }
    ],
    "timeoutInSeconds": 1800,
    "concurrency": 3
}

# Kick off the DAG; options can enable a DAG visualization and live progress
result = notebook.runMultiple(
    DAG,
    {"displayDAGViaGraphviz": True}  # optional visualization
)

# 'result' is typically a structured object; you can inspect/log it
print(result)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Child notebook:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;%run nb_common_functions&lt;/LI-CODE&gt;&lt;LI-CODE lang="python"&gt;# Parameters cell (mark as "Toggle parameter cell" in UI)
rows = 1000  # default value, can be overridden by args

# ... your logic here ...
result = f"customers_ok_{rows}"

hello("customers")

from notebookutils import notebook
notebook.exit(result)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Mar 2026 17:28:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/run-magic-works-manually-but-fails-in-pipeline-when-using/m-p/5130205#M15404</guid>
      <dc:creator>deborshi_nag</dc:creator>
      <dc:date>2026-03-11T17:28:44Z</dc:date>
    </item>
    <item>
      <title>Re: %run magic works manually but fails in pipeline when using runMultiple -cross kernel execution e</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/run-magic-works-manually-but-fails-in-pipeline-when-using/m-p/5130296#M15408</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/695681"&gt;@Murtaza_Ghafoor&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your response. I should remphesis on the fact that I am using python notebooks, unlike spark environemtns which gives us a place to upload libraries, python does not provide such feature, would you let me know if there's a way to upload a custom library in python notebooks?&lt;/P&gt;&lt;P&gt;Also I tried several combinations:&lt;/P&gt;&lt;P&gt;1. Orchestrator runs common notebook &amp;amp; Processing runs common notebook &amp;gt; Cross runtime failure&lt;/P&gt;&lt;P&gt;2.&amp;nbsp;Orchestrator does not run common notebook &amp;amp; Processing runs common notebook &amp;gt; Cross runtime failure&lt;/P&gt;&lt;P&gt;3.&amp;nbsp;Orchestrator runs common notebook &amp;amp; Processingdoes not run common notebook &amp;gt; common functions are not available in processing notebook failure&lt;/P&gt;</description>
      <pubDate>Wed, 11 Mar 2026 19:40:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/run-magic-works-manually-but-fails-in-pipeline-when-using/m-p/5130296#M15408</guid>
      <dc:creator>mhosseini</dc:creator>
      <dc:date>2026-03-11T19:40:58Z</dc:date>
    </item>
    <item>
      <title>Re: %run magic works manually but fails in pipeline when using runMultiple -cross kernel execution e</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/run-magic-works-manually-but-fails-in-pipeline-when-using/m-p/5130297#M15409</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1445078"&gt;@deborshi_nag&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Thank you for your response. I'm using python notebook. I already have spark notebooks and using the same method works. But Python notebooks have this issue.&lt;/P&gt;</description>
      <pubDate>Wed, 11 Mar 2026 19:43:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/run-magic-works-manually-but-fails-in-pipeline-when-using/m-p/5130297#M15409</guid>
      <dc:creator>mhosseini</dc:creator>
      <dc:date>2026-03-11T19:43:33Z</dc:date>
    </item>
    <item>
      <title>Re: %run magic works manually but fails in pipeline when using runMultiple -cross kernel execution e</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/run-magic-works-manually-but-fails-in-pipeline-when-using/m-p/5130305#M15410</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1362190"&gt;@mhosseini&lt;/a&gt;, confirms my point -&amp;nbsp;Mixing Spark + Python notebooks in the same orchestration graph is&amp;nbsp;not supported, which is also what the error message indicates.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;P&gt;In practice:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Controller / orchestrator&amp;nbsp;- must be Spark&lt;/LI&gt;&lt;LI&gt;Child notebooks&amp;nbsp;- should also be Spark&lt;/LI&gt;&lt;/UL&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Mar 2026 19:54:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/run-magic-works-manually-but-fails-in-pipeline-when-using/m-p/5130305#M15410</guid>
      <dc:creator>deborshi_nag</dc:creator>
      <dc:date>2026-03-11T19:54:55Z</dc:date>
    </item>
    <item>
      <title>Re: %run magic works manually but fails in pipeline when using runMultiple -cross kernel execution e</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/run-magic-works-manually-but-fails-in-pipeline-when-using/m-p/5130306#M15411</link>
      <description>&lt;P&gt;I'm not mixing those runtimes, all my notebooks in this setup are using python runtime.&lt;/P&gt;&lt;P&gt;I just maant that I have a similar orchestration that is using spark from end to end, it has %run and runMultiple the same way, and it is working as expected.&lt;/P&gt;</description>
      <pubDate>Wed, 11 Mar 2026 19:55:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/run-magic-works-manually-but-fails-in-pipeline-when-using/m-p/5130306#M15411</guid>
      <dc:creator>mhosseini</dc:creator>
      <dc:date>2026-03-11T19:55:49Z</dc:date>
    </item>
    <item>
      <title>Re: %run magic works manually but fails in pipeline when using runMultiple -cross kernel execution e</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/run-magic-works-manually-but-fails-in-pipeline-when-using/m-p/5130318#M15413</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1362190"&gt;@mhosseini&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;P&gt;Microsoft refers to NotebookUtils (formerly MSSparkUtils) as the standard package for chaining notebooks, managing files, secrets, and more. It is available for PySpark, Scala, and SparkR notebooks, and can also be invoked from pipelines. The latest enhancements target Spark 3.4+ (Fabric Runtime v1.2+), operating within the notebookutils namespace, where run() and runMultiple() are designed to function. Hence you need the orchestrator to be a Spark notebook.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A title="https://learn.microsoft.com/en-us/fabric/data-engineering/notebook-utilities" href="https://learn.microsoft.com/en-us/fabric/data-engineering/notebook-utilities" rel="noreferrer noopener" target="_blank"&gt;NotebookUtils (former MSSparkUtils) for Fabric - Microsoft Fabric | Microsoft Learn&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The reason manual runs work is that Fabric reuses your current Spark session, whereas pipelines always initiate a new session that is strictly validated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When you select Run in the notebook interface, the editor connects to an active Spark session with the kernel and libraries already loaded. runMultiple() inherits this session, allowing %run to execute within the same process.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For runs triggered by pipelines, there is no pre-existing session. Fabric creates a new execution environment and attaches a kernel based on the notebook’s metadata.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 11 Mar 2026 20:13:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/run-magic-works-manually-but-fails-in-pipeline-when-using/m-p/5130318#M15413</guid>
      <dc:creator>deborshi_nag</dc:creator>
      <dc:date>2026-03-11T20:13:55Z</dc:date>
    </item>
    <item>
      <title>Re: %run magic works manually but fails in pipeline when using runMultiple -cross kernel execution e</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/run-magic-works-manually-but-fails-in-pipeline-when-using/m-p/5132069#M15464</link>
      <description>&lt;P&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1362190"&gt;@mhosseini&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Since you are using python notebooks so this option is not available but there is one workaround you may try this&amp;nbsp;is to store your shared functions in a &lt;STRONG&gt;.py file&lt;/STRONG&gt; inside Lakehouse Files or Workspace Files, and then import that file in your notebooks using &lt;STRONG&gt;sys.path.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;PRE&gt;&lt;EM&gt;import sys&lt;/EM&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;EM&gt;sys.path.append('/lakehouse/default/Files/utils')&lt;/EM&gt;&lt;BR /&gt;&lt;BR /&gt;import common_functions&lt;/PRE&gt;&lt;P&gt;With this approach, the notebooks load the shared functions directly from the file system rather than relying on the same kernel session. Because of that, it works consistently for both manual notebook runs and pipeline executions.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If this helps, ✓ Mark as Kudos | Mark as Solution| Help Others&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 14 Mar 2026 07:27:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/run-magic-works-manually-but-fails-in-pipeline-when-using/m-p/5132069#M15464</guid>
      <dc:creator>Murtaza_Ghafoor</dc:creator>
      <dc:date>2026-03-14T07:27:55Z</dc:date>
    </item>
    <item>
      <title>Re: %run magic works manually but fails in pipeline when using runMultiple -cross kernel execution e</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/run-magic-works-manually-but-fails-in-pipeline-when-using/m-p/5133559#M15475</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1362190"&gt;@mhosseini&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you for reaching out to Microsoft Fabric Community.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/695681"&gt;@Murtaza_Ghafoor&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1445078"&gt;@deborshi_nag&lt;/a&gt;&amp;nbsp;for the prompt response.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;As we haven’t heard back from you, we wanted to kindly follow up to&amp;nbsp;check if the solution provided by the user's for the issue worked?&amp;nbsp;or let us know if you need any further assistance.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks and regards,&lt;/P&gt;
&lt;P&gt;Anjan Kumar Chippa&lt;/P&gt;</description>
      <pubDate>Mon, 16 Mar 2026 12:12:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/run-magic-works-manually-but-fails-in-pipeline-when-using/m-p/5133559#M15475</guid>
      <dc:creator>v-achippa</dc:creator>
      <dc:date>2026-03-16T12:12:10Z</dc:date>
    </item>
    <item>
      <title>Re: %run magic works manually but fails in pipeline when using runMultiple -cross kernel execution e</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/run-magic-works-manually-but-fails-in-pipeline-when-using/m-p/5134166#M15493</link>
      <description>&lt;P&gt;Thank you&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/695681"&gt;@Murtaza_Ghafoor&lt;/a&gt;&amp;nbsp;this is the best suggestion so far. It works if I add the lakehouse containing the python file as the default lakehouse. is there a way to read it from a single location whether it is attached or not? I don't want to add a huge piece of code to all the notebooks for this.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Mar 2026 14:56:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/run-magic-works-manually-but-fails-in-pipeline-when-using/m-p/5134166#M15493</guid>
      <dc:creator>mhosseini</dc:creator>
      <dc:date>2026-03-17T14:56:16Z</dc:date>
    </item>
    <item>
      <title>Re: %run magic works manually but fails in pipeline when using runMultiple -cross kernel execution e</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/run-magic-works-manually-but-fails-in-pipeline-when-using/m-p/5137505#M15536</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1362190" target="_blank"&gt;@mhosseini&lt;/A&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;We wanted to kindly follow up to&amp;nbsp;check if the solution provided by the user's for the issue worked?&amp;nbsp;or let us know if you need any further assistance.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks and regards,&lt;/P&gt;
&lt;P&gt;Anjan Kumar Chippa&lt;/P&gt;</description>
      <pubDate>Mon, 23 Mar 2026 11:37:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/run-magic-works-manually-but-fails-in-pipeline-when-using/m-p/5137505#M15536</guid>
      <dc:creator>v-achippa</dc:creator>
      <dc:date>2026-03-23T11:37:54Z</dc:date>
    </item>
    <item>
      <title>Re: %run magic works manually but fails in pipeline when using runMultiple -cross kernel execution e</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/run-magic-works-manually-but-fails-in-pipeline-when-using/m-p/5137906#M15550</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/882907"&gt;@v-achippa&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;Unfortunately I don't have a feasible solution so far. And personally I think this is a bug that Microsoft should resolve. %run in python notebooks is not production ready.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Mar 2026 21:04:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/run-magic-works-manually-but-fails-in-pipeline-when-using/m-p/5137906#M15550</guid>
      <dc:creator>mhosseini</dc:creator>
      <dc:date>2026-03-23T21:04:49Z</dc:date>
    </item>
    <item>
      <title>Re: %run magic works manually but fails in pipeline when using runMultiple -cross kernel execution e</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/run-magic-works-manually-but-fails-in-pipeline-when-using/m-p/5138764#M15578</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1362190"&gt;@mhosseini&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for the response. I request you to please raise a support ticket for further assistance&lt;/P&gt;
&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/power-bi/support/create-support-ticket" target="_blank"&gt;Create a Fabric and Power BI Support Ticket - Power BI | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you for being part of Microsoft Fabric Community.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks and regards,&lt;/P&gt;
&lt;P&gt;Anjan Kumar Chippa&lt;/P&gt;</description>
      <pubDate>Wed, 25 Mar 2026 11:18:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/run-magic-works-manually-but-fails-in-pipeline-when-using/m-p/5138764#M15578</guid>
      <dc:creator>v-achippa</dc:creator>
      <dc:date>2026-03-25T11:18:18Z</dc:date>
    </item>
    <item>
      <title>Re: %run magic works manually but fails in pipeline when using runMultiple -cross kernel execution e</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/run-magic-works-manually-but-fails-in-pipeline-when-using/m-p/5141565#M15648</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1362190" target="_blank"&gt;@mhosseini&lt;/A&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;As we haven’t heard back from you, we wanted to kindly follow up to&amp;nbsp;check if you have raised the support ticket?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you for being part of Microsoft Fabric Community.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks and regards,&lt;/P&gt;
&lt;P&gt;Anjan Kumar Chippa&lt;/P&gt;</description>
      <pubDate>Tue, 31 Mar 2026 05:48:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/run-magic-works-manually-but-fails-in-pipeline-when-using/m-p/5141565#M15648</guid>
      <dc:creator>v-achippa</dc:creator>
      <dc:date>2026-03-31T05:48:23Z</dc:date>
    </item>
    <item>
      <title>Re: %run magic works manually but fails in pipeline when using runMultiple -cross kernel execution e</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/run-magic-works-manually-but-fails-in-pipeline-when-using/m-p/5148105#M15822</link>
      <description>&lt;P&gt;Same issue here! Running manually is fine, but running the notebook from a pipeline fails. I'm using python 3.11 version in all notebooks.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Apr 2026 06:37:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/run-magic-works-manually-but-fails-in-pipeline-when-using/m-p/5148105#M15822</guid>
      <dc:creator>SteveCarlsberg2</dc:creator>
      <dc:date>2026-04-14T06:37:21Z</dc:date>
    </item>
    <item>
      <title>Re: %run magic works manually but fails in pipeline when using runMultiple -cross kernel execution e</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/run-magic-works-manually-but-fails-in-pipeline-when-using/m-p/5148469#M15835</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/882907"&gt;@v-achippa&lt;/a&gt;&amp;nbsp;, I just created a ticket.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Apr 2026 16:23:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/run-magic-works-manually-but-fails-in-pipeline-when-using/m-p/5148469#M15835</guid>
      <dc:creator>mhosseini</dc:creator>
      <dc:date>2026-04-14T16:23:57Z</dc:date>
    </item>
    <item>
      <title>Re: %run magic works manually but fails in pipeline when using runMultiple -cross kernel execution e</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/run-magic-works-manually-but-fails-in-pipeline-when-using/m-p/5154895#M15934</link>
      <description>&lt;P&gt;I've raised a support ticket with Microsoft, and they have confirmed this as a bug. They are working on a fix for a future release, though no ETA has been provided at this time.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Apr 2026 17:44:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/run-magic-works-manually-but-fails-in-pipeline-when-using/m-p/5154895#M15934</guid>
      <dc:creator>mhosseini</dc:creator>
      <dc:date>2026-04-20T17:44:57Z</dc:date>
    </item>
  </channel>
</rss>

