Class GetRollupJobResponse.RollupIndexerJobStats

  • Enclosing class:
    GetRollupJobResponse

    public static class GetRollupJobResponse.RollupIndexerJobStats
    extends java.lang.Object
    The Rollup specialization of stats for the AsyncTwoPhaseIndexer. Note: instead of `documents_indexed`, this XContent show `rollups_indexed`
    • Method Summary

      Modifier and Type Method Description
      boolean equals​(java.lang.Object other)  
      long getIndexFailures()
      Number of failures that have occurred during the bulk indexing phase of Rollup
      long getIndexTime()
      Returns the time spent indexing (cumulative) in milliseconds
      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)
      long getNumDocuments()
      The number of documents read from the input indices.
      long getNumInvocations()
      Number of times that the job woke up to write documents.
      long getNumPages()
      The number of pages read from the input indices.
      long getOutputDocuments()
      Number of documents written to the result indices.
      long getSearchFailures()
      Number of failures that have occurred during the search phase of Rollup
      long getSearchTime()
      Returns the time spent searching (cumulative) in milliseconds
      long getSearchTotal()
      Returns the total number of search requests that have been sent by the rollup job
      int hashCode()  
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    • 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:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object
      • toString

        public final java.lang.String toString()
        Overrides:
        toString in class java.lang.Object