io.milvus.connection.ClusterFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of milvus-sdk-java Show documentation
Show all versions of milvus-sdk-java Show documentation
Java SDK for Milvus, a distributed high-performance vector database.
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package io.milvus.connection;
import io.milvus.exception.ParamException;
import io.milvus.param.QueryNodeSingleSearch;
import io.milvus.param.ServerAddress;
import lombok.NonNull;
import org.apache.commons.collections4.CollectionUtils;
import java.util.List;
import java.util.stream.Collectors;
/**
* Factory with managing multi cluster.
*/
public class ClusterFactory {
private final List serverSettings;
private ServerSetting master;
private List availableServerSettings;
private ServerMonitor monitor;
private ClusterFactory(@NonNull Builder builder) {
this.serverSettings = builder.serverSettings;
this.master = this.getDefaultServer();
this.availableServerSettings = builder.serverSettings;
if (builder.keepMonitor) {
monitor = new ServerMonitor(this, builder.queryNodeSingleSearch);
monitor.start();
}
}
public ServerSetting getDefaultServer() {
return serverSettings.get(0);
}
public boolean masterIsRunning() {
List serverAddresses = availableServerSettings.stream()
.map(ServerSetting::getServerAddress)
.collect(Collectors.toList());
return serverAddresses.contains(master.getServerAddress());
}
public void masterChange(ServerSetting serverSetting) {
this.master = serverSetting;
}
public void availableServerChange(List serverSettings) {
this.availableServerSettings = serverSettings;
}
public ServerSetting electMaster() {
return CollectionUtils.isNotEmpty(availableServerSettings) ? availableServerSettings.get(0) : getDefaultServer();
}
public void close() {
if (null != monitor) {
monitor.close();
}
}
public List getServerSettings() {
return serverSettings;
}
public ServerSetting getMaster() {
return master;
}
public List getAvailableServerSettings() {
return availableServerSettings;
}
public static Builder newBuilder() {
return new Builder();
}
/**
* Builder for {@link ClusterFactory}
*/
public static class Builder {
private List serverSettings;
private boolean keepMonitor = false;
private QueryNodeSingleSearch queryNodeSingleSearch;
private Builder() {
}
/**
* Sets server setting list
*
* @param serverSettings ServerSetting
* @return Builder
*/
public Builder withServerSetting(@NonNull List serverSettings) {
this.serverSettings = serverSettings;
return this;
}
/**
* Enables the keep-monitor function for server
*
* @param enable true keep-monitor
* @return Builder
*/
public Builder keepMonitor(boolean enable) {
this.keepMonitor = enable;
return this;
}
/**
* Sets single search for query node listener.
*
* @param queryNodeSingleSearch query node single search for listener
* @return Builder
*/
public Builder withQueryNodeSingleSearch(QueryNodeSingleSearch queryNodeSingleSearch) {
this.queryNodeSingleSearch = queryNodeSingleSearch;
return this;
}
/**
* Verifies parameters and creates a new {@link ClusterFactory} instance.
*
* @return {@link ClusterFactory}
*/
public ClusterFactory build() throws ParamException {
if (CollectionUtils.isEmpty(serverSettings)) {
throw new ParamException("Server settings is empty!");
}
return new ClusterFactory(this);
}
}
}