From 7c0a50b7d5443711b3fc012a65940fa3b16613aa Mon Sep 17 00:00:00 2001 From: Anton Beloglazov Date: Fri, 19 Oct 2012 16:48:33 +1100 Subject: [PATCH] Set the RAM threshold for VM placement to 95% --- neat.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neat.conf b/neat.conf index 1fd0d9a..be50b6f 100644 --- a/neat.conf +++ b/neat.conf @@ -125,4 +125,4 @@ algorithm_vm_placement_factory = neat.globals.vm_placement.bin_packing.best_fit_ # A JSON encoded parameters, which will be parsed and passed to the # specified VM placement algorithm factory -algorithm_vm_placement_parameters = {"cpu_threshold": 0.6, "ram_threshold": 0.8} +algorithm_vm_placement_parameters = {"cpu_threshold": 0.6, "ram_threshold": 0.95}