hadoop FilterUtils 源码

  • 2022-10-20
  • 浏览 (187)

haddop FilterUtils 代码

文件路径:/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-applications/hadoop-yarn-services/hadoop-yarn-services-core/src/main/java/org/apache/hadoop/yarn/service/utils/FilterUtils.java

/**
 * 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.hadoop.yarn.service.utils;

import org.apache.hadoop.yarn.api.records.ContainerId;
import org.apache.hadoop.yarn.proto.ClientAMProtocol;
import org.apache.hadoop.yarn.service.ServiceContext;
import org.apache.hadoop.yarn.service.api.records.ComponentContainers;
import org.apache.hadoop.yarn.service.component.instance.ComponentInstance;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

public class FilterUtils {

  /**
   * Returns containers filtered by requested fields.
   *
   * @param context   service context
   * @param filterReq filter request
   */
  public static List<ComponentContainers> filterInstances(
      ServiceContext context,
      ClientAMProtocol.GetCompInstancesRequestProto filterReq) {
    Map<String, ComponentContainers> containersByComp = new HashMap<>();

    Map<ContainerId, ComponentInstance> instances =
        context.scheduler.getLiveInstances();

    instances.forEach(((containerId, instance) -> {
      boolean include = true;
      if (filterReq.getComponentNamesList() != null &&
          !filterReq.getComponentNamesList().isEmpty()) {
        // filter by component name
        if (!filterReq.getComponentNamesList().contains(
            instance.getComponent().getName())) {
          include = false;
        }
      }

      if (filterReq.getVersion() != null && !filterReq.getVersion().isEmpty()) {
        // filter by version
        String instanceServiceVersion = instance.getServiceVersion();
        if (instanceServiceVersion == null || !instanceServiceVersion.equals(
            filterReq.getVersion())) {
          include = false;
        }
      }

      if (filterReq.getContainerStatesList() != null &&
          !filterReq.getContainerStatesList().isEmpty()) {
        // filter by state
        if (!filterReq.getContainerStatesList().contains(
            instance.getContainerState().toString())) {
          include = false;
        }
      }

      if (include) {
        ComponentContainers compContainers =
            containersByComp.computeIfAbsent(instance.getCompName(),
                k -> {
                  ComponentContainers result = new ComponentContainers();
                  result.setContainers(new ArrayList<>());
                  result.setComponentName(instance.getCompName());
                  return result;
                });

        compContainers.addContainer(instance.getContainerSpec());
      }
    }));
    List<ComponentContainers> result = new ArrayList<>();
    result.addAll(containersByComp.values());
    return result;
  }
}

相关信息

hadoop 源码目录

相关文章

hadoop ApplicationReportSerDeser 源码

hadoop ClientRegistryBinder 源码

hadoop Comparators 源码

hadoop ConfigHelper 源码

hadoop ConfigUtils 源码

hadoop CoreFileSystem 源码

hadoop Duration 源码

hadoop HttpUtil 源码

hadoop JsonSerDeser 源码

hadoop PatternValidator 源码

0  赞