Examples of UnassignedShard


Examples of io.crate.metadata.shard.unassigned.UnassignedShard

            @Nullable
            @Override
            public UnassignedShard apply(@Nullable ShardRouting input) {
                assert input != null;
                if (!input.active()) {
                    return new UnassignedShard(
                        input.shardId(), clusterService,
                        context.isPrimary(input.shardId()),input.state());
                }
                return null;
            }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.