org.apache.flink.mesos.runtime.clusterframework.services.MesosServicesUtils Java Examples

The following examples show how to use org.apache.flink.mesos.runtime.clusterframework.services.MesosServicesUtils. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: MesosSessionClusterEntrypoint.java    From Flink-CEPplus with Apache License 2.0 6 votes vote down vote up
@Override
protected void initializeServices(Configuration config) throws Exception {
	super.initializeServices(config);

	final String hostname = config.getString(JobManagerOptions.ADDRESS);

	// Mesos configuration
	mesosConfig = MesosEntrypointUtils.createMesosSchedulerConfiguration(config, hostname);

	// services
	mesosServices = MesosServicesUtils.createMesosServices(config, hostname);

	// TM configuration
	taskManagerParameters = MesosEntrypointUtils.createTmParameters(config, LOG);
	taskManagerContainerSpec = MesosEntrypointUtils.createContainerSpec(config, dynamicProperties);
}
 
Example #2
Source File: MesosJobClusterEntrypoint.java    From Flink-CEPplus with Apache License 2.0 6 votes vote down vote up
@Override
protected void initializeServices(Configuration config) throws Exception {
	super.initializeServices(config);

	final String hostname = config.getString(JobManagerOptions.ADDRESS);

	// Mesos configuration
	schedulerConfiguration = MesosEntrypointUtils.createMesosSchedulerConfiguration(config, hostname);

	// services
	mesosServices = MesosServicesUtils.createMesosServices(config, hostname);

	// TM configuration
	taskManagerParameters = MesosEntrypointUtils.createTmParameters(config, LOG);
	taskManagerContainerSpec = MesosEntrypointUtils.createContainerSpec(config, dynamicProperties);
}
 
Example #3
Source File: MesosSessionClusterEntrypoint.java    From flink with Apache License 2.0 6 votes vote down vote up
@Override
protected void initializeServices(Configuration config) throws Exception {
	super.initializeServices(config);

	final String hostname = config.getString(JobManagerOptions.ADDRESS);

	// Mesos configuration
	mesosConfig = MesosEntrypointUtils.createMesosSchedulerConfiguration(config, hostname);

	// services
	mesosServices = MesosServicesUtils.createMesosServices(config, hostname);

	// TM configuration
	taskManagerParameters = MesosEntrypointUtils.createTmParameters(config, LOG);
	taskManagerContainerSpec = MesosEntrypointUtils.createContainerSpec(config, dynamicProperties);
}
 
Example #4
Source File: MesosJobClusterEntrypoint.java    From flink with Apache License 2.0 6 votes vote down vote up
@Override
protected void initializeServices(Configuration config) throws Exception {
	super.initializeServices(config);

	final String hostname = config.getString(JobManagerOptions.ADDRESS);

	// Mesos configuration
	schedulerConfiguration = MesosEntrypointUtils.createMesosSchedulerConfiguration(config, hostname);

	// services
	mesosServices = MesosServicesUtils.createMesosServices(config, hostname);

	// TM configuration
	taskManagerParameters = MesosEntrypointUtils.createTmParameters(config, LOG);
	taskManagerContainerSpec = MesosEntrypointUtils.createContainerSpec(config, dynamicProperties);
}
 
Example #5
Source File: MesosSessionClusterEntrypoint.java    From flink with Apache License 2.0 5 votes vote down vote up
@Override
protected void initializeServices(Configuration config, PluginManager pluginManager) throws Exception {
	super.initializeServices(config, pluginManager);

	final String hostname = config.getString(JobManagerOptions.ADDRESS);

	// Mesos configuration
	mesosConfig = MesosUtils.createMesosSchedulerConfiguration(config, hostname);

	// services
	mesosServices = MesosServicesUtils.createMesosServices(config, hostname);
}
 
Example #6
Source File: MesosJobClusterEntrypoint.java    From flink with Apache License 2.0 5 votes vote down vote up
@Override
protected void initializeServices(Configuration config, PluginManager pluginManager) throws Exception {
	super.initializeServices(config, pluginManager);

	final String hostname = config.getString(JobManagerOptions.ADDRESS);

	// Mesos configuration
	schedulerConfiguration = MesosUtils.createMesosSchedulerConfiguration(config, hostname);

	// services
	mesosServices = MesosServicesUtils.createMesosServices(config, hostname);
}