如何使用Elastic的High Level Rest Client获取所有索引?

如何使用Elastic的High Level Rest Client获取所有索引?,第1张

如何使用Elastic的High Level Rest Client获取所有索引

从Elasticsearch 7.5.0开始,您可以使用以下方法检索所有索引:

    GetIndexRequest request = new GetIndexRequest("*");    GetIndexResponse response = client.indices().get(request, RequestOptions.DEFAULT);    String[] indices = response.getIndices();


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4930170.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-12
下一篇 2022-11-12

发表评论

登录后才能评论

评论列表(0条)

保存