Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.es.plus.starter.auto.EsClientConfiguration Maven / Gradle / Ivy
package com.es.plus.starter.auto;
import com.es.plus.adapter.EsPlusClientFacade;
import com.es.plus.adapter.config.GlobalConfigCache;
import com.es.plus.adapter.exception.EsException;
import com.es.plus.adapter.interceptor.EsInterceptor;
import com.es.plus.adapter.properties.GlobalParamHolder;
import com.es.plus.adapter.util.XcontentBuildUtils;
import com.es.plus.core.ClientContext;
import com.es.plus.autoconfigure.properties.AnalysisProperties;
import com.es.plus.autoconfigure.properties.ClientProperties;
import com.es.plus.autoconfigure.properties.EsProperties;
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang3.StringUtils;
import org.apache.http.HttpHost;
import org.apache.http.auth.AuthScope;
import org.apache.http.auth.UsernamePasswordCredentials;
import org.apache.http.client.CredentialsProvider;
import org.apache.http.impl.client.BasicCredentialsProvider;
import org.elasticsearch.client.RestClient;
import org.elasticsearch.client.RestClientBuilder;
import org.elasticsearch.client.RestHighLevelClient;
import org.springframework.beans.factory.InitializingBean;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.util.CollectionUtils;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import static com.es.plus.constant.Analyzer.ASCIIFOLDING;
import static com.es.plus.constant.Analyzer.EP_IK_MAX_WORD;
import static com.es.plus.constant.Analyzer.EP_IK_SMART;
import static com.es.plus.constant.Analyzer.EP_KEYWORD;
import static com.es.plus.constant.Analyzer.EP_LANGUAGE;
import static com.es.plus.constant.Analyzer.EP_NORMALIZER;
import static com.es.plus.constant.Analyzer.EP_PATTERN;
import static com.es.plus.constant.Analyzer.EP_SIMPLE;
import static com.es.plus.constant.Analyzer.EP_SNOWBALL;
import static com.es.plus.constant.Analyzer.EP_STANDARD;
import static com.es.plus.constant.Analyzer.EP_STOP;
import static com.es.plus.constant.Analyzer.EP_WHITESPACE;
import static com.es.plus.constant.Analyzer.IK_MAX_WORD;
import static com.es.plus.constant.Analyzer.IK_SMART;
import static com.es.plus.constant.Analyzer.KEYWORD;
import static com.es.plus.constant.Analyzer.LANGUAGE;
import static com.es.plus.constant.Analyzer.LOWERCASE;
import static com.es.plus.constant.Analyzer.PATTERN;
import static com.es.plus.constant.Analyzer.SIMPLE;
import static com.es.plus.constant.Analyzer.SNOWBALL;
import static com.es.plus.constant.Analyzer.STANDARD;
import static com.es.plus.constant.Analyzer.STEMMER;
import static com.es.plus.constant.Analyzer.STOP;
import static com.es.plus.constant.Analyzer.WHITESPACE;
/**
* @Author: hzh
* @Date: 2022/9/6 14:34
* 默认注册高级客户端.需要适配其他客户端也在这个类中添加
*/
@Slf4j
@Configuration
@EnableConfigurationProperties(EsProperties.class)
public class EsClientConfiguration implements InitializingBean {
@Autowired
private EsProperties esProperties;
@Autowired(required = false)
private List esInterceptors;
/**
* 不存在才加载,存在的话以默认的为主
*/
@Bean
@ConditionalOnMissingBean(RestHighLevelClient.class)
@ConditionalOnProperty(value = "es-plus.address")
public RestHighLevelClient restHighLevelClient() {
// 处理地址
String address = esProperties.getAddress();
if (StringUtils.isEmpty(address)) {
throw new EsException("please config the es address");
}
log.info("初始化esProperties :{}",esProperties);
String schema = esProperties.getSchema();
List hostList = new ArrayList<>();
Arrays.stream(address.split(",")).forEach(item -> hostList.add(new HttpHost(item.split(":")[0],
Integer.parseInt(item.split(":")[1]), schema)));
// 转换成 HttpHost 数组
HttpHost[] httpHost = hostList.toArray(new HttpHost[]{});
// 构建连接对象
RestClientBuilder builder = RestClient.builder(httpHost);
// 设置账号密码最大连接数之类的
String username = esProperties.getUsername();
String password = esProperties.getPassword();
Integer maxConnTotal = esProperties.getMaxConnTotal();
Integer maxConnPerRoute = esProperties.getMaxConnPerRoute();
Integer keepAliveMillis = esProperties.getKeepAliveMillis();
boolean needSetHttpClient = (StringUtils.isNotEmpty(username) && StringUtils.isNotEmpty(password))
|| (Objects.nonNull(maxConnTotal) || Objects.nonNull(maxConnPerRoute)) || Objects.nonNull(keepAliveMillis);
if (needSetHttpClient) {
builder.setHttpClientConfigCallback(httpClientBuilder -> {
// 设置心跳时间等
Optional.ofNullable(keepAliveMillis).ifPresent(p -> httpClientBuilder.setKeepAliveStrategy((response, context) -> p));
Optional.ofNullable(maxConnTotal).ifPresent(httpClientBuilder::setMaxConnTotal);
Optional.ofNullable(maxConnPerRoute).ifPresent(httpClientBuilder::setMaxConnPerRoute);
if (StringUtils.isNotEmpty(username) && StringUtils.isNotEmpty(password)) {
final CredentialsProvider credentialsProvider = new BasicCredentialsProvider();
// 设置账号密码
credentialsProvider.setCredentials(AuthScope.ANY,
new UsernamePasswordCredentials(esProperties.getUsername(), esProperties.getPassword()));
httpClientBuilder.setDefaultCredentialsProvider(credentialsProvider);
}
return httpClientBuilder;
});
}
// 设置超时时间
Integer connectTimeOut = esProperties.getConnectTimeOut();
Integer socketTimeOut = esProperties.getSocketTimeOut();
Integer connectionRequestTimeOut = esProperties.getConnectionRequestTimeOut();
boolean needSetRequestConfig = Objects.nonNull(connectTimeOut) || Objects.nonNull(connectionRequestTimeOut);
if (needSetRequestConfig) {
builder.setRequestConfigCallback(requestConfigBuilder -> {
Optional.ofNullable(connectTimeOut).ifPresent(requestConfigBuilder::setConnectTimeout);
Optional.ofNullable(socketTimeOut).ifPresent(requestConfigBuilder::setSocketTimeout);
Optional.ofNullable(connectionRequestTimeOut)
.ifPresent(requestConfigBuilder::setConnectionRequestTimeout);
return requestConfigBuilder;
});
}
return new RestHighLevelClient(builder);
}
@Override
public void afterPropertiesSet() throws Exception {
GlobalConfigCache.GLOBAL_CONFIG = esProperties.getGlobalConfig();
setAnalysis();
//设置主客户端属性 以spring的客户端为主
Map clientProperties = esProperties.getClientProperties();
if (CollectionUtils.isEmpty(clientProperties)) {
return;
}
clientProperties.forEach((k, v) -> {
RestHighLevelClient restHighLevelClient = getRestHighLevelClient(v);
EsPlusClientFacade esPlusClientFacade = ClientContext.buildEsPlusClientFacade(v.getAddress(),restHighLevelClient,esInterceptors);
ClientContext.addClient(k, esPlusClientFacade);
});
}
private void setAnalysis() {
// 内置分词器初始化
Map analysis = esProperties.getAnalysis();
analysis.computeIfAbsent(EP_STANDARD, a -> {
AnalysisProperties analysisProperties = new AnalysisProperties();
analysisProperties.setFilters(new String[]{STEMMER, LOWERCASE, ASCIIFOLDING});
analysisProperties.setTokenizer(STANDARD);
return analysisProperties;
});
analysis.computeIfAbsent(EP_IK_MAX_WORD, a -> {
AnalysisProperties analysisProperties = new AnalysisProperties();
analysisProperties.setFilters(new String[]{STEMMER, LOWERCASE, ASCIIFOLDING});
analysisProperties.setTokenizer(IK_MAX_WORD);
return analysisProperties;
});
analysis.computeIfAbsent(EP_IK_SMART, a -> {
AnalysisProperties analysisProperties = new AnalysisProperties();
analysisProperties.setFilters(new String[]{STEMMER, LOWERCASE, ASCIIFOLDING});
analysisProperties.setTokenizer(IK_SMART);
return analysisProperties;
});
analysis.computeIfAbsent(EP_KEYWORD, a -> {
AnalysisProperties analysisProperties = new AnalysisProperties();
analysisProperties.setFilters(new String[]{STEMMER, LOWERCASE, ASCIIFOLDING});
analysisProperties.setTokenizer(KEYWORD);
return analysisProperties;
});
analysis.computeIfAbsent(EP_SIMPLE, a -> {
AnalysisProperties analysisProperties = new AnalysisProperties();
analysisProperties.setFilters(new String[]{STEMMER, LOWERCASE, ASCIIFOLDING});
analysisProperties.setTokenizer(SIMPLE);
return analysisProperties;
});
analysis.computeIfAbsent(EP_LANGUAGE, a -> {
AnalysisProperties analysisProperties = new AnalysisProperties();
analysisProperties.setFilters(new String[]{STEMMER, LOWERCASE, ASCIIFOLDING});
analysisProperties.setTokenizer(LANGUAGE);
return analysisProperties;
});
analysis.computeIfAbsent(EP_PATTERN, a -> {
AnalysisProperties analysisProperties = new AnalysisProperties();
analysisProperties.setFilters(new String[]{STEMMER, LOWERCASE, ASCIIFOLDING});
analysisProperties.setTokenizer(PATTERN);
return analysisProperties;
});
analysis.computeIfAbsent(EP_SNOWBALL, a -> {
AnalysisProperties analysisProperties = new AnalysisProperties();
analysisProperties.setFilters(new String[]{STEMMER, LOWERCASE, ASCIIFOLDING});
analysisProperties.setTokenizer(SNOWBALL);
return analysisProperties;
});
analysis.computeIfAbsent(EP_STOP, a -> {
AnalysisProperties analysisProperties = new AnalysisProperties();
analysisProperties.setFilters(new String[]{STEMMER, LOWERCASE, ASCIIFOLDING});
analysisProperties.setTokenizer(STOP);
return analysisProperties;
});
analysis.computeIfAbsent(EP_WHITESPACE, a -> {
AnalysisProperties analysisProperties = new AnalysisProperties();
analysisProperties.setFilters(new String[]{STEMMER, LOWERCASE, ASCIIFOLDING});
analysisProperties.setTokenizer(WHITESPACE);
return analysisProperties;
});
Map normalizers = esProperties.getNormalizers();
normalizers.computeIfAbsent(EP_NORMALIZER, a -> {
AnalysisProperties analysisProperties = new AnalysisProperties();
analysisProperties.setFilters(new String[]{LOWERCASE});
return analysisProperties;
});
analysis.forEach((analyzerName, analyzer) -> {
Map analyzerMap = XcontentBuildUtils.buildAnalyzer(analyzer.getTokenizer(), analyzer.getFilters(), analyzer.getTokenizer());
GlobalParamHolder.putAnalysis(analyzerName, analyzerMap);
});
normalizers.forEach((name, normalizer) -> {
Map map = XcontentBuildUtils.buildAnalyzer(normalizer.getTokenizer(), normalizer.getFilters(), normalizer.getTokenizer());
GlobalParamHolder.putAnalysis(name, map);
});
}
private RestHighLevelClient getRestHighLevelClient(ClientProperties clientProperties) {
// 处理地址
String address = clientProperties.getAddress();
if (StringUtils.isEmpty(address)) {
throw new EsException("please config the es address");
}
String schema = clientProperties.getSchema();
List hostList = new ArrayList<>();
Arrays.stream(address.split(",")).forEach(item -> hostList.add(new HttpHost(item.split(":")[0],
Integer.parseInt(item.split(":")[1]), schema)));
// 转换成 HttpHost 数组
HttpHost[] httpHost = hostList.toArray(new HttpHost[]{});
// 构建连接对象
RestClientBuilder builder = RestClient.builder(httpHost);
// 设置账号密码最大连接数之类的
String username = clientProperties.getUsername();
String password = clientProperties.getPassword();
Integer maxConnTotal = clientProperties.getMaxConnTotal();
Integer maxConnPerRoute = clientProperties.getMaxConnPerRoute();
Integer keepAliveMillis = clientProperties.getKeepAliveMillis();
boolean needSetHttpClient = (StringUtils.isNotEmpty(username) && StringUtils.isNotEmpty(password))
|| (Objects.nonNull(maxConnTotal) || Objects.nonNull(maxConnPerRoute)) || Objects.nonNull(keepAliveMillis);
if (needSetHttpClient) {
builder.setHttpClientConfigCallback(httpClientBuilder -> {
// 设置心跳时间等
Optional.ofNullable(keepAliveMillis).ifPresent(p -> httpClientBuilder.setKeepAliveStrategy((response, context) -> p));
Optional.ofNullable(maxConnTotal).ifPresent(httpClientBuilder::setMaxConnTotal);
Optional.ofNullable(maxConnPerRoute).ifPresent(httpClientBuilder::setMaxConnPerRoute);
if (StringUtils.isNotEmpty(username) && StringUtils.isNotEmpty(password)) {
final CredentialsProvider credentialsProvider = new BasicCredentialsProvider();
// 设置账号密码
credentialsProvider.setCredentials(AuthScope.ANY,
new UsernamePasswordCredentials(clientProperties.getUsername(), clientProperties.getPassword()));
httpClientBuilder.setDefaultCredentialsProvider(credentialsProvider);
}
return httpClientBuilder;
});
}
// 设置超时时间
Integer connectTimeOut = clientProperties.getConnectTimeOut();
Integer socketTimeOut = clientProperties.getSocketTimeOut();
Integer connectionRequestTimeOut = clientProperties.getConnectionRequestTimeOut();
boolean needSetRequestConfig = Objects.nonNull(connectTimeOut) || Objects.nonNull(connectionRequestTimeOut);
if (needSetRequestConfig) {
builder.setRequestConfigCallback(requestConfigBuilder -> {
Optional.ofNullable(connectTimeOut).ifPresent(requestConfigBuilder::setConnectTimeout);
Optional.ofNullable(socketTimeOut).ifPresent(requestConfigBuilder::setSocketTimeout);
Optional.ofNullable(connectionRequestTimeOut)
.ifPresent(requestConfigBuilder::setConnectionRequestTimeout);
return requestConfigBuilder;
});
}
return new RestHighLevelClient(builder);
}
}