public sealed class ReadIteratorStats : IMessage<ReadIteratorStats>, IEquatable<ReadIteratorStats>, IDeepCloneable<ReadIteratorStats>, IBufferMessage, IMessageReference 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.
Implements
IMessage<ReadIteratorStats>, IEquatable<ReadIteratorStats>, IDeepCloneable<ReadIteratorStats>, IBufferMessage, IMessageNamespace
Google.Cloud.Bigtable.V2Assembly
Google.Cloud.Bigtable.V2.dll
Constructors
ReadIteratorStats()
public ReadIteratorStats()ReadIteratorStats(ReadIteratorStats)
public ReadIteratorStats(ReadIteratorStats other)| Parameter | |
|---|---|
| Name | Description |
other |
ReadIteratorStats |
Properties
CellsReturnedCount
public long CellsReturnedCount { get; set; }The cells returned as part of the request.
| Property Value | |
|---|---|
| Type | Description |
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 | |
|---|---|
| Type | Description |
Int64 |
|
DeletesSeenCount
public long DeletesSeenCount { get; set; }The deletes seen as part of the request.
| Property Value | |
|---|---|
| Type | Description |
Int64 |
|
RowsReturnedCount
public long RowsReturnedCount { get; set; }The rows returned as part of the request.
| Property Value | |
|---|---|
| Type | Description |
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 | |
|---|---|
| Type | Description |
Int64 |
|