diff --git a/neat.conf b/neat.conf index d5f62d8..9075035 100644 --- a/neat.conf +++ b/neat.conf @@ -85,23 +85,23 @@ sleep_command = pm-suspend # The fully qualified name of a Python factory function that returns a # function implementing an underload detection algorithm -algorithm_underload_detection_factory = neat.underload.threshold.static_factory +algorithm_underload_detection_factory = neat.locals.underload.trivial.threshold_factory # A JSON encoded parameters, which will be parsed and passed to the # specified underload detection algorithm factory -algorithm_underload_detection_parameters = {} +algorithm_underload_detection_parameters = {"threshold": 0.3} # The fully qualified name of a Python factory function that returns a # function implementing an overload detection algorithm -algorithm_overload_detection_factory = neat.overload.mhod.core.mhod_factory +algorithm_overload_detection_factory = neat.locals.overload.trivial.threshold_factory # A JSON encoded parameters, which will be parsed and passed to the # specified overload detection algorithm factory -algorithm_overload_detection_parameters = {} +algorithm_overload_detection_parameters = {"threshold": 0.9} # The fully qualified name of a Python factory function that returns a # function implementing a VM selection algorithm -algorithm_vm_selection_factory = neat.vm_selection.simple.minimum_migration_time_factory +algorithm_vm_selection_factory = neat.locals.vm_selection.algorithms.minimum_migration_time_factory # A JSON encoded parameters, which will be parsed and passed to the # specified VM selection algorithm factory @@ -109,8 +109,8 @@ algorithm_vm_selection_parameters = {} # The fully qualified name of a Python factory function that returns a # function implementing a VM placement algorithm -algorithm_vm_placement_factory = neat.vm_placement.bin_packing.power_aware_best_fit_decreasing_factory +algorithm_vm_placement_factory = neat.globals.vm_placement.bin_packing.best_fit_decreasing_factory # A JSON encoded parameters, which will be parsed and passed to the # specified VM placement algorithm factory -algorithm_vm_placement_parameters = {} +algorithm_vm_placement_parameters = {"cpu_threshold": 0.8, "ram_threshold": 0.8}