org.jboss.as.domain.controller.plan.RolloutPlanController Maven / Gradle / Ivy
/*
* JBoss, Home of Professional Open Source.
* Copyright 2012, Red Hat, Inc., and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
/**
*
*/
package org.jboss.as.domain.controller.plan;
import static org.jboss.as.controller.descriptions.ModelDescriptionConstants.CONCURRENT_GROUPS;
import static org.jboss.as.controller.descriptions.ModelDescriptionConstants.GRACEFUL_SHUTDOWN_TIMEOUT;
import static org.jboss.as.controller.descriptions.ModelDescriptionConstants.IN_SERIES;
import static org.jboss.as.controller.descriptions.ModelDescriptionConstants.MAX_FAILED_SERVERS;
import static org.jboss.as.controller.descriptions.ModelDescriptionConstants.MAX_FAILURE_PERCENTAGE;
import static org.jboss.as.controller.descriptions.ModelDescriptionConstants.ROLLBACK_ACROSS_GROUPS;
import static org.jboss.as.controller.descriptions.ModelDescriptionConstants.ROLLING_TO_SERVERS;
import static org.jboss.as.controller.descriptions.ModelDescriptionConstants.SERVER_GROUP;
import static org.jboss.as.controller.descriptions.ModelDescriptionConstants.SHUTDOWN;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.concurrent.ExecutorService;
import javax.security.auth.Subject;
import org.jboss.as.domain.controller.ServerIdentity;
import org.jboss.as.domain.controller.operations.coordination.DomainOperationContext;
import org.jboss.dmr.ModelNode;
import org.jboss.dmr.Property;
/**
* Coordinates rolling out a series of operations to the servers specified in a rollout plan.
*
* @author Brian Stansberry (c) 2011 Red Hat Inc.
*/
public class RolloutPlanController {
public static enum Result {
SUCCESS,
PARTIAL,
FAILED
}
private final boolean rollbackAcrossGroups;
private final RollingUpdateTask rootTask;
private final Map updatePolicies = new HashMap();
private final boolean shutdown;
private final long gracefulShutdownPeriod;
private final DomainOperationContext domainOperationContext;
public RolloutPlanController(final Map> opsByGroup,
final ModelNode rolloutPlan,
final DomainOperationContext domainOperationContext,
final ServerTaskExecutor taskExecutor,
final ExecutorService executor) {
this.domainOperationContext = domainOperationContext;
this.rollbackAcrossGroups = !rolloutPlan.hasDefined(ROLLBACK_ACROSS_GROUPS) || rolloutPlan.get(ROLLBACK_ACROSS_GROUPS).asBoolean();
this.shutdown = rolloutPlan.hasDefined(SHUTDOWN) && rolloutPlan.get(SHUTDOWN).asBoolean();
this.gracefulShutdownPeriod = rolloutPlan.hasDefined(GRACEFUL_SHUTDOWN_TIMEOUT) ? rolloutPlan.get(GRACEFUL_SHUTDOWN_TIMEOUT).asInt() : -1;
final List rollingTasks = new ArrayList();
this.rootTask = new RollingUpdateTask(rollingTasks);
if (rolloutPlan.hasDefined(IN_SERIES)) {
ConcurrentGroupServerUpdatePolicy predecessor = null;
Subject subject = SecurityActions.getCurrentSubject();
for (ModelNode series : rolloutPlan.get(IN_SERIES).asList()) {
final List seriesTasks = new ArrayList();
rollingTasks.add(new ConcurrentUpdateTask(seriesTasks, executor));
Set groupNames = new HashSet();
List groupPolicies = new ArrayList();
if (series.hasDefined(CONCURRENT_GROUPS)) {
for (Property pol : series.get(CONCURRENT_GROUPS).asPropertyList()) {
groupNames.add(pol.getName());
groupPolicies.add(pol);
}
}
else {
Property pol = series.require(SERVER_GROUP).asProperty();
groupNames.add(pol.getName());
groupPolicies.add(pol);
}
ConcurrentGroupServerUpdatePolicy parent = new ConcurrentGroupServerUpdatePolicy(predecessor, groupNames);
for (Property prop : groupPolicies) {
final String serverGroupName = prop.getName();
final Map groupEntry = opsByGroup.get(serverGroupName);
if (groupEntry == null) {
continue;
}
final List groupTasks = new ArrayList();
final ModelNode policyNode = prop.getValue();
final boolean rollingGroup = policyNode.hasDefined(ROLLING_TO_SERVERS) && policyNode.get(ROLLING_TO_SERVERS).asBoolean();
final Set servers = groupEntry.keySet();
int maxFailures = 0;
if (policyNode.hasDefined(MAX_FAILURE_PERCENTAGE)) {
int pct = policyNode.get(MAX_FAILURE_PERCENTAGE).asInt();
maxFailures = ((servers.size() * pct) / 100);
}
else if (policyNode.hasDefined(MAX_FAILED_SERVERS)) {
maxFailures = policyNode.get(MAX_FAILED_SERVERS).asInt();
}
ServerUpdatePolicy policy = new ServerUpdatePolicy(parent, serverGroupName, servers, maxFailures);
seriesTasks.add(rollingGroup ? new RollingServerGroupUpdateTask(groupTasks, policy, taskExecutor, subject)
: new ConcurrentServerGroupUpdateTask(groupTasks, policy, taskExecutor, subject));
updatePolicies.put(serverGroupName, policy);
for (Map.Entry entry : groupEntry.entrySet()) {
groupTasks.add(createServerTask(entry.getKey(), entry.getValue(), policy));
}
}
}
}
}
public Result execute() {
this.rootTask.run();
Result result = null;
for (ServerUpdatePolicy policy : updatePolicies.values()) {
if (policy.isFailed()) {
domainOperationContext.setServerGroupRollback(policy.getServerGroupName(), true);
if (rollbackAcrossGroups) {
domainOperationContext.setCompleteRollback(true);
}
result = (result == null || result == Result.FAILED) ? Result.FAILED : Result.PARTIAL;
}
else {
domainOperationContext.setServerGroupRollback(policy.getServerGroupName(), false);
result = (result == null || result == Result.SUCCESS) ? Result.SUCCESS : Result.PARTIAL;
}
}
return result;
}
private ServerUpdateTask createServerTask(final ServerIdentity serverIdentity, final ModelNode serverOp,
final ServerUpdatePolicy policy) {
ServerUpdateTask result;
if (shutdown) {
result = new ServerRestartTask(serverIdentity, policy, gracefulShutdownPeriod);
}
else {
result = new RunningServerUpdateTask(serverIdentity, serverOp, policy);
}
return result;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy