Fabric - April 2025 GA Feature summary
As we go into May, last months update list has landed and it's time to go through what's new and what's worth knowing about. Given the volume of updates we're getting now, I'm going to keep splitting out my thoughts into:
- Fabric GA Features (This blog)
- Power BI GA features
- Fabric and Power BI Public preview features
General
Data Warehouse
ALTER TABLE DROP COLUMN and sp_rename support
Session scoped #temp table
The second is a distributed, parquet backed, temp table. These are created by adding the following after the closing bracket of our temp table definition:
WITH (DISTRIBUTION = ROUND_ROBIN);
These are typically used when data is going to be insert into either temp or physical tables downstream. For more info on this new function, check out this blog.
OPENROWSET and BULK INSERT
Real-Time Intelligence (RTI)
- ai_embeded_text. This allows you to integrate the embedding models from OpenAI to generate vectors from your inbound text fields.
- ai_chat_completion. Enables chat completions using OpenAI models, enhancing analysis done within KQL databases.
Improvements to low code data exploration experience
- A hierarchal columns pane to help with data profiling.
- A new focused mode to expand either the data viz or results grid.
- Right-click actions on the results grid.
- Filter builder with Or conditions.
- Improved datetime picker
Eventhouse/KQL in-item monitoring
- Eventhouse ingested rows over time. Making it easier to monitor the number of records that have been ingested.
- New tab for top 10 ingested databases. Showing the number of rows and failures ingested by database.
- Top 10 queried databases. Showing the number of queries, errors, duration, and cache misses by database.
- Eventhouse details have moved to the menu bar
Comments
Post a Comment