<?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: Architecture question and brainstorming in Real-Time Intelligence</title>
    <link>https://community.fabric.microsoft.com/t5/Real-Time-Intelligence/Architecture-question-and-brainstorming/m-p/5139194#M91</link>
    <description>&lt;P&gt;Thank you for your response. I am aligned with your suggestion but still wanted to get a confirmation from the community. Appreciate your response.&lt;/P&gt;</description>
    <pubDate>Thu, 26 Mar 2026 02:05:21 GMT</pubDate>
    <dc:creator>Ira_27</dc:creator>
    <dc:date>2026-03-26T02:05:21Z</dc:date>
    <item>
      <title>Architecture question and brainstorming</title>
      <link>https://community.fabric.microsoft.com/t5/Real-Time-Intelligence/Architecture-question-and-brainstorming/m-p/5136743#M87</link>
      <description>&lt;P&gt;Hello Community,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a design question that I need help with, we have a lot of vendor data that comes in form of CSV, XML, XLSX files via sftp. I already have ADF that copies this files into ADLS Gen2. Now when implementing in fabric I actually used blob storage events to trigger a notebook to load this files into a Lakehouse. I want to get suggestions if it's a good idea to use real time intelligence to stream data from this files and stage into a lakehouse? Has anyone implemented this? If so would love to get guidance. I am fairly new to evetstream and need more details on CU consumption, cost etc. what are disadvantages of using streaming notebook?&lt;/P&gt;</description>
      <pubDate>Fri, 20 Mar 2026 18:39:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Real-Time-Intelligence/Architecture-question-and-brainstorming/m-p/5136743#M87</guid>
      <dc:creator>Ira_27</dc:creator>
      <dc:date>2026-03-20T18:39:13Z</dc:date>
    </item>
    <item>
      <title>Re: Architecture question and brainstorming</title>
      <link>https://community.fabric.microsoft.com/t5/Real-Time-Intelligence/Architecture-question-and-brainstorming/m-p/5137269#M88</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="802637" data-lia-user-login="Ira_27" class="lia-mention lia-mention-user"&gt;Ira_27&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P data-start="74" data-end="140"&gt;Thanks for raising this in Microsoft Fabric Community.&lt;/P&gt;
&lt;P data-start="142" data-end="543"&gt;Eventstream is primarily intended for real-time ingestion from sources like Event Hub, IoT Hub, or Kafka. In your case, since vendor data arrives as batch files via SFTP and is already being copied into ADLS, using Eventstream directly on those files is not the typical approach. This is because Eventstream operates on streaming records rather than directly reading and processing files from storage.&lt;/P&gt;
&lt;P data-start="142" data-end="543"&gt;&lt;A href="https://learn.microsoft.com/en-us/fabric/real-time-intelligence/event-streams/overview?tabs=enhancedcapabilities" target="_blank"&gt;Microsoft Fabric Eventstreams Overview - Microsoft Fabric | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;P data-start="142" data-end="543"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-start="545" data-end="781"&gt;The blob-triggered notebook pattern you mentioned is a good fit for this scenario, as it processes files as they arrive and loads them into the Lakehouse efficiently. This aligns well with common batch or micro-batch ingestion patterns.&lt;/P&gt;
&lt;P data-start="545" data-end="781"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-start="783" data-end="1092"&gt;If you want to explore Real-Time Intelligence, you would first need to convert those files into events, for example by pushing rows into Event Hub or another streaming source, and then let Eventstream process them. This adds additional complexity and overhead without a clear benefit for file-based ingestion.&lt;/P&gt;
&lt;P data-start="783" data-end="1092"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-start="1094" data-end="1423"&gt;From a cost perspective, Eventstream typically runs continuously for streaming workloads and consumes capacity based on runtime and data throughput. Similarly, streaming notebooks remain active and consume compute even when data volume is low, which can make them more expensive and harder to manage compared to batch processing.&lt;/P&gt;
&lt;P data-start="1094" data-end="1423"&gt;&lt;A href="https://learn.microsoft.com/en-us/fabric/real-time-intelligence/event-streams/monitor-capacity-consumption" target="_blank"&gt;Microsoft Fabric Eventstreams Capacity Consumption - Microsoft Fabric | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;P data-start="1094" data-end="1423"&gt;&lt;A href="https://www.linkedin.com/pulse/understanding-cu-consumption-streaming-systems-fabric-schmidt-2zhpc/" target="_blank"&gt;Understanding CU consumption of streaming systems in Microsoft Fabric&lt;/A&gt;&lt;/P&gt;
&lt;P data-start="1094" data-end="1423"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-start="1425" data-end="1732"&gt;For vendor data that is inherently batch-oriented, an event-driven batch approach (like your current design) is usually simpler, more cost-effective, and easier to maintain. Eventstream is better suited for scenarios where data is naturally generated as real-time events and requires low-latency processing.&lt;/P&gt;
&lt;P data-start="1734" data-end="1898"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-start="1900" data-end="1916" data-is-last-node="" data-is-only-node=""&gt;Hope this helps. Please reach out for further assistance.&lt;BR /&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Mar 2026 05:27:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Real-Time-Intelligence/Architecture-question-and-brainstorming/m-p/5137269#M88</guid>
      <dc:creator>v-veshwara-msft</dc:creator>
      <dc:date>2026-03-23T05:27:27Z</dc:date>
    </item>
    <item>
      <title>Re: Architecture question and brainstorming</title>
      <link>https://community.fabric.microsoft.com/t5/Real-Time-Intelligence/Architecture-question-and-brainstorming/m-p/5137598#M90</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="802637" data-lia-user-login="Ira_27" class="lia-mention lia-mention-user"&gt;Ira_27&lt;/a&gt;,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would not recommend using RTI for anything that isn't real time, while you probably could use RTI for batch based loads, it would be highly inefficient as the RTI processes would be running 24/7 looking for data.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Mar 2026 13:40:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Real-Time-Intelligence/Architecture-question-and-brainstorming/m-p/5137598#M90</guid>
      <dc:creator>tayloramy</dc:creator>
      <dc:date>2026-03-23T13:40:32Z</dc:date>
    </item>
    <item>
      <title>Re: Architecture question and brainstorming</title>
      <link>https://community.fabric.microsoft.com/t5/Real-Time-Intelligence/Architecture-question-and-brainstorming/m-p/5139194#M91</link>
      <description>&lt;P&gt;Thank you for your response. I am aligned with your suggestion but still wanted to get a confirmation from the community. Appreciate your response.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Mar 2026 02:05:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Real-Time-Intelligence/Architecture-question-and-brainstorming/m-p/5139194#M91</guid>
      <dc:creator>Ira_27</dc:creator>
      <dc:date>2026-03-26T02:05:21Z</dc:date>
    </item>
    <item>
      <title>Re: Architecture question and brainstorming</title>
      <link>https://community.fabric.microsoft.com/t5/Real-Time-Intelligence/Architecture-question-and-brainstorming/m-p/5139195#M92</link>
      <description>&lt;P&gt;Appreciate your detailed response on it and thank you for confirming my current architecture.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Mar 2026 02:06:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Real-Time-Intelligence/Architecture-question-and-brainstorming/m-p/5139195#M92</guid>
      <dc:creator>Ira_27</dc:creator>
      <dc:date>2026-03-26T02:06:52Z</dc:date>
    </item>
  </channel>
</rss>

