Package org.elasticsearch.client.rollup
Class GetRollupJobResponse.RollupIndexerJobStats
- java.lang.Object
-
- org.elasticsearch.client.rollup.GetRollupJobResponse.RollupIndexerJobStats
-
- Enclosing class:
- GetRollupJobResponse
public static class GetRollupJobResponse.RollupIndexerJobStats extends java.lang.ObjectThe Rollup specialization of stats for the AsyncTwoPhaseIndexer. Note: instead of `documents_indexed`, this XContent show `rollups_indexed`
-
-
Method Summary
Modifier and Type Method Description booleanequals(java.lang.Object other)longgetIndexFailures()Number of failures that have occurred during the bulk indexing phase of RolluplonggetIndexTime()Returns the time spent indexing (cumulative) in millisecondslonggetIndexTotal()Returns the total number of indexing requests that have been sent by the rollup job (Note: this is not the number of _documents_ that have been indexed)longgetNumDocuments()The number of documents read from the input indices.longgetNumInvocations()Number of times that the job woke up to write documents.longgetNumPages()The number of pages read from the input indices.longgetOutputDocuments()Number of documents written to the result indices.longgetSearchFailures()Number of failures that have occurred during the search phase of RolluplonggetSearchTime()Returns the time spent searching (cumulative) in millisecondslonggetSearchTotal()Returns the total number of search requests that have been sent by the rollup jobinthashCode()java.lang.StringtoString()
-
-
-
Method Detail
-
getNumPages
public long getNumPages()
The number of pages read from the input indices.
-
getNumDocuments
public long getNumDocuments()
The number of documents read from the input indices.
-
getNumInvocations
public long getNumInvocations()
Number of times that the job woke up to write documents.
-
getOutputDocuments
public long getOutputDocuments()
Number of documents written to the result indices.
-
getIndexFailures
public long getIndexFailures()
Number of failures that have occurred during the bulk indexing phase of Rollup
-
getSearchFailures
public long getSearchFailures()
Number of failures that have occurred during the search phase of Rollup
-
getIndexTime
public long getIndexTime()
Returns the time spent indexing (cumulative) in milliseconds
-
getSearchTime
public long getSearchTime()
Returns the time spent searching (cumulative) in milliseconds
-
getIndexTotal
public long getIndexTotal()
Returns the total number of indexing requests that have been sent by the rollup job (Note: this is not the number of _documents_ that have been indexed)
-
getSearchTotal
public long getSearchTotal()
Returns the total number of search requests that have been sent by the rollup job
-
equals
public boolean equals(java.lang.Object other)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
toString
public final java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-