\chapter{Macro-Benchmarks}\label{macrobench} The previous chapter has demonstrated that the scheduler achieves its performance goal in small and controlled scenario. The next step is then to demonstrate that this stays true in more realistic and complete scenarios. This chapter presents two flavours of webservers that demonstrate that \CFA performs competitively with production environments. Webservers where chosen because they offer fairly simple applications that are still useful as standalone products. Furthermore, webservers are generally amenable to parallelisation since their workloads are mostly homogenous. They therefore offer a stringent performance benchmark for \CFA. Indeed existing solutions are likely to have close to optimal performance while the homogeneity of the workloads mean the additional fairness is not needed. \section{Memcached} Memcached~\cit{memcached} is an in memory key-value store that is used in many production environments, \eg \cit{Berk Atikoglu et al., Workload Analysis of a Large-Scale Key-Value Store, SIGMETRICS 2012}. This also server also has the notable added benefit that there exists a full-featured front-end for performance testing called @mutilate@~\cit{mutilate}. Experimenting on memcached allows for a simple test of the \CFA runtime as a whole, it will exercise the scheduler, the idle-sleep mechanism, as well the \io subsystem for sockets. This experiment does not exercise the \io subsytem with regards to disk operations. The experiments compare 3 different varitions of memcached: \begin{itemize} \item \emph{vanilla}: the official release of memcached, version~1.6.9. \item \emph{fibre}: a modification of vanilla which uses the thread per connection model on top of the libfibre runtime~\cite{DBLP:journals/pomacs/KarstenB20}. \item \emph{cfa}: a modification of the fibre webserver that replaces the libfibre runtime with \CFA. \end{itemize} \subsection{Benchmark Environment} These experiments are run on a cluster of homogenous Supermicro SYS-6017R-TDF compute nodes with the following characteristics: The server runs Ubuntu 20.04.3 LTS on top of Linux Kernel 5.11.0-34. Each node has 2 Intel(R) Xeon(R) CPU E5-2620 v2 running at 2.10GHz. These CPUs have 6 cores per CPUs and 2 \glspl{hthrd} per core, for a total of 24 \glspl{hthrd}. The cpus each have 384 KB, 3 MB and 30 MB of L1, L2 and L3 caches respectively. Each node is connected to the network through a Mellanox 10 Gigabit Ethernet port. The network route uses 1 Mellanox SX1012 10/40 Gigabit Ethernet cluster switch. \subsection{Throughput} \begin{figure} \centering \input{result.memcd.rate.qps.pstex_t} \caption[Memcached Benchmark: Throughput]{Memcached Benchmark: Throughput\smallskip\newline Desired vs Actual request rate for 15360 connections. Target QPS is the request rate that the clients are attempting to maintain and Actual QPS is the rate at which the server is able to respond.} \label{fig:memcd:rate:qps} \end{figure} Figure~\ref{fig:memcd:rate:qps} shows the result for the throughput of all three webservers. This experiment is done by having the clients establish 15360 total connections, which persist for the duration of the experiments. The clients then send requests, attempting to follow a desired request rate. The servers respond to the desired rate as best they can and the difference between desired rate, ``Target \underline{Q}ueries \underline{P}er \underline{S}econd'', and the actual rate, ``Actual QPS''. The results show that \CFA achieves equivalent throughput even when the server starts to reach saturation. Only then does it start to fall behind slightly. This is a demonstration of the \CFA runtime achieving its performance goal. \subsection{Tail Latency} \begin{figure} \centering \input{result.memcd.rate.99th.pstex_t} \caption[Memcached Benchmark : 99th Percentile Lantency]{Memcached Benchmark : 99th Percentile Lantency\smallskip\newline 99th Percentile of the response latency as a function of \emph{desired} request rate for 15360 connections. } \label{fig:memcd:rate:tail} \end{figure} Another important performance metric to look at is \newterm{tail} latency. Since many web applications rely on a combination of different requests made in parallel, the latency of the slowest response, \ie tail latency, can dictate overall performance. Figure~\ref{fig:memcd:rate:tail} shows the 99th percentile latency results for the same experiment memcached experiment. As is expected, the latency starts low and increases as the server gets close to saturation, point at which the latency increses dramatically. Note that the figure shows \emph{target} request rate, the actual response rate is given in Figure~\ref{fig:memcd:rate:qps} as this is the same underlying experiment. \subsection{Update rate} \begin{figure} \centering \input{result.memcd.updt.qps.pstex_t} \caption[Churn Benchmark : Throughput on Intel]{Churn Benchmark : Throughput on Intel\smallskip\newline Description} \label{fig:memcd:updt:qps} \end{figure} \begin{figure} \centering \input{result.memcd.updt.lat.pstex_t} \caption[Churn Benchmark : Throughput on Intel]{Churn Benchmark : Throughput on Intel\smallskip\newline Description} \label{fig:memcd:updt:lat} \end{figure} \section{Static Web-Server} The memcached experiment has two aspects of the \io subsystem it does not exercise, accepting new connections and interacting with disks. On the other hand, static webservers, servers that offer static webpages, do stress disk \io since they serve files from disk\footnote{Dynamic webservers, which construct pages as they are sent, are not as interesting since the construction of the pages do not exercise the runtime in a meaningfully different way.}. The static webserver experiments will compare NGINX with a custom webserver developped for this experiment. \subsection{Benchmark Environment} Unlike the memcached experiment, the webserver run on a more heterogenous environment. The server runs Ubuntu 20.04.4 LTS on top of Linux Kernel 5.13.0-52. It has an AMD Opteron(tm) Processor 6380 running at 2.50GHz. These CPUs has only 8 \glspl{hthrd} enabled by grub, which is sufficient to achieve line rate. This cpus each have 64 KB, 256 KiB and 8 MB of L1, L2 and L3 caches respectively. The client machines each have two 2.8 GHz Xeon CPUs, and four one-gigabit Ethernet cards. Each client machine runs two copies of the workload generator. They run a 2.6.11-1 SMP Linux kernel, which permits each client load-generator to run on a separate CPU. Since the clients outnumber the server 8-to-1, this is plenty sufficient to generate enough load for the clients not to become the bottleneck. \todo{switch} \subsection{Throughput} \begin{figure} \centering \input{result.swbsrv.25gb.pstex_t} \caption[Static Webserver Benchmark : Throughput]{Static Webserver Benchmark : Throughput\smallskip\newline } \label{fig:swbsrv} \end{figure} Networked ZIPF Nginx : 5Gb still good, 4Gb starts to suffer Cforall : 10Gb too high, 4 Gb too low