|
The C# driver `MapReduceResult` class has the following execution statistics related properties:
public TimeSpan Duration
|
public long EmitCount
|
public long OutputCount
|
public long InputCount
|
Duration is based on the `timeMillis` field and the other three are based on sub-fields of the `counts` field.
No exception will be thrown if any of these fields are missing from the map reduce result unless one of the properties is reference, in which case the exception is thrown when the attempt is made to access the non-existent data.
Seems like no change is needed in the C# driver for this issue.
|