Updating one of the hierarchical object's fields results in low performance.
When we try to update an hierarchical object The Framework does not check which object's fields are exactly change and attempts to update entire object's hierarchy.
It happens in the SyncDenormolizedValuesService.Sync method which is called from DenormalizeHierarchicalDALListener.Denormalize:
var fromSyncResult = updatedDomainObjects.Select(this.GetSyncResult).ToList();
And in GetSyncResult method the object's children are beeing looked through.
Potential fix: to check if there are no hierarchical changes then there's no need to look through all the structure.
PS Ideally this must be done in v. 18.9.1
Updating one of the hierarchical object's fields results in low performance.
When we try to update an hierarchical object The Framework does not check which object's fields are exactly change and attempts to update entire object's hierarchy.
It happens in the SyncDenormolizedValuesService.Sync method which is called from DenormalizeHierarchicalDALListener.Denormalize:
var fromSyncResult = updatedDomainObjects.Select(this.GetSyncResult).ToList();
And in GetSyncResult method the object's children are beeing looked through.
Potential fix: to check if there are no hierarchical changes then there's no need to look through all the structure.
PS Ideally this must be done in v. 18.9.1