blob: d246b3086bd2f4a01853628a30c18857e69b4be5 [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership. The ASF licenses this file to you 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
* <p>
* http://www.apache.org/licenses/LICENSE-2.0
* <p>
* 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 org.apache.storm.scheduler.resource.strategies.scheduling;
import java.util.Map;
import org.apache.storm.scheduler.Cluster;
import org.apache.storm.scheduler.TopologyDetails;
import org.apache.storm.scheduler.resource.SchedulingResult;
/**
* An interface to for implementing different scheduling strategies for the resource aware scheduling.
*/
public interface IStrategy {
/**
* Prepare the Strategy for scheduling.
* @param config the cluster configuration
*/
void prepare(Map<String, Object> config);
/**
* This method is invoked to calculate a scheduling for topology td. Cluster will reject any changes that are
* not for the given topology. Any changes made to the cluster will be committed if the scheduling is successful.
* <P></P>
* NOTE: scheduling occurs as a runnable in an interruptible thread. Scheduling should consider being interrupted if
* long running.
*
* @param schedulingState the current state of the cluster
* @param td the topology to schedule for
* @return returns a SchedulingResult object containing SchedulingStatus object to indicate whether scheduling is
* successful.
*/
SchedulingResult schedule(Cluster schedulingState, TopologyDetails td);
}