クエリー結果キャッシュ統計
コア特有のクエリー結果キャッシュ統計を経時的に記録します。
コア特有のクエリー結果キャッシュ統計を経時的に記録します。
登録されたインデックス検索を通じてコアの結果キャッシュ統計が公開されますが、コアは、その有効期間に多くのインデックス検索を持つ場合があります。インデックス検索を反映させるために、現在、登録されている検索の統計の他に累積/有効期間統計も提供されています。
JMXアナログ
solr/core/queryResultCache/*
スキーマ
CREATE TABLE dse_perf.solr_result_cache_stats (
node_ip inet,
core text,
date timestamp,
time timestamp,
hits bigint,
inserts bigint,
evictions bigint,
hit_ratio float,
lookups bigint,
num_entries bigint,
cumulative_lookups bigint,
cumulative_hits bigint,
cumulative_hitratio float,
cumulative_inserts bigint,
cumulative_evictions bigint,
warmup_time bigint,
PRIMARY KEY ((node_ip, core, date), time)
)
WITH gc_grace_seconds=0
フィールド | タイプ | 目的 |
---|---|---|
node_ip | inet | ノードIPアドレス。 |
core | text | keyspace_name.table_nameなどの検索インデックス名。 |
date | timestamp | 統計が記録されたmm/dd/yyyyの深夜。 |
time | timestamp | 統計が記録された正確な時刻。 |
hits | bigint | 登録されているインデックス検索のキャッシュ・ヒット。 |
inserts | bigint | 登録されているインデックス検索のキャッシュ挿入。 |
evictions | bigint | 登録されているインデックス検索のキャッシュ追放。 |
hit_ratio | float | 登録されているインデックス検索のキャッシュのヒットと検索の比率。 |
lookups | bigint | 登録されているインデックス検索のキャッシュ検索。 |
num_entries | bigint | 登録されているインデックス検索のキャッシュ・エントリーの数。 |
cumulative_lookups | bigint | コアの累積キャッシュ検索。 |
cumulative_hits | bigint | コアの累積キャッシュ・ヒット。 |
cumulative_hitratio | float | コアのキャッシュのヒット/検索の累積比率。 |
cumulative_inserts | bigint | コアの累積キャッシュ挿入。 |
cumulative_evictions | bigint | コアの累積キャッシュ追放。 |
warmup_time | bigint | 登録されているインデックス検索のウォームアップ時間。 |
ノード127.0.0.1のコアkeyspace.tableに関して、10/17/2014に記録された累積統計のスナップショット:
SELECT cumulative_lookups, cumulative_hits, cumulative_hitratio, cumulative_inserts
FROM solr_result_cache_stats
WHERE node_ip = '127.0.0.1' AND core = 'keyspace.table' AND date = '2014-10-17';
ノード127.0.0.1上のコアkeyspace.tableに関して、10/17/2014に記録された最新5つのスナップショット:
SELECT *
FROM solr_result_cache_stats
WHERE node_ip = '127.0.0.1'
AND core = 'keyspace.table'
AND date = '2014-10-17'
ORDER BY time DESC
LIMIT 5;