blob: a3b9b3259e41fd4f0ace2e36e2845632caf45eb3 [file] [log] [blame]
package org.apache.helix.controller.rebalancer;
/*
* 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
*
* 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.
*/
import org.apache.helix.HelixManager;
import org.apache.helix.controller.dataproviders.BaseControllerDataProvider;
import org.apache.helix.controller.stages.CurrentStateOutput;
import org.apache.helix.model.IdealState;
import org.apache.helix.model.Resource;
import java.util.Map;
public interface GlobalRebalancer<T extends BaseControllerDataProvider> {
enum RebalanceFailureType {
INVALID_CLUSTER_STATUS,
INVALID_REBALANCER_STATUS,
FAILED_TO_CALCULATE,
UNKNOWN_FAILURE
}
class RebalanceFailureReason {
private final static String DEFAULT_REASON_MESSAGE = "No detail";
private final RebalanceFailureType _type;
private final String _reason;
public RebalanceFailureReason(RebalanceFailureType type) {
this(type, DEFAULT_REASON_MESSAGE);
}
public RebalanceFailureReason(RebalanceFailureType type, String reason) {
_type = type;
_reason = reason;
}
public RebalanceFailureType get_type() {
return _type;
}
public String get_reason() {
return _reason;
}
}
void init(HelixManager manager);
Map<String, IdealState> computeNewIdealState(final CurrentStateOutput currentStateOutput,
T clusterData, Map<String, Resource> resourceMap);
RebalanceFailureReason getFailureReason();
}