Mercurial > hg > Papers > 2014 > nobuyasu-master
changeset 40:8ea1a684bfbe
Added benchmark dat file
author | Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Wed, 29 Jan 2014 03:14:45 +0900 |
parents | 63eca978482f |
children | a59ede6b5a5a |
files | paper/chapter4.tex paper/gnuplot/read_cassandra.dat paper/gnuplot/read_cassandra_one.dat paper/gnuplot/read_jungle.dat paper/gnuplot/read_makegraph.sh paper/gnuplot/write_cassandra.dat paper/gnuplot/write_cassandra_one.dat paper/gnuplot/write_jungle.dat paper/gnuplot/write_makegraph.sh paper/master_paper.pdf |
diffstat | 10 files changed, 66 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/paper/chapter4.tex Wed Jan 29 02:53:18 2014 +0900 +++ b/paper/chapter4.tex Wed Jan 29 03:14:45 2014 +0900 @@ -102,7 +102,7 @@ 論理コア数 & 24 \\ \hline Memory & 132GB \\ \hline OS & Fedora 16 \\ \hline -JavaVM & Java(TM) SE Runtime Environment (build 1.6.0\_39-b04) \\ \hline +JavaVM & Java(TM) SE Runtime Environment (build 1.7.0-b147) \\ \hline \end{tabular} \end{center} \end{table} @@ -111,7 +111,7 @@ \subsubsection{サーバの環境} HTTPによりノードに負荷を掛ける場合気をつけることがある. -それはサーバの設定によりコネクション数やファイル記述子の制限である. +それはサーバの設定により最大コネクション数や開くことのできるファイル記述子の数に制限がかかっていることである. この2つの値はデフォルトでは小さなものとなっており, そのままではカーネル の設定がネックとなったベンチマーク結果がでる可能性がある. そこで次のようにコマンドを実行することでコネクション数の制限を増やすことができる. @@ -123,11 +123,9 @@ % ulimit -n 10000 \end{lstlisting} - +\section{実験結果1} -\section{実験結果} - \begin{figure}[htpb] \begin{center} \includegraphics[scale=1.0]{figures/read_bench.pdf} @@ -144,3 +142,8 @@ \label{fig:write_cassandra} \end{center} \end{figure} + +\section{実験結果2} + + +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/paper/gnuplot/read_cassandra.dat Wed Jan 29 03:14:45 2014 +0900 @@ -0,0 +1,7 @@ +1 133 +5 237 +10 282 +20 222 +30 257 +40 219 +50 223
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/paper/gnuplot/read_cassandra_one.dat Wed Jan 29 03:14:45 2014 +0900 @@ -0,0 +1,5 @@ +10 152 +20 153 +30 154 +40 157 +50 154
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/paper/gnuplot/read_jungle.dat Wed Jan 29 03:14:45 2014 +0900 @@ -0,0 +1,8 @@ +1 32 +5 30 +10 34 +20 32 +30 35 +40 30 +50 31 +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/paper/gnuplot/read_makegraph.sh Wed Jan 29 03:14:45 2014 +0900 @@ -0,0 +1,9 @@ +#!/bin/sh +gnuplot << EOF +set terminal postscript eps +set output 'read_bench.eps' +set title 'read benchmark(1,000,000 Requests)' +set xlabel 'nuber of nodes' +set ylabel 'time(sec)' +plot 'read_jungle.dat' title 'Jungle' lt rgb "blue" with linespoints, 'read_cassandra.dat' title "Cassandra Consistency Level Quorum" lt rgb "red" with linespoints, 'read_cassandra_one.dat' title "Cassandra Consistency Level ONE" lt rgb "red" with linespoints +EOF
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/paper/gnuplot/write_cassandra.dat Wed Jan 29 03:14:45 2014 +0900 @@ -0,0 +1,7 @@ +1 354 +5 579 +10 496 +20 486 +30 572 +40 550 +50 546 \ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/paper/gnuplot/write_cassandra_one.dat Wed Jan 29 03:14:45 2014 +0900 @@ -0,0 +1,5 @@ +10 270 +20 269 +30 271 +40 275 +50 270
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/paper/gnuplot/write_jungle.dat Wed Jan 29 03:14:45 2014 +0900 @@ -0,0 +1,8 @@ +1 62 +5 93 +10 57 +20 71 +30 65 +40 93 +50 93 +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/paper/gnuplot/write_makegraph.sh Wed Jan 29 03:14:45 2014 +0900 @@ -0,0 +1,9 @@ +#!/bin/sh +gnuplot << EOF +set terminal postscript eps +set output 'write_bench.eps' +set title 'write benchmark(1,000,000 Requests)' +set xlabel 'nuber of nodes' +set ylabel 'time(sec)' +plot 'write_jungle.dat' title 'Jungle' lt rgb "blue" with linespoints, 'write_cassandra.dat' title "Cassandra Consistency Level Quorum" lt rgb "red" with linespoints, 'write_cassandra_one.dat' title "Cassandra Consistency Level ONE" lt rgb "dark-red" with linespoints +EOF