-
Type: Bug
-
Status: Resolved
-
Priority: Minor
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 10.10-HF70, 2023.0, 2021.31
-
Component/s: Bulk
-
Tags:
-
Upgrade notes:
-
Team:PLATFORM
-
Sprint:nxplatform #77
-
Story Points:2
The current policy for recomputeViews, recomputeThumbnails and recomputeVideoConversions is:
<streamProcessor name="recomputeViews" class="org.nuxeo.ecm.platform.picture.recompute.RecomputeViewsAction" defaultConcurrency="${nuxeo.bulk.action.recomputeViews.defaultConcurrency:=2}" defaultPartitions="${nuxeo.bulk.action.recomputeViews.defaultPartitions:=6}"> <policy name="default" maxRetries="3" delay="1s" maxDelay="10s" continueOnFailure="true" /> </streamProcessor>
This means that there are 4 attempts (one failure + 3 retries) which is a problem on systematic failure when the timeout is too low (or if a command hangs) this is too long for instance with a 10 min timeouts we are loosing 40min for nothing.
The conversion should not be that random and we should set this to a single retry by default, and add an option to configure it.
- is required by
-
NXP-31574 Avoid failure on recomputeViews on deleted document
- Resolved