From c657c3767edfd80b0f1c9d4cf20b2413dfa75683 Mon Sep 17 00:00:00 2001 From: Ilya Tyaptin Date: Wed, 28 Sep 2016 13:10:16 +0300 Subject: [PATCH] Increase Hindsight output and instruction limits These options are increased because we need output more than >64KB in case when compute polling agent sends batches with 200-1000 samples. Change-Id: Ie0a8c3b8a4a1a10095797320b94b9e8220069c1d --- .../telemetry/templates/hindsight/hindsight.cfg.erb | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/deployment_scripts/puppet/modules/telemetry/templates/hindsight/hindsight.cfg.erb b/deployment_scripts/puppet/modules/telemetry/templates/hindsight/hindsight.cfg.erb index e6891ba..44abd8c 100644 --- a/deployment_scripts/puppet/modules/telemetry/templates/hindsight/hindsight.cfg.erb +++ b/deployment_scripts/puppet/modules/telemetry/templates/hindsight/hindsight.cfg.erb @@ -11,9 +11,9 @@ io_lua_path = analysis_lua_path .. ";<%= @sandbox_dir %>/io_modules/ io_lua_cpath = analysis_lua_cpath .. ";<%= @sandbox_dir %>/io_modules/?.so" input_defaults = { - instruction_limit = 0 - -- output_limit = 64 * 1024 - -- memory_limit = 8 * 1024 * 1024 + instruction_limit = 0, + output_limit = 1.5 * 1024 * 1024, + memory_limit = 100 * 1024 * 1024 -- preserve_data = false -- ticker_interval = 0 } @@ -22,4 +22,6 @@ analysis_defaults = { } output_defaults = { + instruction_limit = 0, + memory_limit = 100 * 1024 * 1024 }