use of org.apache.samza.job.model.JobModel in project samza by apache.
the class StorageRecovery method getContainerModels.
/**
* build the ContainerModels from job config file and put the results in the
* map
*/
private void getContainerModels() {
JobModel jobModel = JobModelManager.apply(jobConfig).jobModel();
containers = jobModel.getContainers();
}
Aggregations