blob: 47cb213a54d839fbcdd227180cd776a22b443365 [file] [log] [blame]
/*
* 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.reef.examples.hello;
import org.apache.reef.client.DriverConfiguration;
import org.apache.reef.client.DriverLauncher;
import org.apache.reef.client.LauncherStatus;
import org.apache.reef.runtime.mesos.client.MesosClientConfiguration;
import org.apache.reef.tang.Configuration;
import org.apache.reef.tang.exceptions.BindException;
import org.apache.reef.tang.exceptions.InjectionException;
import java.util.logging.Level;
import java.util.logging.Logger;
/**
* The Client for running HelloREEF on Mesos.
*/
public final class HelloREEFMesos {
private static final Logger LOG = Logger.getLogger(HelloREEFMesos.class.getName());
/**
* Mesos Master IP address and port number.
* Change it to the master location of your cluster environment if needed
*/
private static final String MASTER_IP = "localhost:5050";
/**
* @return the configuration of the runtime
*/
private static Configuration getRuntimeConfiguration() {
return MesosClientConfiguration.CONF
.set(MesosClientConfiguration.MASTER_IP, MASTER_IP)
.build();
}
/**
* @return the configuration of the HelloREEF driver.
*/
private static Configuration getDriverConfiguration() {
return DriverConfiguration.CONF
.set(DriverConfiguration.GLOBAL_LIBRARIES,
HelloREEFMesos.class.getProtectionDomain().getCodeSource().getLocation().getFile())
.set(DriverConfiguration.DRIVER_IDENTIFIER, "HelloREEF")
.set(DriverConfiguration.ON_DRIVER_STARTED, HelloDriver.StartHandler.class)
.set(DriverConfiguration.ON_EVALUATOR_ALLOCATED, HelloDriver.EvaluatorAllocatedHandler.class)
.build();
}
/**
* MASTER_IP is set to "localhost:5050".
* You may change it to suit your cluster environment.
*
* @param args command line parameters.
* @throws BindException configuration error.
* @throws InjectionException configuration error.
*/
public static void main(final String[] args) throws BindException, InjectionException {
final Configuration runtimeConf = getRuntimeConfiguration();
final Configuration driverConf = getDriverConfiguration();
final LauncherStatus status = DriverLauncher
.getLauncher(runtimeConf)
.run(driverConf);
LOG.log(Level.INFO, "REEF job completed: {0}", status);
}
/**
* Empty private constructor to prohibit instantiation of utility class.
*/
private HelloREEFMesos() {
}
}