4

I have a 6GB dump file for an IIS process that I generated and during the "Running Analysis" phase of processing I am getting a "Canceling due to timeout" message from the tool after the 60s limit.

Is there a way to increase the timeout?

cb4
  • 6,689
  • 7
  • 45
  • 57
Aaron
  • 511
  • 3
  • 25

1 Answers1

7

The timeout can be configured by editing the C:\Program Files\DebugDiag\AnalysisRules\DebugDiag.AnalysisRules.dll.config file, and updating the GCRootTimeout config setting:

<!-- GCRootTimeout:  maximum number of seconds to spend scanning for GC root chains -->
<add key="GCRootTimeout" value="1200"/>
boflynn
  • 3,534
  • 1
  • 27
  • 28