Package org.elasticsearch.index.shard

Examples of org.elasticsearch.index.shard.IndexShardClosedException


                .withType(TransportRequestOptions.Type.RECOVERY)
                .withTimeout(internalActionLongTimeout);

        while (operation != null) {
            if (shard.state() == IndexShardState.CLOSED) {
                throw new IndexShardClosedException(request.shardId());
            }

            operations.add(operation);
            ops += 1;
            size += operation.estimateSize();
View Full Code Here

TOP

Related Classes of org.elasticsearch.index.shard.IndexShardClosedException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.