elasticsearch相关的放入同一个package中
This commit is contained in:
@@ -0,0 +1,69 @@
|
||||
package com.gzzn.omms.adminapi.elasticsearch;
|
||||
|
||||
import java.net.InetAddress;
|
||||
|
||||
import org.elasticsearch.client.transport.TransportClient;
|
||||
import org.elasticsearch.common.settings.Settings;
|
||||
import org.elasticsearch.common.transport.TransportAddress;
|
||||
import org.elasticsearch.transport.client.PreBuiltTransportClient;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
import org.springframework.beans.factory.annotation.Value;
|
||||
import org.springframework.context.annotation.Bean;
|
||||
import org.springframework.context.annotation.Configuration;
|
||||
|
||||
@Configuration
|
||||
public class ElasticsearchConfig {
|
||||
|
||||
private static final Logger LOGGER = LoggerFactory.getLogger(ElasticsearchConfig.class);
|
||||
|
||||
/**
|
||||
* elk集群地址
|
||||
*/
|
||||
@Value("${elasticsearch.ip}")
|
||||
private String hostName;
|
||||
|
||||
/**
|
||||
* 端口
|
||||
*/
|
||||
@Value("${elasticsearch.port}")
|
||||
private String port;
|
||||
|
||||
/**
|
||||
* 集群名称
|
||||
*/
|
||||
@Value("${elasticsearch.cluster.name}")
|
||||
private String clusterName;
|
||||
|
||||
/**
|
||||
* 连接池
|
||||
*/
|
||||
@Value("${elasticsearch.pool}")
|
||||
private String poolSize;
|
||||
|
||||
/**
|
||||
* Bean name default 函数名字
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
@Bean(name = "transportClient")
|
||||
public TransportClient transportClient() {
|
||||
LOGGER.info("Elasticsearch初始化开始。。。。。");
|
||||
TransportClient transportClient = null;
|
||||
try {
|
||||
// 配置信息
|
||||
Settings esSetting = Settings.builder()
|
||||
.put("cluster.name", clusterName) // 集群名字
|
||||
// .put("client.transport.sniff", true)// 增加嗅探机制,找到ES集群 只有在存在集群是才能开启嗅探
|
||||
.put("thread_pool.search.size", Integer.parseInt(poolSize))// 增加线程池个数,暂时设为5
|
||||
.build();
|
||||
// 配置信息Settings自定义
|
||||
transportClient = new PreBuiltTransportClient(esSetting);
|
||||
TransportAddress transportAddress = new TransportAddress(InetAddress.getByName(hostName), Integer.valueOf(port));
|
||||
transportClient.addTransportAddresses(transportAddress);
|
||||
} catch (Exception e) {
|
||||
LOGGER.error("elasticsearch TransportClient create error!!", e);
|
||||
}
|
||||
return transportClient;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user