![JAR search and dependency download from the Maven repository](/logo.png)
com.amazonaws.dynamodb.bootstrap.ParallelScanExecutor Maven / Gradle / Ivy
/*
* Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Amazon Software License (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/asl/
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
package com.amazonaws.dynamodb.bootstrap;
import java.util.BitSet;
import java.util.concurrent.Executor;
import java.util.concurrent.ExecutorCompletionService;
import java.util.concurrent.Future;
import java.util.concurrent.ExecutionException;
/**
* This class executes multiple scan requests on one segment of a table in
* series, as a runnable. Instances meant to be used as tasks of the worker
* thread pool for parallel scans.
*
*/
public class ParallelScanExecutor {
private final BitSet finished;
private final ScanSegmentWorker[] workers;
private final ExecutorCompletionService exec;
public ParallelScanExecutor(Executor executor, int segments) {
this.exec = new ExecutorCompletionService(executor);
this.finished = new BitSet(segments);
this.finished.clear();
this.workers = new ScanSegmentWorker[segments];
}
/**
* Set the segment to finished
*/
public void finishSegment(int segment) {
synchronized (finished) {
if (segment > finished.size()) {
throw new IllegalArgumentException(
"Invalid segment passed to finishSegment");
}
finished.set(segment);
}
}
/**
* returns if the scan is finished
*/
public boolean finished() {
synchronized (finished) {
return finished.cardinality() == workers.length;
}
}
/**
* This method gets a segmentedScanResult and submits the next scan request
* for that segment, if there is one.
*
* @return the next available ScanResult
* @throws ExecutionException
* if one of the segment pages threw while executing
* @throws InterruptedException
* if one of the segment pages was interrupted while executing.
*/
public SegmentedScanResult grab() throws ExecutionException,
InterruptedException {
Future ret = exec.take();
int segment = ret.get().getSegment();
ScanSegmentWorker sw = workers[segment];
if (sw.hasNext()) {
exec.submit(sw);
} else {
finishSegment(segment);
}
return ret.get();
}
/**
* adds a worker to the ExecutorCompletionService
*/
public void addWorker(ScanSegmentWorker ssw, int segment) {
workers[segment] = ssw;
exec.submit(ssw);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy