/* * Copyright © 2015 Cask Data, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. */ package co.cask.cdap.internal.app.runtime.distributed; import co.cask.cdap.internal.app.runtime.ProgramOptionConstants; import co.cask.cdap.proto.Id; import org.apache.twill.api.RunId; import org.apache.twill.api.TwillController; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.util.Map; /** * A ProgramController for Workers that are launched through Twill. */ public class WorkerTwillProgramController extends AbstractTwillProgramController { private static final Logger LOG = LoggerFactory.getLogger(WorkerTwillProgramController.class); private final TwillController controller; WorkerTwillProgramController(Id.Program programId, TwillController controller, RunId runId) { super(programId, controller, runId); this.controller = controller; } @SuppressWarnings("unchecked") @Override protected void doCommand(String name, Object value) throws Exception { if (!ProgramOptionConstants.INSTANCES.equals(name) || !(value instanceof Map)) { return; } Map<String, String> command = (Map<String, String>) value; try { for (Map.Entry<String, String> entry : command.entrySet()) { LOG.info("Changing worker instance count: {} new count is: {}", entry.getKey(), entry.getValue()); changeInstances(entry.getKey(), Integer.valueOf(entry.getValue())); LOG.info("Worker instance count changed: {} new count is {}", entry.getKey(), entry.getValue()); } } catch (Throwable t) { LOG.error("Failed to change worker instances : {}", command, t); throw t; } } private synchronized void changeInstances(String runnableId, int newInstanceCount) throws Exception { controller.changeInstances(runnableId, newInstanceCount).get(); } }