Merge "Increase Hindsight output and instruction limits"

This commit is contained in:
Jenkins 2016-09-28 13:47:25 +00:00 committed by Gerrit Code Review
commit 9848db3e17
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
}