Business IntelligenceEnterprise TechTech PostsSQL Server Master Data Services Performance Tuning Guidelines June 10, 20169516 views0Share By IG ShareSQL Server Master Data Services Performance Tuning GuidelinesMaster Data Services is a MDM (Master Data Management) system from Microsoft and ships as a part of the SQL Server distribution. Most of the computational tasks are done on the SQL Server side and hence SQL Server performance tuning is important for an optimal MDS deployment. In this post I am going to talk about the SQL Server Master Data Services performance tuning guidelines.Note: If you buy something from our links, we might earn a commission. See our disclosure statement.You have two deployment options for Master Data Services:Single Server Deployment with IIS and SQL Server on the same box.Two Tier Architecture with IIS and SQL Server on different servers.Any kind of Production deployment should consider a 2-Tiered approach. The IIS Tier is fairly lightweight and can easily service hundreds of users with 4 Gb of RAM and a 2 Core processor running on a Virtual Machine (VM). The SQL Server on the other hand needs to be capable enough to handle most of the transactions and processing for MDS. Before even considering MDS, you need to keep in mind the following points:MDS is designed for slow changing fairly static data. For high transactional data, MDS should not be considered.Anything more than 50k distinct changes will have performance degradation.Large changes should be performed in batches rather than individually.Proof of concept is important for large deployments.Microsoft has different capacity models based on the number of members in an entity and number of attributes in that entity. Let’s summarize them below:Medium Capacity Models:Entities with >500k membersNo. of Attributes in Entities >100Domain based attributes >20Up-to 15 business rules>=5 user concurrencyHardware with 12-16 GB memory, at-least Dual CPU and High performance storage is recommended.Large Capacity ModelsEntities with >10000000 (10 million) membersAttribute members>1000000 (1 million) with 100 attributes eachDomain based attributes >30Up-to or more than 15 business rules>=5 user concurrencyHardware with at least 24 GB memory, Dual Socket Quad CPU and High performance storage is recommended.For capacities of more than what is mentioned above, a complete performance testing and proof of concept is highly recommended.Microsoft also recommends creating index’s on the member tables of non domain attributes, especially which has large number of members.USE [MDS_MA] GO CREATE NONCLUSTERED INDEX [<Name of Missing Index, sysname,>] ON [mdm].[tbl_2_6_EN] ([Version_ID],[Status_ID],[uda_6_115]) GOThe above step needs to be performed manually.A good number of performance improvements has been implemented in MDS for SQL Server 2016 which I will talk about in a different post.Please refer to the Official documentation from Microsoft for your Reference:Master Data Official BlogMaster Data Services Capacity Guidelines Affiliate Disclosure: Faceofit.com is a participant in the Amazon Services LLC Associates Program. As an Amazon Associate we earn from qualifying purchases. Share What's your reaction? Excited 0 Happy 0 In Love 0 Not Sure 0 Silly 0
Business IntelligenceDownload Full and Complete List of Power BI Service & Desktop SamplesPower BI is a cloud-based data visualization tool from Microsoft. Power BI is arguably the ...
Business IntelligenceHow to Create Troubleshoot and Resolve PowerBI Gateway IssuesHow to Create Troubleshoot and Resolve PowerBI Gateway Issues The Power BI gateway is a ...
Business IntelligenceWhat are Data analysis expressions DAX with ExamplesWhat are Data analysis expressions DAX with Examples DAX is an expression language from Microsoft ...
Business IntelligenceData Analytics in Excel 2016Data Analytics in Excel 2016 Note: If you buy something from our links, we might ...