Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Kim Pilgaard 10 posts 96 karma points
    Apr 28, 2015 @ 09:43
    Kim Pilgaard
    0

    I have been debugging an issue on one of our larger websites. The issue was that when publishing a large number of nodes the website would crash due to all pooled connections being in use and the max pool size had been reached.

    After some debugging I traced the issue back to UnVersion which we had installed on the site. The issue should be able to be replicated by having many nodes under one parent, and then publishing the parent and all descendants via the Umbraco BackOffice. The website we discovered the issue on has many 1000s of nodes under a main parent.

    I took the liberty of taking a peak at the source code. It looks as if the connection opened in line 60 of the UnVersionService.cs file is never closed before the garbage collector closes it. If this is correct it may be a good idea to use a "using" statement or a finally somewhere to ensure it is closed when no longer in use :)

    *Link to source code file I peaked into: https://github.com/mattbrailsford/UnVersion/blob/master/Src/Our.Umbraco.UnVersion/Services/UnVersionService.cs

  • Matt Brailsford 4124 posts 22215 karma points MVP 9x c-trib
    Apr 30, 2015 @ 14:13
    Matt Brailsford
    100

    Fixed in v2.1 now available on as the main download. Thanks for your feedback.

Please Sign in or register to post replies

Write your reply to:

Draft