/** * 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.ambari.server.controller.utilities.state; import java.util.Collections; import java.util.Set; import org.apache.ambari.server.AmbariException; import org.apache.ambari.server.ObjectNotFoundException; import org.apache.ambari.server.StaticallyInject; import org.apache.ambari.server.api.services.AmbariMetaInfo; import org.apache.ambari.server.controller.ServiceComponentHostRequest; import org.apache.ambari.server.controller.ServiceComponentHostResponse; import org.apache.ambari.server.state.Cluster; import org.apache.ambari.server.state.ComponentInfo; import org.apache.ambari.server.state.StackId; import org.apache.ambari.server.state.State; /** * Calculator of HBase service state. */ @StaticallyInject public final class HBaseServiceCalculatedState extends DefaultServiceCalculatedState implements ServiceCalculatedState { @Override public State getState(String clusterName, String serviceName) { try { Cluster cluster = getCluster(clusterName); if (cluster != null && managementControllerProvider != null) { AmbariMetaInfo ambariMetaInfo = managementControllerProvider.get().getAmbariMetaInfo(); StackId stackId = cluster.getDesiredStackVersion(); ServiceComponentHostRequest request = new ServiceComponentHostRequest(clusterName, serviceName, null, null, null); Set<ServiceComponentHostResponse> hostComponentResponses = managementControllerProvider.get().getHostComponents(Collections.singleton(request)); int hBaseMasterActiveCount = 0; State nonStartedState = null; for (ServiceComponentHostResponse hostComponentResponse : hostComponentResponses ) { try { ComponentInfo componentInfo = ambariMetaInfo.getComponent(stackId.getStackName(), stackId.getStackVersion(), hostComponentResponse.getServiceName(), hostComponentResponse.getComponentName()); if (componentInfo.isMaster()) { State state = getHostComponentState(hostComponentResponse); switch (state) { case STARTED: case DISABLED: String componentName = hostComponentResponse.getComponentName(); if (componentName.equals("HBASE_MASTER")) { ++hBaseMasterActiveCount; } break; default: nonStartedState = state; } } } catch (ObjectNotFoundException e) { // component doesn't exist, nothing to do } } // should have state INSTALLED when there is no active HBASE_MASTER if (hBaseMasterActiveCount > 0) { return State.STARTED; } return nonStartedState == null ? State.INSTALLED : nonStartedState; } } catch (AmbariException e) { LOG.error("Can't determine service state.", e); } return State.UNKNOWN; } }