// Copyright 2016 Twitter. All rights reserved. // // 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 com.twitter.heron.scheduler.utils; import java.util.logging.Logger; import com.twitter.heron.api.generated.TopologyAPI; import com.twitter.heron.common.basics.SysUtils; import com.twitter.heron.spi.common.Config; import com.twitter.heron.spi.common.Context; import com.twitter.heron.spi.common.Key; import com.twitter.heron.spi.packing.IPacking; import com.twitter.heron.spi.packing.PackingException; import com.twitter.heron.spi.packing.PackingPlan; import com.twitter.heron.spi.scheduler.IScheduler; import com.twitter.heron.spi.scheduler.SchedulerException; import com.twitter.heron.spi.statemgr.SchedulerStateManagerAdaptor; import com.twitter.heron.spi.utils.ReflectionUtils; import com.twitter.heron.spi.utils.TopologyUtils; /** * {@link LauncherUtils} contains helper methods used by the server and client side launch * controllers; {@link com.twitter.heron.scheduler.LaunchRunner} and * {@link com.twitter.heron.scheduler.SchedulerMain} */ public class LauncherUtils { private static final Logger LOG = Logger.getLogger(LauncherUtils.class.getName()); private static LauncherUtils instance = new LauncherUtils(); public static LauncherUtils getInstance() { return instance; } /** * Returns a packing plan generated by configured packing class */ public PackingPlan createPackingPlan(final Config config, final Config runtime) throws PackingException { // Create an instance of the packing class String packingClass = Context.packingClass(config); IPacking packing; try { // create an instance of the packing class packing = ReflectionUtils.newInstance(packingClass); } catch (IllegalAccessException | InstantiationException | ClassNotFoundException e) { throw new PackingException(String.format( "Failed to instantiate packing instance using packing class %s", packingClass), e); } try { TopologyAPI.Topology topology = Runtime.topology(runtime); packing.initialize(config, topology); return packing.pack(); } finally { SysUtils.closeIgnoringExceptions(packing); } } /** * Invoke the onScheduler() in IScheduler directly as a library * * @param config The Config to initialize IScheduler * @param runtime The runtime Config to initialize IScheduler * @param scheduler the IScheduler to invoke * @param packing The PackingPlan to scheduler for OnSchedule() * @return true if scheduling successfully */ public boolean onScheduleAsLibrary( Config config, Config runtime, IScheduler scheduler, PackingPlan packing) { boolean ret = false; try { scheduler.initialize(config, runtime); ret = scheduler.onSchedule(packing); if (ret) { // Set the SchedulerLocation at last step, // since some methods in IScheduler will provide correct values // only after IScheduler.onSchedule is invoked correctly ret = SchedulerUtils.setLibSchedulerLocation(runtime, scheduler, false); } else { LOG.severe("Failed to invoke IScheduler as library"); } } finally { scheduler.close(); } return ret; } /** * Creates and initializes scheduler instance * * @return initialized scheduler instances */ public IScheduler getSchedulerInstance(Config config, Config runtime) throws SchedulerException { String schedulerClass = Context.schedulerClass(config); IScheduler scheduler; try { // create an instance of scheduler scheduler = ReflectionUtils.newInstance(schedulerClass); } catch (IllegalAccessException | InstantiationException | ClassNotFoundException e) { throw new SchedulerException(String.format("Failed to instantiate scheduler using class '%s'", schedulerClass)); } scheduler.initialize(config, runtime); return scheduler; } /** * Creates initial runtime config instance using topology information. * * @return initial runtime config instance */ public Config createPrimaryRuntime(TopologyAPI.Topology topology) { return Config.newBuilder() .put(Key.TOPOLOGY_ID, topology.getId()) .put(Key.TOPOLOGY_NAME, topology.getName()) .put(Key.TOPOLOGY_DEFINITION, topology) .put(Key.NUM_CONTAINERS, 1 + TopologyUtils.getNumContainers(topology)) .build(); } /** * Creates initial runtime config of scheduler state manager adaptor * * @return adaptor config */ public Config createAdaptorRuntime(SchedulerStateManagerAdaptor adaptor) { return Config.newBuilder() .put(Key.SCHEDULER_STATE_MANAGER_ADAPTOR, adaptor).build(); } /** * Creates a config instance with packing plan info added to runtime config * * @return packing details config */ public Config createConfigWithPackingDetails(Config runtime, PackingPlan packing) { return Config.newBuilder() .putAll(runtime) .put(Key.COMPONENT_RAMMAP, packing.getComponentRamDistribution()) .put(Key.NUM_CONTAINERS, 1 + packing.getContainers().size()) .build(); } }