Benchmark: Raspberry PI - Monkey v/s Nginx

The Raspberry Pi is small sized computer based on ARM architecture, nowadays is becoming very popular due to it's low price (25USD) and performant design.

Introduction

Monkey is known as a lightweight HTTP web server and stack which hits a huge performance due to it architecture and carefully design. On these benchmarking series we are testing Monkey on different platforms against other web solutions available.

The Raspberry Pi card it's a very interesting card as it provide a low cost board powered by the ARM architecture, overcloaked it can run at 800MHz of CPU, it supports SD cards and the common networking interfaces for LAN connectivity.

Environment

The Raspberry PI - Linux OS have the following details:

The target HTTP servers are:

The benchmarking tool used is Siege, it uses asyncrhonous sockets to perform the tests so it have a low latency compared with Apache Benchmark, so it provide more accurate results. The test is performed with the following command:

$ siege -b -t10S -c200 http://localhost:PORT/linux.jpg
We set the benchmarking mode and during 10 seconds, Siege will scale up to 200 concurrent clients which will perform as many request as it can over the file linux.jpg (200KB jpeg image).

Monkey and NginX have been configured and compiled from sources in the Raspberry PI board, also the configuration for each service is the one that comes by default, with the only exception that we have set NginX to work with five workers as Monkey is doing by default.

Results

After the test over each HTTP server, Siege have provided the following results:


Monkey was capable to serve the linux.jpg file 101.88 times per second and NginX only 85.63, that means that Monkey is ~16% faster serving static content than NginX in a Raspberry PI board. We can also see that NginX did not scale so well as it longest transaction was 8.87 v/s Monkey which was 2.36:

This is a great result as it reflects how well Monkey performs on ARM compared to other web servers. Is good to mention that Monkey is NOT caching any content of the requested file and is doing a great optimization of the system resources.


Disclaimer

The test was made in localhost mode, which does not reflect a real internet environment, so under different circumstances re results could be different. The localhost test helps to determinate how the server perform over a high load as it reduces the TCP and networking overhead in general.

If you have a Raspberry PI board, we encourage you that you perform your own tests, feel free to contact us about the results in question to our mailing list.