SharePoint List Scalability - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T04:58:11Zhttp://stackoverflow.com/feeds/question/34728http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/34728/sharepoint-list-scalability11SharePoint List ScalabilityAndy McCluggage2008-08-29T16:56:39Z2009-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#347734Answer by mbowles for SharePoint List Scalabilitymbowles2008-08-29T17:13:44Z2008-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#348541Answer by Ben Scheirman for SharePoint List ScalabilityBen Scheirman2008-08-29T17:50:33Z2008-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#6735513Answer by Sacha for SharePoint List ScalabilitySacha2008-09-15T21:50:00Z2008-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#674080Answer by Rik for SharePoint List ScalabilityRik2008-09-15T21:56:24Z2008-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#812632Answer by Andy McCluggage for SharePoint List ScalabilityAndy McCluggage2008-09-17T08:55:23Z2008-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&clcid=0x409" rel="nofollow">http://go.microsoft.com/fwlink/?LinkId=95450&clcid=0x409</a></p>
http://stackoverflow.com/questions/34728/sharepoint-list-scalability/130918#1309180Answer by Daniel O for SharePoint List ScalabilityDaniel O2008-09-25T01:10:54Z2008-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#10804960Answer by Ariel for SharePoint List ScalabilityAriel2009-07-03T19:06:17Z2009-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#15313710Answer by JL for SharePoint List ScalabilityJL2009-10-07T12:37:07Z2009-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>