SharePoint List Scalability - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T04:58:11Z http://stackoverflow.com/feeds/question/34728 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/34728/sharepoint-list-scalability 11 SharePoint List Scalability Andy McCluggage 2008-08-29T16:56:39Z 2009-10-07T12:37:07Z <p>I am particularly interested in Document Libraries, but in terms of general SharePoint lists, can anyone answer the following...?</p> <ol> <li>What is the maximum number of items that a SharePoint list can contain?</li> <li>What is the maximum number of lists that a single SharePoint server can host?</li> <li>When the number of items in the list approaches the maximum, does filtering slow down, and if so, what can be done to improve it?</li> </ol> http://stackoverflow.com/questions/34728/sharepoint-list-scalability/34773#34773 4 Answer by mbowles for SharePoint List Scalability mbowles 2008-08-29T17:13:44Z 2008-08-29T17:18:57Z <p><a href="http://blogs.msdn.com/sharepoint/archive/2007/07/25/scaling-large-lists.aspx" rel="nofollow">Link To Resource</a></p> http://stackoverflow.com/questions/34728/sharepoint-list-scalability/34854#34854 1 Answer by Ben Scheirman for SharePoint List Scalability Ben Scheirman 2008-08-29T17:50:33Z 2008-08-29T17:50:33Z <p><a href="http://blah.winsmarts.com/2008-4-SharePoint_limits.aspx" rel="nofollow">http://blah.winsmarts.com/2008-4-SharePoint_limits.aspx</a></p> <p>for #3: you can index specific columns in a list, but you should still keep the sizes down.</p> http://stackoverflow.com/questions/34728/sharepoint-list-scalability/67355#67355 13 Answer by Sacha for SharePoint List Scalability Sacha 2008-09-15T21:50:00Z 2008-09-15T21:50:00Z <p>In SharePoint v.2:</p> <ul> <li><strong>Max # list items</strong> : 2000 (per folder level)</li> <li><strong>Max lists per site</strong> : 2000 is a "reasonable" number</li> <li><strong>Effect when we reach the limit</strong> : Exponential degradation of performance.</li> </ul> <p>More info: <a href="http://technet.microsoft.com/en-us/library/cc287743.aspx" rel="nofollow">http://technet.microsoft.com/en-us/library/cc287743.aspx</a></p> <p>In SharePoint v.3:</p> <ul> <li><strong>Max # list items</strong> : 2000 (per view, you can have million items as long as you don't display in a single view more than 2000 items)</li> <li><strong>Max lists per site</strong> : 2000 is a "reasonable" number</li> <li><strong>Effect when we reach the limit</strong> : Exponential degradation of performance when we enumerate more than 2000 items using the OM. An alternative is to use Search API or CAML queries.</li> </ul> <p>More info: <a href="http://technet.microsoft.com/en-us/library/cc287790.aspx" rel="nofollow">http://technet.microsoft.com/en-us/library/cc287790.aspx</a></p> http://stackoverflow.com/questions/34728/sharepoint-list-scalability/67408#67408 0 Answer by Rik for SharePoint List Scalability Rik 2008-09-15T21:56:24Z 2008-09-15T21:56:24Z <p>The exact answers have already been given, however I do feel I should add this warning:<br /> This might be one of those situations where <em>if you have to ask, you can't afford it</em>.<br /> So if you find yourself approaching the limits posted earlier, think long and hard about what you are trying to do, and make sure you're not doing it wrong.</p> http://stackoverflow.com/questions/34728/sharepoint-list-scalability/81263#81263 2 Answer by Andy McCluggage for SharePoint List Scalability Andy McCluggage 2008-09-17T08:55:23Z 2008-09-17T08:55:23Z <p>The whitepaper I found most useful was linked from the resource posted by user mbowles above. The direct link is...</p> <p><a href="http://go.microsoft.com/fwlink/?LinkId=95450&amp;clcid=0x409" rel="nofollow">http://go.microsoft.com/fwlink/?LinkId=95450&amp;clcid=0x409</a></p> http://stackoverflow.com/questions/34728/sharepoint-list-scalability/130918#130918 0 Answer by Daniel O for SharePoint List Scalability Daniel O 2008-09-25T01:10:54Z 2008-09-25T01:10:54Z <p>Beware, the Performance of SiteDataQuery degrades heavily he more subsites you have. A hundred subsites can take 20 seconds to query.</p> http://stackoverflow.com/questions/34728/sharepoint-list-scalability/1080496#1080496 0 Answer by Ariel for SharePoint List Scalability Ariel 2009-07-03T19:06:17Z 2009-07-03T19:06:17Z <p>The "2000 limit" expressed above doesn't hold.</p> <p>Please take a look at <a href="http://office.microsoft.com/download/afile.aspx?AssetID=AM102377231033" rel="nofollow">this</a> document for more exact answers to your questions.</p> <p>I personally experimented what the document describes.</p> http://stackoverflow.com/questions/34728/sharepoint-list-scalability/1531371#1531371 0 Answer by JL for SharePoint List Scalability JL 2009-10-07T12:37:07Z 2009-10-07T12:37:07Z <p>There is documented guidance for Microsoft® Office SharePoint® Server 2007 regarding the maximum size of lists and list containers. For typical customer scenarios in which the standard Office SharePoint Server 2007 browser-based user interface is used, the recommendation is that a single list should not have more than 2,000 items per list container. A container in this case means the root of the list, as well as any folders in the list — a folder is a container because other list items are stored within it. A folder can contain items from the list as well as other folders, and each subfolder can contain more of each, and so on. For example, that means that you could have a list with 1,990 items in the root of the site, 10 folders that each contain 2,000 items, and so on. The maximum number of items supported in a list with recursive folders is 5 million items.</p>