Interface Operator.Status

All Superinterfaces:
NamedWriteable, org.elasticsearch.xcontent.ToXContent, org.elasticsearch.xcontent.ToXContentObject, VersionedNamedWriteable, Writeable
All Known Implementing Classes:
AbstractPageMappingOperator.Status, AbstractPageMappingToIteratorOperator.Status, AggregationOperator.Status, AsyncOperator.Status, ExchangeSinkOperator.Status, ExchangeSourceOperator.Status, HashAggregationOperator.Status, LimitOperator.Status, LuceneOperator.Status, MvExpandOperator.Status, SampleOperator.Status, TimeSeriesSourceOperator.Status, TopNOperatorStatus, ValuesSourceReaderOperatorStatus
Enclosing interface:
Operator

public static interface Operator.Status extends org.elasticsearch.xcontent.ToXContentObject, VersionedNamedWriteable
Status of an Operator to be returned by the tasks API.
  • Nested Class Summary

    Nested classes/interfaces inherited from interface org.elasticsearch.xcontent.ToXContent

    org.elasticsearch.xcontent.ToXContent.DelegatingMapParams, org.elasticsearch.xcontent.ToXContent.MapParams, org.elasticsearch.xcontent.ToXContent.Params

    Nested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable

    Writeable.Reader<V>, Writeable.Writer<V>
  • Field Summary

    Fields inherited from interface org.elasticsearch.xcontent.ToXContent

    EMPTY, EMPTY_PARAMS
  • Method Summary

    Modifier and Type
    Method
    Description
    default long
    The number of documents found by this operator.
    default long
    The number of values loaded by this operator.

    Methods inherited from interface org.elasticsearch.xcontent.ToXContent

    toXContent

    Methods inherited from interface org.elasticsearch.xcontent.ToXContentObject

    isFragment

    Methods inherited from interface org.elasticsearch.common.io.stream.VersionedNamedWriteable

    getMinimalSupportedVersion, getWriteableName, supportsVersion

    Methods inherited from interface org.elasticsearch.common.io.stream.Writeable

    writeTo
  • Method Details

    • documentsFound

      default long documentsFound()
      The number of documents found by this operator. Most operators don't find documents and will return 0 here.
    • valuesLoaded

      default long valuesLoaded()
      The number of values loaded by this operator. Most operators don't load values and will return 0 here.