Package org.apache.aurora.scheduler.mesos.MesosTaskFactory

Examples of org.apache.aurora.scheduler.mesos.MesosTaskFactory.ExecutorConfig


                STATS_URL_PREFIX.get()))
        .add(new ZooKeeperClientModule(zkClientConfig))
        .add(new AbstractModule() {
          @Override
          protected void configure() {
            bind(ExecutorConfig.class).toInstance(new ExecutorConfig(THERMOS_EXECUTOR_PATH.get()));
          }
        })
        .add(getMesosModules())
        .build();
  }
View Full Code Here


      @Override
      protected void configure() {
        bind(DriverFactory.class).toInstance(driverFactory);
        bind(DriverSettings.class).toInstance(SETTINGS);
        bind(Log.class).toInstance(log);
        bind(ExecutorConfig.class).toInstance(new ExecutorConfig("/executor/thermos"));
        install(new BackupModule(backupDir, SnapshotStoreImpl.class));
      }
    };
    ClientConfig zkClientConfig = ClientConfig
        .create(ImmutableList.of(InetSocketAddress.createUnresolved("localhost", getPort())))
View Full Code Here

  private MesosTaskFactory taskFactory;

  @Before
  public void setUp() {
    taskFactory = new MesosTaskFactoryImpl(new ExecutorConfig(EXECUTOR_PATH));
  }
View Full Code Here

TOP

Related Classes of org.apache.aurora.scheduler.mesos.MesosTaskFactory.ExecutorConfig

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.