All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.pinot.broker.routing.adaptiveserverselector.AdaptiveServerSelectorFactory Maven / Gradle / Ivy

/**
 * 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.
 */
package org.apache.pinot.broker.routing.adaptiveserverselector;

import com.google.common.base.Preconditions;
import org.apache.pinot.core.transport.server.routing.stats.ServerRoutingStatsManager;
import org.apache.pinot.spi.env.PinotConfiguration;
import org.apache.pinot.spi.utils.CommonConstants.Broker;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * The {@code AdaptiveServerSelectorFactory} determines the adaptive server selection strategy to use. The choice is
 * made based on broker instance configs.
 */
public class AdaptiveServerSelectorFactory {
  private static final Logger LOGGER = LoggerFactory.getLogger(AdaptiveServerSelectorFactory.class);

  private AdaptiveServerSelectorFactory() {
  }

  public static AdaptiveServerSelector getAdaptiveServerSelector(ServerRoutingStatsManager serverRoutingStatsManager,
      PinotConfiguration pinotConfig) {
    boolean enableStatsCollection =
        pinotConfig.getProperty(Broker.AdaptiveServerSelector.CONFIG_OF_ENABLE_STATS_COLLECTION,
            Broker.AdaptiveServerSelector.DEFAULT_ENABLE_STATS_COLLECTION);

    String typeStr = pinotConfig.getProperty(Broker.AdaptiveServerSelector.CONFIG_OF_TYPE,
        Broker.AdaptiveServerSelector.DEFAULT_TYPE);
    Broker.AdaptiveServerSelector.Type type;
    try {
      type = Broker.AdaptiveServerSelector.Type.valueOf(typeStr.toUpperCase());
    } catch (Exception e) {
      throw new IllegalArgumentException("Illegal adaptive server selector type: " + typeStr);
    }

    switch (type) {
      case NO_OP: {
        LOGGER.info("Adaptive server selection is disabled. Using default selection behavior.");
        return null;
      }
      case NUM_INFLIGHT_REQ: {
        LOGGER.info("Using NumInFlightReqSelector");
        Preconditions.checkState(enableStatsCollection, "Stats collection is not enabled.");
        return new NumInFlightReqSelector(serverRoutingStatsManager);
      }
      case LATENCY: {
        LOGGER.info("Using LatencySelector");
        Preconditions.checkState(enableStatsCollection, "Stats collection is not enabled.");
        return new LatencySelector(serverRoutingStatsManager);
      }
      case HYBRID: {
        LOGGER.info("Using HybridSelector");
        Preconditions.checkState(enableStatsCollection, "Stats collection is not enabled.");
        return new HybridSelector(serverRoutingStatsManager);
      }
      default:
        return null;
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy