Class ExternalFileIngestionInfo
- Namespace
- RocksDbNet
- Assembly
- RocksDb.Net.dll
Information about an external file ingestion event.
public sealed record ExternalFileIngestionInfo : IEquatable<ExternalFileIngestionInfo>
- Inheritance
-
ExternalFileIngestionInfo
- Implements
- Inherited Members
Constructors
ExternalFileIngestionInfo(string?, string?)
Information about an external file ingestion event.
public ExternalFileIngestionInfo(string? ColumnFamilyName, string? InternalFilePath)
Parameters
Properties
ColumnFamilyName
public string? ColumnFamilyName { get; init; }
Property Value
ExternalFilePath
Path the file was ingested from.
public string? ExternalFilePath { get; init; }
Property Value
GlobalSeqno
Sequence number assigned to every key in the ingested file, or 0 when RocksDb did not need to assign one.
public ulong GlobalSeqno { get; init; }
Property Value
InternalFilePath
public string? InternalFilePath { get; init; }
Property Value
TableProperties
Properties of the ingested file, or null if RocksDb reported none.
public TableProperties? TableProperties { get; init; }