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.
Implements
IMessageReadIterationStats, IEquatableReadIterationStats, IDeepCloneableReadIterationStats, IBufferMessage, IMessageNamespace
Google.Cloud.Bigtable.V2Assembly
Google.Cloud.Bigtable.V2.dll
Constructors
ReadIterationStats()
public ReadIterationStats()
ReadIterationStats(ReadIterationStats)
public ReadIterationStats(ReadIterationStats other)
Parameter | |
---|---|
Name | Description |
other | ReadIterationStats |
Properties
CellsReturnedCount
public long CellsReturnedCount { get; set; }
The cells returned as part of the request.
Property Value | |
---|---|
Type | Description |
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 | |
---|---|
Type | Description |
long |
RowsReturnedCount
public long RowsReturnedCount { get; set; }
The rows returned as part of the request.
Property Value | |
---|---|
Type | Description |
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 | |
---|---|
Type | Description |
long |