-
Type: Improvement
-
Status: Resolved
-
Priority: Minor
-
Resolution: Fixed
-
Affects Version/s: 8.10
-
Component/s: Workflow
-
Release Notes Summary:Improve workflow cleaner performances
-
Backlog priority:900
-
Sprint:nxfit 9.3.7
-
Story Points:3
The query used to get the finished workflows in DocumentRoutingServiceImpl#WfCleaner uses a sort on the dc:created field. This sort seems to be useless and can consume a lot of memory if the cleaner is run against a database which contains many terminated workflows.
Another tiny improvement? Replace
(ecm:currentLifeCycleState = 'done' OR ecm:currentLifeCycleState = 'canceled')
by
ecm:currentLifeCycleState IN ('done', 'canceled')
- depends on
-
NXP-23199 Improve PartialList API
- Resolved