Interface IndexStatusInfo

All Known Implementing Classes:
IndexStatusInfoImpl

public interface IndexStatusInfo
General information about the current status of a (embedded) Solr instance's index
Author:
Jeff Fischer
  • Method Details

    • getLastIndexDate

      Date getLastIndexDate()
      The most recent index date
      Returns:
    • setLastIndexDate

      void setLastIndexDate(Date lastIndexDate)
    • getAdditionalInfo

      Map<String,String> getAdditionalInfo()
      Arbitrary information about the index.
      Returns:
    • setAdditionalInfo

      void setAdditionalInfo(Map<String,String> additionalInfo)
    • getIndexErrors

      Map<Long,Integer> getIndexErrors()
      Error information about previously attempted events
      Returns:
    • setIndexErrors

      void setIndexErrors(Map<Long,Integer> errors)
    • getDeadIndexEvents

      Map<Long,Date> getDeadIndexEvents()
      Events that exceeded the retry limit and are considered dead
      Returns:
    • setDeadIndexEvents

      void setDeadIndexEvents(Map<Long,Date> deadIndexEvents)