Error occured running test. Exception of type "System.OutOfMemoryException" was thrown.

by XDK 15. May 2013 13:38

Solution

 

Tags:

Web Performance & Load Tests

Could not access the load test results repository: The load test results repository is out of space. Allocate more space to the repository (if possible), or delete results of the older load test runs.

by XDK 8. May 2013 09:46

Problem

The load test rig database was configured on SQL Server 2008 express edition which can hold maximum database size of 4 gb

Workaround

Note: Always test the blog script on your test environment before executing on production environment

This problem can be overcame by removing historical results

-- Start Script

-- This script deletes all load test run older than two weeks
-- To change the timeframe, change the number of days from 14 to the desired number
 
USE LoadTest
DECLARE @LoadTestRunId int
DECLARE OldLoadTestsCursor CURSOR FOR
    SELECT LoadTestRunId FROM LoadTestRun WHERE datediff(dd, StartTime, getdate()) > 14
 
OPEN OldLoadTestsCursor
FETCH NEXT FROM OldLoadTestsCursor INTO @LoadTestRunId
 
WHILE @@FETCH_STATUS = 0
BEGIN
    EXEC Prc_DeleteLoadTestRun @LoadTestRunId
    FETCH NEXT FROM OldLoadTestsCursor INTO @LoadTestRunId
END
 
CLOSE OldLoadTestsCursor
DEALLOCATE OldLoadTestsCursor

-- End Script

Script Reference :  http://blogs.msdn.com/b/billbar/archive/2006/02/09/528900.aspx

Solution

Configure the rig to other editions of SQL server.


 

Tags:

Web Performance & Load Tests

An error occurred while initializing a build for build definition xxx: There is not enough space on the disk

by XDK 23. February 2013 13:33

Soultion
Follow the below steps on the build agents
• Go to Start->Programs->Microsoft Team Foundation Server 2010/ 2012 ->Team Foundation Administration Console
• Select a build agent and click Properties
• Change the working directory from to $(SystemDrive) to D:, E: etc depending upon the free disk drive

Tags: , ,

Azure DevOps on-premises | TFS 2010 | TFS 2012

First step to recover from VS – TFS performance issues

by XDK 6. February 2013 07:07

Explanation:

Perform the following cache clean steps when you see VS – TFS performance issues

Solution:

TFS client cache clean up steps:

  • Close all Visual Studio IDE instances
  • Close browser or excel instances connected to TFS  
  • For Windows XP, delete all content under:

                C:\Documents and Settings\[USER]\Local Settings\Application Data\Microsoft\Team Foundation\

  • For Windows 7 or newer, delete all content under:

                C:\Users\[User]\AppData\Local\Microsoft\Team Foundation\

Tags:

Azure DevOps on-premises | Visual Studio 2010 | Visual Studio 2012 | Visual Studio 2013

TF262600: This SharePoint site was created using a site definition that requires data from Team Foundation Server. However, the site is not currently associated with data for a team project

by XDK 4. February 2013 14:55

Errors:

TF262600: This SharePoint site was created using a site definition that requires data from Team Foundation Server. However, the site is not currently associated with data for a team project. To ensure that this site functions correctly, you must configure a team project to refer data for that project to this site. For more information, see this topic on the Microsoft Web site: How to: Add a Team Project Portal.

This site doesn't have a default Team Project. You can explicitly select a specific Team Project.
This web part is not configured properly. Click here to configure web part in tool pane.

Explanation

This issue was caused by missing permissions for the [TEAM FOUNDATION]\SharePoint Web Application Services group to the team project. I get into the issue whenever I detach and attach the same collection (side by side) to different TFS App tiers for testing/R&D

Soultion

1) Add and grant READ permission for [TEAM FOUNDATION]\SharePoint Web Application Services group to the affected team projects.

2) use tfsredirect.aspx to refresh the cache

http://SharePointServer/sites/CollectionName/TeamProjectName/
_layouts/TfsRedirect.aspx?tf:type=webaccess&tf:test=1&tf:clearcache=1

Note : This page should not return any errors and the value for TeamFoundation.Temp.LastRefreshDate should include the current date.

3) Repair the connections between TFS and SP

  • Open the Team Foundation Server Administration Console
  • Expand the Application Tier in question (the one hosting the Team Project Collection and Team Project with the problem)
  • Highlight the SharePoint Web Applications node.
  • In the SharePoint Web Applications list, highlight the appropriate connection and then click "Repair Connection"

Tags:

Azure DevOps on-premises | SharePoint

About the author

My name is Xavier Dilip Kumar Jayaraj having 16+ years of IT experience which includes solid experience and depth Knowledge in Application Life Cycle Management, Configuration Management, Implementation and Support using TFS on-premises and Azure DevOps. I have invested in gaining DevOps knowledege to expertise with Cloud Computing providers namely Microsoft Azure and Amazon Web Services in recent years. I am very positive to learn and adapt emerging technologies to client’s environment.

Microsoft Certified: Azure Administrator Associate

Microsoft Certified: Azure DevOps Engineer Expert

DevOps Engineer Certificate Program | Transcript 

OTP-AWSD5: AWS IoT: Developing and Deploying an Internet of Things

[PCEP-30-01] PCEP – Certified Entry-Level Python Programmer

Quotes I Like

"Failure will never overtake me if my determination to succeed is strong enough."  - Dr. APJ. Abdul Kalam

"Always be yourself, express yourself, have faith in yourself, do not go out and look for a successful personality and duplicate it." - Bruce Lee

"Technology is just a tool. In terms of getting the kids working together and motivating them, the teacher is the most important." - Bill Gates

"Innovation distinguishes between a leader and a follower." - Steve Jobs

CategoryList

Disclaimer

The information provided here is based on my expreriences, troubleshooting and online/offline findings. It can be used as is on your own risk without any warranties and I impose no rights.