Difference between revisions of "ZhoubaWiki:ServerLucy"

From ZhoubaWiki
Jump to navigation Jump to search
(Add server desc, gzip/pigz benchmark)
 
Line 11: Line 11:
 
[https://ark.intel.com/content/www/us/en/ark/products/43098/intel-atom-processor-d510-1m-cache-1-66-ghz.html Intel Atom D510] 1.66 GHz (2C4T)
 
[https://ark.intel.com/content/www/us/en/ark/products/43098/intel-atom-processor-d510-1m-cache-1-66-ghz.html Intel Atom D510] 1.66 GHz (2C4T)
  
4GiB RAM memory
+
4GiB DDR2 RAM memory
 +
 
 +
80GB SSD (system)
 +
2x 3TB WD Reds in RAID0 setup via mdraid connected through [https://zhouba.cz/storage/highpoint%20rocketraid-1640.png HighPoint RocketRaid 1640 AIC] in SATA mode
  
 
== Gzip / Pigz comparison against [[ZhoubaWiki:ServerKelly|Server Kelly]] ==
 
== Gzip / Pigz comparison against [[ZhoubaWiki:ServerKelly|Server Kelly]] ==

Revision as of 14:45, 11 December 2021

Server Lucy

Configuration

Intel Atom D510 1.66 GHz (2C4T)

4GiB DDR2 RAM memory

80GB SSD (system) 2x 3TB WD Reds in RAID0 setup via mdraid connected through HighPoint RocketRaid 1640 AIC in SATA mode

Gzip / Pigz comparison against Server Kelly

db.dump is 1GiB binary DB dump file

Kelly

garak@kelly:~$ time gzip -d ./db.dump.gz 

real	1m0.108s
user	0m12.960s
sys	0m4.544s
garak@kelly:~$ time gzip ./db.dump

real	2m3.579s
user	1m42.264s
sys	0m6.708s

Lucy

gzip

garak@lucy:/tmp$ time gzip -d ./db.dump.gz 

real	0m24.475s
user	0m18.319s
sys	0m6.145s
garak@lucy:/tmp$ time gzip ./db.dump 

real	2m39.207s
user	2m31.082s
sys	0m7.856s

pigz

garak@lucy:/tmp$ time gzip -d ./db.dump.gz 

real	0m10.925s
user	0m8.407s
sys	0m9.459s
garak@lucy:/tmp$ time gzip ./db.dump 

real	0m55.553s
user	3m25.491s
sys	0m10.362s