
org.btrplace.scheduler.choco.transition.BootableNode Maven / Gradle / Ivy
Show all versions of scheduler-choco Show documentation
/*
* Copyright 2023 The BtrPlace Authors. All rights reserved.
* Use of this source code is governed by a LGPL-style
* license that can be found in the LICENSE.txt file.
*/
package org.btrplace.scheduler.choco.transition;
import org.btrplace.model.Node;
import org.btrplace.model.NodeState;
import org.btrplace.plan.ReconfigurationPlan;
import org.btrplace.plan.event.BootNode;
import org.btrplace.scheduler.SchedulerException;
import org.btrplace.scheduler.choco.ReconfigurationProblem;
import org.btrplace.scheduler.choco.extensions.FastImpliesEq;
import org.btrplace.scheduler.choco.extensions.TaskMonitor;
import org.chocosolver.solver.Model;
import org.chocosolver.solver.Solution;
import org.chocosolver.solver.variables.BoolVar;
import org.chocosolver.solver.variables.IntVar;
/**
* Model a transition that allows an offline node to be booted if necessary.
* An estimation of the action duration must be provided through a
* {@link org.btrplace.scheduler.choco.duration.ActionDurationEvaluator} accessible from
* {@link org.btrplace.scheduler.choco.ReconfigurationProblem#getDurationEvaluators()} with the key {@code BootNode.class}
*
* The action is modeled as follow:
*
* - Definition of the node state. If the node is offline, then no VMs can run on it:
*
* - {@link #getState()} = {0,1}
* - {@link #getState()} = 0 -> {@code btrplace.solver.choco.ReconfigurationProblem.getNbRunningVMs()[nIdx] = 0}
*
*
* - The action duration equals 0 if the node stays offline. Otherwise, it equals the evaluated action duration {@code d}
* retrieved from {@link org.btrplace.scheduler.choco.ReconfigurationProblem#getDurationEvaluators()}:
*
* - {@link #getDuration()} = {0,d}
* - {@link #getDuration()} = {@link #getState()} * d
*
*
* - The action starts and ends necessarily before the end of the reconfiguration problem. Their difference
* equals the action duration. If the node stays offline then the action starts and ends at moment 0.
*
* - {@link #getStart()} < {@link org.btrplace.scheduler.choco.ReconfigurationProblem#getEnd()}
* - {@link #getEnd()} < {@link org.btrplace.scheduler.choco.ReconfigurationProblem#getEnd()}
* - {@link #getEnd()} = {@link #getStart()} + {@link #getDuration()}
*
*
* - The node can consume hosting VMs and the end of the action. If the node goes online, it can stop hosting VMs at
* the end of the reconfiguration. Otherwise, it is never capable of hosting VMs (the deadline equals 0)
*
* - {@link #getHostingStart()} = {@link #getEnd()}
* - {@code T} = { {@code 0}, {@link org.btrplace.scheduler.choco.ReconfigurationProblem#getEnd()} }; {@link #getHostingEnd()} = T[{@link #getState()}]
*
*
*
*
* If the reconfiguration problem has a solution, a {@link org.btrplace.plan.event.BootNode} action
* is inserted into the resulting reconfiguration plan iff the node has to be turned online.
*
* @author Fabien Hermenier
*/
public class BootableNode implements NodeTransition {
public static final String PREFIX = "bootableNode(";
private final IntVar start;
private final IntVar end;
private final BoolVar isOnline;
private final IntVar hostingStart;
private final IntVar hostingEnd;
private final IntVar effectiveDuration;
private final Node node;
/**
* Make a new model.
*
* @param rp the RP to use as a basis.
* @param nId the node managed by the action
* @throws org.btrplace.scheduler.SchedulerException if an error occurred
*/
public BootableNode(ReconfigurationProblem rp, Node nId) throws SchedulerException {
node = nId;
int d = rp.getDurationEvaluators().evaluate(rp.getSourceModel(), BootNode.class, nId);
Model csp = rp.getModel();
/*
- If the node is hosting running VMs, it is necessarily online
- If the node is offline, it is sure it cannot host any running VMs
*/
if (rp.labelVariables()) {
isOnline = csp.boolVar(rp.makeVarLabel(PREFIX, nId, ").online"));
} else {
isOnline = csp.boolVar("");
}
BoolVar isOffline = isOnline.not();
csp.post(new FastImpliesEq(isOffline, rp.getNbRunningVMs().get(rp.getNode(nId)), 0));
if (rp.labelVariables()) {
effectiveDuration = csp.intVar(
rp.makeVarLabel(PREFIX, nId, ").effectiveDuration")
, new int[]{0, d});
} else {
effectiveDuration = csp.intVar(new int[]{0, d});
}
csp.post(csp.times(isOnline, csp.intVar(d), effectiveDuration));
/* As */
if (rp.labelVariables()) {
start = rp.makeUnboundedDuration(PREFIX, nId, ").start");
} else {
start = rp.makeUnboundedDuration();
}
/* Ae */
end = rp.makeUnboundedDuration(PREFIX, nId, ").end");
csp.post(csp.arithm(end, "<=", rp.getEnd()));
/* Ae = As + D */
/*Task t = */
TaskMonitor.build(start, effectiveDuration, end);
hostingStart = end;
hostingEnd = rp.makeUnboundedDuration(PREFIX, nId, ").hostingEnd");
csp.post(csp.element(hostingEnd, new IntVar[]{rp.getStart(), rp.getEnd()}, isOnline, 0));
}
@Override
public boolean insertActions(Solution s, ReconfigurationPlan plan) {
if (s.getIntVal(getState()) == 1) {
plan.add(new BootNode(node, s.getIntVal(start), s.getIntVal(end)));
}
return true;
}
@Override
public String toString() {
return "bootable(node=" + node + ", online=" + getState() + ")";
}
@Override
public IntVar getStart() {
return start;
}
@Override
public IntVar getEnd() {
return end;
}
@Override
public IntVar getDuration() {
return effectiveDuration;
}
@Override
public Node getNode() {
return node;
}
@Override
public BoolVar getState() {
return isOnline;
}
@Override
public IntVar getHostingStart() {
return hostingStart;
}
@Override
public IntVar getHostingEnd() {
return hostingEnd;
}
@Override
public NodeState getSourceState() {
return NodeState.OFFLINE;
}
/**
* The builder devoted to a offline -> (online|offline) transition.
*/
public static class Builder extends NodeTransitionBuilder {
/**
* New builder.
*/
public Builder() {
super("bootable", NodeState.OFFLINE);
}
@Override
public NodeTransition build(ReconfigurationProblem r, Node n) throws SchedulerException {
return new BootableNode(r, n);
}
}
}