good morning!!!!

Skip to content
Snippets Groups Projects
Commit 0b632645 authored by alex.sharov's avatar alex.sharov
Browse files

recompress

parent 6cbbfb46
No related branches found
No related tags found
No related merge requests found
......@@ -4,15 +4,17 @@ dir=$1
files=$(ls $dir/snapshots | grep tr | grep -v tor | grep seg | sort -n -t$'-' -k1)
for file in $files
do
mv $dir/snapshots/$file $dir/snapshots/$file.old
from=$dir/snapshots/$file.old
to=$dir/snapshots/$file
from=$dir/snapshots/$file
to=$dir/snapshots/$file.new
echo "file: $file"
./build/bin/erigon_old snapshots uncompress $from | ./build/bin/erigon snapshots compress $to --datadir=$dir
a=$(du -h $from | awk '{print $1;}')
b=$(du -h $to | awk '{print $1;}')
echo "size: $a -> $b"
mv $from $from.old
mv $from.new $from
done
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment