report added task slowdown diagram

This commit is contained in:
Claudio Maggioni 2021-05-18 16:29:54 +02:00
parent 0d139cea38
commit 4d3b711ce0
5 changed files with 43 additions and 0 deletions

Binary file not shown.

View File

@ -2,6 +2,9 @@
\title{Understanding and Comparing Unsuccessful Executions in Large Datacenters}
\author{Claudio Maggioni}
\usepackage{enumitem}
\usepackage{fontawesome5}
\usepackage{tikz}
\usetikzlibrary{fit,arrows,calc,positioning}
\usepackage{parskip}
\setlength{\parskip}{5pt}
\setlength{\parindent}{0pt}
@ -312,6 +315,12 @@ compute and save intermediate results beforehand.
\subsection{General Query script
design}\label{general-query-script-design}}
\begin{figure}
\centering
\includegraphics[width=.75\textwidth]{figures/task_slowdown_query.png}
\caption{Diagram of the query scripts used for the ``task slowdown'' query}
\end{figure}
\textbf{TBD}
\hypertarget{ad-hoc-presentation-of-some-analysis-scripts}{%

View File

@ -0,0 +1,34 @@
\begin{figure}
\centering
\resizebox{.5\textwidth}{!}{
\tikzstyle{block} = [rectangle, draw, fill=white,text width=16em, text centered, minimum height=4em, thick]
\tikzstyle{blks} = [rectangle, draw, fill=white, text width=6em, text centered, minimum height=4em, dashed]
\tikzstyle{big} = [rectangle, draw, inner sep=0.5cm]
\tikzstyle{line} = [draw, -latex',thick]
\begin{tikzpicture}[auto]
\node [block](exe) {\textbf{Git Commit}};
\node [block, below=of exe] (mgm) {\textbf{CI Pipeline}};
\node [blks, below=2cm of mgm] (fin) {Truffle Tests};
\node [blks, right=of fin] (prod) {Documentation};
\node [blks, left=of fin] (resch) {Test Coverage};
\node [above =0.2cm of fin] (A) {\textbf{Jobs}};
\node [below = 0.3 of mgm, big,fit=(fin) (prod)(resch)(A), inner sep=0.5cm] (dept) {};
\node [blks, below=2.5cm of fin] (ropsten) {Ropsten};
\node [blks, right=of ropsten] (rinkeby) {Rinkeby};
\node [blks, left=of ropsten] (kovan) {Kovan};
\node [above =0.2cm of ropsten] (B) {\textbf{Infura Deployment}};
\node [below = 0.3 of mgm, big,fit=(ropsten) (rinkeby)(kovan)(B), inner sep=0.5cm] (infura) {};
\path [line] (exe)--(mgm);
\path [line] (mgm) -- (dept);
\path [line] (resch)--(fin);
\path [line] (fin)--(prod);
\path [line] (dept) -- (infura);
\end{tikzpicture}
}
\caption{Caption}
\end{figure}

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 431 KiB