gpt4 book ai didi

linux - "less"为 gzip 文件上的管道输出消耗大量 RAM,为什么?

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:57:38 27 4
gpt4 key购买 nike

对不起 catecho 前期无用,但是在 ~2GB .gz 文件上运行 less 时我看到了 ~25GB消耗的 RAM(尽管输出通过管道传输到 awk 并在那里消耗):

[user@mybox:~]$ cat <(echo '173abcde7665559.90651926
131abcde7298936.49040546
... (25 lines total here) ...
186abcde4858463.43044639
163abcde9409643.80726489'|awk '{print "KEY 1"length($1)-16":"$1}';
less /tmp/stats.gz)|awk '{if("KEY"==$1){K[$2]=1}else{if($8 in K)print}}' >bad25&

我预计上面的内容不需要任何 RAM 就可以完成,但令我惊讶的是大约 2.5 小时后的样子(到 89.8% 读取 .gz 时):

[user@mybox:~]$ ps auxf|grep -e 'pts/2' -e PID |grep -v grep
USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
user 26896 0.0 0.0 68356 1580 pts/2 Ss+ 15:23 0:00 \_ /bin/bash
user 27927 0.7 0.0 58932 476 pts/2 S 15:23 1:00 \_ cat /dev/fd/63
user 27929 0.0 0.0 68356 716 pts/2 S+ 15:23 0:00 | \_ /bin/bash
user 27932 99.9 75.0 22389852 18512388 pts/2 R+ 15:23 137:42 | \_ less /tmp/stats.gz
user 27933 0.0 0.0 65928 1168 pts/2 S+ 15:23 0:00 | \_ /bin/sh - /usr/bin/lesspipe.sh /tmp/stats.gz
user 27934 1.3 0.0 4176 492 pts/2 S+ 15:23 1:52 | \_ gzip -dc -- /tmp/stats.gz
user 27928 2.1 0.0 63908 776 pts/2 S 15:23 2:56 \_ awk {if("KEY"==$1){K[$2]=1}else{if($8 in K)print}}
[user@mybox:~]$ free -m
total used free shared buffers cached
Mem: 24103 23985 117 0 125 3958
-/+ buffers/cache: 19901 4201
Swap: 8191 7914 277
[user@mybox:~]$ echo 1|awk "{print `cat /proc/27934/fdinfo/3|sed -n 's/pos:[ \t]*//p'`/`du -b /tmp/stats.gz|sed 's/[ \t].*//'`}";date
0.898284
Sat Apr 4 17:41:24 GMT 2015

我会尝试一些其他选项(比如用直接 gzip -dczcat 重写我的命令)看看是否有帮助,但如果有人可以让知道为什么 less (或任何其他命令)会发生这种情况,无论是已知的 less 还是 bash 在更高版本中修复的错误?也许一些 shell 技巧可以强制 less 正常运行?

附言stats.gz 是未压缩的 25261745373 字节(围绕 MAX_INT 环绕 5 次):

[user@mybox:~]$ ls -l /tmp/stats.gz
-rw-r--r-- 1 user users 1837966346 Apr 3 21:42 /tmp/stats.gz
[user@mybox:~]$ gzip -l /tmp/stats.gz
compressed uncompressed ratio uncompressed_name
1837966346 3786908893 51.5% /tmp/stats

最佳答案

less 将所有数据存储在内存中。这就是允许您向上滚动的原因。

关于linux - "less"为 gzip 文件上的管道输出消耗大量 RAM,为什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29450078/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com