From 5ed4ce1b86fe5f578a71719c76a0e034d15a099f Mon Sep 17 00:00:00 2001 From: Clark Boylan Date: Fri, 3 May 2013 14:13:20 -0700 Subject: [PATCH] Set number of faceting indexes to 1 in Kibana. * modules/kibana/files/config.rb: Kibana uses ElasticSearch's faceting feature to collect statistics. It defaults to performing this over all indexes but this is expensive so limit it to 1 index. Change-Id: I324099f88a9855062aba4905380c9dc8540555a5 Reviewed-on: https://review.openstack.org/28202 Reviewed-by: K Jonathan Harker Reviewed-by: Monty Taylor Approved: James E. Blair Reviewed-by: James E. Blair Tested-by: Jenkins --- modules/kibana/files/config.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/kibana/files/config.rb b/modules/kibana/files/config.rb index 9abe17e93e..e45fee27b9 100755 --- a/modules/kibana/files/config.rb +++ b/modules/kibana/files/config.rb @@ -113,7 +113,7 @@ module KibanaConfig # Kibana will use for the "Stats" and "Terms" to prevent ES crashes. For very # large data sets and undersized ES clusers, a limit of 1 is not unreasonable. # Default is 0 (unlimited) - Facet_index_limit = 0 + Facet_index_limit = 1 # You probably don't want to touch anything below this line # unless you really know what you're doing