更换最新es客户端RestHighLevelClient后,
IndicesStatsResponse response = client.admin().indices().prepareStats("index1").all().execute().actionGet();
如何替换为最新的代码
IndicesStatsResponse response = client.admin().indices().prepareStats("index1").all().execute().actionGet();
如何替换为最新的代码
2 个回复
rochy - rochy_he
赞同来自: lvwendong
https://www.elastic.co/guide/e ... dices
还有一种方案就是自己使用 RestLowLevelClient 自己请求相关地址,
关于获取 index Stats 的可参考:https://www.elastic.co/guide/e ... .html
God_lockin
赞同来自: lvwendong
这个是你想要的东西吗?