Operation Execution Recording

Last modified 12 Mar 2021 10:22 +01:00

Overview

Each repository object has operationExecution multi-valued container that contains information on recent operations executed on this object.

There are basically three reasons for that:

  1. To see recent modifications of an object, along with some basic context (initiator, task, etc).

  2. To see recent failures occurred when an object was processed by a task.

  3. To be able to repeat processing for objects that failed to be processed by a task.

The operation execution records are of two kinds:

  1. Simple operation execution records represent modifications that were done at a target object.

  2. Complex operation execution records represent the processing of a source object by a task.

The nomenclature should perhaps change some day.

The simple records support reason number 1: They inform about recent modifications on a target object. The complex records support reasons 2 and 3. It is possible to look up objects that failed to be processed, and either display them, or retry the processing.

Managing operation execution records

In order to prevent growing objects indefinitely, we do a regular cleanup of operation execution records. The rules are as follows:

  1. Simple and complex records are treated separately.

  2. After processing an object by a task, all results related to that task before the task last started are deleted. This allows having more than one record for given task, e.g. for multi-part tasks. [1]

  3. Usual limitations by age and number of records apply.

Do we really want to separate simple and complex records when considering task OID? We could end with simple record originating in given task run, and a complex record from later task run. That could cause some confusion. (Or maybe not, it depends.)

TODO finish …​


1. Current implementation is limited in that it does not know when the 'logical' task (i.e. the whole task tree) really started. It knows only the start time of the current 'physical' task.
Was this page helpful?
YES NO
Thanks for your feedback