Class HashAggregationOperator.Status

java.lang.Object
org.elasticsearch.compute.operator.HashAggregationOperator.Status
All Implemented Interfaces:
NamedWriteable, VersionedNamedWriteable, Writeable, Operator.Status, ToXContent, ToXContentObject
Enclosing class:
HashAggregationOperator

public static class HashAggregationOperator.Status extends Object implements Operator.Status
  • Field Details

  • Constructor Details

    • Status

      public Status(long hashNanos, long aggregationNanos, int pagesProcessed, long rowsReceived, long rowsEmitted, long emitNanos, long emitCount)
      Build.
      Parameters:
      hashNanos - Nanoseconds this operator has spent hashing grouping keys.
      aggregationNanos - Nanoseconds this operator has spent running the aggregations.
      pagesProcessed - Count of pages this operator has processed.
      rowsReceived - Count of rows this operator has received.
      rowsEmitted - Count of rows this operator has emitted.
      emitNanos - Nanoseconds this operator has spent emitting the output.
      emitCount - Count of times this operator has emitted output.
    • Status

      protected Status(StreamInput in) throws IOException
      Throws:
      IOException
  • Method Details