Premier Field Engineer, Microsoft Services Customer Service and Support
Problem
The DevDiv mainline contains over 200GB of content and more than 1.8 million files. Any version control operations that had to deal with this amount of content would occasionally run into two problems:
Workarounds
People could sometimes work around the issue by using “tf checkin /noprompt” which would cut the client memory usage enough to allow it to complete. We also have an undocumented switch “tf checkin /all” which allows you to check-in all pending changes in a workspace without having to load all the pending changes. This switch has a limitation that it does not work with “edits” and “adds” and should only be used for branches (there is also a “tf branch /checkin” option which does the branch & check-in in one step). Another workaround was to break the check-in up into multiple check-ins, however this was less than ideal.
New in TFS2010
We made an enhancement in Team Foundation Server 2010 to support very large check-ins by changing the client and server to page pending changes to and from the server. It includes three core changes:
The default page size is 150,000, which means that if you try and check-in more than this, then your pending changes are written to a temporary table in batches of 150k. This means that every batch has a full 60 minutes to upload before hitting the client-side timeout. Once the client reaches the last page of pending changes, then it sends an extra flag which tells the server to commit the changes. Since the server has all the data in a temporary table, it’s able to quickly move it into the real content table and avoid the 60 minute timeout.
If you cancel your check-in command before it’s complete, you can also run it again and it will reuse the pending changes that are in the temporary table. This temporary table of pending changes is cleaned up every 24 hours by a job so that the paged changes don’t accumulate sit in the database if they never get checked in.
Proof
Yesterday I was able to check-in and add of 1.8 million items (200GB of content) with a single action without restarting or running out of memory. It took about 7 hours to upload all the content and then another 25 minutes to perform the final commit in the database. The end result is a single changeset which is exactly the result I was after.