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

org.apache.brooklyn.entity.nosql.hazelcast.HazelcastNodeSshDriver Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
/*
 * 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.brooklyn.entity.nosql.hazelcast;

import static java.lang.String.format;

import java.util.List;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import org.apache.brooklyn.api.entity.Entity;
import org.apache.brooklyn.core.entity.Entities;

import org.apache.brooklyn.entity.java.JavaSoftwareProcessSshDriver;
import org.apache.brooklyn.location.ssh.SshMachineLocation;
import org.apache.brooklyn.util.collections.MutableMap;
import org.apache.brooklyn.util.os.Os;
import org.apache.brooklyn.util.ssh.BashCommands;
import org.apache.brooklyn.util.text.Strings;

import com.google.common.base.Joiner;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.Lists;

public class HazelcastNodeSshDriver extends JavaSoftwareProcessSshDriver implements HazelcastNodeDriver {
    
    private static final Logger LOG = LoggerFactory.getLogger(HazelcastNodeSshDriver.class);

    public HazelcastNodeSshDriver(HazelcastNodeImpl entity, SshMachineLocation machine) {
        super(entity, machine);
    }

    @Override
    public void install() {
        List urls = resolver.getTargets();
        String saveAs = resolver.getFilename();
        
        List commands = ImmutableList.builder()
            .add(BashCommands.installJavaLatestOrWarn())
            .addAll(BashCommands.commandsToDownloadUrlsAs(urls, saveAs))
            .build();
        
        newScript(INSTALLING).body.append(commands).execute();
    }

    @Override
    public void customize() {
        if (LOG.isInfoEnabled()) {
            LOG.info("Customizing {}", entity.getAttribute(HazelcastNode.NODE_NAME));
        }
        
        ImmutableList.Builder commands = new ImmutableList.Builder()
                .add("mkdir -p lib conf log")
                .add(String.format("cp %s/%s %s/lib/", getInstallDir(), resolver.getFilename(), getRunDir()));

        newScript(CUSTOMIZING)
                .body.append(commands.build())
                .failOnNonZeroResultCode()
                .execute();
        
        copyTemplate(entity.getConfig(HazelcastNode.CONFIG_TEMPLATE_URL), Os.mergePathsUnix(getRunDir(), "conf", getConfigFileName()));
        
    }

    @Override
    public void launch() {
        
        entity.sensors().set(HazelcastNode.PID_FILE, Os.mergePathsUnix(getRunDir(), PID_FILENAME));
        
        String maxHeapMemorySize = getHeapMemorySize();
        
        if (LOG.isInfoEnabled()) {
            LOG.info("Launching {} with heap memory of {}", entity, maxHeapMemorySize);
        }
        
        // Setting initial heap size (Xms) size to match max heap size (Xms) at first
        String initialHeapMemorySize = maxHeapMemorySize;
        
        ImmutableList commands = ImmutableList.builder()
            .add(format("nohup java -cp ./lib/%s", resolver.getFilename()))
            .add(format("-Xmx%s -Xms%s", maxHeapMemorySize, initialHeapMemorySize))
            .add(format("-Dhazelcast.config=./conf/%s", getConfigFileName()))
            .add(format("com.hazelcast.core.server.StartServer >> %s 2>&1  getHazelcastNodesList() {
        List result = Lists.newArrayList();

        if (Strings.isBlank(entity.getAttribute(HazelcastNode.NODE_CLUSTER_NAME))) {
            result.add(String.format("%s:%d", entity.getAttribute(HazelcastNode.SUBNET_ADDRESS),
                                              entity.getAttribute(HazelcastNode.NODE_PORT)));
        } else {
            HazelcastCluster cluster = (HazelcastCluster) entity.getParent();

            for (Entity member : cluster.getMembers()) {
                String address = Entities.attributeSupplierWhenReady(member, HazelcastNode.SUBNET_ADDRESS).get();
                Integer port = Entities.attributeSupplierWhenReady(member, HazelcastNode.NODE_PORT).get();
                String addressAndPort = String.format("%s:%d", address, port);

                if (LOG.isInfoEnabled()) {
                    LOG.info("Adding {} to the members' list of {}", addressAndPort, entity.getAttribute(HazelcastNode.NODE_NAME));
                }
                result.add(addressAndPort);
            }
        }
        return result;
    }

    @Override
    protected String getLogFileLocation() {
        return Os.mergePathsUnix(getRunDir(),"/log/out.log");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy