org.apache.brooklyn.entity.software.base.VanillaSoftwareProcess Maven / Gradle / Ivy
Show all versions of brooklyn-software-base Show documentation
/*
* 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.software.base;
import org.apache.brooklyn.api.catalog.Catalog;
import org.apache.brooklyn.api.entity.ImplementedBy;
import org.apache.brooklyn.config.ConfigKey;
import org.apache.brooklyn.core.config.ConfigKeys;
/**
* A {@link SoftwareProcess} entity that runs commands from an archive.
*
* Downloads and unpacks the archive indicated (optionally) then runs the management commands (scripts) indicated
* (relative to the root of the archive if supplied, otherwise in a tmp working dir) to manage. Uses config keys
* to identify the files or commands to use.
*
* In the simplest mode, simply provide either:
*
* - an archive in {@link #DOWNLOAD_URL} containing a
./start.sh
* - a start command to invoke in {@link #LAUNCH_COMMAND}
*
* The only constraint is that the start command must write the PID into the file pointed to by the injected environment
* variable {@code PID_FILE} unless one of the options below is supported.
*
* The start command can be a complex bash command, downloading and unpacking files, and handling the {@code PID_FILE} requirement.
* For example {@code export MY_PID_FILE=$PID_FILE ; ./my_start.sh} or {@code nohup ./start.sh & ; echo $! > $PID_FILE ; sleep 5}.
*
* You can supply both {@link #DOWNLOAD_URL} and {@link #LAUNCH_COMMAND} configuration as well..
* * In addition, you can supply an {@link #INSTALL_COMMAND} and / or a {@link #CUSTOMIZE_COMMAND} to reduce the complexity * of the {@link #LAUNCH_COMMAND}, and to avoid repeating actions that are unnecessary in subsequent launches. *
* By default the PID is used to stop the process using {@code kill} followed by {@code kill -9} if needed and restart * is implemented by stopping the process and then running {@link VanillaSoftwareProcessSshDriver#launch()}, but it is * possible to override this behavior through config keys: *
-
*
- A custom {@link #CHECK_RUNNING_COMMAND} *
- A custom {@link #STOP_COMMAND} *
- A different {@link SoftwareProcess#PID_FILE} to use *
-
*/
@Catalog(name="Vanilla Software Process", description="A software process configured with scripts, e.g. for launch, check-running and stop")
@ImplementedBy(VanillaSoftwareProcessImpl.class)
public interface VanillaSoftwareProcess extends AbstractVanillaProcess {
ConfigKey
USE_SSH_MONITORING = ConfigKeys.newConfigKey( "sshMonitoring.enabled", "SSH monitoring enabled", Boolean.TRUE); }