Module org.elasticsearch.compute
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,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.ParamsNested 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 TypeMethodDescriptiondefault longThe number of documents found by this operator.default longThe number of values loaded by this operator.Methods inherited from interface org.elasticsearch.xcontent.ToXContent
toXContentMethods inherited from interface org.elasticsearch.xcontent.ToXContentObject
isFragmentMethods inherited from interface org.elasticsearch.common.io.stream.VersionedNamedWriteable
getMinimalSupportedVersion, getWriteableName
-
Method Details
-
documentsFound
default long documentsFound()The number of documents found by this operator. Most operators don't find documents and will return0here. -
valuesLoaded
default long valuesLoaded()The number of values loaded by this operator. Most operators don't load values and will return0here.
-