Class BlobFileGarbageInfo
- Namespace
- RocksDbNet
- Assembly
- RocksDb.Net.dll
Garbage discovered in a blob file during compaction.
Maps to rocksdb_blob_file_garbage_info_t.
public sealed record BlobFileGarbageInfo : IEquatable<BlobFileGarbageInfo>
- Inheritance
-
BlobFileGarbageInfo
- Implements
- Inherited Members
Properties
BlobFileNumber
The blob file number.
public ulong BlobFileNumber { get; init; }
Property Value
BlobFilePath
Path of the blob file.
public string? BlobFilePath { get; init; }
Property Value
GarbageBlobBytes
Total size of the unreferenced blobs, in bytes.
public ulong GarbageBlobBytes { get; init; }
Property Value
GarbageBlobCount
Number of blobs in the file that are no longer referenced.
public ulong GarbageBlobCount { get; init; }