Added algorithm factories and parameters to the defaulr config
This commit is contained in:
parent
49448a81fe
commit
cf0051cb1a
40
neat.conf
40
neat.conf
@ -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 = {}
|
||||
|
Loading…
x
Reference in New Issue
Block a user