Class DanglingIndexInfo

java.lang.Object
org.elasticsearch.action.admin.indices.dangling.DanglingIndexInfo
All Implemented Interfaces:
Writeable

public class DanglingIndexInfo
extends java.lang.Object
implements Writeable
Contains information about a dangling index, i.e. an index that Elasticsearch has found on-disk but is not present in the cluster state.
  • Constructor Details

    • DanglingIndexInfo

      public DanglingIndexInfo​(java.lang.String nodeId, java.lang.String indexName, java.lang.String indexUUID, long creationDateMillis)
    • DanglingIndexInfo

      public DanglingIndexInfo​(StreamInput in) throws java.io.IOException
      Throws:
      java.io.IOException
  • Method Details

    • getIndexName

      public java.lang.String getIndexName()
    • getIndexUUID

      public java.lang.String getIndexUUID()
    • getNodeId

      public java.lang.String getNodeId()
    • getCreationDateMillis

      public long getCreationDateMillis()
    • writeTo

      public void writeTo​(StreamOutput out) throws java.io.IOException
      Description copied from interface: Writeable
      Write this into the StreamOutput.
      Specified by:
      writeTo in interface Writeable
      Throws:
      java.io.IOException