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