Added algorithm factories and parameters to the defaulr config

This commit is contained in:
Anton Beloglazov 2012-09-14 11:10:07 +10:00
parent 49448a81fe
commit cf0051cb1a

View File

@ -64,18 +64,34 @@ compute_password = neatpassword
# compute_user must have permissions to execute this command
sleep_command = pm-suspend
# The fully qualified name of a Python function to use as an underload
# detection algorithm
algorithm_underload_detection = neat.underload.threshold.static
# 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
# The fully qualified name of a Python function to use as an overload
# detection algorithm
algorithm_overload_detection = neat.overload.mhod.mhod
# A JSON encoded parameters, which will be parsed and passed to the
# specified underload detection algorithm factory
algorithm_underload_detection_parameters = {}
# The fully qualified name of a Python function to use as a VM
# selection algorithm
algorithm_vm_selection = neat.vm_selection.simple.minimum_migration_time
# 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
# The fully qualified name of a Python function to use as a VM
# placement algorithm
algorithm_vm_placement = neat.vm_placement.bin_packing.power_aware_best_fit_decreasing
# A JSON encoded parameters, which will be parsed and passed to the
# specified overload detection algorithm factory
algorithm_overload_detection_parameters = {}
# 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
# A JSON encoded parameters, which will be parsed and passed to the
# specified VM selection algorithm factory
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
# A JSON encoded parameters, which will be parsed and passed to the
# specified VM placement algorithm factory
algorithm_vm_placement_parameters = {}