I’m working on a website which has a umbraco.config of about fifty thousand (50000) nodes. It was upgraded from version 4.9.0 to 7.2.2.
We still use legacy schema. Therefore below setting is on.
<UseLegacyXmlSchema>true</UseLegacyXmlSchema>
The issue we have is, it takes about 2 minutes to publish a node. After taking a trace we saw that it takes a lot of time to build the site map which we have configured as below.
I think the sitemap xml provider is some legacy code from version 4.x. You could use that as a datasource for some webcontrols to render a navigation for example.
I think I even removed it in version 4.x from the web.config without any problems.
Takes about 2 minutes to publish a node
Hi,
I’m working on a website which has a umbraco.config of about fifty thousand (50000) nodes. It was upgraded from version 4.9.0 to 7.2.2. We still use legacy schema. Therefore below setting is on.
The issue we have is, it takes about 2 minutes to publish a node. After taking a trace we saw that it takes a lot of time to build the site map which we have configured as below.
I really appreciate if anyone can provide some guidance on improving the publishing time.
Thanks
If you don't use the sitemap provider it's safe to remove it from the web.config.
Maybe you can give it a try and see if that is a improvement.
Dave
Thanks Dave, that really helped. We were able to bring down publishing time to about 8 seconds.
I think the sitemap xml provider is some legacy code from version 4.x. You could use that as a datasource for some webcontrols to render a navigation for example.
I think I even removed it in version 4.x from the web.config without any problems.
Dave
is working on a reply...