第 6 章 监控和调优数据平面查询
Data Grid 会公开查询的统计信息,并提供您可以调整的属性以提高查询性能。
6.1. 获取查询统计信息
收集统计信息,以收集有关索引和查询性能的信息,包括索引类型和查询完成的平均时间等信息。
流程
执行以下操作之一:
-
调用
getSearchStatistics ()
或getClusteredSearchStatistics ()
方法进行嵌入式缓存。 -
使用
GET
请求从 REST API 获取远程缓存的统计信息。
嵌入式缓存
// Statistics for the local cluster member SearchStatistics statistics = Search.getSearchStatistics(cache); // Consolidated statistics for the whole cluster CompletionStage<SearchStatisticsSnapshot> statistics = Search.getClusteredSearchStatistics(cache)
远程缓存
GET /v2/caches/{cacheName}/search/stats