report added task slowdown diagram
This commit is contained in:
parent
d2f896f3ed
commit
f4dff80388
5 changed files with 43 additions and 0 deletions
Binary file not shown.
|
@ -2,6 +2,9 @@
|
||||||
\title{Understanding and Comparing Unsuccessful Executions in Large Datacenters}
|
\title{Understanding and Comparing Unsuccessful Executions in Large Datacenters}
|
||||||
\author{Claudio Maggioni}
|
\author{Claudio Maggioni}
|
||||||
\usepackage{enumitem}
|
\usepackage{enumitem}
|
||||||
|
\usepackage{fontawesome5}
|
||||||
|
\usepackage{tikz}
|
||||||
|
\usetikzlibrary{fit,arrows,calc,positioning}
|
||||||
\usepackage{parskip}
|
\usepackage{parskip}
|
||||||
\setlength{\parskip}{5pt}
|
\setlength{\parskip}{5pt}
|
||||||
\setlength{\parindent}{0pt}
|
\setlength{\parindent}{0pt}
|
||||||
|
@ -312,6 +315,12 @@ compute and save intermediate results beforehand.
|
||||||
\subsection{General Query script
|
\subsection{General Query script
|
||||||
design}\label{general-query-script-design}}
|
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}
|
\textbf{TBD}
|
||||||
|
|
||||||
\hypertarget{ad-hoc-presentation-of-some-analysis-scripts}{%
|
\hypertarget{ad-hoc-presentation-of-some-analysis-scripts}{%
|
||||||
|
|
34
report/figures/figure_8_query.tex
Normal file
34
report/figures/figure_8_query.tex
Normal 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}
|
BIN
report/figures/task_slowdown_query.odg
Normal file
BIN
report/figures/task_slowdown_query.odg
Normal file
Binary file not shown.
BIN
report/figures/task_slowdown_query.png
Normal file
BIN
report/figures/task_slowdown_query.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 431 KiB |
Loading…
Reference in a new issue