MAPREDUCE-7437. MR Fetcher class to use an AtomicInteger to generate IDs. (#5579)
...as until now it wasn't thread safe Contributed by Steve Loughran
This commit is contained in:
parent
6aac6cb212
commit
b6b9bd67bb
@ -31,6 +31,7 @@
|
||||
import java.util.HashSet;
|
||||
import java.util.List;
|
||||
import java.util.Set;
|
||||
import java.util.concurrent.atomic.AtomicInteger;
|
||||
|
||||
import javax.crypto.SecretKey;
|
||||
import javax.net.ssl.HttpsURLConnection;
|
||||
@ -91,7 +92,7 @@ public enum ShuffleErrors{IO_ERROR, WRONG_LENGTH, BAD_ID, WRONG_MAP,
|
||||
protected final ShuffleClientMetrics metrics;
|
||||
protected final ExceptionReporter exceptionReporter;
|
||||
protected final int id;
|
||||
private static int nextId = 0;
|
||||
private static final AtomicInteger NEXT_ID = new AtomicInteger(0);
|
||||
protected final int reduce;
|
||||
|
||||
private final int connectionTimeout;
|
||||
@ -118,7 +119,7 @@ public Fetcher(JobConf job, TaskAttemptID reduceId,
|
||||
Reporter reporter, ShuffleClientMetrics metrics,
|
||||
ExceptionReporter exceptionReporter, SecretKey shuffleKey) {
|
||||
this(job, reduceId, scheduler, merger, reporter, metrics,
|
||||
exceptionReporter, shuffleKey, ++nextId);
|
||||
exceptionReporter, shuffleKey, NEXT_ID.incrementAndGet());
|
||||
}
|
||||
|
||||
@VisibleForTesting
|
||||
|
Loading…
Reference in New Issue
Block a user