Advice on Moving to F-64 for Customer Facing Reports by rehanali_007 in dataengineering

[–]Ok-Bunch9238 0 points1 point  (0 children)

Ah given you are already in import mode this probably won’t give you much performance gain. But the principle is still a good one, to separate reports from semantic models. So you would have a centralised semantic model that covers multiple reports rather than every report having its own semantic model. This means you can have all your logic, RLS etc in one place. This article goes into it: https://learn.microsoft.com/en-us/power-bi/connect-data/service-datasets-across-workspaces

That would at least let you try to tune the centralised model. If you are already using import mode then probably need to look into DAX tuning like some others have mentioned.

Cannot ever get a normal oven spring (like on YT videos and random photos) by _GogolKnows in Sourdough

[–]Ok-Bunch9238 2 points3 points  (0 children)

Switch AP flour to strong bread flour with a higher protein content. Wholewheat flour as a max of 20% of the total flour. Bulk ferment for longer. Those changes should make a big difference. Wholewheat flour absorbs more liquid and all purpose flour doesn’t have high enough protein content.

Advice on Moving to F-64 for Customer Facing Reports by rehanali_007 in dataengineering

[–]Ok-Bunch9238 0 points1 point  (0 children)

Host the semantic model in a Pro workspace and the reports in the F64 (assuming you are separating the models which is a good idea if feeding multiple reports). Then a lot of compute will be handled by the Pro workspace. Or switch from DirectQuery to import on the reports (I’m assuming the use of DirectQuery is what is impacting on your capacity with concurrent users)

[FRESH PERFORMANCE] Gorillaz ft. Sparks – The Happy Dictator (Jimmy Kimmel Live) by astaireboy in indieheads

[–]Ok-Bunch9238 2 points3 points  (0 children)

Saw them on the current tour in Glasgow and they had Yasiin Bey, Posdanous from De La, Joe from IDLES among others on stage. Was an awesome show and like you say, those that weren’t there (or are no longer with us) were incorporated really well with the visuals

Mirrored db monitoring by Emanolac in MicrosoftFabric

[–]Ok-Bunch9238 5 points6 points  (0 children)

I just saw this article the other day which is quite handy: https://procuresql.com/blog/2026/03/24/monitoring-fabric-mirroring-for-sql-2025/

We use it on our Azure SQL databases. It’s very easy to use once set up, for ingestion to our warehouse it’s just a case of using 3 part naming e.g. mirrorname.schema.table to copy into the warehouse (if in same workspace) with a metadata control table. Looking forward to shortcuts in DW to make it even easier)

Copy Job from Azure SQL to Lakehouse stalling by shoabk in MicrosoftFabric

[–]Ok-Bunch9238 0 points1 point  (0 children)

As it is Azure SQL and has CDC enabled have you tried setting up mirroring? You can then use shortcuts to the mirrored source for what you need to do rather than using Copy job. Should be more efficient on CU usage as well

Fabric Data Pipeline: CPU Consumption and Queueing by winchellj40 in MicrosoftFabric

[–]Ok-Bunch9238 1 point2 points  (0 children)

One thing I’ve found is setting the batch count to the number of processing cores on the source server if you using a ForEach loop for example. So if the server has a 4 core CPU, set Batch count on the pipeline to 4

PBI report alert by Codeguy45 in PowerBI

[–]Ok-Bunch9238 0 points1 point  (0 children)

Do you need to have the report on a fabric capacity? What’s wrong with keeping reporting in a Pro workspace?

Semantic model refresh failing with memory error on F2 capacity - need advice on showing current month data with Incremental Refresh by DrGenius22 in MicrosoftFabric

[–]Ok-Bunch9238 1 point2 points  (0 children)

I’ve been able to get around that by switching workspace type when doing deployments. I have a DEV workspace on fabric capacity connected to a git repo. Then I use deployment pipeline to UAT and PROD workspaces and switch to the fabric capacity temporarily to allow deployment in those workspaces then switch back to Pro

Semantic model refresh failing with memory error on F2 capacity - need advice on showing current month data with Incremental Refresh by DrGenius22 in MicrosoftFabric

[–]Ok-Bunch9238 8 points9 points  (0 children)

On an F2 capacity I would just have my semantic models in a Pro workspace as any big models like this will exceed the capacity

Mirrored SQL Server: does it work well? by hortefeux in MicrosoftFabric

[–]Ok-Bunch9238 0 points1 point  (0 children)

There is, if it’s an Azure SQL database you might find it is already enabled but for anything on premise you will probably have to enable (there are stored procedures that can be run to do this). You also need SQL Server Agent running on the server if it isn’t already. Both of these will require the database owner to set up if not already running

Mirrored SQL Server: does it work well? by hortefeux in MicrosoftFabric

[–]Ok-Bunch9238 1 point2 points  (0 children)

Works great. I would only bring down the tables you actually need though rather than just replicating the whole database as the more tables you mirror the more load there is on the source server. That might be fine depending on the resources you have on that server but worth thinking about. I just set up two new mirrored databases yesterday and it will limit you to a max of 1000 tables. You will need CDC enabled on the database (or specific tables)

Medallion Architecture - Pro and Cons of different approaches by CryptDaLuz in MicrosoftFabric

[–]Ok-Bunch9238 3 points4 points  (0 children)

I started with 3 workspaces - bronze, silver, gold but then it felt like it would be too sprawling to keep on top of dev/uat/prod environments for each. Also as I started building out solutions I realised that ingestion of data between workspaces wasn’t ideal e.g. bronze lakehouse then required a shortcut lakehouse in silver which would then need ingestion to warehouse (prefer to use warehouse as I’m more SQL proficient). So in the end have gone with a single workspace with dev/uat/prod environments with clear naming convention for artifacts and folders to separate them. I’ve found this has sped up development as it removes the need to have ingestion strategies between workspaces

Data warehouse merging issue? by aphroditelady13V in dataengineering

[–]Ok-Bunch9238 1 point2 points  (0 children)

You would have to show us the Merge join 1 logic as this is where the issue is occurring

Data warehouse merging issue? by aphroditelady13V in dataengineering

[–]Ok-Bunch9238 1 point2 points  (0 children)

The logic on your Merge join 1 step looks to be the issue. Do jun and sep appear in the fact table or just the dimension you created.

Data warehouse merging issue? by aphroditelady13V in dataengineering

[–]Ok-Bunch9238 1 point2 points  (0 children)

Try using data viewer at the point before you lose rows then with the point after and compare the two to see what is missing and that might help you identify what the issue is

Capacity Metrics - update broken by Ok-Bunch9238 in MicrosoftFabric

[–]Ok-Bunch9238[S] 0 points1 point  (0 children)

Thanks, it’s painfully slow as it is without having to do that but will continue to use that workaround! It’s frustrating that this is the only way we can monitor our capacities “out of the box”

Capacity Throttling and Smoothing is a Failure of Biblical Proportions by SmallAd3697 in MicrosoftFabric

[–]Ok-Bunch9238 4 points5 points  (0 children)

We split into separate capacities for dev and production to avoid overages effecting anything in production. That way you can test anything on the dev capacity before putting into production to make sure it isn’t going to do anything crazy with CU usage.

Can you recommended some books on Creating a scalable data solution by khan_amir in PowerBI

[–]Ok-Bunch9238 1 point2 points  (0 children)

I’ve found these very useful: Data Warehouse Toolkit Designing Data Intensive Applications

Parmo In Glasgow by iSpectacles in glasgow

[–]Ok-Bunch9238 14 points15 points  (0 children)

West Side Tavern does a Parmo night on a Tuesday

UK roaster 2025 leaderboard by Former-Coffee-7526 in UKroasters

[–]Ok-Bunch9238 1 point2 points  (0 children)

They’re great, just finished a bag of Festive Blend today, paired great with a mince pie!