SlideShare ist ein Scribd-Unternehmen logo
1 von 40
Building & Deploying Large Scale
SSRS using Lessons Learned from
Customer Deployments
Denny Lee, SQLCAT Best Practices
Lukasz Pawlowski, SQL Reporting Services
Customer Advisory Team
• Works on largest, most complex SQL Server projects
worldwide
• US: NASDAQ, USDA, Verizon, Raymond James…
• Europe: London Stock Exchange, Barclay’s Capital
• Asia and Pacific: Korea Telecom, Western Digital, Japan Railways East
• ISVs: SAP, Siebel, Sharepoint, GE Healthcare
• Drives product requirements back into SQL Server from our
customers and ISVs
• Shares best practices with SQL Server community
• http://www.microsoft.com/technet/prodtechnol/sql/bestpractice/default.mspx
• http://blogs.msdn.com/sqlcat
• http://blogs.msdn.com/mssqlisv
• Coming soon: http://www.sqlcat.com – technical notes and case studies
We are wearing the OrangeOrange shirts during the conference.
Stop by, say hello and feel free to ask us any questions.
Agenda
• Cover the following:Cover the following:
• The KEY to SuccessThe KEY to Success
• Customer ScenarioCustomer Scenario
• Scaling OutScaling Out
• Performance OptimizationPerformance Optimization
• As time permits:As time permits:
• TroubleshootingTroubleshooting
DBA-416-M • Large Scale SSRS from Customer Lessons Learned
The KEY to Success
DBA-416-M • Large Scale SSRS from Customer Lessons Learned
Agenda
• The KEY to Success
• Customer Scenario
• Scaling Out
• Performance Optimization
• Troubleshooting
The KEY to Success:
Read the manuals!
• A lot of documentation on SSRS available online
• Many mistakes in implementation could have been avoided
• Read these:
• Planning for Scalability and Performance with Reporting Services
http://www.microsoft.com/technet/prodtechnol/sql/2005/pspsqlrs.mspx
• Upgrading Reporting Services (SQL Books Online)
http://technet.microsoft.com/en-us/library/ms143747.aspx
• Configuring a Report Server Scale-Out Deployment
http://technet.microsoft.com/en-us/library/ms156453.aspx
DBA-416-M • Large Scale SSRS from Customer Lessons Learned
Customer Scenario
DBA-416-M • Large Scale SSRS from Customer Lessons Learned
Agenda
• The KEY to Success
• Customer Scenario
• Scaling Out
• Performance Optimization
• Troubleshooting
Reporting Services architecture
based on customer deployments
Reporting DataReporting Data
Report ServerReport Server
Customer Scenario:
Enterprise Rent-A-Car RS Deployment
DBA-416-M • Large Scale SSRS from Customer Lessons Learned
• Real RS deployment
from large customer in
automotive industry
• 1800 concurrent users
• using VS test
• 10s think time
• Mean 33-36s txn time
• This presentation incorporates lessons
learned from this and other customers:
• File System Snapshots to make use of
cache
• Dedicated RSDB Server to reduce DB
blocking
Scaling Out
DBA-416-M • Large Scale SSRS from Customer Lessons Learned
An important aspect of Reporting Services is
native architecture for scaling out to handle larger
workloads and more concurrent users.
Agenda
• The KEY to Success
• Customer Scenario
• Scaling Out
• Performance Optimization
• Troubleshooting
ReportCatalogReportCatalog
ReportingDataReportingData
Scaling Out Architecture:
Overall Architecture
DBA-416-M • Large Scale SSRS from Customer Lessons Learned
RSScaleOutDeploymentRSScaleOutDeployment
Report ServerReport Server
ReportCatalogReportCatalog
ReportingDataReportingData
Scaling Out Architecture:
Quick focus on Report Application
DBA-416-M • Large Scale SSRS from Customer Lessons Learned
RSScaleOutDeploymentRSScaleOutDeployment
Report ServerReport Server
ReportingApplicationReportingApplication
Scaling Out Architecture:
Overview
Obtain performance benefits through architecture
• For Report Server catalogs
• Move RS catalogs to a dedicated server
• Move to 64-bit
• For Report Servers
• Up to four cores per server
• Add RAM
• Move to 64-bit
• Move to scale out architecture after reaching four cores
• Do these in listed order
DBA-416-M • Large Scale SSRS from Customer Lessons Learned
Scaling Out Architecture:
Report Server Catalog
DBA-416-M • Large Scale SSRS from Customer Lessons Learned
Report Server Catalog (RSDB)Report Server Catalog (RSDB)
Stores all report metadata including report
definitions, report / history snapshots,
scheduling, etc.
RS Temp DBRS Temp DB
Stores temporary snapshots while running
reports
• These databases can be a bottleneck
• Optimize by applying standard SQL DB techniques
• Catalog has a lot of I/O and transactions
• Many inserts to ChunkData, SnapshotData, and
SessionData tables
ReportCatalogReportCatalog
Scaling Out Architecture:
Optimize Remote Report Catalog
• Place DBs on high performance disk like SAN
• Local Disks:
• Smaller size disk w/ faster rotation speed (15k vs.
10k)
• Maximize and balance I/O across all spindles
• Separate disks for Report Server Temp DB and
Report Server Catalog
• RAID:
• Use RAID 10 like other SQL implementations
• Do not use RAID 5 due to write penalty
• For High Availability, use failover clustering
DBA-416-M • Large Scale SSRS from Customer Lessons Learned
ReportCatalogReportCatalog
Scaling Out Architecture:
File System (FS) Snapshots
• RS TempDB has a lot of transactions to keep
report consistency (i.e. cached reports)
• Reduce RS Catalog I/O with File SystemFile System
SnapshotsSnapshots
• It will store data on file system
• Unlike RS/IIS setup, will require more disk space
• To enable, update RSReportServer.config file:
<Add Key="WebServiceUseFileShareStorage"
Value="true" />
<WindowsServiceUseFileShareStorage>True</Win
dowsServiceUseFileShareStorage>
DBA-416-M • Large Scale SSRS from Customer Lessons Learned
Scaling Out Architecture:
Network
• Load balancing important for
many client connections to RS
servers
• Recommend: Use cookie
persistence to preserve SSRS-
to-client connection
• IP affinity can work but may be
overload for browser-based
connections
• Makes use of SSRS file cache
• Keep round-robin for initial
connections
• Recommend: dual NIC for RS
• Split browser and AS/DB traffic
DBA-416-M • Large Scale SSRS from Customer Lessons Learned
RSScaleOutDeploymentRSScaleOutDeployment
Scaling Out Architecture:
Isolate your workloads
DBA-416-M • Large Scale SSRS from Customer Lessons Learned
ReportCatalogReportCatalog
RSScaleOutRSScaleOut
DeploymentDeployment
Report ServerReport Server
ReportingDataReportingData
SchedulingScheduling
InteractionInteraction
Benefits:
Predictable Workloads
Helps with Security Model
Isolate Performance Issues
RSScaleOutRSScaleOut
DeploymentDeployment
Scaling Out Architecture:
Isolate your workloads (2)
• To configure workload isolation
• Use Surface Area Configuration tool
• [1] Scheduled Events and Report Delivery
• [2] Web Service and HTTP Access
• Programmatically change these
settings
• RS WMI Provider Library > ... >
SetServiceState
DBA-416-M • Large Scale SSRS from Customer Lessons Learned
Scheduling [1]Scheduling [1]
Interaction [2]Interaction [2]
Scaling Out Architecture:
Report Data DS Performance Considerations
• Scale out works for RS but may not work
for underlying Report Data (data source)
• Reporting loads Report Data, ∴ limit
impact of large numbers of users
• Limit data set size using report filters
• SSIS limited data from Operational data
sources
• Do not let all users access all of the reports
• E.g. Report Builder against Analysis Services
results in many queries being executed.
DBA-416-M • Large Scale SSRS from Customer Lessons Learned
RSScaleOutDeploymentRSScaleOutDeployment
Scaling Out Architecture:
Analysis Services
• Common scenario: place SSRS in front of SSAS to
provide fast cube reporting
• Report rendering issues may be a SSAS problem not a
SSRS problem
• Remember SSRS is scale out, while SSAS is scale-up
• SSAS query scalability solution can be found at:
• Scale-Out Querying with Analysis Services
http://www.microsoft.com/technet/prodtechnol/sql/bestpractice/scoqryas.
mspx
DBA-416-M • Large Scale SSRS from Customer Lessons Learned
Reporting DataReporting Data
Scaling Out Architecture:
Scale Out Querying with Analysis Services
DBA-416-M • Large Scale SSRS from Customer Lessons Learned
RSScaleOutDeploymentRSScaleOutDeployment
ReportServerReportServer
queries Synchronize
Synchronize
Notes:
AS is scale-up,
Scale out by
synchronizing
copies of same DB
queries
Performance Optimization
DBA-416-M • Large Scale SSRS from Customer Lessons Learned
How do you get the most out of your Reporting
Services environment
Agenda
• The KEY to Success
• Customer Scenario
• Scaling Out
• Performance Optimization
• Troubleshooting
Performance Optimization:
Should we use 64-bit?
• RS Catalog
• It definitely helps the RS Catalog SQL servers
• Report Servers
• RS requires each data set to fit in memory
• E.g. 32-bit RS will hit 3GB ceiling
• IIS process recycles = reports fails
• 64-bit does not increase the speed of report rendering
• Allow users to view and export larger reports
• May get better throughput at higher workloads due to less
memory contention
• Note, RS works on x64 only
• RecommendationRecommendation: Use 64-bit to handle higher
workloads, not report rendering speed
DBA-416-M • Large Scale SSRS from Customer Lessons Learned
Performance Optimization:
Features
RecommendationsRecommendations
• Use Report Execution Timeouts to control how a long a
report has to execute
• For large reports with data processing bottlenecks, use
Scheduled Snapshots
• Rendering reports into non-browser formats like PDF and
Excel, address this by scheduling Delivered Rendered
reports
• Pre-populate the report cache using data driven
subscriptions
• Remember, RS is designed for interactive use; If you want to
export of data, use file share delivery or SSIS as your
mechanisms
DBA-416-M • Large Scale SSRS from Customer Lessons Learned
Performance Optimization:
Configurations
• RecommendationRecommendation:
• Disable report history to reduce/remove the report history
snapshots
• If history desired, establish global or report-specific limit to
the number of snapshots
• RecommendationRecommendation:
• Understand the need for big reports
• Consider Cache and Snapshot execution options
• Mitigates against load cause by concurrent users
• When tuning Report Server
• Need to tune IIS
• In SQL Server 2008, this will be different
DBA-416-M • Large Scale SSRS from Customer Lessons Learned
Performance Optimization:
Memory Configurations
• MemoryLimit Configuration
• Default 60% of available memory
• Increase help process more requests
• Once threshold hit, no new requests are accepted
• MaximumMemoryLimit Configuration
• Default 80% of available memory
• If this threshold is met, processing is aborted
• Changing values may solve RS only to bring up other
contentions
• Recommendation:Recommendation: If constantly hitting memory
thresholds, consider scaling up and then scaling out
DBA-416-M • Large Scale SSRS from Customer Lessons Learned
Performance Optimization:
Performance Testing
• Need to understand your scenarios and reports
• Scenarios are defined by user personas & usage patterns
• Reports are either test reports or actual reports
• Tests should isolate Report Server from other systems
• Need tools to automate the testing
• See white paper: Using Visual Studio 2005 to Perform Load
Testing on a SQL Server 2005 Reporting Services Report
Server
http://technet.microsoft.com/en-us/library/aa964139.aspx
• Make single incremental changes between tests
• Do not use SQL trace inside VSTE
DBA-416-M • Large Scale SSRS from Customer Lessons Learned
Performance Optimization:
Enterprise Rent-A-Car Performance Testing
DBA-416-M • Large Scale SSRS from Customer Lessons Learned
RS Servers Users Mean Tx
Time
Mean CPU%
1 Server 608 36.9 99
2 servers 1218 36.8 96
4 servers 2300 30.5 80
• 8GB RAM, 4 CPU core RS
servers
• Graph is max # of users
reached for sustained time
period (>=15 min)
• 2x RAM and CPU core, only
1/3 increase in load
Performance Optimization:
Enterprise Rent-A-Car Performance Testing (2)
• Visual Studio Testing
• Mean Transaction Time Range 33-36s
• 10s think time
• 95% SSRS, 5% ProClarity users
• 1 test controller with 4 agents (32-bit)
• >2000 concurrent users: higher rate of failed tests
• Suspect this is due overload of test mechanism
• 1800 concurrent users: low rate of failed tests
• Pre-defined workload
• 75% simple, 25% complex workflows
• Randomized selection of report parameters
DBA-416-M • Large Scale SSRS from Customer Lessons Learned
QUESTIONS?
DBA-416-M • Large Scale SSRS from Customer Lessons Learned
Agenda
• The KEY to Success
• Customer Scenario
• Scaling Out
• Performance Optimization
• Troubleshooting
Troubleshooting
DBA-416-M • Large Scale SSRS from Customer Lessons Learned
How to diagnose issues when running reports in
the Report Server?
Agenda
• The KEY to Success
• Customer Scenario
• Scaling Out
• Performance Optimization
• Troubleshooting
Troubleshooting:
Overview
• Reports can take up
• a lot of memory
• a lot of time to execute
• a lot of CPU
• It is possible for errors to occur as a result:
• Out of Memory
• Internal Errors
• Rendering errors
• So how do we diagnose issues when running reports in
the Report Server?
DBA-416-M • Large Scale SSRS from Customer Lessons Learned
Troubleshooting:
Start with the RS Execution and Trace Logs
• Report Server log files include:
• Report execution, success and other related data
• Detailed error stacks showing what the problems are
• Major events are in the Windows application event log
• Located under:
• <install folder>Reporting ServicesLogFiles
• References
• Reporting Services Log Files details are in BOL at:
http://msdn2.microsoft.com/en-us/library/ms157403.aspx
• Search the Reporting Services MSDN forum for the stack trace:
http://forums.microsoft.com/MSDN/ShowForum.aspx?
ForumID=82&SiteID=1
• RS Error code info:
http://msdn2.microsoft.com/en-us/library/ms165307.aspx
DBA-416-M • Large Scale SSRS from Customer Lessons Learned
Troubleshooting:
Monitoring Performance
• Want to look at memory consumptions, application
domain recycles, cpu usage, etc.
• Good resources for this:
• This topic describes the performance counters
http://msdn2.microsoft.com/en-us/library/aa972240(SQL.80).aspx
• Monitoring Report Execution Performance with Execution Logs
http://msdn2.microsoft.com/en-us/library/aa964131.aspx
• Monitoring interactive report executions via ListJobs SOAP API
to see which long running reports are currently executing
http://msdn2.microsoft.com/en-gb/library/aa225969(SQL.80).aspx
• Use the SQL Server Profiler to monitor actions of the Report Server
database
DBA-416-M • Large Scale SSRS from Customer Lessons Learned
Troubleshooting:
Diagnosing Problems
Specific actions to help diagnose problems:
• Adjust memory limits:
• Refer to “Report Size in Memory” section of
http://msdn2.microsoft.com/en-US/library/ms156002.aspx
• Adjust schedule concurrency:
• Do this to isolate which are your problem reports
• May want to reduce number of simultaneous report executions
to 1 especially for extremely large reports
• In rsreportserver.configrsreportserver.config, set <MaxQueueThreads><MaxQueueThreads>
• Zero (0) means RS server automatically determines the “right
number”
DBA-416-M • Large Scale SSRS from Customer Lessons Learned
Troubleshooting:
Common problems
• Error 401 is an authentication error
• Providing no or incorrect credentials
• Also can be seen during an ASP.NET application reset as well
• Happens if server starts running out of memory
• Check logs for InternalCatalogException;
• in the stack trace, you should see the method that failed
• Within trace logs - Application Domain Recycles
• App domain recycles used to clear out memory
• Often will be correlated with interactive report execution failures
• Indicates RS server is under memory pressure
DBA-416-M • Large Scale SSRS from Customer Lessons Learned
Troubleshooting:
Common problems (Continued)
• SQL Query Plan optimization
• Stored Procedures require query plan optimization
• Use the With Recompile directive in Stored Procedures
• Use fully qualified names to access across DB objects
• Refresh on SQL Query Performance:
• http://msdn2.microsoft.com/en-us/library/ms187032.aspx
• Report Design with drop-down parameter lists
• Evaluating drop downs results in query load on DBMS
• Optimize parameter, prompts, and valid values
DBA-416-M • Large Scale SSRS from Customer Lessons Learned
Troubleshooting:
References
• Processing Large Reports recommendations (incl. config,
rendering, deployment, and distribution)
http://msdn2.microsoft.com/en-US/library/ms159638.aspx
• Performance Whitepaper (Very Important)
http://www.microsoft.com/technet/prodtechnol/sql/2005/pspsqlrs.mspx
• How to configure a scale-out deployment: scale outs can
increase throughput, reliability, and concurrency
http://msdn2.microsoft.com/en-us/library/ms159114.aspx
• How to scale test your report server deployment:
http://www.microsoft.com/technet/prodtechnol/sql/2005/pspsqlrs.mspx
DBA-416-M • Large Scale SSRS from Customer Lessons Learned
Many Thanks!
• Craig Utley and David Reinhold for the great customer
implementation data
• Customer Support: Binh Cao, Perry Birch, Scott Reagin, Charles
Liptaak, Margaret Shoptaw
• Also thanks to Brian Welcker, Bill Emmert, and Nicholas
Dritsas for additional resources.
DBA-416-M • Large Scale SSRS from Customer Lessons Learned
SQL CAT Presentations at PASS 2007
Session Code Session Title Speakers Date Time
DBA-410-M Designing for Petabyte using Lessons Learned
from Customer Experiences
Lubor Kollar;
Lasse Nedergaard
9/19/2007 9:45 AM - 11:00 AM
DBA-411-M Optimizing OLTP Systems using Lessons Learned
from MySpace
Michael
Thomassy; Burzin
Patel;
Hala Al-Adwan
9/19/2007 1:30 PM - 2:45 PM
DBA-314-M Building High Performance Systems for SQL
Server
Juergen Thomas 9/19/2007 3:00 PM – 4:15 PM
DBA-412-M ISV configuration & implementation using
Lessons Learned from Customer Deployments
Juergen Thomas 9/20/2007 10:30 AM - 11:45 AM
DBA-413-M Building Highly Available SQL Server
Implementations using Lessons Learned from
Customer Deployments
Prem Mehra;
Lindsey Allen;
Sanjay Mishra
9/20/2007 1:30 PM - 2:45 PM
DBA-416-M Building and Deploying Large Scale SSRS Farms
using Lessons Learned from Customer
Deployments
Denny Lee;
Lukasz Pawlowski
9/21/2007 9:45 AM - 11:00 AM
DBA-415-M Building & Maintaining large Cubes using Lessons
Learned from Customer Deployments
Nicholas Dritsas;
Eric Jacobsen
9/21/2007 1:00 PM - 2:15 PM
DBA-414-M SQL Server 2005 Server Consolidation Update Prem Mehra 9/21/2007 2:30 PM – 3:45 PM
BI-406 Diagnosing Analysis Services 2005 MDX Query
Performance Bottlenecks
Carl Rabeler; Eric
Jacobsen
9/21/2007 4:00 PM – 5:15 PM
DBA-416-M • Large Scale SSRS from Customer Lessons Learned
Thank you!
Thank you for attending this session and the
2007 PASS Community Summit in Denver

Weitere ähnliche Inhalte

Was ist angesagt?

Sql server 2019 New Features by Yevhen Nedaskivskyi
Sql server 2019 New Features by Yevhen NedaskivskyiSql server 2019 New Features by Yevhen Nedaskivskyi
Sql server 2019 New Features by Yevhen NedaskivskyiAlex Tumanoff
 
Resume_Navneet_Formatted
Resume_Navneet_FormattedResume_Navneet_Formatted
Resume_Navneet_FormattedNavneet Tiwari
 
SQL Server 2016 Everything built-in FULL deck
SQL Server 2016 Everything built-in FULL deckSQL Server 2016 Everything built-in FULL deck
SQL Server 2016 Everything built-in FULL deckHamid J. Fard
 
DBaaS - The Next generation of database infrastructure
DBaaS - The Next generation of database infrastructureDBaaS - The Next generation of database infrastructure
DBaaS - The Next generation of database infrastructureEmiliano Fusaglia
 
SQL Explore 2012 - Tzahi Hakikat and Keren Bartal: Extended Events
SQL Explore 2012 - Tzahi Hakikat and Keren Bartal: Extended EventsSQL Explore 2012 - Tzahi Hakikat and Keren Bartal: Extended Events
SQL Explore 2012 - Tzahi Hakikat and Keren Bartal: Extended Eventssqlserver.co.il
 
Introduction to MSBI
Introduction to MSBIIntroduction to MSBI
Introduction to MSBIEdureka!
 
Advanced SSRS Reporting Techniques
Advanced SSRS Reporting TechniquesAdvanced SSRS Reporting Techniques
Advanced SSRS Reporting TechniquesDAGEOP LTD
 
Introduction to microsoft sql server 2008 r2
Introduction to microsoft sql server 2008 r2Introduction to microsoft sql server 2008 r2
Introduction to microsoft sql server 2008 r2Eduardo Castro
 
Holistics Overview
Holistics OverviewHolistics Overview
Holistics OverviewVincent Woon
 
Purna_gorre SQLDBA (1)
Purna_gorre SQLDBA (1)Purna_gorre SQLDBA (1)
Purna_gorre SQLDBA (1)Gorre Mamatha
 
Presentation sql server to oracle a database migration roadmap
Presentation    sql server to oracle a database migration roadmapPresentation    sql server to oracle a database migration roadmap
Presentation sql server to oracle a database migration roadmapxKinAnx
 
NZSPC 2013 - Ultimate SharePoint Infrastructure Best Practices Session
NZSPC 2013 - Ultimate SharePoint Infrastructure Best Practices SessionNZSPC 2013 - Ultimate SharePoint Infrastructure Best Practices Session
NZSPC 2013 - Ultimate SharePoint Infrastructure Best Practices SessionMichael Noel
 
Modernization sql server 2016
Modernization   sql server 2016Modernization   sql server 2016
Modernization sql server 2016Kiki Noviandi
 
Database migration
Database migrationDatabase migration
Database migrationOpris Monica
 
Database migration from Sybase ASE to PostgreSQL @2013.pgconf.eu
Database migration from Sybase ASE to PostgreSQL @2013.pgconf.euDatabase migration from Sybase ASE to PostgreSQL @2013.pgconf.eu
Database migration from Sybase ASE to PostgreSQL @2013.pgconf.eualdaschwede80
 
Monitorando performance no Azure SQL Database
Monitorando performance no Azure SQL DatabaseMonitorando performance no Azure SQL Database
Monitorando performance no Azure SQL DatabaseVitor Fava
 

Was ist angesagt? (20)

Sql server 2019 New Features by Yevhen Nedaskivskyi
Sql server 2019 New Features by Yevhen NedaskivskyiSql server 2019 New Features by Yevhen Nedaskivskyi
Sql server 2019 New Features by Yevhen Nedaskivskyi
 
Resume_Navneet_Formatted
Resume_Navneet_FormattedResume_Navneet_Formatted
Resume_Navneet_Formatted
 
MSBI_MSSQL_Bhrath
MSBI_MSSQL_BhrathMSBI_MSSQL_Bhrath
MSBI_MSSQL_Bhrath
 
Resume
ResumeResume
Resume
 
SQL Server 2016 Everything built-in FULL deck
SQL Server 2016 Everything built-in FULL deckSQL Server 2016 Everything built-in FULL deck
SQL Server 2016 Everything built-in FULL deck
 
DBaaS - The Next generation of database infrastructure
DBaaS - The Next generation of database infrastructureDBaaS - The Next generation of database infrastructure
DBaaS - The Next generation of database infrastructure
 
SQL Explore 2012 - Tzahi Hakikat and Keren Bartal: Extended Events
SQL Explore 2012 - Tzahi Hakikat and Keren Bartal: Extended EventsSQL Explore 2012 - Tzahi Hakikat and Keren Bartal: Extended Events
SQL Explore 2012 - Tzahi Hakikat and Keren Bartal: Extended Events
 
Introduction to MSBI
Introduction to MSBIIntroduction to MSBI
Introduction to MSBI
 
Advanced SSRS Reporting Techniques
Advanced SSRS Reporting TechniquesAdvanced SSRS Reporting Techniques
Advanced SSRS Reporting Techniques
 
Introduction to microsoft sql server 2008 r2
Introduction to microsoft sql server 2008 r2Introduction to microsoft sql server 2008 r2
Introduction to microsoft sql server 2008 r2
 
Exploring sql server 2016
Exploring sql server 2016Exploring sql server 2016
Exploring sql server 2016
 
Holistics Overview
Holistics OverviewHolistics Overview
Holistics Overview
 
Purna_gorre SQLDBA (1)
Purna_gorre SQLDBA (1)Purna_gorre SQLDBA (1)
Purna_gorre SQLDBA (1)
 
Presentation sql server to oracle a database migration roadmap
Presentation    sql server to oracle a database migration roadmapPresentation    sql server to oracle a database migration roadmap
Presentation sql server to oracle a database migration roadmap
 
ACK20160909_Latest
ACK20160909_LatestACK20160909_Latest
ACK20160909_Latest
 
NZSPC 2013 - Ultimate SharePoint Infrastructure Best Practices Session
NZSPC 2013 - Ultimate SharePoint Infrastructure Best Practices SessionNZSPC 2013 - Ultimate SharePoint Infrastructure Best Practices Session
NZSPC 2013 - Ultimate SharePoint Infrastructure Best Practices Session
 
Modernization sql server 2016
Modernization   sql server 2016Modernization   sql server 2016
Modernization sql server 2016
 
Database migration
Database migrationDatabase migration
Database migration
 
Database migration from Sybase ASE to PostgreSQL @2013.pgconf.eu
Database migration from Sybase ASE to PostgreSQL @2013.pgconf.euDatabase migration from Sybase ASE to PostgreSQL @2013.pgconf.eu
Database migration from Sybase ASE to PostgreSQL @2013.pgconf.eu
 
Monitorando performance no Azure SQL Database
Monitorando performance no Azure SQL DatabaseMonitorando performance no Azure SQL Database
Monitorando performance no Azure SQL Database
 

Ähnlich wie Building and Deploying Large Scale SSRS using Lessons Learned from Customer Deployments

What's New in Amazon RDS for Open-Source & Commercial Databases
What's New in Amazon RDS for Open-Source & Commercial DatabasesWhat's New in Amazon RDS for Open-Source & Commercial Databases
What's New in Amazon RDS for Open-Source & Commercial DatabasesAmazon Web Services
 
Lessons from Building Large-Scale, Multi-Cloud, SaaS Software at Databricks
Lessons from Building Large-Scale, Multi-Cloud, SaaS Software at DatabricksLessons from Building Large-Scale, Multi-Cloud, SaaS Software at Databricks
Lessons from Building Large-Scale, Multi-Cloud, SaaS Software at DatabricksDatabricks
 
Big Data Analytics on the Cloud Oracle Applications AWS Redshift & Tableau
Big Data Analytics on the Cloud Oracle Applications AWS Redshift & TableauBig Data Analytics on the Cloud Oracle Applications AWS Redshift & Tableau
Big Data Analytics on the Cloud Oracle Applications AWS Redshift & TableauSam Palani
 
Designing, Building, and Maintaining Large Cubes using Lessons Learned
Designing, Building, and Maintaining Large Cubes using Lessons LearnedDesigning, Building, and Maintaining Large Cubes using Lessons Learned
Designing, Building, and Maintaining Large Cubes using Lessons LearnedDenny Lee
 
In-memory ColumnStore Index
In-memory ColumnStore IndexIn-memory ColumnStore Index
In-memory ColumnStore IndexSolidQ
 
Sas Statistical Analysis System
Sas Statistical Analysis SystemSas Statistical Analysis System
Sas Statistical Analysis SystemSushil kasar
 
PERIASAMY R_SQL_DBA
PERIASAMY R_SQL_DBAPERIASAMY R_SQL_DBA
PERIASAMY R_SQL_DBAperiasamy R
 
PERIASAMY R_SQL_DBA
PERIASAMY R_SQL_DBAPERIASAMY R_SQL_DBA
PERIASAMY R_SQL_DBAperiasamy R
 
SQL 2014 In-Memory OLTP
SQL 2014 In-Memory  OLTPSQL 2014 In-Memory  OLTP
SQL 2014 In-Memory OLTPAmber Keyse
 
Remote DBA Experts SQL Server 2008 New Features
Remote DBA Experts SQL Server 2008 New FeaturesRemote DBA Experts SQL Server 2008 New Features
Remote DBA Experts SQL Server 2008 New FeaturesRemote DBA Experts
 
PLSSUG - Troubleshoot SQL Server performance problems like a Microsoft Engineer
PLSSUG - Troubleshoot SQL Server performance problems like a Microsoft EngineerPLSSUG - Troubleshoot SQL Server performance problems like a Microsoft Engineer
PLSSUG - Troubleshoot SQL Server performance problems like a Microsoft EngineerMarek Maśko
 
Modern MySQL Monitoring and Dashboards.
Modern MySQL Monitoring and Dashboards.Modern MySQL Monitoring and Dashboards.
Modern MySQL Monitoring and Dashboards.Mydbops
 
DesignMind SQL Server 2008 Migration
DesignMind SQL Server 2008 MigrationDesignMind SQL Server 2008 Migration
DesignMind SQL Server 2008 MigrationMark Ginnebaugh
 
Migrating to Amazon RDS with Database Migration Service
Migrating to Amazon RDS with Database Migration ServiceMigrating to Amazon RDS with Database Migration Service
Migrating to Amazon RDS with Database Migration ServiceAmazon Web Services
 
Data Server Manager for DB2 for z/OS
Data Server Manager for DB2 for z/OS Data Server Manager for DB2 for z/OS
Data Server Manager for DB2 for z/OS Saghi Amirsoleymani
 
Optimization SQL Server for Dynamics AX 2012 R3
Optimization SQL Server for Dynamics AX 2012 R3Optimization SQL Server for Dynamics AX 2012 R3
Optimization SQL Server for Dynamics AX 2012 R3Juan Fabian
 
Configuring Sage 500 for Performance
Configuring Sage 500 for PerformanceConfiguring Sage 500 for Performance
Configuring Sage 500 for PerformanceRKLeSolutions
 
How SQL Server 2016 SP1 Changes the Game
How SQL Server 2016 SP1 Changes the GameHow SQL Server 2016 SP1 Changes the Game
How SQL Server 2016 SP1 Changes the GamePARIKSHIT SAVJANI
 
Boosting the Performance of your Rails Apps
Boosting the Performance of your Rails AppsBoosting the Performance of your Rails Apps
Boosting the Performance of your Rails AppsMatt Kuklinski
 
Moving to the cloud; PaaS, IaaS or Managed Instance
Moving to the cloud; PaaS, IaaS or Managed InstanceMoving to the cloud; PaaS, IaaS or Managed Instance
Moving to the cloud; PaaS, IaaS or Managed InstanceThomas Sykes
 

Ähnlich wie Building and Deploying Large Scale SSRS using Lessons Learned from Customer Deployments (20)

What's New in Amazon RDS for Open-Source & Commercial Databases
What's New in Amazon RDS for Open-Source & Commercial DatabasesWhat's New in Amazon RDS for Open-Source & Commercial Databases
What's New in Amazon RDS for Open-Source & Commercial Databases
 
Lessons from Building Large-Scale, Multi-Cloud, SaaS Software at Databricks
Lessons from Building Large-Scale, Multi-Cloud, SaaS Software at DatabricksLessons from Building Large-Scale, Multi-Cloud, SaaS Software at Databricks
Lessons from Building Large-Scale, Multi-Cloud, SaaS Software at Databricks
 
Big Data Analytics on the Cloud Oracle Applications AWS Redshift & Tableau
Big Data Analytics on the Cloud Oracle Applications AWS Redshift & TableauBig Data Analytics on the Cloud Oracle Applications AWS Redshift & Tableau
Big Data Analytics on the Cloud Oracle Applications AWS Redshift & Tableau
 
Designing, Building, and Maintaining Large Cubes using Lessons Learned
Designing, Building, and Maintaining Large Cubes using Lessons LearnedDesigning, Building, and Maintaining Large Cubes using Lessons Learned
Designing, Building, and Maintaining Large Cubes using Lessons Learned
 
In-memory ColumnStore Index
In-memory ColumnStore IndexIn-memory ColumnStore Index
In-memory ColumnStore Index
 
Sas Statistical Analysis System
Sas Statistical Analysis SystemSas Statistical Analysis System
Sas Statistical Analysis System
 
PERIASAMY R_SQL_DBA
PERIASAMY R_SQL_DBAPERIASAMY R_SQL_DBA
PERIASAMY R_SQL_DBA
 
PERIASAMY R_SQL_DBA
PERIASAMY R_SQL_DBAPERIASAMY R_SQL_DBA
PERIASAMY R_SQL_DBA
 
SQL 2014 In-Memory OLTP
SQL 2014 In-Memory  OLTPSQL 2014 In-Memory  OLTP
SQL 2014 In-Memory OLTP
 
Remote DBA Experts SQL Server 2008 New Features
Remote DBA Experts SQL Server 2008 New FeaturesRemote DBA Experts SQL Server 2008 New Features
Remote DBA Experts SQL Server 2008 New Features
 
PLSSUG - Troubleshoot SQL Server performance problems like a Microsoft Engineer
PLSSUG - Troubleshoot SQL Server performance problems like a Microsoft EngineerPLSSUG - Troubleshoot SQL Server performance problems like a Microsoft Engineer
PLSSUG - Troubleshoot SQL Server performance problems like a Microsoft Engineer
 
Modern MySQL Monitoring and Dashboards.
Modern MySQL Monitoring and Dashboards.Modern MySQL Monitoring and Dashboards.
Modern MySQL Monitoring and Dashboards.
 
DesignMind SQL Server 2008 Migration
DesignMind SQL Server 2008 MigrationDesignMind SQL Server 2008 Migration
DesignMind SQL Server 2008 Migration
 
Migrating to Amazon RDS with Database Migration Service
Migrating to Amazon RDS with Database Migration ServiceMigrating to Amazon RDS with Database Migration Service
Migrating to Amazon RDS with Database Migration Service
 
Data Server Manager for DB2 for z/OS
Data Server Manager for DB2 for z/OS Data Server Manager for DB2 for z/OS
Data Server Manager for DB2 for z/OS
 
Optimization SQL Server for Dynamics AX 2012 R3
Optimization SQL Server for Dynamics AX 2012 R3Optimization SQL Server for Dynamics AX 2012 R3
Optimization SQL Server for Dynamics AX 2012 R3
 
Configuring Sage 500 for Performance
Configuring Sage 500 for PerformanceConfiguring Sage 500 for Performance
Configuring Sage 500 for Performance
 
How SQL Server 2016 SP1 Changes the Game
How SQL Server 2016 SP1 Changes the GameHow SQL Server 2016 SP1 Changes the Game
How SQL Server 2016 SP1 Changes the Game
 
Boosting the Performance of your Rails Apps
Boosting the Performance of your Rails AppsBoosting the Performance of your Rails Apps
Boosting the Performance of your Rails Apps
 
Moving to the cloud; PaaS, IaaS or Managed Instance
Moving to the cloud; PaaS, IaaS or Managed InstanceMoving to the cloud; PaaS, IaaS or Managed Instance
Moving to the cloud; PaaS, IaaS or Managed Instance
 

Mehr von Denny Lee

Azure Cosmos DB: Globally Distributed Multi-Model Database Service
Azure Cosmos DB: Globally Distributed Multi-Model Database ServiceAzure Cosmos DB: Globally Distributed Multi-Model Database Service
Azure Cosmos DB: Globally Distributed Multi-Model Database ServiceDenny Lee
 
Spark to DocumentDB connector
Spark to DocumentDB connectorSpark to DocumentDB connector
Spark to DocumentDB connectorDenny Lee
 
Introduction to Azure DocumentDB
Introduction to Azure DocumentDBIntroduction to Azure DocumentDB
Introduction to Azure DocumentDBDenny Lee
 
SQL Server Integration Services Best Practices
SQL Server Integration Services Best PracticesSQL Server Integration Services Best Practices
SQL Server Integration Services Best PracticesDenny Lee
 
SQL Server Reporting Services: IT Best Practices
SQL Server Reporting Services: IT Best PracticesSQL Server Reporting Services: IT Best Practices
SQL Server Reporting Services: IT Best PracticesDenny Lee
 
Introduction to Microsoft's Big Data Platform and Hadoop Primer
Introduction to Microsoft's Big Data Platform and Hadoop PrimerIntroduction to Microsoft's Big Data Platform and Hadoop Primer
Introduction to Microsoft's Big Data Platform and Hadoop PrimerDenny Lee
 
Differential Privacy Case Studies (CMU-MSR Mindswap on Privacy 2007)
Differential Privacy Case Studies (CMU-MSR Mindswap on Privacy 2007)Differential Privacy Case Studies (CMU-MSR Mindswap on Privacy 2007)
Differential Privacy Case Studies (CMU-MSR Mindswap on Privacy 2007)Denny Lee
 
Yahoo!, Big Data, and Microsoft BI: Bigger and Better Together
Yahoo!, Big Data, and Microsoft BI: Bigger and Better TogetherYahoo!, Big Data, and Microsoft BI: Bigger and Better Together
Yahoo!, Big Data, and Microsoft BI: Bigger and Better TogetherDenny Lee
 
SQL Server Reporting Services Disaster Recovery webinar
SQL Server Reporting Services Disaster Recovery webinarSQL Server Reporting Services Disaster Recovery webinar
SQL Server Reporting Services Disaster Recovery webinarDenny Lee
 
SQLCAT - Data and Admin Security
SQLCAT - Data and Admin SecuritySQLCAT - Data and Admin Security
SQLCAT - Data and Admin SecurityDenny Lee
 
SQLCAT: Addressing Security and Compliance Issues with SQL Server 2008
SQLCAT: Addressing Security and Compliance Issues with SQL Server 2008SQLCAT: Addressing Security and Compliance Issues with SQL Server 2008
SQLCAT: Addressing Security and Compliance Issues with SQL Server 2008Denny Lee
 
SQLCAT: A Preview to PowerPivot Server Best Practices
SQLCAT: A Preview to PowerPivot Server Best PracticesSQLCAT: A Preview to PowerPivot Server Best Practices
SQLCAT: A Preview to PowerPivot Server Best PracticesDenny Lee
 
Deploying and Managing PowerPivot for SharePoint
Deploying and Managing PowerPivot for SharePointDeploying and Managing PowerPivot for SharePoint
Deploying and Managing PowerPivot for SharePointDenny Lee
 
SQLCAT: Tier-1 BI in the World of Big Data
SQLCAT: Tier-1 BI in the World of Big DataSQLCAT: Tier-1 BI in the World of Big Data
SQLCAT: Tier-1 BI in the World of Big DataDenny Lee
 
Big Data, Bigger Brains
Big Data, Bigger BrainsBig Data, Bigger Brains
Big Data, Bigger BrainsDenny Lee
 
Jump Start into Apache Spark (Seattle Spark Meetup)
Jump Start into Apache Spark (Seattle Spark Meetup)Jump Start into Apache Spark (Seattle Spark Meetup)
Jump Start into Apache Spark (Seattle Spark Meetup)Denny Lee
 
How Concur uses Big Data to get you to Tableau Conference On Time
How Concur uses Big Data to get you to Tableau Conference On TimeHow Concur uses Big Data to get you to Tableau Conference On Time
How Concur uses Big Data to get you to Tableau Conference On TimeDenny Lee
 
Ensuring compliance of patient data with big data and bi [bdii 301-m] - (4078)
Ensuring compliance of patient data with big data and bi [bdii 301-m] - (4078)Ensuring compliance of patient data with big data and bi [bdii 301-m] - (4078)
Ensuring compliance of patient data with big data and bi [bdii 301-m] - (4078)Denny Lee
 
Yahoo! TAO Case Study Excerpt
Yahoo! TAO Case Study ExcerptYahoo! TAO Case Study Excerpt
Yahoo! TAO Case Study ExcerptDenny Lee
 
How Klout is changing the landscape of social media with Hadoop and BI
How Klout is changing the landscape of social media with Hadoop and BIHow Klout is changing the landscape of social media with Hadoop and BI
How Klout is changing the landscape of social media with Hadoop and BIDenny Lee
 

Mehr von Denny Lee (20)

Azure Cosmos DB: Globally Distributed Multi-Model Database Service
Azure Cosmos DB: Globally Distributed Multi-Model Database ServiceAzure Cosmos DB: Globally Distributed Multi-Model Database Service
Azure Cosmos DB: Globally Distributed Multi-Model Database Service
 
Spark to DocumentDB connector
Spark to DocumentDB connectorSpark to DocumentDB connector
Spark to DocumentDB connector
 
Introduction to Azure DocumentDB
Introduction to Azure DocumentDBIntroduction to Azure DocumentDB
Introduction to Azure DocumentDB
 
SQL Server Integration Services Best Practices
SQL Server Integration Services Best PracticesSQL Server Integration Services Best Practices
SQL Server Integration Services Best Practices
 
SQL Server Reporting Services: IT Best Practices
SQL Server Reporting Services: IT Best PracticesSQL Server Reporting Services: IT Best Practices
SQL Server Reporting Services: IT Best Practices
 
Introduction to Microsoft's Big Data Platform and Hadoop Primer
Introduction to Microsoft's Big Data Platform and Hadoop PrimerIntroduction to Microsoft's Big Data Platform and Hadoop Primer
Introduction to Microsoft's Big Data Platform and Hadoop Primer
 
Differential Privacy Case Studies (CMU-MSR Mindswap on Privacy 2007)
Differential Privacy Case Studies (CMU-MSR Mindswap on Privacy 2007)Differential Privacy Case Studies (CMU-MSR Mindswap on Privacy 2007)
Differential Privacy Case Studies (CMU-MSR Mindswap on Privacy 2007)
 
Yahoo!, Big Data, and Microsoft BI: Bigger and Better Together
Yahoo!, Big Data, and Microsoft BI: Bigger and Better TogetherYahoo!, Big Data, and Microsoft BI: Bigger and Better Together
Yahoo!, Big Data, and Microsoft BI: Bigger and Better Together
 
SQL Server Reporting Services Disaster Recovery webinar
SQL Server Reporting Services Disaster Recovery webinarSQL Server Reporting Services Disaster Recovery webinar
SQL Server Reporting Services Disaster Recovery webinar
 
SQLCAT - Data and Admin Security
SQLCAT - Data and Admin SecuritySQLCAT - Data and Admin Security
SQLCAT - Data and Admin Security
 
SQLCAT: Addressing Security and Compliance Issues with SQL Server 2008
SQLCAT: Addressing Security and Compliance Issues with SQL Server 2008SQLCAT: Addressing Security and Compliance Issues with SQL Server 2008
SQLCAT: Addressing Security and Compliance Issues with SQL Server 2008
 
SQLCAT: A Preview to PowerPivot Server Best Practices
SQLCAT: A Preview to PowerPivot Server Best PracticesSQLCAT: A Preview to PowerPivot Server Best Practices
SQLCAT: A Preview to PowerPivot Server Best Practices
 
Deploying and Managing PowerPivot for SharePoint
Deploying and Managing PowerPivot for SharePointDeploying and Managing PowerPivot for SharePoint
Deploying and Managing PowerPivot for SharePoint
 
SQLCAT: Tier-1 BI in the World of Big Data
SQLCAT: Tier-1 BI in the World of Big DataSQLCAT: Tier-1 BI in the World of Big Data
SQLCAT: Tier-1 BI in the World of Big Data
 
Big Data, Bigger Brains
Big Data, Bigger BrainsBig Data, Bigger Brains
Big Data, Bigger Brains
 
Jump Start into Apache Spark (Seattle Spark Meetup)
Jump Start into Apache Spark (Seattle Spark Meetup)Jump Start into Apache Spark (Seattle Spark Meetup)
Jump Start into Apache Spark (Seattle Spark Meetup)
 
How Concur uses Big Data to get you to Tableau Conference On Time
How Concur uses Big Data to get you to Tableau Conference On TimeHow Concur uses Big Data to get you to Tableau Conference On Time
How Concur uses Big Data to get you to Tableau Conference On Time
 
Ensuring compliance of patient data with big data and bi [bdii 301-m] - (4078)
Ensuring compliance of patient data with big data and bi [bdii 301-m] - (4078)Ensuring compliance of patient data with big data and bi [bdii 301-m] - (4078)
Ensuring compliance of patient data with big data and bi [bdii 301-m] - (4078)
 
Yahoo! TAO Case Study Excerpt
Yahoo! TAO Case Study ExcerptYahoo! TAO Case Study Excerpt
Yahoo! TAO Case Study Excerpt
 
How Klout is changing the landscape of social media with Hadoop and BI
How Klout is changing the landscape of social media with Hadoop and BIHow Klout is changing the landscape of social media with Hadoop and BI
How Klout is changing the landscape of social media with Hadoop and BI
 

Kürzlich hochgeladen

[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdfSandro Moreira
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyKhushali Kathiriya
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Jeffrey Haguewood
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobeapidays
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Zilliz
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusZilliz
 
Cyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdfCyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdfOverkill Security
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...apidays
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...DianaGray10
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...Zilliz
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...apidays
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfOrbitshub
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Victor Rentea
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamUiPathCommunity
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxRustici Software
 
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUKSpring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUKJago de Vreede
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 

Kürzlich hochgeladen (20)

[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with Milvus
 
Cyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdfCyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdf
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUKSpring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 

Building and Deploying Large Scale SSRS using Lessons Learned from Customer Deployments

  • 1. Building & Deploying Large Scale SSRS using Lessons Learned from Customer Deployments Denny Lee, SQLCAT Best Practices Lukasz Pawlowski, SQL Reporting Services
  • 2. Customer Advisory Team • Works on largest, most complex SQL Server projects worldwide • US: NASDAQ, USDA, Verizon, Raymond James… • Europe: London Stock Exchange, Barclay’s Capital • Asia and Pacific: Korea Telecom, Western Digital, Japan Railways East • ISVs: SAP, Siebel, Sharepoint, GE Healthcare • Drives product requirements back into SQL Server from our customers and ISVs • Shares best practices with SQL Server community • http://www.microsoft.com/technet/prodtechnol/sql/bestpractice/default.mspx • http://blogs.msdn.com/sqlcat • http://blogs.msdn.com/mssqlisv • Coming soon: http://www.sqlcat.com – technical notes and case studies We are wearing the OrangeOrange shirts during the conference. Stop by, say hello and feel free to ask us any questions.
  • 3. Agenda • Cover the following:Cover the following: • The KEY to SuccessThe KEY to Success • Customer ScenarioCustomer Scenario • Scaling OutScaling Out • Performance OptimizationPerformance Optimization • As time permits:As time permits: • TroubleshootingTroubleshooting DBA-416-M • Large Scale SSRS from Customer Lessons Learned
  • 4. The KEY to Success DBA-416-M • Large Scale SSRS from Customer Lessons Learned Agenda • The KEY to Success • Customer Scenario • Scaling Out • Performance Optimization • Troubleshooting
  • 5. The KEY to Success: Read the manuals! • A lot of documentation on SSRS available online • Many mistakes in implementation could have been avoided • Read these: • Planning for Scalability and Performance with Reporting Services http://www.microsoft.com/technet/prodtechnol/sql/2005/pspsqlrs.mspx • Upgrading Reporting Services (SQL Books Online) http://technet.microsoft.com/en-us/library/ms143747.aspx • Configuring a Report Server Scale-Out Deployment http://technet.microsoft.com/en-us/library/ms156453.aspx DBA-416-M • Large Scale SSRS from Customer Lessons Learned
  • 6. Customer Scenario DBA-416-M • Large Scale SSRS from Customer Lessons Learned Agenda • The KEY to Success • Customer Scenario • Scaling Out • Performance Optimization • Troubleshooting Reporting Services architecture based on customer deployments
  • 7. Reporting DataReporting Data Report ServerReport Server Customer Scenario: Enterprise Rent-A-Car RS Deployment DBA-416-M • Large Scale SSRS from Customer Lessons Learned • Real RS deployment from large customer in automotive industry • 1800 concurrent users • using VS test • 10s think time • Mean 33-36s txn time • This presentation incorporates lessons learned from this and other customers: • File System Snapshots to make use of cache • Dedicated RSDB Server to reduce DB blocking
  • 8. Scaling Out DBA-416-M • Large Scale SSRS from Customer Lessons Learned An important aspect of Reporting Services is native architecture for scaling out to handle larger workloads and more concurrent users. Agenda • The KEY to Success • Customer Scenario • Scaling Out • Performance Optimization • Troubleshooting
  • 9. ReportCatalogReportCatalog ReportingDataReportingData Scaling Out Architecture: Overall Architecture DBA-416-M • Large Scale SSRS from Customer Lessons Learned RSScaleOutDeploymentRSScaleOutDeployment Report ServerReport Server
  • 10. ReportCatalogReportCatalog ReportingDataReportingData Scaling Out Architecture: Quick focus on Report Application DBA-416-M • Large Scale SSRS from Customer Lessons Learned RSScaleOutDeploymentRSScaleOutDeployment Report ServerReport Server ReportingApplicationReportingApplication
  • 11. Scaling Out Architecture: Overview Obtain performance benefits through architecture • For Report Server catalogs • Move RS catalogs to a dedicated server • Move to 64-bit • For Report Servers • Up to four cores per server • Add RAM • Move to 64-bit • Move to scale out architecture after reaching four cores • Do these in listed order DBA-416-M • Large Scale SSRS from Customer Lessons Learned
  • 12. Scaling Out Architecture: Report Server Catalog DBA-416-M • Large Scale SSRS from Customer Lessons Learned Report Server Catalog (RSDB)Report Server Catalog (RSDB) Stores all report metadata including report definitions, report / history snapshots, scheduling, etc. RS Temp DBRS Temp DB Stores temporary snapshots while running reports • These databases can be a bottleneck • Optimize by applying standard SQL DB techniques • Catalog has a lot of I/O and transactions • Many inserts to ChunkData, SnapshotData, and SessionData tables ReportCatalogReportCatalog
  • 13. Scaling Out Architecture: Optimize Remote Report Catalog • Place DBs on high performance disk like SAN • Local Disks: • Smaller size disk w/ faster rotation speed (15k vs. 10k) • Maximize and balance I/O across all spindles • Separate disks for Report Server Temp DB and Report Server Catalog • RAID: • Use RAID 10 like other SQL implementations • Do not use RAID 5 due to write penalty • For High Availability, use failover clustering DBA-416-M • Large Scale SSRS from Customer Lessons Learned ReportCatalogReportCatalog
  • 14. Scaling Out Architecture: File System (FS) Snapshots • RS TempDB has a lot of transactions to keep report consistency (i.e. cached reports) • Reduce RS Catalog I/O with File SystemFile System SnapshotsSnapshots • It will store data on file system • Unlike RS/IIS setup, will require more disk space • To enable, update RSReportServer.config file: <Add Key="WebServiceUseFileShareStorage" Value="true" /> <WindowsServiceUseFileShareStorage>True</Win dowsServiceUseFileShareStorage> DBA-416-M • Large Scale SSRS from Customer Lessons Learned
  • 15. Scaling Out Architecture: Network • Load balancing important for many client connections to RS servers • Recommend: Use cookie persistence to preserve SSRS- to-client connection • IP affinity can work but may be overload for browser-based connections • Makes use of SSRS file cache • Keep round-robin for initial connections • Recommend: dual NIC for RS • Split browser and AS/DB traffic DBA-416-M • Large Scale SSRS from Customer Lessons Learned RSScaleOutDeploymentRSScaleOutDeployment
  • 16. Scaling Out Architecture: Isolate your workloads DBA-416-M • Large Scale SSRS from Customer Lessons Learned ReportCatalogReportCatalog RSScaleOutRSScaleOut DeploymentDeployment Report ServerReport Server ReportingDataReportingData SchedulingScheduling InteractionInteraction Benefits: Predictable Workloads Helps with Security Model Isolate Performance Issues RSScaleOutRSScaleOut DeploymentDeployment
  • 17. Scaling Out Architecture: Isolate your workloads (2) • To configure workload isolation • Use Surface Area Configuration tool • [1] Scheduled Events and Report Delivery • [2] Web Service and HTTP Access • Programmatically change these settings • RS WMI Provider Library > ... > SetServiceState DBA-416-M • Large Scale SSRS from Customer Lessons Learned Scheduling [1]Scheduling [1] Interaction [2]Interaction [2]
  • 18. Scaling Out Architecture: Report Data DS Performance Considerations • Scale out works for RS but may not work for underlying Report Data (data source) • Reporting loads Report Data, ∴ limit impact of large numbers of users • Limit data set size using report filters • SSIS limited data from Operational data sources • Do not let all users access all of the reports • E.g. Report Builder against Analysis Services results in many queries being executed. DBA-416-M • Large Scale SSRS from Customer Lessons Learned RSScaleOutDeploymentRSScaleOutDeployment
  • 19. Scaling Out Architecture: Analysis Services • Common scenario: place SSRS in front of SSAS to provide fast cube reporting • Report rendering issues may be a SSAS problem not a SSRS problem • Remember SSRS is scale out, while SSAS is scale-up • SSAS query scalability solution can be found at: • Scale-Out Querying with Analysis Services http://www.microsoft.com/technet/prodtechnol/sql/bestpractice/scoqryas. mspx DBA-416-M • Large Scale SSRS from Customer Lessons Learned
  • 20. Reporting DataReporting Data Scaling Out Architecture: Scale Out Querying with Analysis Services DBA-416-M • Large Scale SSRS from Customer Lessons Learned RSScaleOutDeploymentRSScaleOutDeployment ReportServerReportServer queries Synchronize Synchronize Notes: AS is scale-up, Scale out by synchronizing copies of same DB queries
  • 21. Performance Optimization DBA-416-M • Large Scale SSRS from Customer Lessons Learned How do you get the most out of your Reporting Services environment Agenda • The KEY to Success • Customer Scenario • Scaling Out • Performance Optimization • Troubleshooting
  • 22. Performance Optimization: Should we use 64-bit? • RS Catalog • It definitely helps the RS Catalog SQL servers • Report Servers • RS requires each data set to fit in memory • E.g. 32-bit RS will hit 3GB ceiling • IIS process recycles = reports fails • 64-bit does not increase the speed of report rendering • Allow users to view and export larger reports • May get better throughput at higher workloads due to less memory contention • Note, RS works on x64 only • RecommendationRecommendation: Use 64-bit to handle higher workloads, not report rendering speed DBA-416-M • Large Scale SSRS from Customer Lessons Learned
  • 23. Performance Optimization: Features RecommendationsRecommendations • Use Report Execution Timeouts to control how a long a report has to execute • For large reports with data processing bottlenecks, use Scheduled Snapshots • Rendering reports into non-browser formats like PDF and Excel, address this by scheduling Delivered Rendered reports • Pre-populate the report cache using data driven subscriptions • Remember, RS is designed for interactive use; If you want to export of data, use file share delivery or SSIS as your mechanisms DBA-416-M • Large Scale SSRS from Customer Lessons Learned
  • 24. Performance Optimization: Configurations • RecommendationRecommendation: • Disable report history to reduce/remove the report history snapshots • If history desired, establish global or report-specific limit to the number of snapshots • RecommendationRecommendation: • Understand the need for big reports • Consider Cache and Snapshot execution options • Mitigates against load cause by concurrent users • When tuning Report Server • Need to tune IIS • In SQL Server 2008, this will be different DBA-416-M • Large Scale SSRS from Customer Lessons Learned
  • 25. Performance Optimization: Memory Configurations • MemoryLimit Configuration • Default 60% of available memory • Increase help process more requests • Once threshold hit, no new requests are accepted • MaximumMemoryLimit Configuration • Default 80% of available memory • If this threshold is met, processing is aborted • Changing values may solve RS only to bring up other contentions • Recommendation:Recommendation: If constantly hitting memory thresholds, consider scaling up and then scaling out DBA-416-M • Large Scale SSRS from Customer Lessons Learned
  • 26. Performance Optimization: Performance Testing • Need to understand your scenarios and reports • Scenarios are defined by user personas & usage patterns • Reports are either test reports or actual reports • Tests should isolate Report Server from other systems • Need tools to automate the testing • See white paper: Using Visual Studio 2005 to Perform Load Testing on a SQL Server 2005 Reporting Services Report Server http://technet.microsoft.com/en-us/library/aa964139.aspx • Make single incremental changes between tests • Do not use SQL trace inside VSTE DBA-416-M • Large Scale SSRS from Customer Lessons Learned
  • 27. Performance Optimization: Enterprise Rent-A-Car Performance Testing DBA-416-M • Large Scale SSRS from Customer Lessons Learned RS Servers Users Mean Tx Time Mean CPU% 1 Server 608 36.9 99 2 servers 1218 36.8 96 4 servers 2300 30.5 80 • 8GB RAM, 4 CPU core RS servers • Graph is max # of users reached for sustained time period (>=15 min) • 2x RAM and CPU core, only 1/3 increase in load
  • 28. Performance Optimization: Enterprise Rent-A-Car Performance Testing (2) • Visual Studio Testing • Mean Transaction Time Range 33-36s • 10s think time • 95% SSRS, 5% ProClarity users • 1 test controller with 4 agents (32-bit) • >2000 concurrent users: higher rate of failed tests • Suspect this is due overload of test mechanism • 1800 concurrent users: low rate of failed tests • Pre-defined workload • 75% simple, 25% complex workflows • Randomized selection of report parameters DBA-416-M • Large Scale SSRS from Customer Lessons Learned
  • 29. QUESTIONS? DBA-416-M • Large Scale SSRS from Customer Lessons Learned Agenda • The KEY to Success • Customer Scenario • Scaling Out • Performance Optimization • Troubleshooting
  • 30. Troubleshooting DBA-416-M • Large Scale SSRS from Customer Lessons Learned How to diagnose issues when running reports in the Report Server? Agenda • The KEY to Success • Customer Scenario • Scaling Out • Performance Optimization • Troubleshooting
  • 31. Troubleshooting: Overview • Reports can take up • a lot of memory • a lot of time to execute • a lot of CPU • It is possible for errors to occur as a result: • Out of Memory • Internal Errors • Rendering errors • So how do we diagnose issues when running reports in the Report Server? DBA-416-M • Large Scale SSRS from Customer Lessons Learned
  • 32. Troubleshooting: Start with the RS Execution and Trace Logs • Report Server log files include: • Report execution, success and other related data • Detailed error stacks showing what the problems are • Major events are in the Windows application event log • Located under: • <install folder>Reporting ServicesLogFiles • References • Reporting Services Log Files details are in BOL at: http://msdn2.microsoft.com/en-us/library/ms157403.aspx • Search the Reporting Services MSDN forum for the stack trace: http://forums.microsoft.com/MSDN/ShowForum.aspx? ForumID=82&SiteID=1 • RS Error code info: http://msdn2.microsoft.com/en-us/library/ms165307.aspx DBA-416-M • Large Scale SSRS from Customer Lessons Learned
  • 33. Troubleshooting: Monitoring Performance • Want to look at memory consumptions, application domain recycles, cpu usage, etc. • Good resources for this: • This topic describes the performance counters http://msdn2.microsoft.com/en-us/library/aa972240(SQL.80).aspx • Monitoring Report Execution Performance with Execution Logs http://msdn2.microsoft.com/en-us/library/aa964131.aspx • Monitoring interactive report executions via ListJobs SOAP API to see which long running reports are currently executing http://msdn2.microsoft.com/en-gb/library/aa225969(SQL.80).aspx • Use the SQL Server Profiler to monitor actions of the Report Server database DBA-416-M • Large Scale SSRS from Customer Lessons Learned
  • 34. Troubleshooting: Diagnosing Problems Specific actions to help diagnose problems: • Adjust memory limits: • Refer to “Report Size in Memory” section of http://msdn2.microsoft.com/en-US/library/ms156002.aspx • Adjust schedule concurrency: • Do this to isolate which are your problem reports • May want to reduce number of simultaneous report executions to 1 especially for extremely large reports • In rsreportserver.configrsreportserver.config, set <MaxQueueThreads><MaxQueueThreads> • Zero (0) means RS server automatically determines the “right number” DBA-416-M • Large Scale SSRS from Customer Lessons Learned
  • 35. Troubleshooting: Common problems • Error 401 is an authentication error • Providing no or incorrect credentials • Also can be seen during an ASP.NET application reset as well • Happens if server starts running out of memory • Check logs for InternalCatalogException; • in the stack trace, you should see the method that failed • Within trace logs - Application Domain Recycles • App domain recycles used to clear out memory • Often will be correlated with interactive report execution failures • Indicates RS server is under memory pressure DBA-416-M • Large Scale SSRS from Customer Lessons Learned
  • 36. Troubleshooting: Common problems (Continued) • SQL Query Plan optimization • Stored Procedures require query plan optimization • Use the With Recompile directive in Stored Procedures • Use fully qualified names to access across DB objects • Refresh on SQL Query Performance: • http://msdn2.microsoft.com/en-us/library/ms187032.aspx • Report Design with drop-down parameter lists • Evaluating drop downs results in query load on DBMS • Optimize parameter, prompts, and valid values DBA-416-M • Large Scale SSRS from Customer Lessons Learned
  • 37. Troubleshooting: References • Processing Large Reports recommendations (incl. config, rendering, deployment, and distribution) http://msdn2.microsoft.com/en-US/library/ms159638.aspx • Performance Whitepaper (Very Important) http://www.microsoft.com/technet/prodtechnol/sql/2005/pspsqlrs.mspx • How to configure a scale-out deployment: scale outs can increase throughput, reliability, and concurrency http://msdn2.microsoft.com/en-us/library/ms159114.aspx • How to scale test your report server deployment: http://www.microsoft.com/technet/prodtechnol/sql/2005/pspsqlrs.mspx DBA-416-M • Large Scale SSRS from Customer Lessons Learned
  • 38. Many Thanks! • Craig Utley and David Reinhold for the great customer implementation data • Customer Support: Binh Cao, Perry Birch, Scott Reagin, Charles Liptaak, Margaret Shoptaw • Also thanks to Brian Welcker, Bill Emmert, and Nicholas Dritsas for additional resources. DBA-416-M • Large Scale SSRS from Customer Lessons Learned
  • 39. SQL CAT Presentations at PASS 2007 Session Code Session Title Speakers Date Time DBA-410-M Designing for Petabyte using Lessons Learned from Customer Experiences Lubor Kollar; Lasse Nedergaard 9/19/2007 9:45 AM - 11:00 AM DBA-411-M Optimizing OLTP Systems using Lessons Learned from MySpace Michael Thomassy; Burzin Patel; Hala Al-Adwan 9/19/2007 1:30 PM - 2:45 PM DBA-314-M Building High Performance Systems for SQL Server Juergen Thomas 9/19/2007 3:00 PM – 4:15 PM DBA-412-M ISV configuration & implementation using Lessons Learned from Customer Deployments Juergen Thomas 9/20/2007 10:30 AM - 11:45 AM DBA-413-M Building Highly Available SQL Server Implementations using Lessons Learned from Customer Deployments Prem Mehra; Lindsey Allen; Sanjay Mishra 9/20/2007 1:30 PM - 2:45 PM DBA-416-M Building and Deploying Large Scale SSRS Farms using Lessons Learned from Customer Deployments Denny Lee; Lukasz Pawlowski 9/21/2007 9:45 AM - 11:00 AM DBA-415-M Building & Maintaining large Cubes using Lessons Learned from Customer Deployments Nicholas Dritsas; Eric Jacobsen 9/21/2007 1:00 PM - 2:15 PM DBA-414-M SQL Server 2005 Server Consolidation Update Prem Mehra 9/21/2007 2:30 PM – 3:45 PM BI-406 Diagnosing Analysis Services 2005 MDX Query Performance Bottlenecks Carl Rabeler; Eric Jacobsen 9/21/2007 4:00 PM – 5:15 PM
  • 40. DBA-416-M • Large Scale SSRS from Customer Lessons Learned Thank you! Thank you for attending this session and the 2007 PASS Community Summit in Denver

Hinweis der Redaktion

  1. Upgrading Reporting Services (SQL Books Online) http://technet.microsoft.com/en-us/library/ms143747.aspx Configuring a Report Server Scale-Out Deployment http://technet.microsoft.com/en-us/library/ms156453.aspx and most importantly Planning for Scalability and Performance with Reporting Services http://www.microsoft.com/technet/prodtechnol/sql/2005/pspsqlrs.mspx
  2. A common approach to scaling Reporting Services is to scale up similar to the way we scale up SQL Server. While you can do this, the approach for scaling Reporting Services is really to scale out. The idea is that you can have multiple Report Servers that reference a remote catalog. You have multiple servers sharing the same catalog database so that way you can be sharing the state information between the all of the boxes.
  3. A quick focus on Report Application Similar to the “Overall Architecture” The overall architecture implied that the Report Viewer is incorporated within the RS server But for LOB and/or external web applications, you may want to create a report application that feeds against the RS servers and Reporting Data You can also scale out the report application servers as well.
  4. What this implies is that you will need to optimize this remote catalog to prevent it from being a bottleneck. To optimize the remote catalog, remember that standard SQL DB optimization techniques coming into play here. Remember, the remote catalog has a lot of I/O and transactions in order to share state information across multiple servers. If you have an environment with many concurrent users, there can be a lot of write activity to the ReportingServerTempDB log. Many of the insertions are performed to the ChunkData, SnapshotData, and SessionData tables. Therefore, you will want to have a high performance disk, like a SAN, for your RS catalog.
  5. The reason the ReportingServerTempDB tables and log are getting filled up fast is that there are many transactions performed to keep report consistency (e.g. if I get the first page of a report, we need a snapshot of the second page that is consistent). Because of this concern for consistency, it is then important for Reporting Services to cache all of this information. Therefore to reduce the number of transactions being placed on your remote catalog (e.g. ReportingServerTempDB), use the File System (FS) Snapshots feature instead. When FS snapshots are enabled, snapshot data persists on the local RS server. Therefore, this reduces the network traffic from the RS to the catalog; which also reduces the number and size of transactions within the catalog. For more information on this feature, please refer to the Planning for Scalability and Performance with Reporting Services whitepaper at http://www.microsoft.com/technet/prodtechnol/sql/2005/pspsqlrs.mspx
  6. Use cookie persistence instead of IP address affinity for network application persistence. The latter can work but that may be an overload for browser-based connections.
  7. Recall, Interactive report execution can lead to excessive load on your server.
  8. For option [1] in which you can isolate one load to schedule reports, sometimes making the report run on a schedule can help you isolate the performance issues (interactive report execution can lead to excessive load on your server)
  9. Report Builder against AS server: E.g. Report Builder Scenario: Cube is pointing ROLAP partition with 1.6B row fact table. A single query executed using the Time dimension results in: One query is produced for the entire Measure Group One query is produced for each Calculated Measure Additional queries are produced for years other than the sliced year.
  10. Remember 64-bit allows you to have larger addressable memory space to use: 32-bit can use only 3Gb (with /3GB switch)
  11. You can adjust the MemoryLimit from its default of 60% to a higher value to help process more requests. While existing requests are allowed to complete, if RS hits this threshold, no new requests are accepted. The MaximumMemoryLimit has a default value of 80%. What this means is if this threshold is met, processing is aborted. Note, changing of the these memory values may solve your RS issues only to bring up other contentions (from the OS, SQL, etc.). While the value changes do help, if you are constantly hitting these memory thresholds, this means that you may want to consider scaling up (adding more memory and CPUs) or scaling out (adding more machines to spread out all of the requests).
  12. Using Visual Studio 2005 to Perform Load Testing on a SQL Server 2005 Reporting Services Report Server http://technet.microsoft.com/en-us/library/aa964139.aspx
  13. Workflow Example: Step 1 Open List of reports Think time Step 2 Open report with default parameters Report renders Think time Step 3 Change parameter Report renders Think time
  14. Logging For Report Execution problems, start with the Report Server execution log This log will tell you which reports are failing, who ran them, what parameters they used It will also provide the time at which it failed and the server in your deployment on which the report failed You can use the time and server to find the actual stack trace in the trace log files Reference the trace logs based on timestamps ranges you find in the event log The trace logs provide detailed stack trace information.  You can sometimes understand what the error is based on this info Search the Reporting Services MSDN forum using the stack trace information for solutions to the problem you encountered: http://forums.microsoft.com/MSDN/ShowForum.aspx?ForumID=82&amp;SiteID=1 You can find information on some of the error codes here: http://msdn2.microsoft.com/en-us/library/ms165307.aspx Report Server exposes a number of log files, these include: Information on report executions and whether they were successful and additional data related to the execution Detailed error stacks that show what the problems were Major events that occurred on your Report Server that you should be aware of are in the application event log in windows You can read up on all of this here: http://msdn2.microsoft.com/en-us/library/ms157403.aspx