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
This commit is contained in:
Ilya Tyaptin 2016-09-28 13:10:16 +03:00
parent 58a3f8cff7
commit c657c3767e
1 changed files with 5 additions and 3 deletions

View File

@ -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
}