com.hazelcast.mapreduce.impl.AbstractJobTracker Maven / Gradle / Ivy
/*
* Copyright (c) 2008-2015, Hazelcast, Inc. All Rights Reserved.
*
* Licensed 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 com.hazelcast.mapreduce.impl;
import com.hazelcast.config.JobTrackerConfig;
import com.hazelcast.mapreduce.JobTracker;
import com.hazelcast.mapreduce.impl.task.MapCombineTask;
import com.hazelcast.mapreduce.impl.task.ReducerTask;
import com.hazelcast.mapreduce.impl.task.TrackableJobFuture;
import com.hazelcast.spi.NodeEngine;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;
import java.util.concurrent.ExecutorService;
/**
* This is the base class for all {@link JobTracker} implementations on node and client side.
* It combines a lot of the base functionality to handle remote operations.
*/
public abstract class AbstractJobTracker
implements JobTracker {
protected final ConcurrentMap trackableJobs = new ConcurrentHashMap();
protected final ConcurrentMap reducerTasks = new ConcurrentHashMap();
protected final ConcurrentMap mapCombineTasks = new ConcurrentHashMap();
protected final NodeEngine nodeEngine;
protected final ExecutorService executorService;
protected final MapReduceService mapReduceService;
protected final JobTrackerConfig jobTrackerConfig;
protected final String name;
AbstractJobTracker(String name, JobTrackerConfig jobTrackerConfig, NodeEngine nodeEngine, MapReduceService mapReduceService) {
this.name = name;
this.nodeEngine = nodeEngine;
this.jobTrackerConfig = jobTrackerConfig;
this.mapReduceService = mapReduceService;
this.executorService = nodeEngine.getExecutionService().getExecutor(name);
}
@Override
public void destroy() {
}
@Override
public Object getId() {
return getName();
}
@Override
public String getPartitionKey() {
return getName();
}
@Override
public final String getName() {
return name;
}
@Override
public final String getServiceName() {
return MapReduceService.SERVICE_NAME;
}
public JobTrackerConfig getJobTrackerConfig() {
return jobTrackerConfig;
}
public boolean registerTrackableJob(TrackableJobFuture trackableJob) {
return trackableJobs.putIfAbsent(trackableJob.getJobId(), trackableJob) == null;
}
public TrackableJobFuture unregisterTrackableJob(String jobId) {
return trackableJobs.remove(jobId);
}
@Override
public TrackableJobFuture getTrackableJob(String jobId) {
return trackableJobs.get(jobId);
}
public void registerReducerTask(ReducerTask reducerTask) {
reducerTasks.put(reducerTask.getJobId(), reducerTask);
}
public ReducerTask unregisterReducerTask(String jobId) {
return reducerTasks.remove(jobId);
}
public ReducerTask getReducerTask(String jobId) {
return reducerTasks.get(jobId);
}
public void registerMapCombineTask(
MapCombineTask mapCombineTask) {
if (mapCombineTasks.putIfAbsent(mapCombineTask.getJobId(), mapCombineTask) == null) {
mapCombineTask.process();
}
}
public MapCombineTask unregisterMapCombineTask(String jobId) {
return mapCombineTasks.remove(jobId);
}
public MapCombineTask getMapCombineTask(
String jobId) {
return mapCombineTasks.get(jobId);
}
}