123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- /*
- * Copyright (c) Huawei Technologies Co., Ltd. 2020-2020. All rights reserved.
- */
- package com.bowintek.practice.util;
- import org.apache.logging.log4j.LogManager;
- import org.apache.logging.log4j.Logger;
- import org.elasticsearch.client.RequestOptions;
- import org.elasticsearch.client.RestHighLevelClient;
- import org.elasticsearch.client.indices.GetIndexRequest;
- import org.elasticsearch.hwclient.HwRestClient;
- import java.io.File;
- import java.io.IOException;
- /**
- * 客户端工具
- *
- * @since 2020-09-30
- */
- public class HwRestClientUtils {
- private static final Logger LOG = LogManager.getLogger(HwRestClientUtils.class);
- /**
- * 配置文件路径位置
- */
- private static final int CONFIG_PATH_ARGUMENT_INDEX = 0;
- /**
- * 获取HwRestClient
- *
- * @param args 配置参数
- * @return HwRestClient
- */
- public static HwRestClient getHwRestClient(String[] args) {
- HwRestClient hwRestClient;
- if (args == null
- || args.length < 1
- || args[CONFIG_PATH_ARGUMENT_INDEX] == null
- || args[CONFIG_PATH_ARGUMENT_INDEX].isEmpty()) {
- hwRestClient = new HwRestClient();
- } else {
- String configPath = args[CONFIG_PATH_ARGUMENT_INDEX];
- File configFile = new File(configPath);
- if (configFile.exists()) {
- if (configFile.isDirectory()) {
- hwRestClient = new HwRestClient(configPath);
- } else {
- try {
- hwRestClient =
- new HwRestClient(
- configFile
- .getCanonicalPath()
- .substring(
- 0,
- configFile.getCanonicalPath().lastIndexOf(File.separator) + 1),
- configFile.getName());
- } catch (IOException e) {
- hwRestClient = new HwRestClient();
- }
- }
- } else {
- hwRestClient = new HwRestClient();
- }
- }
- return hwRestClient;
- }
- /**
- * high level 客户端,判断索引是否存在
- *
- * @param highLevelClient high level 客户端
- * @return 索引是否存在
- */
- public static boolean isExistIndexForHighLevel(RestHighLevelClient highLevelClient, String indexName) {
- GetIndexRequest isExistsRequest = new GetIndexRequest(indexName);
- try {
- return highLevelClient.indices().exists(isExistsRequest, RequestOptions.DEFAULT);
- } catch (IOException e) {
- LOG.error("Judge index exist {} failed", indexName, e);
- }
- return false;
- }
- }
|