From 7c4c4ad3cfe45a591436acaf91ba79b319cd3ffc Mon Sep 17 00:00:00 2001 From: Evgeniy L Date: Tue, 29 Dec 2015 21:07:15 +0300 Subject: [PATCH] Add improvments list to readme --- README.rst | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/README.rst b/README.rst index f71dd2d..03425d7 100644 --- a/README.rst +++ b/README.rst @@ -1,6 +1,6 @@ -=============================== +======================== bareon-dynamic-allocator -=============================== +======================== A driver for Bareon for dynamic allocation of volumes @@ -21,8 +21,11 @@ Features Future Improvments ------------------ -* user weight if max is not specified -* if min and max for several spaces are the same, consider using weight -* create special types, like lv_mirror with special policy to allocate volume - of the same size over several disks +* user weight if max is not specified [DONE] +* if min and max for several spaces are the same, consider using weight (DONE, but only for max, better design for min is required) +* improve weight algorithm, use weights only if minimal size of one disk is not bigger than maximal size of another, otherwise we should notify user about the error * research on YAQL in order to filter the disks by some criteria +* we should automatically add Unallocate volume with no constraints, so user can specify volumes with maximal sizes, and the rest of the space will be allocated for Unallocate +* create special types, like lv_mirror with special policy to allocate volume of the same size over several disks +* add integer constraints (the problem can be solved with integer programming, but it may lead to situation when there are no feasible solution, so for our practical purpose we are going to use naive implementation which is rounding of resulting vectos `x`) +* as a user I should be able to define a single disk partition (http://math.stackexchange.com/questions/1460350/formulation-of-mutually-exclusive-condition, http://people.brunel.ac.uk/~mastjjb/jeb/or/moreip.html)