Approximate Distinct Count in Import Mode via HyperLogLog (HLL)
Distinct counts are the bane of our existence in big data. Distinct counts over DirectQuery/DirectLake are not fast or efficient enough, and are very expensive from a compute and cost standpoint. We need a re-aggregable approximate distinct count in Import Mode using HyperLogLog (HLL). The idea would be to enable the creation/ingestion of a HLL sketch at the same dimensional grain as other user-defined aggregations so that the sketches can be dynamically merged/aggregated to produce an approximate distinct count.
Consider the following example where we need a distinct count of orders across channels and product groups. Today, we would need to cache 4 unique intersections of data (1. Overall, 2. By Channel, 3. By Product Group, 4. By Channel & Product Group). Not only is this compute intensive, but it forces us to create really terrible DAX to detect the user's reporting context and return the correct count. In addition, it still doesn't allow for correct counts when users arbitrarily include/exclude members of a desired grouping (i.e. all product groups except "PRODUCT GROUP 02"). In an ideal world for this example, we would compute an HLL sketch at the Channel and Product Group level (image below), and either have a new DAX function like "HLLMERGE( <sketch> )" or enhance the APPROXIMATEDISTINCTCOUNT function to accept a column of sketchs, and this would dynamically merge the sketches in context to return the correct approximate distinct count.
This would be a huge unlock to be able to dynamically reaggregate approximate distinct counts, as they are very difficult to manage today, and Power BI is well-positioned to do this. It would be a powerhouse feature for big data users.
Recent ideas
Power Query Parameter create/use when connecting to a dataflow
In power query when you connect to a table in a dataflow there are no options to create or use a parameter for that dataflow. When connecting to SQL there is an option when setting up the connection ...ben_holmes22 minutes agoNew MemberNeed Clarification202Views3likes2CommentsMake Copilot Approval status for semantic model available through API
In recent versions fabric allowed to mark a semantic model as approved for copilot to reduce AI adoption friction. However there is no specific way for external governance application to analyse whi...FrançoisD35 minutes agoFrequent VisitorNew1View0likes0CommentsClone a workspace, including its data, to a new workspace
Description: Today there's no way to fully clone a Fabric workspace: git sync and Deployment Pipelines move item definitions only, not the underlying data; Warehouse's zero-copy CREATE TABLE ... AS ...gclements1 hour agoHelper IINew6Views1like0CommentsAllow NotebookUtils getSecret() to authenticate with Workspace Identity
Current behavior In Microsoft Fabric, notebookutils.credentials.getSecret() authenticates against Azure Key Vault using the identity of the user who executes the notebook. This behavior appli...tmihara7 hours agoNew MemberNew7Views0likes0CommentsSupport Synonyms in Fabric Warehouse
Microsoft SQL Server has a very powerful feature by the way of "synonyms." It allows users and DBAs to do all sorts of powerful magic such as rewiring objects under the hood (e.g. run the code agains...matthias-bi10 hours agoRegular VisitorNew1.3KViews18likes2Comments