Data View Web Part Performance Tuning

In this post, I will show you how to do some performance tuning and troubleshooting with the data view web part in SharePoint 2010.  Please read my previous post called SharePoint Column: Count Related Items, and I’m going to refer to this method as a “reverse lookup”.

This post is based on an issue that I came across on a SharePoint page in a client’s environment.  This page had a couple of data view web parts on it, and it started to load very slowly after this environment had gone live and there was a lot of data in it.   When I refer to a data view web part, I’m not referring to an XSLT list view web part, and here is my quick video showing the difference:

SharePoint 2010 Data View and XSLT List View.

So, when I became aware that the page was running slowly, I decided to turn on the Developer Dashboard, in order to see where the issue was, exactly.  I went to the server, and used PowerShell to turn on the dashboard so that it’s available on demand, using what I learned from Todd Klindt here: How to use Windows PowerShell to configure the Developer Dashboard.

Once the Developer Dashboard is turned on, you’ll see this new icon at the top right in SharePoint, next to your own name:

201-image_3_3538BC67.png

When you click the icon, it shows you the dashboard for that page, with that page’s performance.  See in this screenshot, there’s my data view web part at the top, and the dashboard at the bottom.

201-image_6_3538BC67.png

Scroll down to look at the full information at the bottom:

201-image_11_3538BC67.png

Take a look at “Execution Time” in the top right.  It shows 420.05 milliseconds.  That’s actually pretty slow, especially since it’s just a simple list of a few columns.  Look at the “Database Queries” section.  The item called @DocParentIdForRF is the one that is taking the longest.  Hmm, there’s some kind of big query going on in my web part.  I didn’t know what I was looking at, so I elicited the help of one of our developers, Phil Jirsa.  He recognized this query item as being related to a lookup field.  The only lookup field I had was one of these reverse lookups that’s showing the number of items in another list that are looking up to the items in this list.  Ah hah!  So each time the page renders, it’s having to do that count of how many items in the other list, and having to display the number next to each of the ones in this list.  The more items in the other list, the slower this page loads.  In this case, there were thousands!

But wait a minute, as you can see in my above screenshot of my list of doctors, that column called “Count Patients” is not even being displayed!  Well guess what… it’s being rendered anyway.  I’ll show you what Phil showed me.

Open your web part page in SharePoint Designer.  Under “Current Data Source” on the right, click the name of your web part.  Mine is DataView 1.

201-image_15_3538BC67.png

Click Fields on this screen.

201-image_17_3538BC67.png

There it is!  See my “Count Patients” field, which is my reverse lookup field.

201-image_thumb_7_3538BC67.png

I can remove this field since I’m not using it.  I can also clean up this list of fields on the right by removing any fields that I’m not using as lookup fields or in any of my filtering, sorting, grouping, or conditional formatting.  I recommend leaving ID and title in there no matter what.

NOW my web part has been performance tuned!

Notice that this list of fields is different than the list of columns.  In the ribbon, when I click the big Add/Remove Columns button, this only shows the fields that are actually being displayed as columns.

I save my page and go back to the browser and refresh it.  Do a hard refresh by clicking CTRL+F5.

Whoa, look at that!  My execution time is down to only 104.16 milliseconds!

201-image_21_204739F4.png

Now, I hate to tell you, but even though this trick is pretty cool, I know nothing about what most of the information on this screen means.  I just know to look at the number of milliseconds next to each item and then try and research what that item is.

Here are a couple of reference links:

Also, if you’d like to see the video of me doing the demonstration of this, you can watch me on our SharePoint Power Hour Episode 3.  Unfortunately, the hard drive on my VM happened to fill up in the middle of my demo!

 

6 comments

  • My co-workers and I do a lot of DVWP work for several SharePoint projects and this was an excellent article for building better DVWPs. In some projects we were not allowed to use the Developer Dashboard, so we put a tool together that allowed us to quality check our Data Source properties (not as good as the dashboard, but the best we could do). This tool also gave us a way to auto-document our web part pages.

    It’s now on CodePlex if anyone is interested in trying it out: https://dvwpdocumenter.codeplex.com/

  • John, that’s awesome!

  • Is there a limit on the data view webpart? Once a document library gets to 5000 documents, we have had issues with the webpart stops working.

  • nice article

  • April,
    Yes the 5,000 limit is your throttling limit, and it’s set per web app. I recommend filtering your list when it gets to be that big, and not try to show more than 5,000 items like that. Then, you have to index whatever column(s) you’re filtering by.

  • Why I didn’t think about SP Designer.. Thanks Laura

Leave a Reply