zoukankan      html  css  js  c++  java
  • Read Large Files in Python

    I have a large file ( ~4G) to process in Python. I wonder whether it is OK to "read" such a large file. So I tried in the following several ways:

    The original large file to deal with is not "./CentOS-6.5-i386.iso", I just take this file as an example here.

    1:  Normal Method. (ignore try/except/finally)

    def main():    
        f = open(r"./CentOS-6.5-i386.iso", "rb")
        for line in f:
            print(line, end="")
        f.close()
    
    if __name__ == "__main__":
        main()

    2: "With" Method.

    def main():    
        with open(r"./CentOS-6.5-i386.iso", "rb") as f:
            for line in f:
                print(line, end="")
    
    if __name__ == "__main__":
        main()

    3:  "readlines" Method. [Bad Idea]

    #NO. readlines() is really bad for large files.
    #Memory Error.
    def main():
        for line in open(r"./CentOS-6.5-i386.iso", "rb").readlines():
            print(line, end="")
        
    if __name__ == "__main__":
        main()

    4: "fileinput" Method.

    import fileinput
    
    def main():    
        for line in fileinput.input(files=r"./CentOS-6.5-i386.iso", mode="rb"):
            print(line, end="")
    
    if __name__ == "__main__":
        main()

    5: "Generator" Method.

    def readFile():
        with open(r"./CentOS-6.5-i386.iso", "rb") as f:    
            for line in f:
                yield line
    
    def main():
        for line in readFile():
            print(line, end="")
    
    if __name__ == "__main__":
        main()

    The methods above, all work well for small files, but not always for large files(readlines Method). The readlines() function loads the entire file into memory as it runs. 

    When I run the readlines Method, I got the following error message:

     When using the readlines Method, the Percentage of Used CPU and Used Memory rises rapidly(in the following figure). And when the percentage of Used Memory reaches over 50%, I got the "MemoryError" in Python.

    The other methods (Normal Method, With Method, fileinput Method, Generator Method) works well for large files. And when using these methods, the workload for CPU and memory which is shown in the following figure does not get a distinct rise.

    By the way, I recommend the generator method, because it shows clearly that you have taken the file size into account.

    Reference:

    How to read large file, line by line in python

  • 相关阅读:
    poj 3176 三角数和最大问题 dp算法
    poj 2236 网络连接问题 并查集
    poj 3614 奶牛美容问题 优先队列
    得时无怠
    Android入门(一)
    javascript之apply和call
    写一份面试答卷
    拿来即用的loading效果
    关于回调的唠叨
    Nodejs Guides(四)
  • 原文地址:https://www.cnblogs.com/lxw0109/p/python_large_file.html
Copyright © 2011-2022 走看看