我正在使用Elastic4s。我需要从ElasticSearch的实例中找到所有索引名称。我应该使用什么API?
答案 0 :(得分:1)
您可以获得所有索引名称和与其关联的详细信息。
GET _cat/indices?v
答案 1 :(得分:0)
在弹性1.6.5中你可以做到,
val resp = client.execute {
clusterState
}
答案 2 :(得分:0)
对于 Elastic4s 版本:6.5.0。您可以使用Elastic4s提供的catIndices
API获取所有索引。
这是一个例子:
val resp = client.execute {
catIndices
}
您可以参考official doc以获得更多信息。