Extremely Urgent: Timeout expired. The timeout period elapsed prior to obtaining a connection from the pool.
Hi,
Suddenly i am getting the following error and i have to recycle the iis application pool in order the site to start working again. This is extremely urgent because i am talking about a production site.
I forgot to mention that i am using Umbraco v6.2.3
Any help please???
Timeout expired. The timeout period elapsed prior to obtaining a connection from the pool. This may have occurred because all pooled connections were in use and max pool size was reached.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.InvalidOperationException: Timeout expired. The timeout period elapsed prior to obtaining a connection from the pool. This may have occurred because all pooled connections were in use and max pool size was reached.
Source Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
Stack Trace:
[InvalidOperationException: Timeout expired. The timeout period elapsed prior to obtaining a connection from the pool. This may have occurred because all pooled connections were in use and max pool size was reached.]
System.Data.ProviderBase.DbConnectionFactory.TryGetConnection(DbConnection owningConnection, TaskCompletionSource1 retry, DbConnectionOptions userOptions, DbConnectionInternal oldConnection, DbConnectionInternal& connection) +5356076
System.Data.ProviderBase.DbConnectionInternal.TryOpenConnectionInternal(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource1 retry, DbConnectionOptions userOptions) +146
System.Data.ProviderBase.DbConnectionClosed.TryOpenConnection(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource1 retry, DbConnectionOptions userOptions) +16
System.Data.SqlClient.SqlConnection.TryOpenInner(TaskCompletionSource1 retry) +94
System.Data.SqlClient.SqlConnection.TryOpen(TaskCompletionSource1 retry) +110
System.Data.SqlClient.SqlConnection.Open() +96
Umbraco.Core.Persistence.FaultHandling.<>c__DisplayClass1.<ExecuteAction>b__0() +10
Umbraco.Core.Persistence.FaultHandling.RetryPolicy.ExecuteAction(Func1 func) +170
Umbraco.Core.Persistence.FaultHandling.RetryPolicy.ExecuteAction(Action action) +80
Umbraco.Core.Persistence.PetaPocoConnectionExtensions.OpenWithRetry(IDbConnection connection, RetryPolicy retryPolicy) +98
Umbraco.Core.Persistence.PetaPocoConnectionExtensions.OpenWithRetry(IDbConnection connection) +41
Umbraco.Core.Persistence.Database.OpenSharedConnection() +51
Umbraco.Core.Persistence.
I am using the first one in order to index the articles and use them in a search box with dropdown list and the second one in order to index Countries and Cities from a custom table and use them also in a search box. For the second one (ArtTravelCountriesCitiesIndexer) i am using the interface ISimpleDataService and to collect the data i am connecting to the database using the following code:
using (var db = Umbraco.Core.ApplicationContext.Current.DatabaseContext.Database)
{
var countries = db.Query<artTravelCountry>("SELECT * FROM artTravelCountries").ToList();
foreach (artTravelCountry item in countries)
{
//Get the installed languages
string whereClause = String.Format("LcTableID = ({0}) AND CultureISOCode = '{1}' AND LcResourceID = ({2}) AND rowID = {3}",
"SELECT LcTableID FROM artTravelLcTables WHERE LcTableName = 'artTravelCountries'",
new System.Globalization.CultureInfo("el-GR"), //System.Threading.Thread.CurrentThread.CurrentUICulture.Name,
"SELECT LcResourceID FROM artTravelLcResources WHERE LcResourceName = 'Name'",
item.CountryId);
string title = db.Query<String>(new Umbraco.Core.Persistence.Sql().Select(new object[] { "ResourceValue" })
.From("artTravelLcValues")
.Where(whereClause)).SingleOrDefault();
if (null == searchModel)
searchModel = new List<SearchCountriesCitiesListModel>();
SearchCountriesCitiesListModel selectedItem = new SearchCountriesCitiesListModel()
In the log i was getting this error continuously for at least 5 or 6 hours. This was the only error in the log file and suddenly after that error i started getting the timeout error from the sql server.
Ok - If I were you then I would try to disable the custom logic in order to figure out if that's the culprit.
In regards to the error mentioned above it's related to some illegal characters being used in the node names, which you'll need to identify and make replace rules for in the /config/umbracoSettings.config as instructed earlier today.
Regarding the illegal characters i tried to make replacements, but still i am getting errors. I don't know if as illegal characters are symbols like the followings:
And as for the custom logic, you mean the second indexer with the IDataService interface because the first one is using the default umbraco logic for indexing nodes with restrictions in order to index less data. So i believe that this will not be a problem?
Hi Thomas - Sorry missed the last post - I would try to deactivate everything of what you made before the errors started to happen and see if that fixes it. If so then I would try activating the different parts of the code step-by-step to figure out where there could be an issue.
Hi, I am still getting the following error with version 6.2.3. Can anyone assist me what to do because i am getting a lot of complaints from the client.
I'll also jump in and say our environment is also having this problem. Umbraco v7.2.1 with Contour 3.0.23.
Noticed it more when trying to save Contour forms though we also just started building some search indexes this week and suddenly this issue arises. Not sure which is the culprit.
And today i got the following error in umbraco log and the site as you can understand was down.
Can anyone help with this because it is very urgent, there is a problem with the connections with the database that arise that problem.
System.Data.SqlClient.SqlException (0x80131904): A connection was successfully established with the server, but then an error occurred during the pre-login handshake. (provider: SSL Provider, error: 0 - The wait operation timed out.) ---> System.ComponentModel.Win32Exception (0x80004005): The wait operation timed out
at System.Data.ProviderBase.DbConnectionPool.TryGetConnection(DbConnection owningObject, UInt32 waitForMultipleObjectsTimeout, Boolean allowCreate, Boolean onlyOneCheckConnection, DbConnectionOptions userOptions, DbConnectionInternal& connection)
at System.Data.ProviderBase.DbConnectionPool.TryGetConnection(DbConnection owningObject, TaskCompletionSource1 retry, DbConnectionOptions userOptions, DbConnectionInternal& connection)
at System.Data.ProviderBase.DbConnectionFactory.TryGetConnection(DbConnection owningConnection, TaskCompletionSource1 retry, DbConnectionOptions userOptions, DbConnectionInternal oldConnection, DbConnectionInternal& connection)
at System.Data.ProviderBase.DbConnectionInternal.TryOpenConnectionInternal(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource1 retry, DbConnectionOptions userOptions)
at System.Data.ProviderBase.DbConnectionClosed.TryOpenConnection(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource1 retry, DbConnectionOptions userOptions)
at System.Data.SqlClient.SqlConnection.TryOpenInner(TaskCompletionSource1 retry)
at System.Data.SqlClient.SqlConnection.TryOpen(TaskCompletionSource1 retry)
at System.Data.SqlClient.SqlConnection.Open()
at Umbraco.Core.Persistence.FaultHandling.RetryPolicy.<>cDisplayClass1.0()
at Umbraco.Core.Persistence.FaultHandling.RetryPolicy.ExecuteAction[TResult](Func1 func)
at Umbraco.Core.Persistence.FaultHandling.RetryPolicy.ExecuteAction(Action action)
at Umbraco.Core.Persistence.PetaPocoConnectionExtensions.OpenWithRetry(IDbConnection connection, RetryPolicy retryPolicy)
at Umbraco.Core.Persistence.PetaPocoConnectionExtensions.OpenWithRetry(IDbConnection connection)
at Umbraco.Core.Persistence.Database.OpenSharedConnection()
at Umbraco.Core.Persistence.Database.<Query>d__71.MoveNext()
at System.Collections.Generic.List1..ctor(IEnumerable1 collection)
at System.Linq.Enumerable.ToList[TSource](IEnumerable1 source)
at umbraco.cms.businesslogic.language.Language.<GetAllAsList>b__8()
at Umbraco.Core.Cache.CacheProviderExtensions.<>c__DisplayClass11.
What Umbraco version are you on? Any plugins? If you are on Umbraco 7.6+ and plugins or your custom code uses the old Database helpers this might be the problem.
Any error messages that you can share?
EDIT:
You can also see all open connections to SQL Server using this query:
SELECT
DB_NAME(dbid) as DBName,
COUNT(dbid) as NumberOfConnections,
loginame as LoginName
FROM
sys.sysprocesses
WHERE
dbid > 0
GROUP BY
dbid, loginame
;
If you have more than 100 on your dev-machine it's totally related to connections not being closed - either by plugins using the old database helpers or by your custom code.
Can't find anything in the code that's calling any old Database helpers.
Lots of packages used though, not sure any is causing it:
BulkManager
Content Maintenance Dashboard
Dynamic Data Grid
Embedded Content
FALM Housekeeping
FamFamFam Icon Package
Full Text Search
Google Maps for Umbraco
LockoutMembership provider
uComponents
Umbraco Contour
Umbraco Core Property editor converters
Umbraco Courier
uSync for Umbraco 6
Error codes I've got as below, which only happens randomly. Can't figure out what's triggering it.
2017-06-13 18:05:15,226 [14] ERROR Umbraco.Web.WebServices.ScheduledPublishController - [Thread 21] Error executing scheduled task
System.InvalidOperationException: Timeout expired. The timeout period elapsed prior to obtaining a connection from the pool. This may have occurred because all pooled connections were in use and max pool size was reached.
at System.Data.ProviderBase.DbConnectionFactory.TryGetConnection(DbConnection owningConnection, TaskCompletionSource`1 retry, DbConnectionOptions userOptions, DbConnectionInternal oldConnection, DbConnectionInternal& connection)
at System.Data.ProviderBase.DbConnectionInternal.TryOpenConnectionInternal(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions userOptions)
at System.Data.SqlClient.SqlConnection.TryOpenInner(TaskCompletionSource`1 retry)
at System.Data.SqlClient.SqlConnection.TryOpen(TaskCompletionSource`1 retry)
at System.Data.SqlClient.SqlConnection.Open()
at System.Data.SqlClient.SqlConnection.Open()
at Umbraco.Core.Persistence.FaultHandling.RetryPolicy.<>c__DisplayClass1.<ExecuteAction>b__0()
at Umbraco.Core.Persistence.FaultHandling.RetryPolicy.ExecuteAction[TResult](Func`1 func)
at Umbraco.Core.Persistence.Database.OpenSharedConnection()
at Umbraco.Core.Persistence.Database.<Query>d__1c`1.MoveNext()
at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
at Umbraco.Core.Persistence.Repositories.ContentRepository.<PerformGetByQuery>d__22.MoveNext()
at System.Linq.Enumerable.WhereEnumerableIterator`1.MoveNext()
at Umbraco.Core.Publishing.ScheduledPublisher.CheckPendingAndProcess()
at Umbraco.Web.WebServices.ScheduledPublishController.Index()
I got a similar issue, Umbraco 7.1.4, sometimes goes down with error in the log
The timeout period elapsed prior to obtaining a connection from the pool. This may have occurred because all pooled connections were in use and max pool size was reached.
Did you check if you're using any of the packages / plugins that might use the old database helpers?
Like SEO Checker and others, might be good to update them, have a look at the numer of connections to the db using my example above - do you see a lot of them? Are they growing when using a certain part of the website / backoffice?
Extremely Urgent: Timeout expired. The timeout period elapsed prior to obtaining a connection from the pool.
Hi,
Suddenly i am getting the following error and i have to recycle the iis application pool in order the site to start working again. This is extremely urgent because i am talking about a production site.
I forgot to mention that i am using Umbraco v6.2.3
Any help please???
Timeout expired. The timeout period elapsed prior to obtaining a connection from the pool. This may have occurred because all pooled connections were in use and max pool size was reached. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.InvalidOperationException: Timeout expired. The timeout period elapsed prior to obtaining a connection from the pool. This may have occurred because all pooled connections were in use and max pool size was reached.
Source Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
Stack Trace:
[InvalidOperationException: Timeout expired. The timeout period elapsed prior to obtaining a connection from the pool. This may have occurred because all pooled connections were in use and max pool size was reached.] System.Data.ProviderBase.DbConnectionFactory.TryGetConnection(DbConnection owningConnection, TaskCompletionSource
1 retry, DbConnectionOptions userOptions, DbConnectionInternal oldConnection, DbConnectionInternal& connection) +5356076 System.Data.ProviderBase.DbConnectionInternal.TryOpenConnectionInternal(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource
1 retry, DbConnectionOptions userOptions) +146 System.Data.ProviderBase.DbConnectionClosed.TryOpenConnection(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource1 retry, DbConnectionOptions userOptions) +16 System.Data.SqlClient.SqlConnection.TryOpenInner(TaskCompletionSource
1 retry) +94 System.Data.SqlClient.SqlConnection.TryOpen(TaskCompletionSource1 retry) +110 System.Data.SqlClient.SqlConnection.Open() +96 Umbraco.Core.Persistence.FaultHandling.<>c__DisplayClass1.<ExecuteAction>b__0() +10 Umbraco.Core.Persistence.FaultHandling.RetryPolicy.ExecuteAction(Func
1 func) +170 Umbraco.Core.Persistence.FaultHandling.RetryPolicy.ExecuteAction(Action action) +80 Umbraco.Core.Persistence.PetaPocoConnectionExtensions.OpenWithRetry(IDbConnection connection, RetryPolicy retryPolicy) +98 Umbraco.Core.Persistence.PetaPocoConnectionExtensions.OpenWithRetry(IDbConnection connection) +41 Umbraco.Core.Persistence.Database.OpenSharedConnection() +51 Umbraco.Core.Persistence.Hi Thomas
Is it a dedicated server or is it running on shared hosting? Have you checked that either the web or database server is not running out of space?
/Jan
It is a dedicated server and i have 1.2Tb free space. This is very strange and extremely urgent. The client is very disappointed. What should i do?
Hi Thomas
Ok...is the database being hosted on the same server? What changes was made before this started to happen?
/Jan
Yes the database is hosted on the same server. The changes that i made was two new examine indexers as follows
<add name="ArtTravelSiteIndexer"
type="UmbracoExamine.UmbracoContentIndexer, UmbracoExamine"
supportUnpublished="false"
supportProtected="true"
analyzer="Lucene.Net.Analysis.Standard.StandardAnalyzer, Lucene.Net"
indexSet="ArtTravelSiteIndexSet"/>
<add name="ArtTravelCountriesCitiesIndexer"
type="Examine.LuceneEngine.Providers.SimpleDataIndexer, Examine"
dataService="ArtTravel.UmbracoAddons.Infrastructure.Examine.ArtTravelCountriesCitiesService, ArtTravel.UmbracoAddons"
analyzer="Lucene.Net.Analysis.Standard.StandardAnalyzer, Lucene.Net"
indexTypes="CustomData"
indexSet="CountriesCitiesFinderIndexSet"
runAsync="true"/>
and the indexSets are:
<!-- Search ArtTravel Site Published Nodes Fields -->
<IndexSet SetName="ArtTravelSiteIndexSet" IndexPath="~/App_Data/TEMP/ExamineIndexes/ArtTravelSite/">
<IndexAttributeFields>
<add Name="id" />
<add Name="nodeName"/>
<add Name="updateDate" />
<add Name="writerName" />
<add Name="loginName" />
<add Name="email" />
<add Name="nodeTypeAlias" />
</IndexAttributeFields>
<IndexUserFields>
<add Name="bodyText"/>
<add Name="title"/>
<add Name="shortDescription"/>
</IndexUserFields>
<IncludeNodeTypes>
<add Name="Article" />
<add Name="travelDestinationType" />
</IncludeNodeTypes>
</IndexSet>
<!-- Search Custom DB Fields -->
<IndexSet SetName="CountriesCitiesFinderIndexSet" IndexPath="~/App_Data/TEMP/ExamineIndexes/CountriesCitiesFinder/">
<IndexUserFields>
<add Name="Id" />
<add Name="CityCountryId" />
<add Name="CityCountryUrl" />
<add Name="CityCountryName" />
<add Name="IsCountry" />
<add Name="IsCity" />
</IndexUserFields>
</IndexSet>
I am using the first one in order to index the articles and use them in a search box with dropdown list and the second one in order to index Countries and Cities from a custom table and use them also in a search box. For the second one (ArtTravelCountriesCitiesIndexer) i am using the interface ISimpleDataService and to collect the data i am connecting to the database using the following code:
using (var db = Umbraco.Core.ApplicationContext.Current.DatabaseContext.Database)
{
var countries = db.Query<artTravelCountry>("SELECT * FROM artTravelCountries").ToList();
foreach (artTravelCountry item in countries)
{
//Get the installed languages
string whereClause = String.Format("LcTableID = ({0}) AND CultureISOCode = '{1}' AND LcResourceID = ({2}) AND rowID = {3}",
"SELECT LcTableID FROM artTravelLcTables WHERE LcTableName = 'artTravelCountries'",
new System.Globalization.CultureInfo("el-GR"), //System.Threading.Thread.CurrentThread.CurrentUICulture.Name,
"SELECT LcResourceID FROM artTravelLcResources WHERE LcResourceName = 'Name'",
item.CountryId);
string title = db.Query<String>(new Umbraco.Core.Persistence.Sql().Select(new object[] { "ResourceValue" })
.From("artTravelLcValues")
.Where(whereClause)).SingleOrDefault();
if (null == searchModel)
searchModel = new List<SearchCountriesCitiesListModel>();
SearchCountriesCitiesListModel selectedItem = new SearchCountriesCitiesListModel()
{
Id = item.CountryId,
CityCountryName = item.CountryName,
isCountry = true,
isCity = false,
CityCountryId = 0,
CityCountryUrl = ""
};
selectedItem.CityCountryUrl = BuildUrl(selectedItem);
if (!string.IsNullOrEmpty(title))
{
selectedItem.CityCountryName = title;
}
searchModel.Add(selectedItem);
}
var cities = db.Query<artTravelCity>("SELECT * FROM artTravelCities").ToList();
foreach (artTravelCity item in cities)
{
//Get the installed languages
string whereClause = String.Format("LcTableID = ({0}) AND CultureISOCode = '{1}' AND LcResourceID = ({2}) AND rowID = {3}",
"SELECT LcTableID FROM artTravelLcTables WHERE LcTableName = 'artTravelCities'",
new System.Globalization.CultureInfo("el-GR"), //System.Threading.Thread.CurrentThread.CurrentUICulture.Name,
"SELECT LcResourceID FROM artTravelLcResources WHERE LcResourceName = 'Name'",
item.CityId);
string title = db.Query<String>(new Umbraco.Core.Persistence.Sql().Select(new object[] { "ResourceValue" })
.From("artTravelLcValues")
.Where(whereClause)).SingleOrDefault();
if (null == searchModel)
searchModel = new List<SearchCountriesCitiesListModel>();
SearchCountriesCitiesListModel selectedItemCity = new SearchCountriesCitiesListModel()
{
Id = item.CityId,
CityCountryName = item.CityName,
isCountry = false,
isCity = true,
CityCountryId = item.CountryId.Value,
CityCountryUrl = ""
};
selectedItemCity.CityCountryUrl = BuildUrl(selectedItemCity);
if (!string.IsNullOrEmpty(title))
{
selectedItemCity.CityCountryName = title;
}
searchModel.Add(selectedItemCity);
}
}
return searchModel.OrderBy(m => m.CityCountryName).ToList();
Hi Thomas
Ok - Is it possible for you to try and deactivate these settings and see if that helps?
/Jan
I don't know if this indexers has to do with that or the following error that i am getting it a lot of times in the log file.
2015-04-01 09:48:11,801 [15] ERROR Umbraco.Core.UmbracoApplicationBase - [Thread 41] An unhandled exception occurred
System.ArgumentException: Illegal characters in path.
at System.IO.Path.CheckInvalidPathChars(String path, Boolean checkAdditional)
at System.Security.Permissions.FileIOPermission.CheckIllegalCharacters(String[] str)
at System.Security.Permissions.FileIOPermission.AddPathList(FileIOPermissionAccess access, AccessControlActions control, String[] pathListOrig, Boolean checkForDuplicates, Boolean needFullPath, Boolean copyPathList)
at System.Security.Permissions.FileIOPermission..ctor(FileIOPermissionAccess access, String path)
at System.Web.InternalSecurityPermissions.PathDiscovery(String path)
at System.Web.HttpRequest.get_PhysicalPath()
at UrlRewritingNet.Web.UrlRewriteModule.OnBeginRequest(Object sender, EventArgs e)
at System.Web.HttpApplication.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
In the log i was getting this error continuously for at least 5 or 6 hours. This was the only error in the log file and suddenly after that error i started getting the timeout error from the sql server.
Hi Thomas
Ok - If I were you then I would try to disable the custom logic in order to figure out if that's the culprit.
In regards to the error mentioned above it's related to some illegal characters being used in the node names, which you'll need to identify and make replace rules for in the /config/umbracoSettings.config as instructed earlier today.
/Jan
Regarding the illegal characters i tried to make replacements, but still i am getting errors. I don't know if as illegal characters are symbols like the followings:
ó and á in the word Józsefváros
or i and à in the words Ferran Adrià
or ç in the words François Payard
And as for the custom logic, you mean the second indexer with the IDataService interface because the first one is using the default umbraco logic for indexing nodes with restrictions in order to index less data. So i believe that this will not be a problem?
Hi Thomas
Those can be an issue as well I think - I would replace them too...so ó becomes o etc.
/Jan
Hi Thomas - Sorry missed the last post - I would try to deactivate everything of what you made before the errors started to happen and see if that fixes it. If so then I would try activating the different parts of the code step-by-step to figure out where there could be an issue.
/Jan
Hi, I am still getting the following error with version 6.2.3. Can anyone assist me what to do because i am getting a lot of complaints from the client.
Regards
Thomas
I'll also jump in and say our environment is also having this problem. Umbraco v7.2.1 with Contour 3.0.23.
Noticed it more when trying to save Contour forms though we also just started building some search indexes this week and suddenly this issue arises. Not sure which is the culprit.
Hopefully someone can help out!
Hi Michelle! How did you solve this?
And today i got the following error in umbraco log and the site as you can understand was down. Can anyone help with this because it is very urgent, there is a problem with the connections with the database that arise that problem.
System.Data.SqlClient.SqlException (0x80131904): A connection was successfully established with the server, but then an error occurred during the pre-login handshake. (provider: SSL Provider, error: 0 - The wait operation timed out.) ---> System.ComponentModel.Win32Exception (0x80004005): The wait operation timed out at System.Data.ProviderBase.DbConnectionPool.TryGetConnection(DbConnection owningObject, UInt32 waitForMultipleObjectsTimeout, Boolean allowCreate, Boolean onlyOneCheckConnection, DbConnectionOptions userOptions, DbConnectionInternal& connection) at System.Data.ProviderBase.DbConnectionPool.TryGetConnection(DbConnection owningObject, TaskCompletionSource
1 retry, DbConnectionOptions userOptions, DbConnectionInternal& connection) at System.Data.ProviderBase.DbConnectionFactory.TryGetConnection(DbConnection owningConnection, TaskCompletionSource
1 retry, DbConnectionOptions userOptions, DbConnectionInternal oldConnection, DbConnectionInternal& connection) at System.Data.ProviderBase.DbConnectionInternal.TryOpenConnectionInternal(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource1 retry, DbConnectionOptions userOptions) at System.Data.ProviderBase.DbConnectionClosed.TryOpenConnection(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource
1 retry, DbConnectionOptions userOptions) at System.Data.SqlClient.SqlConnection.TryOpenInner(TaskCompletionSource1 retry) at System.Data.SqlClient.SqlConnection.TryOpen(TaskCompletionSource
1 retry) at System.Data.SqlClient.SqlConnection.Open() at Umbraco.Core.Persistence.FaultHandling.RetryPolicy.<>cDisplayClass1.0() at Umbraco.Core.Persistence.FaultHandling.RetryPolicy.ExecuteAction[TResult](Func1 func) at Umbraco.Core.Persistence.FaultHandling.RetryPolicy.ExecuteAction(Action action) at Umbraco.Core.Persistence.PetaPocoConnectionExtensions.OpenWithRetry(IDbConnection connection, RetryPolicy retryPolicy) at Umbraco.Core.Persistence.PetaPocoConnectionExtensions.OpenWithRetry(IDbConnection connection) at Umbraco.Core.Persistence.Database.OpenSharedConnection() at Umbraco.Core.Persistence.Database.<Query>d__7
1.MoveNext() at System.Collections.Generic.List1..ctor(IEnumerable
1 collection) at System.Linq.Enumerable.ToList[TSource](IEnumerable1 source) at umbraco.cms.businesslogic.language.Language.<GetAllAsList>b__8() at Umbraco.Core.Cache.CacheProviderExtensions.<>c__DisplayClass1
1.How did you end up solving this issue?
Having similar issues, any solution? Anyone?
Also, I you are using SEO Checker, have a look here: https://our.umbraco.org/projects/website-utilities/seo-checker/bugs/85512-there-is-already-an-open-datareader-associated-with-this-command-which-must-be-closed-first
The underlaying problem is the same since older versions of SEO Checker is using the legazy database helpers.
What Umbraco version are you on? Any plugins? If you are on Umbraco 7.6+ and plugins or your custom code uses the old Database helpers this might be the problem.
Any error messages that you can share?
EDIT:
You can also see all open connections to SQL Server using this query:
If you have more than 100 on your dev-machine it's totally related to connections not being closed - either by plugins using the old database helpers or by your custom code.
Cheers!
Thanks Markus, on V6.2.4.
Can't find anything in the code that's calling any old Database helpers.
Lots of packages used though, not sure any is causing it:
Error codes I've got as below, which only happens randomly. Can't figure out what's triggering it.
Any solutions for this topic?
I got a similar issue, Umbraco 7.1.4, sometimes goes down with error in the log
Did you check if you're using any of the packages / plugins that might use the old database helpers?
Like SEO Checker and others, might be good to update them, have a look at the numer of connections to the db using my example above - do you see a lot of them? Are they growing when using a certain part of the website / backoffice?
is working on a reply...