Table of Contents

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

ulong

BlobFilePath

Path of the blob file.

public string? BlobFilePath { get; init; }

Property Value

string

GarbageBlobBytes

Total size of the unreferenced blobs, in bytes.

public ulong GarbageBlobBytes { get; init; }

Property Value

ulong

GarbageBlobCount

Number of blobs in the file that are no longer referenced.

public ulong GarbageBlobCount { get; init; }

Property Value

ulong