Module org.elasticsearch.compute
Interface Operator.Status
- All Superinterfaces:
NamedWriteable,ToXContent,ToXContentObject,VersionedNamedWriteable,Writeable
- All Known Implementing Classes:
AbstractPageMappingOperator.Status,AbstractPageMappingToIteratorOperator.Status,AggregationOperator.Status,AsyncOperator.Status,EnrichQuerySourceOperator.Status,ExchangeSinkOperator.Status,ExchangeSourceOperator.Status,GroupedLimitOperator.Status,GroupedTopNOperatorStatus,HashAggregationOperator.Status,LimitOperator.Status,LinearScoreEvalOperator.Status,LookupQueryOperator.Status,LuceneOperator.Status,MetricsInfoOperator.Status,MMROperator.Status,MvExpandOperator.Status,SampleOperator.Status,TopNOperatorStatus,TsInfoOperator.Status,ValuesSourceReaderOperatorStatus
- Enclosing interface:
Operator
Status of an
Operator to be returned by the tasks API.-
Nested Class Summary
Nested classes/interfaces inherited from interface org.elasticsearch.xcontent.ToXContent
ToXContent.DelegatingMapParams, ToXContent.MapParams, 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 longPre-decompression bytes from storage; external-source operators only.default longThe number of documents found by this operator.default longFormat-reader wall time on the producer thread; external-source operators only.default longRows emitted; source operators populate, summed for driver / response-root rollup.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, supportsVersion
-
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. -
rowsEmitted
default long rowsEmitted()Rows emitted; source operators populate, summed for driver / response-root rollup. -
bytesRead
default long bytesRead()Pre-decompression bytes from storage; external-source operators only. -
readNanos
default long readNanos()Format-reader wall time on the producer thread; external-source operators only.
-