python - 从 Python 中的二进制文件中提取特定字节

标签 python numpy mmap seek fromfile

我有非常大的二进制文件,其中包含用于 y 个传感器的 x 个 int16 数据点,以及带有一些基本信息的 header 。二进制文件被写为每个采样时间的 y 值,最多 x 个采样,然后是另一组读数,依此类推。如果我想要所有数据,我使用的是 numpy.fromfile(),它运行起来非常好而且速度很快。但是,如果我只想要传感器数据的一个子集或只需要特定的传感器,我目前有一个可怕的双 for 循环,使用 file.seek(), file .read()struct.unpack() 需要很长时间。有没有另一种方法可以在 python 中更快地做到这一点?也许我不太了解 mmap() ?还是只使用整个 fromfile() 然后进行子采样?

data = numpy.empty(num_pts, sensor_indices)
for i in range(num_pts):
    for j in range(sensor_indices):
        curr_file.seek(bin_offsets[j])
        data_binary = curr_file.read(2)
        data[j][i] = struct.unpack('h', data_binary)[0]

遵循@rrauenza 关于mmap 的建议,这是很好的信息,我将代码编辑为

mm = mmap.mmap(curr_file.fileno(), 0, access=mmap.ACCESS_READ)
data = numpy.empty(num_pts,sensor_indices)
for i in range(num_pts):
    for j in range(len(sensor_indices)):
        offset += bin_offsets[j] * 2
        data[j][i] = struct.unpack('h', mm[offset:offset+2])[0]

虽然这比以前快了,但仍然比以前慢了几个数量级

shape = (x, y)
data = np.fromfile(file=self.curr_file, dtype=np.int16).reshape(shape)
data = data.transpose()
data = data[sensor_indices, :]
data = data[:, range(num_pts)]

我用一个较小的 30 Mb 文件对此进行了测试,该文件只有 16 个传感器和 30 秒的数据。原始代码为 160 秒,mmap 为 105 秒,np.fromfile 和子采样为 0.33 秒。

剩下的问题是 - 显然使用 numpy.fromfile() 对小文件更好,但是对于更大的文件是否会有问题,这些文件可能高达 20 Gb,数据量为数小时或数天,并且多达 500 个传感器?

最佳答案

我肯定会尝试 mmap():

https://docs.python.org/2/library/mmap.html

您正在阅读很多小的内容,其中有很多 system call overhead如果您为要提取的每个 int16 调用 seek()read()

我写了一个小测试来演示:

#!/usr/bin/python

import mmap
import os
import struct
import sys

FILE = "/opt/tmp/random"  # dd if=/dev/random of=/tmp/random bs=1024k count=1024
SIZE = os.stat(FILE).st_size
BYTES = 2
SKIP = 10


def byfile():
    sum = 0
    with open(FILE, "r") as fd:
        for offset in range(0, SIZE/BYTES, SKIP*BYTES):
            fd.seek(offset)
            data = fd.read(BYTES)
            sum += struct.unpack('h', data)[0]
    return sum


def bymmap():
    sum = 0
    with open(FILE, "r") as fd:
        mm = mmap.mmap(fd.fileno(), 0, prot=mmap.PROT_READ)
        for offset in range(0, SIZE/BYTES, SKIP*BYTES):
            data = mm[offset:offset+BYTES]
            sum += struct.unpack('h', data)[0]
    return sum


if sys.argv[1] == 'mmap':
    print bymmap()

if sys.argv[1] == 'file':
    print byfile()

我对每个方法运行了两次以补偿缓存。我使用 time 是因为我想测量 usersys 时间。

结果如下:

[centos7:/tmp]$ time ./test.py file
-211990391

real    0m44.656s
user    0m35.978s
sys     0m8.697s
[centos7:/tmp]$ time ./test.py file
-211990391

real    0m43.091s
user    0m37.571s
sys     0m5.539s
[centos7:/tmp]$ time ./test.py mmap
-211990391

real    0m16.712s
user    0m15.495s
sys     0m1.227s
[centos7:/tmp]$ time ./test.py mmap
-211990391

real    0m16.942s
user    0m15.846s
sys     0m1.104s
[centos7:/tmp]$ 

(总和 -211990391 只是验证两个版本做同样的事情。)

查看每个版本的第二个结果,mmap() 是实时时间的 ~1/3。用户时间约为 1/2,系统时间约为 1/5。

您可能加快速度的其他选择是:

(1) 如您所述,加载整个文件。大型 I/O 而不是小型 I/O 可以加快处理速度。但是,如果您超出系统内存,您将退回到分页,这比 mmap() 更糟糕(因为您必须分页)。我在这里不是很有希望,因为 mmap 已经在使用更大的 I/O。

(2) 并发。 也许通过多个线程并行读取文件可以加快速度,但您将拥有 Python GIL去处理。 Multiprocessing通过避免 GIL 会更好地工作,并且您可以轻松地将数据传递回顶级处理程序。然而,这将对下一个项目,局部性起作用:您可以使您的 I/O 更加随机。

(3) 地点。以某种方式组织您的数据(或排序您的阅读),以便您的数据更接近。 mmap() 根据系统页面大小将文件分页:

>>> import mmap
>>> mmap.PAGESIZE
4096
>>> mmap.ALLOCATIONGRANULARITY
4096
>>> 

如果您的数据靠得更近(在 4k block 内),则它已经加载到缓冲区缓存中。

(4) 更好的硬件。就像 SSD。

我确实在 SSD 上运行过它,而且速度要快得多。我运行了 python 的配置文件,想知道解压缩是否很昂贵。这不是:

$ python -m cProfile test.py mmap                                                                                                                        
121679286
         26843553 function calls in 8.369 seconds

   Ordered by: standard name

   ncalls  tottime  percall  cumtime  percall filename:lineno(function)
        1    6.204    6.204    8.357    8.357 test.py:24(bymmap)
        1    0.012    0.012    8.369    8.369 test.py:3(<module>)
 26843546    1.700    0.000    1.700    0.000 {_struct.unpack}
        1    0.000    0.000    0.000    0.000 {method 'disable' of '_lsprof.Profiler' objects}
        1    0.000    0.000    0.000    0.000 {method 'fileno' of 'file' objects}
        1    0.000    0.000    0.000    0.000 {open}
        1    0.000    0.000    0.000    0.000 {posix.stat}
        1    0.453    0.453    0.453    0.453 {range}

附录:

好奇心战胜了我,我尝试了 multiprocessing。我需要更仔细地查看我的分区,但解包次数 (53687092) 在整个试验中是相同的:

$ time ./test2.py 4
[(4415068.0, 13421773), (-145566705.0, 13421773), (14296671.0, 13421773), (109804332.0, 13421773)]
(-17050634.0, 53687092)

real    0m5.629s
user    0m17.756s
sys     0m0.066s
$ time ./test2.py 1
[(264140374.0, 53687092)]
(264140374.0, 53687092)

real    0m13.246s
user    0m13.175s
sys     0m0.060s

代码:

#!/usr/bin/python

import functools
import multiprocessing
import mmap
import os
import struct
import sys

FILE = "/tmp/random"  # dd if=/dev/random of=/tmp/random bs=1024k count=1024
SIZE = os.stat(FILE).st_size
BYTES = 2
SKIP = 10


def bymmap(poolsize, n):
    partition = SIZE/poolsize
    initial = n * partition
    end = initial + partition
    sum = 0.0
    unpacks = 0
    with open(FILE, "r") as fd:
        mm = mmap.mmap(fd.fileno(), 0, prot=mmap.PROT_READ)
        for offset in xrange(initial, end, SKIP*BYTES):
            data = mm[offset:offset+BYTES]
            sum += struct.unpack('h', data)[0]
            unpacks += 1
    return (sum, unpacks)


poolsize = int(sys.argv[1])
pool = multiprocessing.Pool(poolsize)
results = pool.map(functools.partial(bymmap, poolsize), range(0, poolsize))
print results
print reduce(lambda x, y: (x[0] + y[0], x[1] + y[1]), results)

关于python - 从 Python 中的二进制文件中提取特定字节,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37623419/

相关文章:

pthreads - 我可以在共享的 POSIX 互斥锁被锁定时重新映射它吗?

python - 将函数应用于 np.ndarray?

python - Django:NoReverseMatch 不是有效函数

python - 计算 Python 中 numpy 无符号整数之间差异的更好方法

python - Numba 中的笛卡尔积

python - a[0],a[1] = a[1],a[0]的过程中发生了什么?

python - 计算 numpy 矩阵中 true 的周围(python)

file-io - mmap 寻求行而不是字节偏移量?

c - 为什么有关 mmap 的代码在 (16384+1) 字节而不是 (4096 + 1) 字节处出现段错误?

python - 使用 Python 请求通过 POST 请求发送图像