Package eu.stratosphere.nephele.jobmanager.web

Examples of eu.stratosphere.nephele.jobmanager.web.WebInfoServer


  public void startInfoServer() {
    final Configuration config = GlobalConfiguration.getConfiguration();
    // Start InfoServer
    try {
      int port = config.getInteger(ConfigConstants.JOB_MANAGER_WEB_PORT_KEY, ConfigConstants.DEFAULT_JOB_MANAGER_WEB_FRONTEND_PORT);
      server = new WebInfoServer(config, port, this);
      server.start();
    } catch (FileNotFoundException e) {
      LOG.error(e.getMessage(), e);
    } catch (Exception e) {
      LOG.error("Cannot instantiate info server: " + e.getMessage(), e);
View Full Code Here

TOP

Related Classes of eu.stratosphere.nephele.jobmanager.web.WebInfoServer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.