<?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: Handling schema changes and multiple schemas in Eventstream in Eventstream</title>
    <link>https://community.fabric.microsoft.com/t5/Eventstream/Handling-schema-changes-and-multiple-schemas-in-Eventstream/m-p/4378601#M342</link>
    <description>&lt;P&gt;we are actively working on this multiple schema support for event stream and the current plan to have it around March, 2025&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 23 Jan 2025 23:03:42 GMT</pubDate>
    <dc:creator>joezhang-es</dc:creator>
    <dc:date>2025-01-23T23:03:42Z</dc:date>
    <item>
      <title>Handling schema changes and multiple schemas in Eventstream</title>
      <link>https://community.fabric.microsoft.com/t5/Eventstream/Handling-schema-changes-and-multiple-schemas-in-Eventstream/m-p/4051188#M133</link>
      <description>&lt;P&gt;I am trying to use an Eventstream to load data into a kql database for realtime monitoring of servers. I've develop a custom app in .net and I am able to ingest the events but the processing of those events to be ingested in the kql database has been unsuccessful due to the static nature of the imported schema. I have events like:&lt;/P&gt;&lt;P&gt;{&lt;BR /&gt;"table": "Storage",&lt;BR /&gt;"rows": [&lt;BR /&gt;{&lt;BR /&gt;"ServerName": "SERVER1",&lt;BR /&gt;"Database": "model",&lt;BR /&gt;"DataSizeGb": 20,&lt;BR /&gt;"LogSizeGb": 1,&lt;BR /&gt;"TimestampUTC": "2024-07-19T16:53:00.6600000",&lt;BR /&gt;"TimestampEST": "2024-07-19T12:53:00.6600000"&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"ServerName": "Server1",&lt;BR /&gt;"Database": "Test",&lt;BR /&gt;"DataSizeGb": 40,&lt;BR /&gt;"LogSizeGb": 1,&lt;BR /&gt;"TimestampUTC": "2024-07-19T16:53:00.6600000",&lt;BR /&gt;"TimestampEST": "2024-07-19T12:53:00.6600000"&lt;BR /&gt;}&lt;BR /&gt;]&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;and like:&lt;/P&gt;&lt;P&gt;{&lt;BR /&gt;"table": "Performance",&lt;BR /&gt;"rows": [&lt;BR /&gt;{&lt;BR /&gt;"ServerName": "SERVER1",&lt;BR /&gt;"CPUPercentage": "10",&lt;BR /&gt;"Blocking": "0",&lt;BR /&gt;"UserConnections": "175",&lt;BR /&gt;"ActiveConnections": 3,&lt;BR /&gt;"TimestampUTC": "2024-07-19T16:55:00.6400000",&lt;BR /&gt;"TimestampEST": "2024-07-19T12:55:00.6530000"&lt;BR /&gt;}&lt;BR /&gt;]&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;I can create multiple paths in my pre-processing logic to feed a Storage and a Performance table and then expand the rows array on each, but when I try to add a Mange Fields step, to choose which columns will go into each kql table I don't see the resulting schema from each Expand task, but an Imported Schema that reflects the layout of the first record that came into the eventstream and cannot be updated.&lt;/P&gt;&lt;P&gt;Is this an error or is it expected behavior? Is the point that each custom app can produces a single schema? Even in that scenario, how can we update the preprocessing if there are changes in the schema produced by the custom app?&lt;/P&gt;&lt;P&gt;I've tried multiple times to refresh the data preview in different stages of the preprocessor, removing steps and adding them back, creating new eventstreams and in every case the Manage Fields Imported schema is static and tied to some original received event.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jul 2024 17:39:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Eventstream/Handling-schema-changes-and-multiple-schemas-in-Eventstream/m-p/4051188#M133</guid>
      <dc:creator>galaeci</dc:creator>
      <dc:date>2024-07-19T17:39:21Z</dc:date>
    </item>
    <item>
      <title>Re: Handling schema changes and multiple schemas in Eventstream</title>
      <link>https://community.fabric.microsoft.com/t5/Eventstream/Handling-schema-changes-and-multiple-schemas-in-Eventstream/m-p/4052754#M134</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="232290" data-lia-user-login="galaeci" class="lia-mention lia-mention-user"&gt;galaeci&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;I would like to ask what kind of changes you are referring to in the architecture? Is it an extension of the architecture?&lt;BR /&gt;I read the official documentation and found that most of the currently supported data sources only support obtaining &lt;STRONG&gt;row-level data&lt;/STRONG&gt; in the data source, but not changes in the schema:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/fabric/real-time-intelligence/event-streams/overview?tabs=enhancedcapabilities#bring-events-into-fabric" target="_self"&gt;https://learn.microsoft.com/en-us/fabric/real-time-intelligence/event-streams/overview?tabs=enhancedcapabilities#bring-events-into-fabric&lt;/A&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Additionally, there should be a step to set up the schema when you stream real-time events from a custom application to a Microsoft Fabric KQL database:&lt;BR /&gt;&lt;A href="https://learn.microsoft.com/en-us/fabric/real-time-intelligence/event-streams/stream-real-time-events-from-custom-app-to-kusto#add-a-kql-database-destination-to-the-eventstream" target="_self"&gt;https://learn.microsoft.com/en-us/fabric/real-time-intelligence/event-streams/stream-real-time-events-from-custom-app-to-kusto#add-a-kql-database-destination-to-the-eventstream&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;After my own testing, it seems that after setting the architecture here, the architecture model is fixed and will not be changed.&lt;BR /&gt;&lt;BR /&gt;Best Regards,&lt;BR /&gt;Dino Tao&lt;BR /&gt;If this post &lt;EM&gt;&lt;STRONG&gt;helps&lt;/STRONG&gt;&lt;/EM&gt;, then please consider &lt;EM&gt;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&lt;/EM&gt; to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jul 2024 02:15:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Eventstream/Handling-schema-changes-and-multiple-schemas-in-Eventstream/m-p/4052754#M134</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-07-22T02:15:50Z</dc:date>
    </item>
    <item>
      <title>Re: Handling schema changes and multiple schemas in Eventstream</title>
      <link>https://community.fabric.microsoft.com/t5/Eventstream/Handling-schema-changes-and-multiple-schemas-in-Eventstream/m-p/4054447#M135</link>
      <description>&lt;P&gt;&lt;SPAN&gt;thanks for reaching out. that is the multiple schema issue we are handling with now and we also got the feedbacks from other customer feedbacks for this requirement. for our no code editor, we are heavily replying on the data sampling and also can only use one inferred column from sampling data for authoring the operator which will cause some potential issues.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;BR /&gt;we are proactively working on this new capability and after we have the multiple schema solution and event catalog integration story, we can resolve this scenarios perfectly that means each filter and managed can depend on the different schemas&lt;BR /&gt;&lt;BR /&gt;hopefully we can have this released out in the following 3 ~ 6 months.&amp;nbsp;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jul 2024 18:20:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Eventstream/Handling-schema-changes-and-multiple-schemas-in-Eventstream/m-p/4054447#M135</guid>
      <dc:creator>joezhang-es</dc:creator>
      <dc:date>2024-07-22T18:20:44Z</dc:date>
    </item>
    <item>
      <title>Re: Handling schema changes and multiple schemas in Eventstream</title>
      <link>https://community.fabric.microsoft.com/t5/Eventstream/Handling-schema-changes-and-multiple-schemas-in-Eventstream/m-p/4378371#M341</link>
      <description>&lt;P&gt;is there any update in this in fabric?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i see schema getting changed automatically as per message but due to dofferent schemas sometime new messge with different schema trying ti incorporate into existing schema and values are missing&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jan 2025 18:59:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Eventstream/Handling-schema-changes-and-multiple-schemas-in-Eventstream/m-p/4378371#M341</guid>
      <dc:creator>nidhi-2189117</dc:creator>
      <dc:date>2025-01-23T18:59:23Z</dc:date>
    </item>
    <item>
      <title>Re: Handling schema changes and multiple schemas in Eventstream</title>
      <link>https://community.fabric.microsoft.com/t5/Eventstream/Handling-schema-changes-and-multiple-schemas-in-Eventstream/m-p/4378601#M342</link>
      <description>&lt;P&gt;we are actively working on this multiple schema support for event stream and the current plan to have it around March, 2025&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jan 2025 23:03:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Eventstream/Handling-schema-changes-and-multiple-schemas-in-Eventstream/m-p/4378601#M342</guid>
      <dc:creator>joezhang-es</dc:creator>
      <dc:date>2025-01-23T23:03:42Z</dc:date>
    </item>
  </channel>
</rss>

