wuyunfeng commented on a change in pull request #5325: URL: https://github.com/apache/incubator-doris/pull/5325#discussion_r581739176
########## File path: fe/fe-core/src/main/java/org/apache/doris/external/elasticsearch/PartitionPhase.java ########## @@ -37,7 +38,15 @@ public PartitionPhase(EsRestClient client) { @Override public void execute(SearchContext context) throws DorisEsException { shardPartitions = client.searchShards(context.sourceIndex()); - nodesInfo = client.getHttpNodes(); + if (context.esNodesDiscovery()) { + nodesInfo = client.getHttpNodes(); + } else { + nodesInfo = new HashMap<>(); + String[] seeds = context.esTable().getSeeds(); + for (int i = 0; i < seeds.length; i++) { + nodesInfo.put(String.valueOf(i), new EsNodeInfo(String.valueOf(i), seeds[i], context.esTable().isUseSslClient())); Review comment: ```suggestion boolean useSSL = context.esTable().isUseSslClient(); nodesInfo.put(String.valueOf(i), new EsNodeInfo(String.valueOf(i), seeds[i], useSSL)); ``` ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org