Class OpenIndexRequest

    • Constructor Detail

      • OpenIndexRequest

        public OpenIndexRequest​(StreamInput in)
                         throws java.io.IOException
        Throws:
        java.io.IOException
      • OpenIndexRequest

        public OpenIndexRequest()
      • OpenIndexRequest

        public OpenIndexRequest​(java.lang.String... indices)
        Constructs a new open index request for the specified index.
    • Method Detail

      • indices

        public java.lang.String[] indices()
        The indices to be opened
        Specified by:
        indices in interface IndicesRequest
        Returns:
        the indices to be opened
      • indices

        public OpenIndexRequest indices​(java.lang.String... indices)
        Sets the indices to be opened
        Specified by:
        indices in interface IndicesRequest.Replaceable
        Parameters:
        indices - the indices to be opened
        Returns:
        the request itself
      • indicesOptions

        public IndicesOptions indicesOptions()
        Specifies what type of requested indices to ignore and how to deal with wildcard expressions. For example indices that don't exist.
        Specified by:
        indicesOptions in interface IndicesRequest
        Returns:
        the current behaviour when it comes to index names and wildcard indices expressions
      • indicesOptions

        public OpenIndexRequest indicesOptions​(IndicesOptions indicesOptions)
        Specifies what type of requested indices to ignore and how to deal with wildcard expressions. For example indices that don't exist.
        Parameters:
        indicesOptions - the desired behaviour regarding indices to ignore and wildcard indices expressions
        Returns:
        the request itself
      • waitForActiveShards

        public OpenIndexRequest waitForActiveShards​(ActiveShardCount waitForActiveShards)
        Sets the number of shard copies that should be active for indices opening to return. Defaults to ActiveShardCount.DEFAULT, which will wait for one shard copy (the primary) to become active. Set this value to ActiveShardCount.ALL to wait for all shards (primary and all replicas) to be active before returning. Otherwise, use ActiveShardCount.from(int) to set this value to any non-negative integer, up to the number of copies per shard (number of replicas + 1), to wait for the desired amount of shard copies to become active before returning. Indices opening will only wait up until the timeout value for the number of shard copies to be active before returning. Check ShardsAcknowledgedResponse.isShardsAcknowledged() to determine if the requisite shard copies were all started before returning or timing out.
        Parameters:
        waitForActiveShards - number of active shard copies to wait on