Class CheckpointMetadata<T>
Contains metadata about a checkpoint without loading the full checkpoint data.
public class CheckpointMetadata<T>
Type Parameters
TThe numeric data type.
- Inheritance
-
CheckpointMetadata<T>
- Inherited Members
Properties
CheckpointId
Gets or sets the checkpoint ID.
public string CheckpointId { get; set; }
Property Value
CreatedAt
Gets or sets the creation timestamp.
public DateTime CreatedAt { get; set; }
Property Value
Epoch
Gets or sets the epoch number.
public int Epoch { get; set; }
Property Value
FilePath
Gets or sets the file path.
public string? FilePath { get; set; }
Property Value
FileSizeBytes
Gets or sets the file size in bytes.
public long FileSizeBytes { get; set; }
Property Value
Metrics
Gets or sets the metrics.
public Dictionary<string, T> Metrics { get; set; }
Property Value
- Dictionary<string, T>
Step
Gets or sets the step number.
public int Step { get; set; }