Umbraco-CMS: Saving existing document types is very slow using Umbraco 10

Which Umbraco version are you using? (Please write the exact version, example: 10.1.0)

10.2.1

Bug summary

Create a document type, save. Edit the document type save again. It gets saving for about 1-3 minutes, sometimes more, without errors

Specifics

I dont use Models builder, i have set it to Nothing, but i have tried other values. No errors on screen neither console javascript errors. This is my Umbraco config: "Umbraco": { "CMS": { "Runtime": { "Mode": "Development" }, "ModelsBuilder": { "ModelsMode": "Nothing" }, "Global": { "UseHttps": false }, "Content": { "MacroErrors": "Throw" }, "Hosting": { "Debug": true }, "RuntimeMinification": { "UseInMemoryCache": true, "CacheBuster": "Timestamp" } } }

Steps to reproduce

My OS is Windows 10 Pro Install lastest visual studio umbraco templates Create new umbraco project using the last version (10.2.1) Select sql server database, my version is SQL Server 14 Create a document type, save. Edit the document type save again. It gets saving for about 1-3 minutes without errors

Expected result / actual result

Save the document type in 2-3 seconds, as when creating it.


This item has been added to our backlog AB#34063

About this issue

  • Original URL
  • State: open
  • Created 2 years ago
  • Comments: 19 (16 by maintainers)

Most upvoted comments

Thanks @nikolajlauridsen for your help. As i was experiencing the problem, it was happening only in my local machine, an Umbraco installation with very little content amount. Once published to production everything is fine. So i though it had to be with the Runtime Mode = “Development”. But recently i changed my the connection string to the server BD, and the problem is not happening, so it may be related to my local dev BD. I am using Microsoft SQL Server Developer 15.0.2095.3, 64bit on Windows 10 Pro. Server collation as “Modern_Spanish_CI_AS”. My connection string is this: Server=localhost;Database=MyDB;Trusted_Connection=True;TrustServerCertificate=True;MultipleActiveResultSets=True;connect timeout=300; May be the Developer edition has some limitation that Umbraco is reaching when a modifing document type?