blob: 14115e0f836f453606b2f7d1213b939e63396bff [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.local.client.LocalRuntimeConfiguration;
import org.apache.reef.tang.Configuration;
import org.apache.reef.tang.exceptions.BindException;
import org.apache.reef.tang.exceptions.InjectionException;
import org.apache.reef.util.EnvironmentUtils;
import java.util.logging.Level;
import java.util.logging.Logger;
/**
* The Client for Hello JVM Options example.
* Launches HelloJVMOptionsDriver.
*/
public final class HelloJVMOptionsREEF {
private static final Logger LOG = Logger.getLogger(HelloJVMOptionsREEF.class.getName());
/**
* The upper limit on the number of Evaluators that the local resourcemanager will hand out concurrently.
*/
private static final int MAX_NUMBER_OF_EVALUATORS = 2;
/**
* Number of milliseconds to wait for the job to complete.
*/
private static final int JOB_TIMEOUT = 10000; // 10 sec.
/**
* @return the configuration of the runtime
*/
private static Configuration getRuntimeConfiguration() {
return LocalRuntimeConfiguration.CONF
.set(LocalRuntimeConfiguration.MAX_NUMBER_OF_EVALUATORS, MAX_NUMBER_OF_EVALUATORS)
.build();
}
/**
* @return the configuration of the HelloREEF driver.
*/
private static Configuration getDriverConfiguration() {
return DriverConfiguration.CONF
.set(DriverConfiguration.GLOBAL_LIBRARIES, EnvironmentUtils.getClassLocation(HelloJVMOptionsDriver.class))
.set(DriverConfiguration.DRIVER_IDENTIFIER, "HelloJVMOptions")
.set(DriverConfiguration.ON_DRIVER_STARTED, HelloJVMOptionsDriver.StartHandler.class)
.set(DriverConfiguration.ON_EVALUATOR_ALLOCATED, HelloJVMOptionsDriver.EvaluatorAllocatedHandler.class)
.build();
}
/**
* Start HelloJVMOptions REEF job.
*
* @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, JOB_TIMEOUT);
LOG.log(Level.INFO, "REEF job completed: {0}", status);
}
/**
* Empty private constructor to prohibit instantiation of utility class.
*/
private HelloJVMOptionsREEF() {
}
}