
io.brooklyn.ambari.hostgroup.AmbariHostGroupImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of brooklyn-ambari Show documentation
Show all versions of brooklyn-ambari Show documentation
Brooklyn entities for deployment the and runtime management of Apache Ambari.
/*
* 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 io.brooklyn.ambari.hostgroup;
import java.util.Collection;
import java.util.List;
import javax.annotation.Nullable;
import org.apache.brooklyn.api.entity.Entity;
import org.apache.brooklyn.api.entity.EntitySpec;
import org.apache.brooklyn.core.entity.Entities;
import org.apache.brooklyn.entity.group.DynamicClusterImpl;
import org.apache.brooklyn.entity.software.base.SameServerEntity;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.Iterables;
import io.brooklyn.ambari.AmbariCluster;
import io.brooklyn.ambari.EtcHostsManager;
import io.brooklyn.ambari.agent.AmbariAgent;
import io.brooklyn.ambari.agent.AmbariAgentImpl;
public class AmbariHostGroupImpl extends DynamicClusterImpl implements AmbariHostGroup {
public static final Logger LOG = LoggerFactory.getLogger(AmbariHostGroup.class);
@Override
public void init() {
super.init();
EntitySpec> siblingSpec = getConfig(AmbariHostGroup.SIBLING_SPEC);
if (siblingSpec != null) {
config().set(MEMBER_SPEC, agentWithSiblingsSpec(siblingSpec));
} else {
config().set(MEMBER_SPEC, ambariAgentSpec());
}
}
@Override
public List getHostFQDNs() {
ImmutableList.Builder builder = ImmutableList.builder();
for (AmbariAgent agent : Entities.descendants(this, AmbariAgent.class)) {
String fqdn = agent.getFqdn();
if (fqdn != null) {
builder.add(fqdn);
}
}
return builder.build();
}
@Nullable
@Override
public List getComponents() {
return getConfig(HADOOP_COMPONENTS);
}
@Override
public Collection resizeByDelta(int delta) {
Collection entities = super.resizeByDelta(delta);
if (delta > 0) {
EtcHostsManager.setHostsOnMachines(getAmbariCluster().getAmbariNodes(), getConfig(AmbariCluster.ETC_HOST_ADDRESS));
if (getAmbariCluster().isClusterComplete()) {
final List ambariAgents = getAmbariAgents(entities);
getAmbariCluster().addHostsToHostGroup(getDisplayName(), ambariAgents);
}
}
return entities;
}
private List getAmbariAgents(Collection entities) {
ImmutableList.Builder builder = ImmutableList.builder();
for (Entity entity : entities) {
if(entity instanceof AmbariAgent) {
builder.add((AmbariAgent) entity);
}
else {
builder.addAll(Entities.descendants(entity, AmbariAgent.class));
}
}
return builder.build();
}
private EntitySpec extends AmbariAgent> ambariAgentSpec() {
return AmbariAgentImpl.createAgentSpec((AmbariCluster) getParent(), config().getLocalBag());
}
private EntitySpec agentWithSiblingsSpec(EntitySpec> siblingSpec) {
return EntitySpec.create(SameServerEntity.class)
.child(ambariAgentSpec())
.child(siblingSpec);
}
private AmbariCluster getAmbariCluster() {
return Iterables.getFirst(Iterables.filter(Entities.ancestors(this), AmbariCluster.class), null);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy