summaryrefslogtreecommitdiffstats
path: root/controller-server
diff options
context:
space:
mode:
authorgjoranv <gjoranv@gmail.com>2017-12-17 21:44:49 +0100
committerGitHub <noreply@github.com>2017-12-17 21:44:49 +0100
commit03bce1fe1a494f2ac9d4268d4c90b08011b3f600 (patch)
tree180f294d2ac97d641f0266216ffdc328db9bfef8 /controller-server
parentb72e55b87eecae006ed92976151137a80d75be0f (diff)
Revert "Bratseth/tensorflow models"
Diffstat (limited to 'controller-server')
-rw-r--r--controller-server/src/main/java/com/yahoo/vespa/hosted/controller/application/ClusterCost.java13
-rw-r--r--controller-server/src/main/java/com/yahoo/vespa/hosted/controller/application/DeploymentCost.java6
2 files changed, 9 insertions, 10 deletions
diff --git a/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/application/ClusterCost.java b/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/application/ClusterCost.java
index fb675862320..1b2ad9f938a 100644
--- a/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/application/ClusterCost.java
+++ b/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/application/ClusterCost.java
@@ -24,7 +24,6 @@ import java.util.Objects;
* @author smorgrav
*/
public class ClusterCost {
-
private final double tco;
private final double waste;
private final ClusterInfo clusterInfo;
@@ -33,8 +32,8 @@ public class ClusterCost {
private final ClusterUtilization resultUtilization;
/**
- * @param clusterInfo value object with cluster info e.g. the TCO for the hardware used
- * @param systemUtilization utilization of system resources (as ratios)
+ * @param clusterInfo Value object with cluster info e.g. the TCO for the hardware used
+ * @param systemUtilization Utilization of system resources (as ratios)
*/
public ClusterCost(ClusterInfo clusterInfo,
ClusterUtilization systemUtilization) {
@@ -80,10 +79,10 @@ public class ClusterCost {
}
static ClusterUtilization calculateResultUtilization(ClusterUtilization system, ClusterUtilization target) {
- double cpu = ratio(system.getCpu(), target.getCpu());
- double mem = ratio(system.getMemory(), target.getMemory());
- double disk = ratio(system.getDisk(), target.getDisk());
- double diskbusy = ratio(system.getDiskBusy(), target.getDiskBusy());
+ double cpu = ratio(system.getCpu(),target.getCpu());
+ double mem = ratio(system.getMemory(),target.getMemory());
+ double disk = ratio(system.getDisk(),target.getDisk());
+ double diskbusy = ratio(system.getDiskBusy(),target.getDiskBusy());
return new ClusterUtilization(mem, cpu, disk, diskbusy);
}
diff --git a/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/application/DeploymentCost.java b/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/application/DeploymentCost.java
index 371e1c41e32..585690793bb 100644
--- a/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/application/DeploymentCost.java
+++ b/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/application/DeploymentCost.java
@@ -44,17 +44,17 @@ public class DeploymentCost {
return clusters;
}
- /** Returns the total monthly cost of ownership for the deployment (sum of all clusters) */
+ /** @return Total cost of ownership for the deployment (sum of all clusters) */
public double getTco() {
return tco;
}
- /** Returns the utilization of clusters that wastes most money in this deployment */
+ /** @return The utilization of clusters that wastes most money in this deployment */
public double getUtilization() {
return utilization;
}
- /** Returns the amount of dollars spent and not utilized */
+ /** @return The amount of dollars spent and not utilized */
public double getWaste() {
return waste;
}