stalary commented on code in PR #11547: URL: https://github.com/apache/doris/pull/11547#discussion_r939679754
########## fe/fe-core/src/main/java/org/apache/doris/datasource/EsExternalDataSource.java: ########## @@ -166,7 +167,10 @@ public List<String> listDatabaseNames(SessionContext ctx) { @Override public List<String> listTableNames(SessionContext ctx, String dbName) { - return esRestClient.getIndexes(); + List<String> indexes = esRestClient.getIndexes().stream().distinct().collect(Collectors.toList()); + esRestClient.getAliases().entrySet().stream().filter(e -> indexes.contains(e.getKey())) Review Comment: Currently, the method of geting the mapping is compatible. Alias and index can be queried. Therefore, the mapping relationship is not maintained. -- 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. To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org 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