Google Bigtable v2 API - Class ReadIteratorStats (3.2.0)

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

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

ReadIteratorStats 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 > ReadIteratorStats

Namespace

Google.Cloud.Bigtable.V2

Assembly

Google.Cloud.Bigtable.V2.dll

Constructors

ReadIteratorStats()

public ReadIteratorStats()

ReadIteratorStats(ReadIteratorStats)

public ReadIteratorStats(ReadIteratorStats other)
Parameter
NameDescription
otherReadIteratorStats

Properties

CellsReturnedCount

public long CellsReturnedCount { get; set; }

The cells returned as part of the request.

Property Value
TypeDescription
Int64

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
Int64

DeletesSeenCount

public long DeletesSeenCount { get; set; }

The deletes seen as part of the request.

Property Value
TypeDescription
Int64

RowsReturnedCount

public long RowsReturnedCount { get; set; }

The rows returned as part of the request.

Property Value
TypeDescription
Int64

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
Int64