diff --git a/src/main/java/com/tarento/formservice/dao/impl/FormsDaoImpl.java b/src/main/java/com/tarento/formservice/dao/impl/FormsDaoImpl.java index 8ff48aa9ac7b817aefab6b0a4e1ab5eb4293e395..36c65cc8b53fcac93da6ad38a1a6fdec1804f75e 100644 --- a/src/main/java/com/tarento/formservice/dao/impl/FormsDaoImpl.java +++ b/src/main/java/com/tarento/formservice/dao/impl/FormsDaoImpl.java @@ -102,7 +102,7 @@ public class FormsDaoImpl implements FormsDao { public List<Map<String, Object>> searchPlainFormResponse(SearchRequest searchRequest) { try { List<Map<String, Object>> responseData = new ArrayList<>(); - MultiSearchResponse response = elasticsearchRepo.executeMultiSearchRequest(searchRequest); + MultiSearchResponse response = elasticsearchRepo.executeMultiSearchRequest2(searchRequest); SearchResponse searchResponse = response.getResponses()[0].getResponse(); SearchHit[] hit = searchResponse.getHits().getHits(); for (SearchHit hits : hit) { diff --git a/src/main/java/com/tarento/formservice/repository/ElasticSearchRepository.java b/src/main/java/com/tarento/formservice/repository/ElasticSearchRepository.java index addadc152287e7d0d94e76da8635581ace18d33f..29554c93bf1e47b1a9a96a5c3a27a204d5e090fc 100644 --- a/src/main/java/com/tarento/formservice/repository/ElasticSearchRepository.java +++ b/src/main/java/com/tarento/formservice/repository/ElasticSearchRepository.java @@ -64,12 +64,14 @@ public class ElasticSearchRepository { private AppConfiguration appConfig; private RestHighLevelClient client; + private RestHighLevelClient client2; @Autowired private ElasticSearchRepository(AppConfiguration appConfiguration, RestTemplate restTemp) { appConfig = appConfiguration; restTemplate = restTemp; client = connectToElasticSearch(); + client2 = connectToElasticSearch2(); } private RestHighLevelClient connectToElasticSearch() { @@ -83,14 +85,17 @@ public class ElasticSearchRepository { return httpClientBuilder.setDefaultCredentialsProvider(credentialsProvider); } }; +// return new RestHighLevelClient( +// RestClient.builder(new HttpHost(appConfig.getElasticHost(), appConfig.getElasticPort()))); return new RestHighLevelClient( - RestClient.builder(new HttpHost(appConfig.getElasticHost(), appConfig.getElasticPort()))); - + RestClient.builder(new HttpHost(appConfig.getElasticHost(),appConfig.getElasticPort(), "https")) + .setHttpClientConfigCallback(httpClientConfigCallback)); } private RestHighLevelClient connectToElasticSearch2() { final CredentialsProvider credentialsProvider = new BasicCredentialsProvider(); - credentialsProvider.setCredentials(AuthScope.ANY, new UsernamePasswordCredentials("username", "password")); + credentialsProvider.setCredentials(AuthScope.ANY, + new UsernamePasswordCredentials("elastic", "PuAz@itAqwsaR34bYu")); HttpClientConfigCallback httpClientConfigCallback = new HttpClientConfigCallback() { @Override @@ -98,8 +103,9 @@ public class ElasticSearchRepository { return httpClientBuilder.setDefaultCredentialsProvider(credentialsProvider); } }; - return new RestHighLevelClient(RestClient.builder(new HttpHost("hostname", 443, "https")) - .setHttpClientConfigCallback(httpClientConfigCallback)); + return new RestHighLevelClient( + RestClient.builder(new HttpHost("elastic.pulz.app",443, "https")) + .setHttpClientConfigCallback(httpClientConfigCallback)); } @@ -138,6 +144,7 @@ public class ElasticSearchRepository { XContentType.JSON); LOGGER.info("Index request: " + indexRequest); IndexResponse response = client.index(indexRequest, RequestOptions.DEFAULT); + client2.index(indexRequest, RequestOptions.DEFAULT); if (!StringUtils.isBlank(response.toString())) LOGGER.info("Response : {}", response); } catch (Exception e) { @@ -224,7 +231,21 @@ public class ElasticSearchRepository { } return response; } + + public MultiSearchResponse executeMultiSearchRequest2(SearchRequest searchRequest) { + MultiSearchResponse response = null; + try { + MultiSearchRequest multiRequest = new MultiSearchRequest(); + multiRequest.add(searchRequest); + response = client2.msearch(multiRequest, RequestOptions.DEFAULT); + } catch (IOException e) { + LOGGER.error(marker, "Encountered an error while connecting : ", e); + LOGGER.error(marker, "Error Message to report :{} ", e.getMessage()); + } + return response; + } + public MultiSearchResponse executeMultiSearchRequest(List<SearchRequest> searchRequests) { MultiSearchResponse response = null; try {