我已经实现了一个小的IO类,它可以读取不同磁盘上的多个相同文件(例如,两个包含相同文件的硬盘)。在顺序的情况下,两个磁盘平均读取60MB / s的文件,但是当我进行交错(例如4k磁盘1,4k磁盘2然后组合)时,有效读取速度降低到40MB / s而不是增加?
上下文:Win 7 + JDK 7b70,2GB RAM,2.2GB测试文件。基本上,我尝试以穷人的方式模仿Win7的ReadyBoost和RAID x。
在内心中,当向类发出read()时,它会创建两个runnables,其中包含从特定位置和长度读取预打开的RandomAccessFile的指令。使用执行程序服务和Future.get()调用,当两者都完成时,数据读取将被复制到公共缓冲区并返回给调用者。
我的方法中是否存在概念错误? (例如,OS缓存机制将始终抵消?)
protected <T> List<T> waitForAll(List<Future<T>> futures)
throws MultiIOException {
MultiIOException mex = null;
int i = 0;
List<T> result = new ArrayList<T>(futures.size());
for (Future<T> f : futures) {
try {
result.add(f.get());
} catch (InterruptedException ex) {
if (mex == null) {
mex = new MultiIOException();
}
mex.exceptions.add(new ExceptionPair(metrics[i].file, ex));
} catch (ExecutionException ex) {
if (mex == null) {
mex = new MultiIOException();
}
mex.exceptions.add(new ExceptionPair(metrics[i].file, ex));
}
i++;
}
if (mex != null) {
throw mex;
}
return result;
}
public int read(long position, byte[] output, int start, int length)
throws IOException {
if (start < 0 || start + length > output.length) {
throw new IndexOutOfBoundsException(
String.format("start=%d, length=%d, output=%d",
start, length, output.length));
}
// compute the fragment sizes and positions
int result = 0;
final long[] positions = new long[metrics.length];
final int[] lengths = new int[metrics.length];
double speedSum = 0.0;
double maxValue = 0.0;
int maxIndex = 0;
for (int i = 0; i < metrics.length; i++) {
speedSum += metrics[i].readSpeed;
if (metrics[i].readSpeed > maxValue) {
maxValue = metrics[i].readSpeed;
maxIndex = i;
}
}
// adjust read lengths
int lengthSum = length;
for (int i = 0; i < metrics.length; i++) {
int len = (int)Math.ceil(length * metrics[i].readSpeed / speedSum);
lengths[i] = (len > lengthSum) ? lengthSum : len;
lengthSum -= lengths[i];
}
if (lengthSum > 0) {
lengths[maxIndex] += lengthSum;
}
// adjust read positions
long positionDelta = position;
for (int i = 0; i < metrics.length; i++) {
positions[i] = positionDelta;
positionDelta += (long)lengths[i];
}
List<Future<byte[]>> futures = new LinkedList<Future<byte[]>>();
// read in parallel
for (int i = 0; i < metrics.length; i++) {
final int j = i;
futures.add(exec.submit(new Callable<byte[]>() {
@Override
public byte[] call() throws Exception {
byte[] buffer = new byte[lengths[j]];
long t = System.nanoTime();
long t0 = t;
long currPos = metrics[j].handle.getFilePointer();
metrics[j].handle.seek(positions[j]);
t = System.nanoTime() - t;
metrics[j].seekTime = t * 1024.0 * 1024.0 /
Math.abs(currPos - positions[j]) / 1E9 ;
int c = metrics[j].handle.read(buffer);
t0 = System.nanoTime() - t0;
// adjust the read speed if we read something
if (c > 0) {
metrics[j].readSpeed = (alpha * c * 1E9 / t0 / 1024 / 1024
+ (1 - alpha) * metrics[j].readSpeed) ;
}
if (c < 0) {
return null;
} else
if (c == 0) {
return EMPTY_BYTE_ARRAY;
} else
if (c < buffer.length) {
return Arrays.copyOf(buffer, c);
}
return buffer;
}
}));
}
List<byte[]> data = waitForAll(futures);
boolean eof = true;
for (byte[] b : data) {
if (b != null && b.length > 0) {
System.arraycopy(b, 0, output, start + result, b.length);
result += b.length;
eof = false;
} else {
break; // the rest probably reached EOF
}
}
// if there was no data at all, we reached the end of file
if (eof) {
return -1;
}
sequentialPosition = position + (long)result;
// evaluate the fastest file to read
double maxSpeed = 0;
maxIndex = 0;
for (int i = 0; i < metrics.length; i++) {
if (metrics[i].readSpeed > maxSpeed) {
maxSpeed = metrics[i].readSpeed;
maxIndex = i;
}
}
fastest = metrics[maxIndex];
return result;
}
(metrics数组中的FileMetrics包含读取速度的测量值,以自适应地确定各种输入通道的缓冲区大小 - 在我的测试中,alpha = 0和readSpeed = 1结果相等分布)
修改 我运行了一个非纠缠测试(例如,在不同的线程中独立读取这两个文件。)我的组合有效速度为110MB / s。
EDIT2 我想我知道为什么会这样。
当我并行并按顺序读取时,它不是磁盘的顺序读取,而是由于交错而导致的读取 - 跳过 - 读取 - 跳过模式(并且可能充满了分配表查找)。这基本上将每个磁盘的有效读取速度降低了一半或更差。
答案 0 :(得分:3)
正如您所说,磁盘上的顺序读取比读取跳过读取跳过模式快得多。硬盘在顺序读取时能够具有高带宽,但寻道时间(延迟)是昂贵的。
不是在每个磁盘中存储文件的副本,而是尝试将文件的块i存储在磁盘i(mod 2)上。这样,您可以顺序读取两个磁盘,并将结果重新组合到内存中。
答案 1 :(得分:2)
如果要进行并行读取,请将读取分为两个连续读取。找到中间点,从第一个文件读取前半部分,从第二个文件读取后半部分。
答案 2 :(得分:0)
如果您确定每个磁盘执行的读取次数不超过一次(否则您将有很多磁盘未命中),您仍会在计算机的其他部分 - 总线,raid控制器(如果存在)等方面产生争用上。
答案 3 :(得分:0)
也许http://stxxl.sourceforge.net/可能对您有任何兴趣。