Google Bigtable v2 API - Class ReadIterationStats (3.12.0)

public sealed class ReadIterationStats : IMessage<ReadIterationStats>, IEquatable<ReadIterationStats>, IDeepCloneable<ReadIterationStats>, IBufferMessage, IMessage

Reference documentation and code samples for the Google Bigtable v2 API class ReadIterationStats.

ReadIterationStats captures information about the iteration of rows or cells over the course of a read, e.g. how many results were scanned in a read operation versus the results returned.

Inheritance

object > ReadIterationStats

Namespace

Google.Cloud.Bigtable.V2

Assembly

Google.Cloud.Bigtable.V2.dll

Constructors

ReadIterationStats()

public ReadIterationStats()

ReadIterationStats(ReadIterationStats)

public ReadIterationStats(ReadIterationStats other)
Parameter
NameDescription
otherReadIterationStats

Properties

CellsReturnedCount

public long CellsReturnedCount { get; set; }

The cells returned as part of the request.

Property Value
TypeDescription
long

CellsSeenCount

public long CellsSeenCount { get; set; }

The cells seen (scanned) as part of the request. This includes the count of cells returned, as captured below.

Property Value
TypeDescription
long

RowsReturnedCount

public long RowsReturnedCount { get; set; }

The rows returned as part of the request.

Property Value
TypeDescription
long

RowsSeenCount

public long RowsSeenCount { get; set; }

The rows seen (scanned) as part of the request. This includes the count of rows returned, as captured below.

Property Value
TypeDescription
long