IRubricatorInstance.CutRevisions

Syntax

CutRevisions(
    FromRevision: Integer;
    ToRevision: Integer;
    SaveLabels: Boolean;
    [RemoveDeleted: Boolean = False]);

Parameters

FromRevision. Key of the first revision in the compressed range. If the parameter takes "-1" value, the compression is executed from the first revision in the time series database.

ToRevision. Key of the last revision in the compressed range.

SaveLabels. Indicates whether the labels in the specified revision range is saved. If the parameter value is True, the range of compressed revisions is divided into parts ending with a label. In each part revision compression is executed, all the labels are saved. If the value is set to False, all revisions in the specified range are compressed regardless of labels, the labels are not saved.

RemoveDeleted. Indicates whether data of deleted time series is stored. False - default value. Save data if time series are deleted. True - data of the deleted series are not saved. The True value can only be specified if FromRevision = -1 and ToRevision = last revision. Optional parameter.

Description

The CutRevisions data compresses the specified revision range.

Comments

Revisions compression may be required if the time series database is no longer up-to-date, but must be kept, however, it is not necessary to store data of all the revisions.

Example

Executing the example requires that the repository contains a time series database with the TSDB identifier.

Add links to the Cubes, Dimensions, Metabase, Rds system assemblies.

Sub UserProc;
Var
    Mb: IMetabase;
    Rub: IRubricator;
    RubI: IRubricatorInstance;
    LastRevKey: Integer;
    RevLookup: IMetaDictionaryLookup;
    Current: IMetaDictionaryData;
Begin
    Mb := MetabaseClass.Active;
    Rub := Mb.ItemById(
"TSDB").Bind As IRubricator;
    RubI := (Rub 
As IMetabaseObject).Open(NullAs IRubricatorInstance;
    RevLookup := RubI.Revisions.CreateLookup(
"KEY");
    RevLookup.Open(DictionaryCursorOptions.None);
    LastRevKey := -
1;
    
While Not RevLookup.Eof Do
        Current := RevLookup.Current;
        
If LastRevKey < Current.Record.Key Then
            LastRevKey := Current.Record.Key;
        
End If;
        RevLookup.Next;
    
End While;
    RevLookup.Close;
    RubI.CutRevisions(-
1, LastRevKey, FalseTrue);
End Sub UserProc;

After executing the example all revisions are compressed without saving data of deleted time series and metrics.

See also:

IRubricatorInstance