From 4b2238f9a548f63ce7e8ce55e08d984c23bbd029 Mon Sep 17 00:00:00 2001 From: licanwei Date: Wed, 7 Aug 2019 17:14:38 +0800 Subject: [PATCH] add releasenote for bp improve-compute-data-model Change-Id: I19780be28912cb0ea1cad49c7c0f43ab3ba8f6e7 Implements: blueprint improve-compute-data-model --- ...e-compute-data-model-b427c85e4ed2b6fb.yaml | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 releasenotes/notes/improve-compute-data-model-b427c85e4ed2b6fb.yaml diff --git a/releasenotes/notes/improve-compute-data-model-b427c85e4ed2b6fb.yaml b/releasenotes/notes/improve-compute-data-model-b427c85e4ed2b6fb.yaml new file mode 100644 index 000000000..5b015411f --- /dev/null +++ b/releasenotes/notes/improve-compute-data-model-b427c85e4ed2b6fb.yaml @@ -0,0 +1,23 @@ +--- +features: + - | + Watcher can get resource information such as total, allocation ratio and + reserved information from Placement API. + Now we add some new fields to the Watcher Data Model: + + * vcpu_reserved: The amount of cpu a node has reserved for its own use. + * vcpu_ratio: CPU allocation ratio. + * memory_mb_reserved: The amount of memory a node has reserved for + its own use. + * memory_ratio: Memory allocation ratio. + * disk_gb_reserved: The amount of disk a node has reserved for its own use. + * disk_ratio: Disk allocation ratio. + + We also add some new propeties: + + * vcpu_capacity: The amount of vcpu, take allocation ratio into account, + but do not include reserved. + * memory_mb_capacity: The amount of memory, take allocation ratio into + account, but do not include reserved. + * disk_gb_capacity: The amount of disk, take allocation ratio into + account, but do not include reserved.