Table of Contents

Class CompactionFileInfo

Namespace
RocksDbNet
Assembly
RocksDb.Net.dll

Identifies one input or output file of a compaction. Maps to rocksdb_compaction_file_info_t.

public sealed record CompactionFileInfo : IEquatable<CompactionFileInfo>
Inheritance
CompactionFileInfo
Implements
Inherited Members

Properties

FileNumber

The file number, which identifies the SST file.

public ulong FileNumber { get; init; }

Property Value

ulong

Level

The LSM level the file belongs to.

public int Level { get; init; }

Property Value

int

OldestBlobFileNumber

File number of the oldest blob file referenced, or 0 if none.

public ulong OldestBlobFileNumber { get; init; }

Property Value

ulong