Chris Webb's BI Blog

Analysis Services, MDX, PowerPivot, DAX and anything BI-related

Build Your Own Analysis Services Cache-Warmer in Integration Services

with 36 comments

Cache-warming is one of the most neglected performance-tuning techniques for Analysis Services: perhaps it seems too much like cheating? Yet almost everyone knows how much difference there can be executing a query on a cold cache and a warm cache so there should be no excuse not to be doing it, especially if you know what queries your users are likely to be running in advance. AS2005′s caching mechanism is more complex than I can describe here (or than I can describe full stop – although I hear that the recently published "Microsoft Analysis Services 2005" has some great information on this front) but a lot of the time it can cache raw data of the cube and quite often the results of calculations too; you’ll need to test your own cubes and queries to find out exactly how much you’ll benefit but almost every cube benefits to a noticeable extent.

I’ve recently implemented a simple cache-warming system for a few customers which I thought I’d share details of. Now I know that the documentation for asmd contains details of how you can use it for this purpose (see http://msdn2.microsoft.com/en-us/library/ms365187.aspx for details) but I didn’t go down this route for a number of reasons:

  • This example uses a batch file and I preferred to keep all my logic in SSIS, especially since the customers were already using it for cube processing.
  • I wanted to avoid making my customers have to get their hands dirty extracting the MDX needed. They were using Excel 2003 as their main client and as you may know Excel 2003 makes heavy use of session sets so extracting and modifying the MDX it generates to create single MDX statements would have been too much to ask.

Here’s what I did instead. First, I created a new SQL Server database to store all the queries I was going to use. Then I used Profiler to capture the necessary MDX: I made sure no-one else was connected to the server, started a trace which only used the QueryBegin event and which included the TextData column, got the user to open Excel and construct and run their query, then stopped the trace and saved the results to a table in my new database. After doing this a few times I ended up with several tables, each of which contained the MDX generated for a particular sequence of queries in Excel.

Next I created a SSIS package which took each of these queries and executed them. Here’s what it looked like:

The outermost ForEach container used an SMO enumerator to loop through every table in my SQL Server database and put the table name in a variable (the expression generated by the UI was Database[@Name='CacheWarmer']/SMOEnumObj[@Name='Tables']/SMOEnumType[@Name='Names']). Next a script task used this table name to create a SQL SELECT statement which returned every query in the current table and put that in another variable. Here’s the code:

Dts.Variables("GetMDXQueries").Value = "SELECT textdata from [" + Dts.Variables("TableName").Value.ToString() + "] where DatabaseName=’" + Dts.Variables("ASDatabaseName").Value.ToString() + "’"

Next I used an Execute SQL task to execute this statement and out the resultset into another variable, the rows of which I looped over using the innermost ForEach loop using an ADO enumerator. Inside this second loop I got the MDX query out of the current row and into a string variable in a Script task as follows:

Dts.Variables("MDXQueryString").Value = Dts.Variables("MDXQueryObject").Value.ToString()

Then used another Execute SQL task, connected to my cube, to run the MDX query. I’ve been unable to execute MDX queries inside a Data Flow task (except when going via SQL Server using linked servers, which is nasty), hence the use of an Execute SQL task here; I also found that I had to use an ADO connection to my cube – if I used an OLE DB connection all my queries ran twice for some reason. I also set the RetainSameConnection property on the connection to the cube to true so that queries which relied on session scoped sets created earlier in the workflow didn’t fail; nonetheless I also set the FailPackageOnFailure and FailParentOnFailure properties of the Execute SQL task to false just in case. I was then able to save the package up to my server and use SQL Server Agent to execute it immediately after cube processing had finished.

As I said, if you implement a cache-warming system you’ll want to test how much of a difference it makes to your query performance. The easiest way to do this is to clear the cache and then run the package twice, noting how long it takes to run both times. The difference between the two times is the difference between a cold and a warm cache. To clear the cache you can either restart the Analysis Services service or run a Clear Cache command in an XMLA query window in SQLMS. Here’s an example of the latter which clears the cache of the Adventure Works database:
<Batch xmlns="http://schemas.microsoft.com/analysisservices/2003/engine">
<ClearCache>
<Object>
<DatabaseID>Adventure Works DW</DatabaseID>
</Object>
</ClearCache>
</Batch>

Now I will admit that I’m not the world’s greatest SSIS expert so if anyone has any suggestions for improving this I’d be pleased to hear them. Please test them first though – as I mentioned above I found SSIS didn’t always work as I expected with SSAS as a data source! I’ve also created a similar package whih connects to the query log AS creates for usage-based optimisation, reads the data in there and uses it to construct MDX queries which it then runs against the cube. This has the advantage of removing the need for anyone to extract any MDX from anywhere; plus the queries it constructs return very large amounts of data so you can use up all that memory you get on 64-bit boxes. The problem is that at the moment some of the queries it constructs are way too big and take forever to run… when I’ve worked out how I want to break them up into smaller chunks I’ll blog about it.

UPDATE: Allan Mitchell has very kindly done some more research on what happens when you try to run an MDX query through an Execute SQL task and written it up here:
http://wiki.sqlis.com/default.aspx/SQLISWiki/ExecuteSQLTaskExecutesMDXQueryMoreThanOnce.html

 

Written by Chris Webb

January 2, 2007 at 10:20 pm

Posted in Analysis Services

36 Responses

Subscribe to comments with RSS.

  1. Hi Chris
     
    Greate blog – I am fairly new to SSIS and "Cache warning" and I am having a hard time getting the SSIS package to work as you describe.
    Would you been kind and upload your SSIS package so I can have a look at it and get mine to work
     
    Thanks in advance
    Niels

    Niels

    July 9, 2008 at 1:09 pm

  2. I mailed you the package using the address you left here – hope you get it…

    Chris

    July 9, 2008 at 5:46 pm

  3. i am looking for a create cache tables,
     
    please Would you been kind and upload your SSIS package so I can have a look at it and get mine to work
     
     

    Unknown

    October 15, 2008 at 7:59 pm

  4. hi Chris ,
     
     
    please , Could send me SSIS package which you explained above ….
     
    thanks
    mutylala

    Unknown

    October 15, 2008 at 8:11 pm

  5. Mutylala, can you send me your email address? You\’ll find my contact details at http://www.crossjoin.co.uk

    Chris

    October 16, 2008 at 10:58 am

  6. Can  u please forward me the package? This is urgent. Tks
     
    Imran

    Imran

    October 24, 2008 at 3:51 pm

  7. Hi Chris
     
    Great Stuff! Could you please send the SSIS package to me? I\’ve been looking for this topic for a while and it is so nice to read your article.
     
    Thanks in advance
    George

    George

    November 10, 2008 at 1:03 am

  8. Great.. the package work fine for query that return small sets of data. it complain about XML and resultset when the data is averagely large, pls any help..

    rasheed

    December 4, 2008 at 11:01 am

  9. Hi Chris,Does this mechanism work with AS for Project server 2003 ?If Yes, then would you please send me the package?ThanksHung

    hung

    January 13, 2009 at 1:58 am

  10. I assume that Project Server 2003 runs off Analysis Services 2000, right? If so, the general approach should work but the package might need some modification; the package is SQL2005 only.

    Chris

    January 13, 2009 at 12:51 pm

  11. Hi Chris,Could you also email the SSIS package to me please?Thanks!

    Jim

    February 16, 2009 at 3:33 pm

  12. I will if you send me your email address! You can contact me via http://www.crossjoin.co.uk

    Chris

    February 16, 2009 at 4:28 pm

  13. hi Chris,I tried a different approach for cache warming. In my package I have a execute sql task which gets the mdx queries from a trace table in the database and another execute sql task which is with in a for each loop container executes it.But the problem is the query captured by the profiler is in this format.SELECT NON EMPTY [{D84A78E5-5A54-4A9D-B945-41A1D370B5DE}Pivot30Axis1Set0] DIMENSION PROPERTIES MEMBER_NAME, PARENT_UNIQUE_NAME ON COLUMNSFROM [CUSTOMER CUBE] CELL PROPERTIES VALUE, FORMATTED_VALUE, FORE_COLOR, BACK_COLORwhen i run the package it gives me an error saying can not run this query.Can you please advice why it\’s happening?

    Unknown

    April 30, 2009 at 9:45 pm

  14. Chris, Can you please email me your SSIS package?thanks

    Unknown

    April 30, 2009 at 9:46 pm

  15. I can if you tell me what your email address is! Alternatively, you can find my contact details at http://www.crossjoin.co.uk

    Chris

    May 1, 2009 at 9:59 am

  16. ya, it\’s formijob@yahoo.com

    Unknown

    May 1, 2009 at 3:03 pm

  17. BTW, the reason your query is failing is because it\’s referencing a session-scoped named set on the columns axis; I guess you either haven\’t already executed the CREATE SET statement needed for this set, or you haven\’t set RetainSameConnection.

    Chris

    May 6, 2009 at 1:31 pm

  18. Hi,Great blog with interesting informations. I can use it t solve my problem.ThanxM.http://www.vanjobb.hu/

    Unknown

    May 15, 2009 at 11:21 am

  19. Chris, I know this blog is much older but is it possible that you have this integration services package with you?

    amey

    December 7, 2009 at 9:15 pm

  20. Yes I do have it – you can contact me via my website http://www.crossjoin.co.uk

    Chris

    December 8, 2009 at 1:36 pm

  21. Hi Chris, what if the textData column contains parameters.and would u please send me the ssis package ?Thankschenshx at live dot cn

    Andrew

    April 12, 2010 at 10:14 am

  22. Hey Can u pls send the package at zurich008@hotmail.com…Thank you

    Unknown

    June 22, 2010 at 7:09 pm

  23. can you also send me the ssis package please at: cafarr@godaddy.com…. Thank you Chris

    Charles

    August 16, 2010 at 10:57 pm

  24. Would anyone know the reason I am recieving the following error after my cache warmer runs a few hundred queries.

    “Server: The operation has been cancelled.”.
    Possible failure reasons: Problems with the query,
    “ResultSet” property not set correctly, parameters not set correctly, or connection not established correctly.

    cody

    October 25, 2010 at 9:35 pm

    • Try running a Profiler trace while the cache warmer is running – do you see any errors from SSAS in there?

      Chris Webb

      October 26, 2010 at 8:10 am

      • Thanks for responding…

        There are no errors in the trace. However when I clear the cache I will only process around 50 queries during the first run. The next time I run it it will make it to 100 and so on as cache is warmed. At some point around 500 queries it will not process further.

        It seems as though there is something being timed out.

        I can tell you I have deviated from your sol’n a bit by removing the looping through tables. Instead of having a Cache Warm DB I have a Cache Warm table. I am putting all of my queries into one table and running only the query building loop.

        Any thoughts?

        cody

        October 26, 2010 at 7:54 pm

      • Hmmm, sounds strange. What does your memory usage look like on the SSAS box? Is there a memory leak somewhere inside the SSIS package?

        Chris Webb

        October 27, 2010 at 3:39 pm

  25. great stuff. Can you please e-mail me the package. i am not able to get it working.

    Arun

    November 2, 2010 at 7:45 pm

  26. can you pelase send the package to arunbems@yahoo.com

    arun

    November 2, 2010 at 9:38 pm

  27. Hi Chris, Could you please send me the package, i tried implementing it but couldn’t get it working.
    My email id: kr.dewasish@gmail.com

    Thanks.

    Dewasish

    January 18, 2011 at 3:43 pm

  28. This is an excellent post and works great for queries that return results in a few seconds. I have a query that runs in SQL Management Studio in 1:50 sec {You can thank my Parent Child dimension for that}. When I run it via SSIS I get this error “[Execute SQL Task] Error: Executing the query “WITH MEMBER [Aggregate].[Aggregate].[XL_SD0] AS ‘A…” failed with the following error: “XML for Analysis parser: The XML for Analysis request timed out before it was completed.”. Possible failure reasons: Problems with the query, “ResultSet” property not set correctly, parameters not set correctly, or connection not established correctly.” The TimeOut on the Execute SQL Task is set to 0. Is there another Timeout setting that I am missing ?

    Anthony Peccerillo

    May 4, 2011 at 4:08 am

    • I forgot to mention in my earlier post that the TimeOut property of the ADO connection manager for my Analysis Services 2008 DB is set to zero as well

      Anthony Peccerillo

      May 4, 2011 at 5:12 am

  29. [...] Implement cache warming in SSAS via an SSIS package: Build Your Own Analysis Services Cache-Warmer in Integration Services or SSAS Cache Warming Using [...]

  30. [...] One method that we tried was to capture the MDX statements using SQL Server Profiler and use SSIS to fire these against the cube each morning. ( Chris Webb has a good article here ) [...]

  31. Hi Chris, Can you please email your SSIS package to hedelericin@gmail.com ?thanks

    Ayca

    May 7, 2012 at 4:24 pm


Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out / Change )

Twitter picture

You are commenting using your Twitter account. Log Out / Change )

Facebook photo

You are commenting using your Facebook account. Log Out / Change )

Connecting to %s

Follow

Get every new post delivered to your Inbox.

Join 704 other followers