27

我有一个需要几个小时才能处理的大文件。所以我正在考虑尝试估计块并并行读取块。

是否可以同时读取单个文件?我已经同时查看了两者RandomAccessFilenio.FileChannel但是基于其他帖子,我不确定这种方法是否可行。

4

4 回答 4

22

这里最重要的问题是您的情况的瓶颈是什么

如果瓶颈是您的磁盘 IO,那么您在软件部分无能为力。并行计算只会让事情变得更糟,因为同时从不同部分读取文件会降低磁盘性能。

如果瓶颈是处理能力,并且您有多个 CPU 内核,那么您可以利用启动多个线程来处理文件的不同部分。您可以安全地创建多个InputStreams 或Readers 来并行读取文件的不同部分(只要您不超过操作系统对打开文件数量的限制)。您可以将工作分成任务并并行运行,如下例所示:

import java.io.*;
import java.util.*;
import java.util.concurrent.*;

public class Split {
    private File file;

    public Split(File file) {
        this.file = file;
    }

    // Processes the given portion of the file.
    // Called simultaneously from several threads.
    // Use your custom return type as needed, I used String just to give an example.
    public String processPart(long start, long end)
        throws Exception
    {
        InputStream is = new FileInputStream(file);
        is.skip(start);
        // do a computation using the input stream,
        // checking that we don't read more than (end-start) bytes
        System.out.println("Computing the part from " + start + " to " + end);
        Thread.sleep(1000);
        System.out.println("Finished the part from " + start + " to " + end);

        is.close();
        return "Some result";
    }

    // Creates a task that will process the given portion of the file,
    // when executed.
    public Callable<String> processPartTask(final long start, final long end) {
        return new Callable<String>() {
            public String call()
                throws Exception
            {
                return processPart(start, end);
            }
        };
    }

    // Splits the computation into chunks of the given size,
    // creates appropriate tasks and runs them using a 
    // given number of threads.
    public void processAll(int noOfThreads, int chunkSize)
        throws Exception
    {
        int count = (int)((file.length() + chunkSize - 1) / chunkSize);
        java.util.List<Callable<String>> tasks = new ArrayList<Callable<String>>(count);
        for(int i = 0; i < count; i++)
            tasks.add(processPartTask(i * chunkSize, Math.min(file.length(), (i+1) * chunkSize)));
        ExecutorService es = Executors.newFixedThreadPool(noOfThreads);

        java.util.List<Future<String>> results = es.invokeAll(tasks);
        es.shutdown();

        // use the results for something
        for(Future<String> result : results)
            System.out.println(result.get());
    }

    public static void main(String argv[])
        throws Exception
    {
        Split s = new Split(new File(argv[0]));
        s.processAll(8, 1000);
    }
}
于 2012-08-08T16:01:46.930 回答
9

如果您有多个独立的轴,您可以并行读取大文件。例如,如果您有一个 Raid 0 + 1 剥离文件系统,您可以通过触发对同一文件的多个并发读取来看到性能改进。

但是,如果您有像 Raid 5 或 6 这样的组合文件系统或普通的单个磁盘。很有可能顺序读取文件是从该磁盘读取的最快方式。注意:操作系统足够聪明,可以在看到您按顺序读取时预取读取,因此使用额外的线程来执行此操作不太可能有帮助。

即使用多个线程不会让你的磁盘更快。

如果您想更快地从磁盘读取,请使用更快的驱动器。典型的 SATA HDD 可以读取大约 60 MB/秒并执行 120 IOPS。典型的 SATA SSD 驱动器可以以大约 400 MB/s 的速度读取并执行 80,000 IOPS,而典型的 PCI SSD 可以以 900 MB/s 的速度读取并执行 230,000 IOPS。

于 2012-08-08T15:28:04.043 回答
2

如果您正在从硬盘驱动器读取文件,那么获取数据的最快方法是从头到尾读取文件,即不是同时读取。

现在,如果处理需要时间,那么这可能会受益于让多个线程同时处理不同的数据块,但这与您读取文件的方式无关。

于 2012-08-08T15:03:10.063 回答
1

您可以并行处理,但是您的硬盘一次只能读取一条数据。如果您使用单个线程读取文件,则可以使用多个线程处理数据。

于 2012-08-08T15:29:52.627 回答