From 13bcb46be5b401aa2dc5508a8931feb11c5ce723 Mon Sep 17 00:00:00 2001 From: Zhongmiao Li Date: Tue, 1 Jul 2014 11:34:21 +0200 Subject: [PATCH 1/9] First commit --- examples/floppstore.config | 22 ++++ src/basho_bench_driver_floppystore.erl | 136 +++++++++++++++++++++++++ 2 files changed, 158 insertions(+) create mode 100644 examples/floppstore.config create mode 100644 src/basho_bench_driver_floppystore.erl diff --git a/examples/floppstore.config b/examples/floppstore.config new file mode 100644 index 000000000..0ee2cec79 --- /dev/null +++ b/examples/floppstore.config @@ -0,0 +1,22 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. + +{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. + +{operations, [{append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. diff --git a/src/basho_bench_driver_floppystore.erl b/src/basho_bench_driver_floppystore.erl new file mode 100644 index 000000000..bd076672a --- /dev/null +++ b/src/basho_bench_driver_floppystore.erl @@ -0,0 +1,136 @@ +%% ------------------------------------------------------------------- +%% +%% basho_bench: Benchmarking Suite +%% +%% Copyright (c) 2009-2010 Basho Techonologies +%% +%% This file is provided to you under the Apache License, +%% Version 2.0 (the "License"); you may not use this file +%% except in compliance with the License. You may obtain +%% a copy of the License at +%% +%% http://www.apache.org/licenses/LICENSE-2.0 +%% +%% Unless required by applicable law or agreed to in writing, +%% software distributed under the License is distributed on an +%% "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +%% KIND, either express or implied. See the License for the +%% specific language governing permissions and limitations +%% under the License. +%% +%% ------------------------------------------------------------------- +-module(basho_bench_driver_floppystore). + +-export([new/1, + floppy_valgen/1, + run/4]). + +-include("basho_bench.hrl"). + +-define(TIMEOUT, 1000). +-record(state, {node}). +%-record(state, { file, +% filename, +% flags, +% sync_interval, +% last_sync }). + +%% ==================================================================== +%% API +%% ==================================================================== + +new(Id) -> + %% Make sure bitcask is available + case code:which(floppy) of + non_existing -> + ?FAIL_MSG("~s requires floppystore to be available on code path.\n", + [?MODULE]); + _ -> + ok + end, + + Nodes = basho_bench_config:get(floppystore_nodes), + Cookie = basho_bench_config:get(floppystore_cookie), + MyNode = basho_bench_config:get(floppystore_mynode, [basho_bench, longnames]), + + %% Try to spin up net_kernel + case net_kernel:start(MyNode) of + {ok, _} -> + ?INFO("Net kernel started as ~p\n", [node()]); + {error, {already_started, _}} -> + ok; + {error, Reason} -> + ?FAIL_MSG("Failed to start net_kernel for ~p: ~p\n", [?MODULE, Reason]) + end, + + %% Initialize cookie for each of the nodes + [true = erlang:set_cookie(N, Cookie) || N <- Nodes], + %true = erlang:set_cookie(Node, Cookie), + + %% Try to ping each of the nodes + ping_each(Nodes), + + %% Choose the node using our ID as a modulus + TargetNode = lists:nth((Id rem length(Nodes)+1), Nodes), + ?INFO("Using target node ~p for worker ~p\n", [TargetNode, Id]), + + {ok, #state{node=TargetNode}}. + + + + +run(read, KeyGen, _ValueGen, State=#state{node=Node}) -> + %State1 = maybe_sync(State), + Key = KeyGen(), + Res = rpc:call(Node, floppy, read, [Key, riak_dt_gcounter], ?TIMEOUT), + case Res of + {ok, _Value} -> + {ok, State}; + {error, Reason} -> + {error, Reason}; + {badrpc, Reason} -> + {badrpc, Reason}; + _Reason -> + {ok, State} + end; +run(append, KeyGen, ValueGen, State=#state{node=Node}) -> + Key = KeyGen(), + Param = ValueGen(), + Res = rpc:call(Node, floppy, append, [Key, Param], ?TIMEOUT), + %State1 = maybe_sync(State), + case Res of + {ok, _Result} -> + {ok, State}; + {error, Reason} -> + {error, Reason}; + {badrpc, Reason} -> + {badrpc, Reason}; + _Reason -> + {ok, State} + end. + + +floppy_valgen(Id) -> + fun() -> + {increment, Id} + end. + %Save = list_to_atom("mapred_ordered_valgen"++integer_to_list(Id)), + %fun() -> + % Next = case get(Save) of + % undefined -> 0; + % Value -> Value + % end, + % put(Save, Next+1), + % list_to_binary(integer_to_list(Next)) + %end. + +ping_each([]) -> + ok; +ping_each([Node | Rest]) -> + case net_adm:ping(Node) of + pong -> + ?INFO("Finished pinging ~p", [Node]), + ping_each(Rest); + pang -> + ?FAIL_MSG("Failed to ping node ~p\n", [Node]) + end. From ab035a775fe3fb3ed92ad4a36ea5d802077efb49 Mon Sep 17 00:00:00 2001 From: Zhongmiao Li Date: Wed, 9 Jul 2014 13:17:42 +0200 Subject: [PATCH 2/9] Change readme --- README.org | 139 ++------------------ src/.basho_bench_driver_floppystore.erl.swp | Bin 0 -> 12288 bytes src/basho_bench_driver_floppystore.erl | 14 -- 3 files changed, 11 insertions(+), 142 deletions(-) create mode 100644 src/.basho_bench_driver_floppystore.erl.swp diff --git a/README.org b/README.org index 587099d44..75ff7bfdd 100644 --- a/README.org +++ b/README.org @@ -1,48 +1,21 @@ * basho_bench ** Overview - [[http://travis-ci.org/basho/basho_bench][Travis-CI]] :: [[https://secure.travis-ci.org/basho/basho_bench.png]] - [[http://docs.basho.com/riak/latest/cookbooks/Benchmarking/][Additional documentation on docs.basho.com]] + [[https://github.com/basho/basho_bench/blob/master/README.org][For general information about basho_bench, please refer to the original README]] Basho Bench is a benchmarking tool created to conduct accurate and repeatable performance tests and stress tests, and produce performance graphs. + +** Modification - Originally developed to benchmark Riak, it exposes a pluggable - driver interface and has been extended to serve as a benchmarking - tool across a variety of projects. - - Basho Bench focuses on two metrics of performance: - - - Throughput: number of operations performed in a timeframe, - captured in aggregate across all operation types - - Latency: time to complete single operations, captured in - quantiles per-operation - -** Quick Start - - You must have [[http://erlang.org/download.html][Erlang/OTP R13B03]] or later to build and run Basho - Bench, and [[http://www.r-project.org/][R]] to generate graphs of your benchmarks. A sane - GNU-style build system is also required if you want to use =make= - to build the project. - -#+BEGIN_SRC shell -git clone git://github.com/basho/basho_bench.git -cd basho_bench -make all -#+END_SRC - - This will build an executable script, =basho_bench=, which you can - use to run one of the existing benchmark configurations from the - =examples/= directory. You will likely have to make some minor directory - changes to the configs in order to get the examples running (see, e.g., the - source of the bitcask and innostore benchmark config files for direction). + Two files are added for benchmarking floppystore: + - src/basho_bench_driver_floppystore.erl: defines the initialization of a benchmarking thread and how it executes put/get operations. + - examples/floppstore.config: contains benchmark parameters. + ** Run a benchmark #+BEGIN_SRC shell -$ ./basho_bench examples/riakc_pb.config -INFO: Est. data size: 95.37 MB -INFO: Using target ip {127,0,0,1} for worker 1 -INFO: Starting max worker: <0.55.0> +$ ./basho_bench examples/floppystore.config #+END_SRC At the end of the benchmark, results will be available in CSV @@ -51,99 +24,9 @@ INFO: Starting max worker: <0.55.0> #+BEGIN_SRC shell $ make results -priv/summary.r -i tests/current -Loading required package: proto -Loading required package: reshape -Loading required package: plyr -Loading required package: digest -null device - 1 $ open tests/current/summary.png #+END_SRC -** Troubleshooting Graph Generation - - If make results fails with the error =/usr/bin/env: Rscript --vanilla: No such file or directory= - please edit priv/summary.r and replace the first line with the full path to the Rscript binary on your system - - If you receive the error message =Warning: unable to access index for repository http://lib.stat.cmu.edu/R/CRAN/src/contrib= - it means the default R repo for installing additional packages is broken, you can change it as follows: - -#+BEGIN_SRC shell -$ R -> chooseCRANmirror() -Selection: 69 -quit() -make results -#+END_SRC - -** Customizing your Benchmark - Basho Bench has many drivers, each with its own configuration, and - a number of key and value generators that you can use to customize - your benchmark. It is also straightforward -- with less than 200 - lines of Erlang code -- to create custom drivers that can exercise - other systems or perform custom operations. These are covered more - in detail in the [[http://docs.basho.com/riak/latest/cookbooks/Benchmarking/][documentation]]. - -** Benchmarking with riak-java-client - The [[https://github.com/basho/riak-java-client][riak-java-client]] can be used to benchmark a Riak cluster. There - is an example configuration in =examples/riakc_java.config=. You - will need the [[https://github.com/basho/bench_shim][bench_shim]] project. You will also need to uncomment - and edit the following line in basho_bench's =rebar.config=, adding - your own erlang cookie value: - -#+BEGIN_SRC shell -%% {escript_emu_args, "%%! -name bb@127.0.0.1 -setcookie YOUR_ERLANG_COOKIE\n"}. -#+END_SRC - -** Alternative Graph Generation by gnuplot - You can generate graphs using gnuplot. - -#+BEGIN_SRC shell -$ ./priv/gp_throughput.sh -#+END_SRC - -#+BEGIN_SRC shell -$ ./priv/gp_latency.sh -#+END_SRC - - By passing =-h= option to each script, help messages are shown. - - Some of options for these scripts are: - - - =-d TEST_DIR= : comma separated list of directories which include - test result CSV files - - =-t TERMINAL_TYPE= : gnuplot terminal type - - =-P= : just print gnuplot script without drawing graph - - For example, you can draw graphs with ASCII characters - by the option =-t dumb=, which is useful in non-graphical - environment or quick sharing of result in chat. - - Also, you can plot multiple test runs on a single plot by using "-d" switch. - -** Contributing - We encourage contributions to Basho Bench from the community. - - 1) Fork the =basho_bench= repository on [[https://github.com/basho/basho_bench][Github]]. - 2) Clone your fork or add the remote if you already have a clone of - the repository. -#+BEGIN_SRC shell -git clone git@github.com:yourusername/basho_bench.git -# or -git remote add mine git@github.com:yourusername/basho_bench.git -#+END_SRC - 3) Create a topic branch for your change. -#+BEGIN_SRC shell -git checkout -b some-topic-branch -#+END_SRC - 4) Make your change and commit. Use a clear and descriptive commit - message, spanning multiple lines if detailed explanation is - needed. - 5) Push to your fork of the repository and then send a pull-request - through Github. -#+BEGIN_SRC shell -git push mine some-topic-branch -#+END_SRC - 6) A Basho engineer or community maintainer will review your patch - and merge it into the main repository or send you feedback. +** Limitations + Right now it only has put/get interfaces and there is no support for transaction. + It only put/get for riak_dt_gcounter. diff --git a/src/.basho_bench_driver_floppystore.erl.swp b/src/.basho_bench_driver_floppystore.erl.swp new file mode 100644 index 0000000000000000000000000000000000000000..744fb9880fac62d97c312e1cccb795810e36a5a9 GIT binary patch literal 12288 zcmeI2O^h2!6~`-lvupr?K*~x;4{t`;!e28%0vv{DG9STY#uJS_iK6UmtK3~n=pThr`&Lo444?9kJ;3L1SG3_YW-Tyxk6w3)v*ENvesZR|Uq?@t3X zP<5r9hxA)KE)*yfU+DikObC=@6ZC=@6ZC=@6ZC=@6Z zc!MYq`e(!!G1oVx^UZ$opGohtzi$vZifI-K6bcjy6bcjy6bcjy6bcjy6bcjy6bcjy z{9h^{Eg{ZhW@Y{d0Q~=d_WS?E_XzPr@GSTmkl<->9{ly)Lc9RJ0lp3-cp4D+(^(M(i*q8S((RDA#Y#IdyL0NcZhr5t7IedMi=vSk_T}oCuBIZT~jMQ&{Czgbre_F zkKA%>Cpo5K97t!N+;ZEB3$adcoiM@$hu)}4-B5-qF~ViWj*@}rW<%m4z7G4+(!N>6 zi23o+T&=sGoNB4G_Vm3Po_uhs-F$Gl&bSam3?e5y%38#Vql_iyu`a|@TBKzf%V}R3 z!PGU&aakpC8P{DVOs8c^$BF$@r9`+YN#BQ12%)QLTBU1J%kf^7F7?`5>)X4%)IwYg z8`q^1sVfjVEk_%a;xjGNa7$(|DXq@hq|z@x8L$TqIeeEnRE}oxfN{*H&NKU8byzIZ zef{-7cW5PN&d|0T8CGZvOfPanrBD0iZv7t`4(y<$i_ASn=FpSv1dh26eMGw=c>Ex z^z?L=ayffq)y<5iZ5KivDU1@wbOG9!r3Rf@gXv8gP`9 z%lR_0oh7-=f8I*npBI{+=VIwNz=HgIWNYj)IWc(A^cBeiytT-_qX?U$!%yjU~?cB7JL#-N*G?lc9}wmc(-2aa(evD2TM8z8#|ah-|FttUKYV$?SCi zZeD&JE&)3$*V_E&b+EQ9L`^Hx(^eU=86s@rJ@Keg7d1=m+pa37n{bsDo6RQ5MGdb) zPK3xWq@h42>no*{aQ*bmns)&npStc5c@H^ z0fOw~R}J^s%WhaDUwa3(mCTk~&81w4CzpjwHvd&jMcad6NM*A^OU>pdYfH_=CSB%( r?$lG}&~rV<8{qJJI{jRnx9BpTgda;i;t1 fun() -> {increment, Id} end. - %Save = list_to_atom("mapred_ordered_valgen"++integer_to_list(Id)), - %fun() -> - % Next = case get(Save) of - % undefined -> 0; - % Value -> Value - % end, - % put(Save, Next+1), - % list_to_binary(integer_to_list(Next)) - %end. ping_each([]) -> ok; From bab2569a1ae3d73ea9d6aa7454d52115e006e761 Mon Sep 17 00:00:00 2001 From: Zhongmiao Li Date: Wed, 9 Jul 2014 13:18:46 +0200 Subject: [PATCH 3/9] Fix a mistake in README --- README.org | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.org b/README.org index 75ff7bfdd..90a67a9fa 100644 --- a/README.org +++ b/README.org @@ -13,7 +13,7 @@ - src/basho_bench_driver_floppystore.erl: defines the initialization of a benchmarking thread and how it executes put/get operations. - examples/floppstore.config: contains benchmark parameters. - ** Run a benchmark +** Run a benchmark #+BEGIN_SRC shell $ ./basho_bench examples/floppystore.config #+END_SRC From f72710925bcd73c05d4070dd323f7ade3a1bc371 Mon Sep 17 00:00:00 2001 From: Zhongmiao Li Date: Thu, 17 Jul 2014 13:37:38 +0200 Subject: [PATCH 4/9] Supporting multiple CRDTs --- examples/floppstore.config | 3 +- src/.basho_bench_driver_floppystore.erl.swp | Bin 12288 -> 16384 bytes src/basho_bench_driver_floppystore.erl | 63 +++++++++++++++----- 3 files changed, 49 insertions(+), 17 deletions(-) diff --git a/examples/floppstore.config b/examples/floppstore.config index 0ee2cec79..ff45d1b34 100644 --- a/examples/floppstore.config +++ b/examples/floppstore.config @@ -2,7 +2,7 @@ {duration, 1}. -{concurrent, 2}. +{concurrent, 1}. {driver, basho_bench_driver_floppystore}. @@ -20,3 +20,4 @@ {floppystore_cookie, floppy}. {floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/src/.basho_bench_driver_floppystore.erl.swp b/src/.basho_bench_driver_floppystore.erl.swp index 744fb9880fac62d97c312e1cccb795810e36a5a9..879323d765b5f1a7aa855be634b5afa8f33f7000 100644 GIT binary patch delta 2290 zcma)+QD|FL7{^c2W^1QiQb#E|rN^|1x#g}jP8dX@t4y?OI;XY;aT4!xPm@cMd*i(~ z>uN}oi7$!@dJ$jT+@n)`&^$O0#EGluM47_yO%N57Jqha2J@`N8-W$_2T|Mw?PtN)7 zcfRj`zVkJoZZ-pB$ETNO=jnl|{RAUI$Zub+KYnTbxxk*ogp{;rU%ecA|Io+baF8^x zALK?D1!p)iI^5^}AW84P*19$FdH6NjKQxGyivj$BL)g+r3Ggtu-cQJP;1jS0bg%@{APPd@ zS15D|obQ8pXEAvL9023s7l`>0$blpn1YEPvxNiQS+l+r$a{bL%W zC}%7D+jf95EvVuLB3)8SRrV0mCHaPqYerF~Ji$7TTbS04u$6Xjn7Hxb;GAMHF3u>_ z(R4L|J(+rz5;c~cD-*MEnHJe$E{sVT**YG?B~qpI7?+${3OY&0XaY?x)mPDCGLipq~lt*xx-QJFp| z&V@|AV6OaLK>sJ#rMNb_IoG;`NS*a~w9qT-9`^Mqp}DV1yZTIAZb`Fjah;YYizld8 zp*mYhNOJ3H{BkhFzqg!6C-2&6^BI=UOUHv5+BJ&a)zl^T*v@VKp|~WO>@!);Fx7-* zD>jp9O*d2~x03QVeGNq=nyvIYhE#7?U5+`#uF9fRn%gI#>j0FarKT|N9$! z3*G~~KNi6gAPpkm8j@&%cK}c5?Om-v|5t-fB0AEj)wujtO1BG%Bh|9^Orb1wpI)k} zYrMJ=$!QF!F4LKuZJ2d&om|&;wOY(ZQMA|j-j=>yA1Fq@$F#lpHSc*6Z;{_R-ktjn z5G1OnE4UKV^GHBEVN3GL$g{B+Qxm#@BJ$QIVoK9inJpJR$}FZ_yDK2;?aS?o>+_?HMJ9{TQ`VVb;>z5 z{(!R>dui{usOOsh2-5%cxw{9en%%AJ3Xi3 z5Xjw;QKhS&yUO

|i@Y5DO~0S;vSdsP71R-~;dbJn!G9RI-##b)W7VjzqQX z!G0myMQZM+N2lJNw~YS~nMh8TtKNtE7VLJ56scS5i->8pq1{nA*gkJBf7GsNwl)t* zU%ko+6t!Z}*(%bB>N=5S%wh&-5km-_SZWcui#c4z3`!V88=kBcna2$n7=;JFnnhOe z1{aWpfxT#H=CvQ1_zWK7Hf|w zg79M1Ch`u?VA|-`Nd|||4=4UKhi{9r#Iq-(wj!Q9ueI z)O)`L|D#;%QulXus4icJn%h+iibm+^#J@p(Qb?x941H2h=K@+JVM;xBCZG2CwcfD0 zG_XfK@42I9!`dT?_@p+V4aX<)`k>B^fO7XlD&-!h#bqSp zsnJAkbbKt6Pv>-FB%tjcibVGxIX1+yyf@io)-Rxq-@R^|X$GZI++4LbMyC#E66%xR jS9#>`vpRYWeJo=neA!$)rw6n`I+M^%f3Ok?tTg-u0A`Th diff --git a/src/basho_bench_driver_floppystore.erl b/src/basho_bench_driver_floppystore.erl index d1912676a..ebcb0f44c 100644 --- a/src/basho_bench_driver_floppystore.erl +++ b/src/basho_bench_driver_floppystore.erl @@ -28,7 +28,9 @@ -include("basho_bench.hrl"). -define(TIMEOUT, 1000). --record(state, {node}). +-record(state, {node, + type_dict, + key_dict}). %% ==================================================================== %% API @@ -47,6 +49,7 @@ new(Id) -> Nodes = basho_bench_config:get(floppystore_nodes), Cookie = basho_bench_config:get(floppystore_cookie), MyNode = basho_bench_config:get(floppystore_mynode, [basho_bench, longnames]), + Types = basho_bench_config:get(floppystore_types), %% Try to spin up net_kernel case net_kernel:start(MyNode) of @@ -68,16 +71,19 @@ new(Id) -> %% Choose the node using our ID as a modulus TargetNode = lists:nth((Id rem length(Nodes)+1), Nodes), ?INFO("Using target node ~p for worker ~p\n", [TargetNode, Id]), + KeyDict= dict:new(), + TypeDict = dict:from_list(Types), + {ok, #state{node=TargetNode, type_dict=TypeDict, key_dict=KeyDict}}. - {ok, #state{node=TargetNode}}. - - - -run(read, KeyGen, _ValueGen, State=#state{node=Node}) -> +run(read, KeyGen, _ValueGen, State=#state{node=Node, key_dict=KeyDict}) -> %State1 = maybe_sync(State), Key = KeyGen(), - Res = rpc:call(Node, floppy, read, [Key, riak_dt_gcounter], ?TIMEOUT), + KeyType = case dict:find(Key, KeyDict) of + {ok, Type} -> io:format("ReadType:~w~n", [Type]), hd(Type); + _ -> riak_dt_gcounter + end, + Res = rpc:call(Node, floppy, read, [Key, KeyType], ?TIMEOUT), case Res of {ok, _Value} -> {ok, State}; @@ -88,28 +94,36 @@ run(read, KeyGen, _ValueGen, State=#state{node=Node}) -> _Reason -> {ok, State} end; -run(append, KeyGen, ValueGen, State=#state{node=Node}) -> +run(append, KeyGen, ValueGen, State=#state{node=Node, key_dict=KeyDict, type_dict=TypeDict}) -> Key = KeyGen(), - Param = ValueGen(), - Res = rpc:call(Node, floppy, append, [Key, Param], ?TIMEOUT), - %State1 = maybe_sync(State), + {NewKeyDict, KeyParam} = case dict:find(Key, KeyDict) of + {ok, Type} -> + Param = get_random_param(TypeDict, hd(Type), ValueGen), + {KeyDict, Param}; + error -> + Types = dict:fetch_keys(TypeDict), + Type = get_random_elem(Types), + Dict2 = dict:append(Key, Type, KeyDict), + Param = get_random_param(TypeDict, Type, ValueGen), + {Dict2, Param} + end, + Res = rpc:call(Node, floppy, append, [Key, KeyParam], ?TIMEOUT), case Res of {ok, _Result} -> - {ok, State}; + {ok, State#state{key_dict=NewKeyDict}}; {error, Reason} -> {error, Reason}; {badrpc, Reason} -> {badrpc, Reason}; - _Reason -> + _ -> {ok, State} end. floppy_valgen(Id) -> - fun() -> - {increment, Id} - end. + Id. +%% Private ping_each([]) -> ok; ping_each([Node | Rest]) -> @@ -120,3 +134,20 @@ ping_each([Node | Rest]) -> pang -> ?FAIL_MSG("Failed to ping node ~p\n", [Node]) end. + +get_random_elem(List) -> + random:seed(now()), + Num = random:uniform(length(List)), + lists:nth(Num, List). + +get_random_param(Dict, Type, Actor) -> + Params = dict:fetch(Type, Dict), + random:seed(now()), + Num = random:uniform(length(Params)), + case Type of + riak_dt_gcounter -> + {lists:nth(Num, Params), Actor}; + riak_dt_gset -> + {{lists:nth(Num, Params), random:uniform(10000)}, Actor} + end. + From 4734919e661924508c9b3322e32dc735970778ba Mon Sep 17 00:00:00 2001 From: Zhongmiao Li Date: Tue, 22 Jul 2014 15:31:43 +0200 Subject: [PATCH 5/9] Add static transaction --- examples/floppstore.config | 8 +- src/.basho_bench_driver_floppystore.erl.swp | Bin 16384 -> 16384 bytes src/basho_bench_driver_floppystore.erl | 118 ++++++++++++++------ 3 files changed, 87 insertions(+), 39 deletions(-) diff --git a/examples/floppstore.config b/examples/floppstore.config index ff45d1b34..a222d5344 100644 --- a/examples/floppstore.config +++ b/examples/floppstore.config @@ -2,15 +2,15 @@ {duration, 1}. -{concurrent, 1}. +{concurrent, 2}. {driver, basho_bench_driver_floppystore}. -{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. +{key_generator, {uniform_int, 5000000}}. -{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. +{value_generator, {fixed_bin, 10}}. -{operations, [{append, 1}, {read, 1}]}. +{operations, [{static_tx, 1}, {interactive_tx,1}]}. %%, {append, 1}, {read, 1}]}. %% the second element in the list below (e.g., "../../public/bitcask") must point to %% the relevant directory of a bitcask installation diff --git a/src/.basho_bench_driver_floppystore.erl.swp b/src/.basho_bench_driver_floppystore.erl.swp index 879323d765b5f1a7aa855be634b5afa8f33f7000..d0e91e12e495a73d1d7abda1abdb201ba01fdf10 100644 GIT binary patch literal 16384 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 G9{wK~#XTbc delta 1808 zcma*nUu;uV90%~Vo+}`y=U!B+k0z! z3)H&ZYJ7pHi8&HqM0pg557Gxsd=VogI-*e%<-x?nh>6ArW1t!LNXycE}+K7MA*WHEJ3krTv9|c*;t!yMRAr0d&21C#b3S7CJ=x2BvPQWBgz+Tu2 z*Eb*^1UwH0%)kVU!<}#$-M#`7Fb?;F7yj%dmp<$ydL0%Z2|nlmFMM|!(MiaI4P!72 zyI>t$=pd>>3iiTPFVR2nH=Kpza2WQ(bq~?E@Cht{1+yNPD1nCnc;Q#XZ4o|#Q}7nV zAPB##Bl;MU5QQ#~vHVQNvz6HYr0H^=7g>TCX3~kzamP)jwG1y8!!lzZK1NhVH*13z z3U-0*co=1FT28i68Ruo$rplhs3wmz;q4pX+S#CuV*8)K|ZPbT@q0H*p5`TH zjWaUs_?%tH=}tJ{KE-uI_8nh1vS0;NcCbDW#HtmwMwBs3nQ==KW-+8A!lp_!sxlHTVYJ2YFv*;Au#JAFg5&H8=xuLho&;DV|GRB0uaABeCt93%X_4 zxp>Jk<%)-+JCPzaGuELn8C^#8-JLayPBCsd>F|M4PGu8#jSPw_v3`$y6dNDx-IU^v z)@V%QS)L2aj9TBw7Nu8)dej)C8zLPZHDvo@cYKHVqyN>d!J=H~%F?1OAE$ZoVqjKW z4)i^@v}SDW&Ayypf2zoRFx0vXXjN|8E3Sfwdy5xbiMuWB@m %% Choose the node using our ID as a modulus TargetNode = lists:nth((Id rem length(Nodes)+1), Nodes), ?INFO("Using target node ~p for worker ~p\n", [TargetNode, Id]), - KeyDict= dict:new(), + %KeyDict= dict:new(), TypeDict = dict:from_list(Types), - {ok, #state{node=TargetNode, type_dict=TypeDict, key_dict=KeyDict}}. + {ok, #state{node=TargetNode, time=1, worker_id=Id, type_dict=TypeDict}}. - -run(read, KeyGen, _ValueGen, State=#state{node=Node, key_dict=KeyDict}) -> - %State1 = maybe_sync(State), +%% @doc Read a key +run(read, KeyGen, _ValueGen, State=#state{node=Node}) -> Key = KeyGen(), - KeyType = case dict:find(Key, KeyDict) of - {ok, Type} -> io:format("ReadType:~w~n", [Type]), hd(Type); - _ -> riak_dt_gcounter - end, - Res = rpc:call(Node, floppy, read, [Key, KeyType], ?TIMEOUT), + KeyType = get_key_type(Key), + BinaryKey = Key,%<<(Key):32/big>>, + Res = rpc:call(Node, floppy, read, [BinaryKey, KeyType], ?TIMEOUT), case Res of {ok, _Value} -> {ok, State}; @@ -94,34 +92,62 @@ run(read, KeyGen, _ValueGen, State=#state{node=Node, key_dict=KeyDict}) -> _Reason -> {ok, State} end; -run(append, KeyGen, ValueGen, State=#state{node=Node, key_dict=KeyDict, type_dict=TypeDict}) -> +%% @doc Write to a key +run(append, KeyGen, ValueGen, State=#state{node=Node, worker_id=Id, type_dict=TypeDict}) -> Key = KeyGen(), - {NewKeyDict, KeyParam} = case dict:find(Key, KeyDict) of - {ok, Type} -> - Param = get_random_param(TypeDict, hd(Type), ValueGen), - {KeyDict, Param}; - error -> - Types = dict:fetch_keys(TypeDict), - Type = get_random_elem(Types), - Dict2 = dict:append(Key, Type, KeyDict), - Param = get_random_param(TypeDict, Type, ValueGen), - {Dict2, Param} - end, - Res = rpc:call(Node, floppy, append, [Key, KeyParam], ?TIMEOUT), + Type = get_key_type(Key), + BinaryKey = Key,%<<(Key):32/big>>, + KeyParam = get_random_param(TypeDict, Type, Id, ValueGen()), + Res = rpc:call(Node, floppy, append, [BinaryKey, KeyParam], ?TIMEOUT), case Res of {ok, _Result} -> - {ok, State#state{key_dict=NewKeyDict}}; + {ok, State}; {error, Reason} -> {error, Reason}; {badrpc, Reason} -> {badrpc, Reason}; _ -> {ok, State} + end; +%% @doc Start a static transaction +run(static_tx, KeyGen, ValueGen, State=#state{node=Node, worker_id=Id, type_dict=Dict}) -> + random:seed(now()), + NumAppend = random:uniform(10), + NumRead = random:uniform(10), + ListAppends = get_random_append_ops(NumAppend, Dict, Id, KeyGen, ValueGen), + ListReads = get_random_read_ops(NumRead, KeyGen), + ListOps = ListAppends++ListReads, + Res = rpc:call(Node, floppy, clockSI_execute_TX, [1, ListOps], ?TIMEOUT), + case Res of + {ok, _ReadSet, CommitTime} -> + {ok, State#state{time=CommitTime}}; + {error, Reason} -> + {error, Reason}; + {badrpc, Reason} -> + {badrpc, Reason}; + _Reason -> + {ok, State} + end; +run(interactive_tx, KeyGen, ValueGen, State=#state{node=Node, worker_id=Id, type_dict=Dict}) -> + random:seed(now()), + NumAppend = random:uniform(10), + NumRead = random:uniform(10), + ListAppends = get_random_append_ops(NumAppend, Dict, Id, KeyGen, ValueGen), + ListReads = get_random_read_ops(NumRead, KeyGen), + ListOps = ListAppends++ListReads, + Res = rpc:call(Node, floppy, clockSI_execute_TX, [1, ListOps], ?TIMEOUT), + case Res of + {ok, _ReadSet, CommitTime} -> + {ok, State#state{time=CommitTime}}; + {error, Reason} -> + {error, Reason}; + {badrpc, Reason} -> + {badrpc, Reason}; + _Reason -> + {ok, State} end. -floppy_valgen(Id) -> - Id. %% Private ping_each([]) -> @@ -135,12 +161,16 @@ ping_each([Node | Rest]) -> ?FAIL_MSG("Failed to ping node ~p\n", [Node]) end. -get_random_elem(List) -> - random:seed(now()), - Num = random:uniform(length(List)), - lists:nth(Num, List). +get_key_type(_Key) -> + %Rem = Key rem 10, + %case Rem > 5 of + % true -> + riak_dt_gcounter. + % false -> + % riak_dt_gset + %end. -get_random_param(Dict, Type, Actor) -> +get_random_param(Dict, Type, Actor, Value) -> Params = dict:fetch(Type, Dict), random:seed(now()), Num = random:uniform(length(Params)), @@ -148,6 +178,24 @@ get_random_param(Dict, Type, Actor) -> riak_dt_gcounter -> {lists:nth(Num, Params), Actor}; riak_dt_gset -> - {{lists:nth(Num, Params), random:uniform(10000)}, Actor} + {{lists:nth(Num, Params), Value}, Actor} end. +get_random_append_op(Key, Dict, Actor, Value) -> + Type = get_key_type(Key), + Params = get_random_param(Dict, Type, Actor, Value), + {update, Key, Params}. + +get_random_read_op(Key) -> + Type = get_key_type(Key), + {read, Key, Type}. + +get_random_append_ops(Num, Dict, Actor, KeyGen, ValueGen) -> + %KeyList = [<<(KeyGen()):32/big>> || _ <- lists:seq(1, Num)], + KeyList = [KeyGen() || _ <- lists:seq(1, Num)], + [get_random_append_op(Key, Dict, Actor, ValueGen()) || Key <- KeyList]. + +get_random_read_ops(Num, KeyGen) -> + %KeyList = [<<(KeyGen()):32/big>> || _ <- lists:seq(1, Num)], + KeyList = [KeyGen() || _ <- lists:seq(1, Num)], + [get_random_read_op(Key) || Key <- KeyList]. From a19b8365651d6b0586b0b2be3296fa779fbd10ff Mon Sep 17 00:00:00 2001 From: Zhongmiao Li Date: Wed, 23 Jul 2014 14:50:56 +0200 Subject: [PATCH 6/9] Add interactive transaction --- examples/floppstore.config | 4 ++-- src/.basho_bench_driver_floppystore.erl.swp | Bin 16384 -> 0 bytes src/basho_bench_driver_floppystore.erl | 24 ++++++++++++++------ 3 files changed, 19 insertions(+), 9 deletions(-) delete mode 100644 src/.basho_bench_driver_floppystore.erl.swp diff --git a/examples/floppstore.config b/examples/floppstore.config index a222d5344..4ba74300f 100644 --- a/examples/floppstore.config +++ b/examples/floppstore.config @@ -2,7 +2,7 @@ {duration, 1}. -{concurrent, 2}. +{concurrent, 5}. {driver, basho_bench_driver_floppystore}. @@ -10,7 +10,7 @@ {value_generator, {fixed_bin, 10}}. -{operations, [{static_tx, 1}, {interactive_tx,1}]}. %%, {append, 1}, {read, 1}]}. +{operations, [{static_tx, 1}, {interactive_tx,1}].%% , {append, 1}, {read, 1}]}. %% the second element in the list below (e.g., "../../public/bitcask") must point to %% the relevant directory of a bitcask installation diff --git a/src/.basho_bench_driver_floppystore.erl.swp b/src/.basho_bench_driver_floppystore.erl.swp deleted file mode 100644 index d0e91e12e495a73d1d7abda1abdb201ba01fdf10..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 16384 zcmeI3U2Ggz6~`wHEd*#A1&Jy}Lbq-Wv&!1Lc9NEE;-rq9lqLR%yz7|ax~uD%ySvk! zote(e#$Ft!Qmcwc0jX76iI+Z9h!zPR5S0*>B6tBI0RkaFg{O)N+CY(b;QN7(|G9H# zcGhbrQQL?>*<-uQRi&#k1vEcF*WR4aZ(h+u!(c<%u6%-1UuyrrFkK z>FPBP+iG)T)pc9fNO=JQ3)8OAX$vO|3bWn#cfl8)8(5+1TOuf|@}TL~R)u3U3xRK> z&ugY{ofCeoZo8h>4Uj>M3g5m)x!LVZ1DOU$12=02$H$8F>&~G&*oXEl($DP3G>~Z^ z(?F(yOaqw)G7V%J$TW~?;QvGep?8D!DB601YHwS8@7nVHZ*@GVt~*=qtJCZ&(?F(y zOaqw)G7V%J$TW~?Ak#pmflLFL1~Ls~8h96KfSa0j8|w82ZTRv0Ki>bpe5&;?82Q{V^~2V>yxdo=Ca;9)Qh#=u_i z=KD15m*6=N0uz+MU*4-}e*kZS%iwWv7A%4yxE<^VS8md@uYx+50Uraux)CzL_rT}D zIyego;Enfa+AH8Y;016AIA8%B0(XEtKm)(qt!ZBXU9b!efj=QQ^A+$#@F=K*(_j?r z1Am6?$bPTKL7PE8W9q1}kz-nXLf;#!-1I#o&lUs^Txau0a(C;UftCP=JP@c?z}&j575$uGsBOvMwyn>(rpUACRggU6o+lhL z&z4VE4)?pKMK{mzafbW6y^?3gtL52~^NZD7UW$tEKwd+HHJ>}C+pc+(Sg&?HF>M)P zp3$#7D?{p8Zg<4}!qIa|KvD`MP+7xAkLvi&l@5*4};hh-EoS>Rg5j7LlpP;g-9h*5) z=XWGcJL0;C<&4pZem+&yxe&}xf`u{^t``)rO%VX-@*%H&?9x{n@XTR|v0OrZM3 zFse>YrxH10O;>l0m*-B+>qCoyA$XAe3<=*H=)mdzCHNlNoWFn{Pcc~B2eMa{&L?uF1-r>;ikoEC?8h09{0K<%dcjPRg z2CgZ2qT02*bK*QxDcSk+Y>piriQ2T1)TQiLp~dlTonTP`Qk^^0ipEIUG-@6l$4^a` zXKJ&R`}Lty+_Hs9?ZO!2hs;5hF|s(qmJ%;`rNlbNXXmFEXHLeW|4L4i!tk+i_1^2Y zQk_;M-QYI4eYYly73hbx&7>E{a+Ukci4fzKtdmMjW{aJM{7KKPYYC+a)*2#q$jOMAI(sbaZ~Rq!n#h~YLw8y^wj%_a?Fo=M^w;t zW^8w;3Gjb5+bh2+izt`0astYwkBZCZh5#Ifz>vRk( zF`~=#xvbnKZ6Lay^1%xMI`ShO%ZGkbS|q1j6^x&Qi}F=lFw8^-YQ#JqHb-g1&`1y+ zj_cIKI)(=7n`*Tq%}(h{YfTHiIg*?<_$+S;7Ib{UR;>`pTg<{}5ErM>I94|0L`pO1 z#5-`1oXIogcTAinTc7$EZehhiL-l4Z8o^Wdddq}uZ(?fbDKyTOOcZ%-#21F^n>xBr z2oII35nMGz-ExGkmRfl>RxB1#wl-ophTTEe97?(JXw$cc=x!{ZVfj-yw1P_`V%>B7 zP+x}H3uExP5jiRgJ(Yc%SAmfeIvsiY2gH!1j$;a64(l_PA)G)+`GF@4t8N*LhV>3_ z2-a}%PO?Mp<_W)T1%c%{a306R4Ar)vB0495r^|EGc_u7OKR!bn;pAA{`pjy3wk6C_ z#wsG3oK%5w+(l~2JTzHh<;oB{FxhU5ZiHZxkScv>Fs<%2Oxj zDkn$AM~f;8NALE!@vItagNGzetQ*1$8OkwSQXF>-!PcPEK2tIFfZJhh4k4={w`5Ds z3ZHDlP!7{+4KSo659N-qu1fB>A?wIB0u)lmj7Vixo9cwLs?_a?_|5b1q(B8ichQV&|688C4|L zFL)jM{hxzxflD9&$G~B52k0`eR>%+Kudw z)p{hb?ljRQz~$p2r=A_6JlAJ z-toxz6Cx8DiA0^Cwn$~Aj$$#gU{gam*|)@M^W7p)6oeX|0RKA6%v&Z&?&c#Jz5nz z-py3Ek`1Adw^1p{`ZXz^Z3G7n&iR{`Xr8*9R-HQ)GPSz%~s^ zQQVwd7CzjI7G^$77TW#+Tjs-W*@r1iW*P6e`(i+rkMt@sTF)tJk78Jet`ty@aUJcN G9{wK~#XTbc diff --git a/src/basho_bench_driver_floppystore.erl b/src/basho_bench_driver_floppystore.erl index 101d0d067..a6c65e0fb 100644 --- a/src/basho_bench_driver_floppystore.erl +++ b/src/basho_bench_driver_floppystore.erl @@ -74,7 +74,7 @@ new(Id) -> ?INFO("Using target node ~p for worker ~p\n", [TargetNode, Id]), %KeyDict= dict:new(), TypeDict = dict:from_list(Types), - {ok, #state{node=TargetNode, time=1, worker_id=Id, type_dict=TypeDict}}. + {ok, #state{node=TargetNode, time={1,1,1}, worker_id=Id, type_dict=TypeDict}}. %% @doc Read a key run(read, KeyGen, _ValueGen, State=#state{node=Node}) -> @@ -110,14 +110,14 @@ run(append, KeyGen, ValueGen, State=#state{node=Node, worker_id=Id, type_dict=Ty {ok, State} end; %% @doc Start a static transaction -run(static_tx, KeyGen, ValueGen, State=#state{node=Node, worker_id=Id, type_dict=Dict}) -> +run(static_tx, KeyGen, ValueGen, State=#state{node=Node, time=ClientTime, worker_id=Id, type_dict=Dict}) -> random:seed(now()), NumAppend = random:uniform(10), NumRead = random:uniform(10), ListAppends = get_random_append_ops(NumAppend, Dict, Id, KeyGen, ValueGen), ListReads = get_random_read_ops(NumRead, KeyGen), ListOps = ListAppends++ListReads, - Res = rpc:call(Node, floppy, clockSI_execute_TX, [1, ListOps], ?TIMEOUT), + Res = rpc:call(Node, floppy, clockSI_execute_TX, [ClientTime, ListOps], ?TIMEOUT), case Res of {ok, _ReadSet, CommitTime} -> {ok, State#state{time=CommitTime}}; @@ -135,10 +135,19 @@ run(interactive_tx, KeyGen, ValueGen, State=#state{node=Node, worker_id=Id, type ListAppends = get_random_append_ops(NumAppend, Dict, Id, KeyGen, ValueGen), ListReads = get_random_read_ops(NumRead, KeyGen), ListOps = ListAppends++ListReads, - Res = rpc:call(Node, floppy, clockSI_execute_TX, [1, ListOps], ?TIMEOUT), - case Res of - {ok, _ReadSet, CommitTime} -> - {ok, State#state{time=CommitTime}}; + RandomOps = [X||{_,X} <- lists:sort([ {random:uniform(), N} || N <- ListOps])], + {ok, TxId} = rpc:call(Node, floppy, clockSI_istart_tx, [now()], ?TIMEOUT), + ExecuteFun = fun(X) -> case X of + {update, UKey, UParam} -> ok = rpc:call(Node, floppy, clockSI_iupdate, [TxId, UKey, UParam]); + {read, RKey, RType} -> {ok, _} = rpc:call(Node, floppy, clockSI_iread, [TxId, RKey, RType]) + end + end, + lists:foreach(ExecuteFun, RandomOps), + {ok, _} = rpc:call(Node, floppy, clockSI_iprepare, [TxId]), + End=rpc:call(Node, floppy, clockSI_icommit, [TxId]), + case End of + {ok, _} -> + {ok, State}; {error, Reason} -> {error, Reason}; {badrpc, Reason} -> @@ -181,6 +190,7 @@ get_random_param(Dict, Type, Actor, Value) -> {{lists:nth(Num, Params), Value}, Actor} end. + get_random_append_op(Key, Dict, Actor, Value) -> Type = get_key_type(Key), Params = get_random_param(Dict, Type, Actor, Value), From 8c583836184952512ad2b5847448807d32d7ec6c Mon Sep 17 00:00:00 2001 From: Zhongmiao Li Date: Wed, 23 Jul 2014 20:35:26 +0200 Subject: [PATCH 7/9] Fix a mistake in config --- examples/floppstore.config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/floppstore.config b/examples/floppstore.config index 4ba74300f..1413752d5 100644 --- a/examples/floppstore.config +++ b/examples/floppstore.config @@ -10,7 +10,7 @@ {value_generator, {fixed_bin, 10}}. -{operations, [{static_tx, 1}, {interactive_tx,1}].%% , {append, 1}, {read, 1}]}. +{operations, [{static_tx, 1}, {interactive_tx,1}]}. %% , {append, 1}, {read, 1}]}. %% the second element in the list below (e.g., "../../public/bitcask") must point to %% the relevant directory of a bitcask installation From e2eb53bc68426759658bc9eace2cbe28688f1b71 Mon Sep 17 00:00:00 2001 From: Zhongmiao Li Date: Wed, 13 Aug 2014 21:35:34 +0200 Subject: [PATCH 8/9] Adapt to interface changes of floppystore --- examples/floppstore.config | 9 +- newtests/20140701_112946/append_latencies.csv | 8 + newtests/20140701_112946/console.log | 43 ++ newtests/20140701_112946/crash.log | 0 newtests/20140701_112946/error.log | 0 newtests/20140701_112946/errors.csv | 1 + newtests/20140701_112946/floppstore.config | 22 + newtests/20140701_112946/log.sasl.txt | 183 +++++++ newtests/20140701_112946/read_latencies.csv | 8 + newtests/20140701_112946/summary.csv | 8 + newtests/20140709_125412/append_latencies.csv | 8 + newtests/20140709_125412/console.log | 43 ++ newtests/20140709_125412/crash.log | 0 newtests/20140709_125412/error.log | 0 newtests/20140709_125412/errors.csv | 1 + newtests/20140709_125412/floppstore.config | 22 + newtests/20140709_125412/log.sasl.txt | 183 +++++++ newtests/20140709_125412/read_latencies.csv | 8 + newtests/20140709_125412/summary.csv | 8 + newtests/20140711_182613/append_latencies.csv | 1 + newtests/20140711_182613/console.log | 35 ++ newtests/20140711_182613/crash.log | 0 newtests/20140711_182613/error.log | 1 + newtests/20140711_182613/errors.csv | 1 + newtests/20140711_182613/floppstore.config | 22 + newtests/20140711_182613/log.sasl.txt | 159 ++++++ newtests/20140711_182613/read_latencies.csv | 1 + newtests/20140711_182613/summary.csv | 1 + newtests/20140711_182632/append_latencies.csv | 2 + newtests/20140711_182632/console.log | 93 ++++ newtests/20140711_182632/crash.log | 42 ++ newtests/20140711_182632/error.log | 13 + newtests/20140711_182632/errors.csv | 2 + newtests/20140711_182632/floppstore.config | 22 + newtests/20140711_182632/log.sasl.txt | 336 +++++++++++++ newtests/20140711_182632/read_latencies.csv | 2 + newtests/20140711_182632/summary.csv | 2 + newtests/20140711_182641/append_latencies.csv | 2 + newtests/20140711_182641/console.log | 92 ++++ newtests/20140711_182641/crash.log | 42 ++ newtests/20140711_182641/error.log | 13 + newtests/20140711_182641/errors.csv | 2 + newtests/20140711_182641/floppstore.config | 22 + newtests/20140711_182641/log.sasl.txt | 336 +++++++++++++ newtests/20140711_182641/read_latencies.csv | 2 + newtests/20140711_182641/summary.csv | 2 + newtests/20140716_154312/append_latencies.csv | 1 + newtests/20140716_154312/console.log | 35 ++ newtests/20140716_154312/crash.log | 0 newtests/20140716_154312/error.log | 1 + newtests/20140716_154312/errors.csv | 1 + newtests/20140716_154312/floppstore.config | 23 + newtests/20140716_154312/log.sasl.txt | 159 ++++++ newtests/20140716_154312/read_latencies.csv | 1 + newtests/20140716_154312/summary.csv | 1 + newtests/20140716_154402/append_latencies.csv | 1 + newtests/20140716_154402/console.log | 35 ++ newtests/20140716_154402/crash.log | 0 newtests/20140716_154402/error.log | 1 + newtests/20140716_154402/errors.csv | 1 + newtests/20140716_154402/floppstore.config | 23 + newtests/20140716_154402/log.sasl.txt | 159 ++++++ newtests/20140716_154402/read_latencies.csv | 1 + newtests/20140716_154402/summary.csv | 1 + newtests/20140716_154446/append_latencies.csv | 2 + newtests/20140716_154446/console.log | 91 ++++ newtests/20140716_154446/crash.log | 42 ++ newtests/20140716_154446/error.log | 13 + newtests/20140716_154446/errors.csv | 2 + newtests/20140716_154446/floppstore.config | 23 + newtests/20140716_154446/log.sasl.txt | 336 +++++++++++++ newtests/20140716_154446/read_latencies.csv | 2 + newtests/20140716_154446/summary.csv | 2 + newtests/20140716_155207/append_latencies.csv | 2 + newtests/20140716_155207/console.log | 105 ++++ newtests/20140716_155207/crash.log | 42 ++ newtests/20140716_155207/error.log | 13 + newtests/20140716_155207/errors.csv | 2 + newtests/20140716_155207/floppstore.config | 23 + newtests/20140716_155207/log.sasl.txt | 336 +++++++++++++ newtests/20140716_155207/read_latencies.csv | 2 + newtests/20140716_155207/summary.csv | 2 + newtests/20140716_155332/append_latencies.csv | 2 + newtests/20140716_155332/console.log | 105 ++++ newtests/20140716_155332/crash.log | 42 ++ newtests/20140716_155332/error.log | 13 + newtests/20140716_155332/errors.csv | 2 + newtests/20140716_155332/floppstore.config | 23 + newtests/20140716_155332/log.sasl.txt | 336 +++++++++++++ newtests/20140716_155332/read_latencies.csv | 2 + newtests/20140716_155332/summary.csv | 2 + newtests/20140716_155458/console.log | 0 newtests/20140716_155458/crash.log | 0 newtests/20140716_155458/error.log | 0 newtests/20140716_155521/append_latencies.csv | 2 + newtests/20140716_155521/console.log | 105 ++++ newtests/20140716_155521/crash.log | 42 ++ newtests/20140716_155521/error.log | 13 + newtests/20140716_155521/errors.csv | 2 + newtests/20140716_155521/floppstore.config | 23 + newtests/20140716_155521/log.sasl.txt | 336 +++++++++++++ newtests/20140716_155521/read_latencies.csv | 2 + newtests/20140716_155521/summary.csv | 2 + newtests/20140716_155627/append_latencies.csv | 2 + newtests/20140716_155627/console.log | 106 ++++ newtests/20140716_155627/crash.log | 42 ++ newtests/20140716_155627/error.log | 13 + newtests/20140716_155627/errors.csv | 2 + newtests/20140716_155627/floppstore.config | 23 + newtests/20140716_155627/log.sasl.txt | 336 +++++++++++++ newtests/20140716_155627/read_latencies.csv | 2 + newtests/20140716_155627/summary.csv | 2 + newtests/20140716_160035/append_latencies.csv | 2 + newtests/20140716_160035/console.log | 105 ++++ newtests/20140716_160035/crash.log | 42 ++ newtests/20140716_160035/error.log | 13 + newtests/20140716_160035/errors.csv | 2 + newtests/20140716_160035/floppstore.config | 23 + newtests/20140716_160035/log.sasl.txt | 336 +++++++++++++ newtests/20140716_160035/read_latencies.csv | 2 + newtests/20140716_160035/summary.csv | 2 + newtests/20140716_160222/append_latencies.csv | 2 + newtests/20140716_160222/console.log | 106 ++++ newtests/20140716_160222/crash.log | 42 ++ newtests/20140716_160222/error.log | 13 + newtests/20140716_160222/errors.csv | 2 + newtests/20140716_160222/floppstore.config | 23 + newtests/20140716_160222/log.sasl.txt | 336 +++++++++++++ newtests/20140716_160222/read_latencies.csv | 2 + newtests/20140716_160222/summary.csv | 2 + newtests/20140716_160324/console.log | 0 newtests/20140716_160324/crash.log | 0 newtests/20140716_160324/error.log | 0 newtests/20140716_160324/floppstore.config | 23 + newtests/20140716_160324/log.sasl.txt | 42 ++ newtests/20140716_160337/append_latencies.csv | 2 + newtests/20140716_160337/console.log | 98 ++++ newtests/20140716_160337/crash.log | 42 ++ newtests/20140716_160337/error.log | 13 + newtests/20140716_160337/errors.csv | 2 + newtests/20140716_160337/floppstore.config | 23 + newtests/20140716_160337/log.sasl.txt | 336 +++++++++++++ newtests/20140716_160337/read_latencies.csv | 2 + newtests/20140716_160337/summary.csv | 2 + newtests/20140716_160632/append_latencies.csv | 2 + newtests/20140716_160632/console.log | 98 ++++ newtests/20140716_160632/crash.log | 42 ++ newtests/20140716_160632/error.log | 13 + newtests/20140716_160632/errors.csv | 2 + newtests/20140716_160632/floppstore.config | 23 + newtests/20140716_160632/log.sasl.txt | 336 +++++++++++++ newtests/20140716_160632/read_latencies.csv | 2 + newtests/20140716_160632/summary.csv | 2 + newtests/20140716_161238/append_latencies.csv | 2 + newtests/20140716_161238/console.log | 91 ++++ newtests/20140716_161238/crash.log | 42 ++ newtests/20140716_161238/error.log | 13 + newtests/20140716_161238/errors.csv | 2 + newtests/20140716_161238/floppstore.config | 23 + newtests/20140716_161238/log.sasl.txt | 336 +++++++++++++ newtests/20140716_161238/read_latencies.csv | 2 + newtests/20140716_161238/summary.csv | 2 + newtests/20140716_161437/append_latencies.csv | 2 + newtests/20140716_161437/console.log | 91 ++++ newtests/20140716_161437/crash.log | 42 ++ newtests/20140716_161437/error.log | 13 + newtests/20140716_161437/errors.csv | 2 + newtests/20140716_161437/floppstore.config | 23 + newtests/20140716_161437/log.sasl.txt | 336 +++++++++++++ newtests/20140716_161437/read_latencies.csv | 2 + newtests/20140716_161437/summary.csv | 2 + newtests/20140716_161530/append_latencies.csv | 2 + newtests/20140716_161530/console.log | 92 ++++ newtests/20140716_161530/crash.log | 42 ++ newtests/20140716_161530/error.log | 13 + newtests/20140716_161530/errors.csv | 2 + newtests/20140716_161530/floppstore.config | 23 + newtests/20140716_161530/log.sasl.txt | 336 +++++++++++++ newtests/20140716_161530/read_latencies.csv | 2 + newtests/20140716_161530/summary.csv | 2 + newtests/20140716_161614/append_latencies.csv | 2 + newtests/20140716_161614/console.log | 93 ++++ newtests/20140716_161614/crash.log | 42 ++ newtests/20140716_161614/error.log | 13 + newtests/20140716_161614/errors.csv | 2 + newtests/20140716_161614/floppstore.config | 23 + newtests/20140716_161614/log.sasl.txt | 336 +++++++++++++ newtests/20140716_161614/read_latencies.csv | 2 + newtests/20140716_161614/summary.csv | 2 + newtests/20140716_162007/append_latencies.csv | 2 + newtests/20140716_162007/console.log | 100 ++++ newtests/20140716_162007/crash.log | 60 +++ newtests/20140716_162007/error.log | 31 ++ newtests/20140716_162007/errors.csv | 1 + newtests/20140716_162007/floppstore.config | 23 + newtests/20140716_162007/log.sasl.txt | 336 +++++++++++++ newtests/20140716_162007/read_latencies.csv | 2 + newtests/20140716_162007/summary.csv | 2 + newtests/20140716_162303/append_latencies.csv | 2 + newtests/20140716_162303/console.log | 101 ++++ newtests/20140716_162303/crash.log | 60 +++ newtests/20140716_162303/error.log | 31 ++ newtests/20140716_162303/errors.csv | 1 + newtests/20140716_162303/floppstore.config | 23 + newtests/20140716_162303/log.sasl.txt | 336 +++++++++++++ newtests/20140716_162303/read_latencies.csv | 2 + newtests/20140716_162303/summary.csv | 2 + newtests/20140716_162722/append_latencies.csv | 2 + newtests/20140716_162722/console.log | 100 ++++ newtests/20140716_162722/crash.log | 60 +++ newtests/20140716_162722/error.log | 31 ++ newtests/20140716_162722/errors.csv | 1 + newtests/20140716_162722/floppstore.config | 23 + newtests/20140716_162722/log.sasl.txt | 336 +++++++++++++ newtests/20140716_162722/read_latencies.csv | 2 + newtests/20140716_162722/summary.csv | 2 + newtests/20140716_163000/append_latencies.csv | 2 + newtests/20140716_163000/console.log | 100 ++++ newtests/20140716_163000/crash.log | 60 +++ newtests/20140716_163000/error.log | 31 ++ newtests/20140716_163000/errors.csv | 1 + newtests/20140716_163000/floppstore.config | 23 + newtests/20140716_163000/log.sasl.txt | 336 +++++++++++++ newtests/20140716_163000/read_latencies.csv | 2 + newtests/20140716_163000/summary.csv | 2 + newtests/20140716_163347/append_latencies.csv | 2 + newtests/20140716_163347/console.log | 100 ++++ newtests/20140716_163347/crash.log | 60 +++ newtests/20140716_163347/error.log | 31 ++ newtests/20140716_163347/errors.csv | 1 + newtests/20140716_163347/floppstore.config | 23 + newtests/20140716_163347/log.sasl.txt | 336 +++++++++++++ newtests/20140716_163347/read_latencies.csv | 2 + newtests/20140716_163347/summary.csv | 2 + newtests/20140716_163407/append_latencies.csv | 2 + newtests/20140716_163407/console.log | 100 ++++ newtests/20140716_163407/crash.log | 60 +++ newtests/20140716_163407/error.log | 31 ++ newtests/20140716_163407/errors.csv | 1 + newtests/20140716_163407/floppstore.config | 23 + newtests/20140716_163407/log.sasl.txt | 336 +++++++++++++ newtests/20140716_163407/read_latencies.csv | 2 + newtests/20140716_163407/summary.csv | 2 + newtests/20140716_164802/append_latencies.csv | 2 + newtests/20140716_164802/console.log | 89 ++++ newtests/20140716_164802/crash.log | 42 ++ newtests/20140716_164802/error.log | 13 + newtests/20140716_164802/errors.csv | 2 + newtests/20140716_164802/floppstore.config | 23 + newtests/20140716_164802/log.sasl.txt | 336 +++++++++++++ newtests/20140716_164802/read_latencies.csv | 2 + newtests/20140716_164802/summary.csv | 2 + newtests/20140716_165104/append_latencies.csv | 2 + newtests/20140716_165104/console.log | 89 ++++ newtests/20140716_165104/crash.log | 42 ++ newtests/20140716_165104/error.log | 13 + newtests/20140716_165104/errors.csv | 2 + newtests/20140716_165104/floppstore.config | 23 + newtests/20140716_165104/log.sasl.txt | 336 +++++++++++++ newtests/20140716_165104/read_latencies.csv | 2 + newtests/20140716_165104/summary.csv | 2 + newtests/20140716_165306/append_latencies.csv | 2 + newtests/20140716_165306/console.log | 91 ++++ newtests/20140716_165306/crash.log | 45 ++ newtests/20140716_165306/error.log | 16 + newtests/20140716_165306/errors.csv | 2 + newtests/20140716_165306/floppstore.config | 23 + newtests/20140716_165306/log.sasl.txt | 336 +++++++++++++ newtests/20140716_165306/read_latencies.csv | 2 + newtests/20140716_165306/summary.csv | 2 + newtests/20140716_165356/append_latencies.csv | 2 + newtests/20140716_165356/console.log | 91 ++++ newtests/20140716_165356/crash.log | 45 ++ newtests/20140716_165356/error.log | 16 + newtests/20140716_165356/errors.csv | 2 + newtests/20140716_165356/floppstore.config | 23 + newtests/20140716_165356/log.sasl.txt | 336 +++++++++++++ newtests/20140716_165356/read_latencies.csv | 2 + newtests/20140716_165356/summary.csv | 2 + newtests/20140716_170644/append_latencies.csv | 2 + newtests/20140716_170644/console.log | 92 ++++ newtests/20140716_170644/crash.log | 45 ++ newtests/20140716_170644/error.log | 16 + newtests/20140716_170644/errors.csv | 2 + newtests/20140716_170644/floppstore.config | 23 + newtests/20140716_170644/log.sasl.txt | 336 +++++++++++++ newtests/20140716_170644/read_latencies.csv | 2 + newtests/20140716_170644/summary.csv | 2 + newtests/20140716_170806/append_latencies.csv | 2 + newtests/20140716_170806/console.log | 99 ++++ newtests/20140716_170806/crash.log | 60 +++ newtests/20140716_170806/error.log | 31 ++ newtests/20140716_170806/errors.csv | 1 + newtests/20140716_170806/floppstore.config | 23 + newtests/20140716_170806/log.sasl.txt | 336 +++++++++++++ newtests/20140716_170806/read_latencies.csv | 2 + newtests/20140716_170806/summary.csv | 2 + newtests/20140716_202737/append_latencies.csv | 2 + newtests/20140716_202737/console.log | 99 ++++ newtests/20140716_202737/crash.log | 60 +++ newtests/20140716_202737/error.log | 31 ++ newtests/20140716_202737/errors.csv | 1 + newtests/20140716_202737/floppstore.config | 23 + newtests/20140716_202737/log.sasl.txt | 336 +++++++++++++ newtests/20140716_202737/read_latencies.csv | 2 + newtests/20140716_202737/summary.csv | 2 + newtests/20140716_202950/append_latencies.csv | 5 + newtests/20140716_202950/console.log | 149 ++++++ newtests/20140716_202950/crash.log | 105 ++++ newtests/20140716_202950/error.log | 56 +++ newtests/20140716_202950/errors.csv | 1 + newtests/20140716_202950/floppstore.config | 23 + newtests/20140716_202950/log.sasl.txt | 461 ++++++++++++++++++ newtests/20140716_202950/read_latencies.csv | 5 + newtests/20140716_202950/summary.csv | 5 + newtests/20140716_203343/append_latencies.csv | 2 + newtests/20140716_203343/console.log | 52 ++ newtests/20140716_203343/crash.log | 9 + newtests/20140716_203343/error.log | 5 + newtests/20140716_203343/errors.csv | 1 + newtests/20140716_203343/floppstore.config | 23 + newtests/20140716_203343/log.sasl.txt | 208 ++++++++ newtests/20140716_203343/read_latencies.csv | 2 + newtests/20140716_203343/summary.csv | 2 + newtests/20140716_203731/append_latencies.csv | 4 + newtests/20140716_203731/console.log | 105 ++++ newtests/20140716_203731/crash.log | 69 +++ newtests/20140716_203731/error.log | 36 ++ newtests/20140716_203731/errors.csv | 1 + newtests/20140716_203731/floppstore.config | 23 + newtests/20140716_203731/log.sasl.txt | 350 +++++++++++++ newtests/20140716_203731/read_latencies.csv | 4 + newtests/20140716_203731/summary.csv | 4 + newtests/20140716_204925/append_latencies.csv | 2 + newtests/20140716_204925/console.log | 96 ++++ newtests/20140716_204925/crash.log | 60 +++ newtests/20140716_204925/error.log | 31 ++ newtests/20140716_204925/errors.csv | 1 + newtests/20140716_204925/floppstore.config | 23 + newtests/20140716_204925/log.sasl.txt | 325 ++++++++++++ newtests/20140716_204925/read_latencies.csv | 2 + newtests/20140716_204925/summary.csv | 2 + newtests/20140716_205022/append_latencies.csv | 2 + newtests/20140716_205022/console.log | 88 ++++ newtests/20140716_205022/crash.log | 45 ++ newtests/20140716_205022/error.log | 25 + newtests/20140716_205022/errors.csv | 1 + newtests/20140716_205022/floppstore.config | 23 + newtests/20140716_205022/log.sasl.txt | 297 +++++++++++ newtests/20140716_205022/read_latencies.csv | 2 + newtests/20140716_205022/summary.csv | 2 + newtests/20140716_205202/append_latencies.csv | 3 + newtests/20140716_205202/console.log | 105 ++++ newtests/20140716_205202/crash.log | 69 +++ newtests/20140716_205202/error.log | 36 ++ newtests/20140716_205202/errors.csv | 1 + newtests/20140716_205202/floppstore.config | 23 + newtests/20140716_205202/log.sasl.txt | 350 +++++++++++++ newtests/20140716_205202/read_latencies.csv | 3 + newtests/20140716_205202/summary.csv | 3 + newtests/20140716_205355/append_latencies.csv | 8 + newtests/20140716_205355/console.log | 39 ++ newtests/20140716_205355/crash.log | 0 newtests/20140716_205355/error.log | 0 newtests/20140716_205355/errors.csv | 1 + newtests/20140716_205355/floppstore.config | 23 + newtests/20140716_205355/log.sasl.txt | 172 +++++++ newtests/20140716_205355/read_latencies.csv | 8 + newtests/20140716_205355/summary.csv | 8 + newtests/20140717_145625/append_latencies.csv | 3 + newtests/20140717_145625/console.log | 39 ++ newtests/20140717_145625/crash.log | 0 newtests/20140717_145625/error.log | 0 newtests/20140717_145625/errors.csv | 1 + newtests/20140717_145625/floppstore.config | 23 + newtests/20140717_145625/log.sasl.txt | 172 +++++++ newtests/20140717_145625/read_latencies.csv | 3 + newtests/20140717_145625/summary.csv | 3 + newtests/20140717_145733/append_latencies.csv | 1 + newtests/20140717_145733/console.log | 36 ++ newtests/20140717_145733/crash.log | 0 newtests/20140717_145733/error.log | 1 + newtests/20140717_145733/errors.csv | 1 + newtests/20140717_145733/floppstore.config | 23 + newtests/20140717_145733/log.sasl.txt | 159 ++++++ newtests/20140717_145733/read_latencies.csv | 1 + newtests/20140717_145733/summary.csv | 1 + newtests/20140717_145743/append_latencies.csv | 5 + newtests/20140717_145743/console.log | 103 ++++ newtests/20140717_145743/crash.log | 60 +++ newtests/20140717_145743/error.log | 31 ++ newtests/20140717_145743/errors.csv | 1 + newtests/20140717_145743/floppstore.config | 23 + newtests/20140717_145743/log.sasl.txt | 336 +++++++++++++ newtests/20140717_145743/read_latencies.csv | 5 + newtests/20140717_145743/summary.csv | 5 + newtests/20140717_151128/append_latencies.csv | 2 + newtests/20140717_151128/console.log | 96 ++++ newtests/20140717_151128/crash.log | 42 ++ newtests/20140717_151128/error.log | 13 + newtests/20140717_151128/errors.csv | 2 + newtests/20140717_151128/floppstore.config | 23 + newtests/20140717_151128/log.sasl.txt | 336 +++++++++++++ newtests/20140717_151128/read_latencies.csv | 2 + newtests/20140717_151128/summary.csv | 2 + newtests/20140717_151250/append_latencies.csv | 2 + newtests/20140717_151250/console.log | 94 ++++ newtests/20140717_151250/crash.log | 42 ++ newtests/20140717_151250/error.log | 13 + newtests/20140717_151250/errors.csv | 2 + newtests/20140717_151250/floppstore.config | 23 + newtests/20140717_151250/log.sasl.txt | 336 +++++++++++++ newtests/20140717_151250/read_latencies.csv | 2 + newtests/20140717_151250/summary.csv | 2 + newtests/20140717_151444/append_latencies.csv | 2 + newtests/20140717_151444/console.log | 94 ++++ newtests/20140717_151444/crash.log | 42 ++ newtests/20140717_151444/error.log | 13 + newtests/20140717_151444/errors.csv | 2 + newtests/20140717_151444/floppstore.config | 23 + newtests/20140717_151444/log.sasl.txt | 336 +++++++++++++ newtests/20140717_151444/read_latencies.csv | 2 + newtests/20140717_151444/summary.csv | 2 + newtests/20140717_151946/append_latencies.csv | 2 + newtests/20140717_151946/console.log | 94 ++++ newtests/20140717_151946/crash.log | 42 ++ newtests/20140717_151946/error.log | 13 + newtests/20140717_151946/errors.csv | 2 + newtests/20140717_151946/floppstore.config | 23 + newtests/20140717_151946/log.sasl.txt | 336 +++++++++++++ newtests/20140717_151946/read_latencies.csv | 2 + newtests/20140717_151946/summary.csv | 2 + newtests/20140717_152313/append_latencies.csv | 2 + newtests/20140717_152313/console.log | 95 ++++ newtests/20140717_152313/crash.log | 42 ++ newtests/20140717_152313/error.log | 13 + newtests/20140717_152313/errors.csv | 2 + newtests/20140717_152313/floppstore.config | 23 + newtests/20140717_152313/log.sasl.txt | 336 +++++++++++++ newtests/20140717_152313/read_latencies.csv | 2 + newtests/20140717_152313/summary.csv | 2 + newtests/20140717_152423/append_latencies.csv | 2 + newtests/20140717_152423/console.log | 95 ++++ newtests/20140717_152423/crash.log | 42 ++ newtests/20140717_152423/error.log | 13 + newtests/20140717_152423/errors.csv | 2 + newtests/20140717_152423/floppstore.config | 23 + newtests/20140717_152423/log.sasl.txt | 336 +++++++++++++ newtests/20140717_152423/read_latencies.csv | 2 + newtests/20140717_152423/summary.csv | 2 + newtests/20140717_153010/append_latencies.csv | 2 + newtests/20140717_153010/console.log | 96 ++++ newtests/20140717_153010/crash.log | 42 ++ newtests/20140717_153010/error.log | 13 + newtests/20140717_153010/errors.csv | 2 + newtests/20140717_153010/floppstore.config | 23 + newtests/20140717_153010/log.sasl.txt | 336 +++++++++++++ newtests/20140717_153010/read_latencies.csv | 2 + newtests/20140717_153010/summary.csv | 2 + newtests/20140717_154723/console.log | 12 + newtests/20140717_154723/crash.log | 0 newtests/20140717_154723/error.log | 1 + newtests/20140717_154801/append_latencies.csv | 8 + newtests/20140717_154801/console.log | 44 ++ newtests/20140717_154801/crash.log | 0 newtests/20140717_154801/error.log | 0 newtests/20140717_154801/errors.csv | 1 + newtests/20140717_154801/floppstore.config | 23 + newtests/20140717_154801/log.sasl.txt | 183 +++++++ newtests/20140717_154801/read_latencies.csv | 8 + newtests/20140717_154801/summary.csv | 8 + newtests/20140717_154801/summary.png | Bin 0 -> 169499 bytes newtests/20140722_105906/append_latencies.csv | 2 + newtests/20140722_105906/console.log | 98 ++++ newtests/20140722_105906/crash.log | 42 ++ newtests/20140722_105906/error.log | 13 + newtests/20140722_105906/errors.csv | 2 + newtests/20140722_105906/floppstore.config | 23 + .../interactive-tx_latencies.csv | 2 + newtests/20140722_105906/log.sasl.txt | 336 +++++++++++++ newtests/20140722_105906/read_latencies.csv | 2 + .../20140722_105906/static-tx_latencies.csv | 2 + newtests/20140722_105906/summary.csv | 2 + newtests/20140722_110309/append_latencies.csv | 2 + newtests/20140722_110309/console.log | 104 ++++ newtests/20140722_110309/crash.log | 60 +++ newtests/20140722_110309/error.log | 31 ++ newtests/20140722_110309/errors.csv | 1 + newtests/20140722_110309/floppstore.config | 23 + .../interactive-tx_latencies.csv | 2 + newtests/20140722_110309/log.sasl.txt | 336 +++++++++++++ newtests/20140722_110309/read_latencies.csv | 2 + .../20140722_110309/static-tx_latencies.csv | 2 + newtests/20140722_110309/summary.csv | 2 + newtests/20140722_110442/append_latencies.csv | 2 + newtests/20140722_110442/console.log | 105 ++++ newtests/20140722_110442/crash.log | 60 +++ newtests/20140722_110442/error.log | 31 ++ newtests/20140722_110442/errors.csv | 1 + newtests/20140722_110442/floppstore.config | 23 + .../interactive-tx_latencies.csv | 2 + newtests/20140722_110442/log.sasl.txt | 336 +++++++++++++ newtests/20140722_110442/read_latencies.csv | 2 + .../20140722_110442/static-tx_latencies.csv | 2 + newtests/20140722_110442/summary.csv | 2 + newtests/20140722_124623/append_latencies.csv | 2 + newtests/20140722_124623/console.log | 102 ++++ newtests/20140722_124623/crash.log | 60 +++ newtests/20140722_124623/error.log | 31 ++ newtests/20140722_124623/errors.csv | 1 + newtests/20140722_124623/floppstore.config | 23 + .../interactive-tx_latencies.csv | 2 + newtests/20140722_124623/log.sasl.txt | 336 +++++++++++++ newtests/20140722_124623/read_latencies.csv | 2 + .../20140722_124623/static-tx_latencies.csv | 2 + newtests/20140722_124623/summary.csv | 2 + newtests/20140722_124824/append_latencies.csv | 2 + newtests/20140722_124824/console.log | 104 ++++ newtests/20140722_124824/crash.log | 60 +++ newtests/20140722_124824/error.log | 31 ++ newtests/20140722_124824/errors.csv | 1 + newtests/20140722_124824/floppstore.config | 23 + .../interactive-tx_latencies.csv | 2 + newtests/20140722_124824/log.sasl.txt | 336 +++++++++++++ newtests/20140722_124824/read_latencies.csv | 2 + .../20140722_124824/static-tx_latencies.csv | 2 + newtests/20140722_124824/summary.csv | 2 + newtests/20140722_140229/append_latencies.csv | 2 + newtests/20140722_140229/console.log | 103 ++++ newtests/20140722_140229/crash.log | 60 +++ newtests/20140722_140229/error.log | 31 ++ newtests/20140722_140229/errors.csv | 1 + newtests/20140722_140229/floppstore.config | 23 + .../interactive-tx_latencies.csv | 2 + newtests/20140722_140229/log.sasl.txt | 336 +++++++++++++ newtests/20140722_140229/read_latencies.csv | 2 + .../20140722_140229/static-tx_latencies.csv | 2 + newtests/20140722_140229/summary.csv | 2 + newtests/20140722_140845/append_latencies.csv | 2 + newtests/20140722_140845/console.log | 103 ++++ newtests/20140722_140845/crash.log | 60 +++ newtests/20140722_140845/error.log | 31 ++ newtests/20140722_140845/errors.csv | 1 + newtests/20140722_140845/floppstore.config | 23 + .../interactive-tx_latencies.csv | 2 + newtests/20140722_140845/log.sasl.txt | 336 +++++++++++++ newtests/20140722_140845/read_latencies.csv | 2 + .../20140722_140845/static-tx_latencies.csv | 2 + newtests/20140722_140845/summary.csv | 2 + newtests/20140722_141942/append_latencies.csv | 2 + newtests/20140722_141942/console.log | 105 ++++ newtests/20140722_141942/crash.log | 60 +++ newtests/20140722_141942/error.log | 31 ++ newtests/20140722_141942/errors.csv | 1 + newtests/20140722_141942/floppstore.config | 23 + .../interactive-tx_latencies.csv | 2 + newtests/20140722_141942/log.sasl.txt | 336 +++++++++++++ newtests/20140722_141942/read_latencies.csv | 2 + .../20140722_141942/static-tx_latencies.csv | 2 + newtests/20140722_141942/summary.csv | 2 + newtests/20140722_142103/append_latencies.csv | 2 + newtests/20140722_142103/console.log | 103 ++++ newtests/20140722_142103/crash.log | 60 +++ newtests/20140722_142103/error.log | 31 ++ newtests/20140722_142103/errors.csv | 1 + newtests/20140722_142103/floppstore.config | 23 + .../interactive-tx_latencies.csv | 2 + newtests/20140722_142103/log.sasl.txt | 336 +++++++++++++ newtests/20140722_142103/read_latencies.csv | 2 + .../20140722_142103/static-tx_latencies.csv | 2 + newtests/20140722_142103/summary.csv | 2 + newtests/20140722_142202/append_latencies.csv | 2 + newtests/20140722_142202/console.log | 103 ++++ newtests/20140722_142202/crash.log | 60 +++ newtests/20140722_142202/error.log | 31 ++ newtests/20140722_142202/errors.csv | 1 + newtests/20140722_142202/floppstore.config | 23 + .../interactive-tx_latencies.csv | 2 + newtests/20140722_142202/log.sasl.txt | 336 +++++++++++++ newtests/20140722_142202/read_latencies.csv | 2 + .../20140722_142202/static-tx_latencies.csv | 2 + newtests/20140722_142202/summary.csv | 2 + newtests/20140722_142341/append_latencies.csv | 2 + newtests/20140722_142341/console.log | 105 ++++ newtests/20140722_142341/crash.log | 60 +++ newtests/20140722_142341/error.log | 31 ++ newtests/20140722_142341/errors.csv | 1 + newtests/20140722_142341/floppstore.config | 23 + .../interactive-tx_latencies.csv | 2 + newtests/20140722_142341/log.sasl.txt | 336 +++++++++++++ newtests/20140722_142341/read_latencies.csv | 2 + .../20140722_142341/static-tx_latencies.csv | 2 + newtests/20140722_142341/summary.csv | 2 + newtests/20140722_142917/append_latencies.csv | 2 + newtests/20140722_142917/console.log | 105 ++++ newtests/20140722_142917/crash.log | 60 +++ newtests/20140722_142917/error.log | 31 ++ newtests/20140722_142917/errors.csv | 1 + newtests/20140722_142917/floppstore.config | 23 + .../interactive-tx_latencies.csv | 2 + newtests/20140722_142917/log.sasl.txt | 336 +++++++++++++ newtests/20140722_142917/read_latencies.csv | 2 + .../20140722_142917/static-tx_latencies.csv | 2 + newtests/20140722_142917/summary.csv | 2 + newtests/20140722_143932/console.log | 12 + newtests/20140722_143932/crash.log | 0 newtests/20140722_143932/error.log | 1 + newtests/20140722_143955/console.log | 75 +++ newtests/20140722_143955/crash.log | 27 + newtests/20140722_143955/error.log | 15 + newtests/20140722_143955/errors.csv | 1 + newtests/20140722_143955/floppstore.config | 23 + newtests/20140722_143955/log.sasl.txt | 258 ++++++++++ .../20140722_143955/static-tx_latencies.csv | 6 + newtests/20140722_143955/summary.csv | 6 + newtests/20140722_144135/console.log | 36 ++ newtests/20140722_144135/crash.log | 0 newtests/20140722_144135/error.log | 1 + newtests/20140722_144135/errors.csv | 1 + newtests/20140722_144135/floppstore.config | 23 + newtests/20140722_144135/log.sasl.txt | 159 ++++++ .../20140722_144135/static-tx_latencies.csv | 1 + newtests/20140722_144135/summary.csv | 1 + newtests/20140722_144554/append_latencies.csv | 2 + newtests/20140722_144554/console.log | 102 ++++ newtests/20140722_144554/crash.log | 60 +++ newtests/20140722_144554/error.log | 31 ++ newtests/20140722_144554/errors.csv | 1 + newtests/20140722_144554/floppstore.config | 23 + .../interactive-tx_latencies.csv | 2 + newtests/20140722_144554/log.sasl.txt | 336 +++++++++++++ newtests/20140722_144554/read_latencies.csv | 2 + .../20140722_144554/static-tx_latencies.csv | 2 + newtests/20140722_144554/summary.csv | 2 + newtests/20140722_144834/append_latencies.csv | 2 + newtests/20140722_144834/console.log | 103 ++++ newtests/20140722_144834/crash.log | 60 +++ newtests/20140722_144834/error.log | 31 ++ newtests/20140722_144834/errors.csv | 1 + newtests/20140722_144834/floppstore.config | 23 + .../interactive-tx_latencies.csv | 2 + newtests/20140722_144834/log.sasl.txt | 336 +++++++++++++ newtests/20140722_144834/read_latencies.csv | 2 + .../20140722_144834/static-tx_latencies.csv | 2 + newtests/20140722_144834/summary.csv | 2 + newtests/20140722_150342/console.log | 18 + newtests/20140722_150342/crash.log | 0 newtests/20140722_150342/error.log | 0 newtests/20140722_150342/errors.csv | 1 + newtests/20140722_150342/floppstore.config | 23 + .../interactive-tx_latencies.csv | 1 + newtests/20140722_150342/log.sasl.txt | 113 +++++ .../20140722_150342/static-tx_latencies.csv | 1 + newtests/20140722_150342/summary.csv | 1 + newtests/20140722_150549/console.log | 43 ++ newtests/20140722_150549/crash.log | 0 newtests/20140722_150549/error.log | 0 newtests/20140722_150549/errors.csv | 1 + newtests/20140722_150549/floppstore.config | 23 + .../interactive-tx_latencies.csv | 1 + newtests/20140722_150549/log.sasl.txt | 183 +++++++ .../20140722_150549/static-tx_latencies.csv | 1 + newtests/20140722_150549/summary.csv | 1 + newtests/20140722_150633/console.log | 43 ++ newtests/20140722_150633/crash.log | 0 newtests/20140722_150633/error.log | 0 newtests/20140722_150633/errors.csv | 1 + newtests/20140722_150633/floppstore.config | 23 + .../interactive-tx_latencies.csv | 1 + newtests/20140722_150633/log.sasl.txt | 183 +++++++ .../20140722_150633/static-tx_latencies.csv | 1 + newtests/20140722_150633/summary.csv | 1 + newtests/20140722_150647/console.log | 74 +++ newtests/20140722_150647/crash.log | 27 + newtests/20140722_150647/error.log | 15 + newtests/20140722_150647/errors.csv | 1 + newtests/20140722_150647/floppstore.config | 23 + .../interactive-tx_latencies.csv | 4 + newtests/20140722_150647/log.sasl.txt | 258 ++++++++++ .../20140722_150647/static-tx_latencies.csv | 4 + newtests/20140722_150647/summary.csv | 4 + newtests/20140722_150754/console.log | 151 ++++++ newtests/20140722_150754/crash.log | 90 ++++ newtests/20140722_150754/error.log | 50 ++ newtests/20140722_150754/errors.csv | 1 + newtests/20140722_150754/floppstore.config | 23 + .../interactive-tx_latencies.csv | 8 + newtests/20140722_150754/log.sasl.txt | 433 ++++++++++++++++ .../20140722_150754/static-tx_latencies.csv | 8 + newtests/20140722_150754/summary.csv | 8 + newtests/20140722_152913/console.log | 138 ++++++ newtests/20140722_152913/crash.log | 81 +++ newtests/20140722_152913/error.log | 45 ++ newtests/20140722_152913/errors.csv | 1 + newtests/20140722_152913/floppstore.config | 23 + .../interactive-tx_latencies.csv | 8 + newtests/20140722_152913/log.sasl.txt | 408 ++++++++++++++++ .../20140722_152913/static-tx_latencies.csv | 8 + newtests/20140722_152913/summary.csv | 8 + newtests/20140723_123916/console.log | 113 +++++ newtests/20140723_123916/crash.log | 60 +++ newtests/20140723_123916/error.log | 31 ++ newtests/20140723_123916/errors.csv | 1 + newtests/20140723_123916/floppstore.config | 23 + .../interactive-tx_latencies.csv | 2 + newtests/20140723_123916/log.sasl.txt | 369 ++++++++++++++ .../20140723_123916/static-tx_latencies.csv | 2 + newtests/20140723_123916/summary.csv | 2 + newtests/20140723_123954/console.log | 121 +++++ newtests/20140723_123954/crash.log | 69 +++ newtests/20140723_123954/error.log | 35 ++ newtests/20140723_123954/errors.csv | 1 + newtests/20140723_123954/floppstore.config | 23 + .../interactive-tx_latencies.csv | 3 + newtests/20140723_123954/log.sasl.txt | 394 +++++++++++++++ .../20140723_123954/static-tx_latencies.csv | 3 + newtests/20140723_123954/summary.csv | 3 + newtests/20140723_125435/console.log | 111 +++++ newtests/20140723_125435/crash.log | 60 +++ newtests/20140723_125435/error.log | 29 ++ newtests/20140723_125435/errors.csv | 1 + newtests/20140723_125435/floppstore.config | 23 + .../interactive-tx_latencies.csv | 3 + newtests/20140723_125435/log.sasl.txt | 369 ++++++++++++++ .../20140723_125435/static-tx_latencies.csv | 3 + newtests/20140723_125435/summary.csv | 3 + newtests/20140723_140132/console.log | 112 +++++ newtests/20140723_140132/crash.log | 60 +++ newtests/20140723_140132/error.log | 31 ++ newtests/20140723_140132/errors.csv | 1 + newtests/20140723_140132/floppstore.config | 23 + .../interactive-tx_latencies.csv | 2 + newtests/20140723_140132/log.sasl.txt | 369 ++++++++++++++ .../20140723_140132/static-tx_latencies.csv | 2 + newtests/20140723_140132/summary.csv | 2 + newtests/20140723_143206/console.log | 110 +++++ newtests/20140723_143206/crash.log | 54 ++ newtests/20140723_143206/error.log | 17 + newtests/20140723_143206/errors.csv | 2 + newtests/20140723_143206/floppstore.config | 23 + .../interactive-tx_latencies.csv | 2 + newtests/20140723_143206/log.sasl.txt | 397 +++++++++++++++ .../20140723_143206/static-tx_latencies.csv | 2 + newtests/20140723_143206/summary.csv | 2 + newtests/20140723_143600/console.log | 114 +++++ newtests/20140723_143600/crash.log | 60 +++ newtests/20140723_143600/error.log | 19 + newtests/20140723_143600/errors.csv | 2 + newtests/20140723_143600/floppstore.config | 23 + .../interactive-tx_latencies.csv | 2 + newtests/20140723_143600/log.sasl.txt | 411 ++++++++++++++++ .../20140723_143600/static-tx_latencies.csv | 2 + newtests/20140723_143600/summary.csv | 2 + newtests/20140723_144217/console.log | 103 ++++ newtests/20140723_144217/crash.log | 42 ++ newtests/20140723_144217/error.log | 13 + newtests/20140723_144217/errors.csv | 2 + newtests/20140723_144217/floppstore.config | 23 + .../interactive-tx_latencies.csv | 2 + newtests/20140723_144217/log.sasl.txt | 369 ++++++++++++++ .../20140723_144217/static-tx_latencies.csv | 2 + newtests/20140723_144217/summary.csv | 2 + newtests/20140723_144723/console.log | 124 +++++ newtests/20140723_144723/crash.log | 60 +++ newtests/20140723_144723/error.log | 22 + newtests/20140723_144723/errors.csv | 2 + newtests/20140723_144723/floppstore.config | 23 + .../interactive-tx_latencies.csv | 3 + newtests/20140723_144723/log.sasl.txt | 419 ++++++++++++++++ .../20140723_144723/static-tx_latencies.csv | 3 + newtests/20140723_144723/summary.csv | 3 + newtests/20140723_144925/append_latencies.csv | 2 + newtests/20140723_144925/console.log | 116 +++++ newtests/20140723_144925/crash.log | 60 +++ newtests/20140723_144925/error.log | 31 ++ newtests/20140723_144925/errors.csv | 1 + newtests/20140723_144925/floppstore.config | 23 + .../interactive-tx_latencies.csv | 2 + newtests/20140723_144925/log.sasl.txt | 369 ++++++++++++++ newtests/20140723_144925/read_latencies.csv | 2 + .../20140723_144925/static-tx_latencies.csv | 2 + newtests/20140723_144925/summary.csv | 2 + newtests/20140723_203459/console.log | 77 +++ newtests/20140723_203459/crash.log | 21 + newtests/20140723_203459/error.log | 9 + newtests/20140723_203459/errors.csv | 1 + newtests/20140723_203459/floppstore.config | 23 + newtests/20140723_203459/itx_latency.csv | 1 + newtests/20140723_203459/log.sasl.txt | 291 +++++++++++ newtests/20140723_203459/stx_latency.csv | 1 + newtests/20140723_203459/summary.csv | 1 + newtests/current/console.log | 77 +++ newtests/current/crash.log | 21 + newtests/current/error.log | 9 + newtests/current/errors.csv | 1 + newtests/current/floppstore.config | 23 + newtests/current/itx_latency.csv | 1 + newtests/current/log.sasl.txt | 291 +++++++++++ newtests/current/stx_latency.csv | 1 + newtests/current/summary.csv | 1 + src/basho_bench_driver_floppystore.erl | 48 +- 801 files changed, 42127 insertions(+), 27 deletions(-) create mode 100644 newtests/20140701_112946/append_latencies.csv create mode 100644 newtests/20140701_112946/console.log create mode 100644 newtests/20140701_112946/crash.log create mode 100644 newtests/20140701_112946/error.log create mode 100644 newtests/20140701_112946/errors.csv create mode 100644 newtests/20140701_112946/floppstore.config create mode 100644 newtests/20140701_112946/log.sasl.txt create mode 100644 newtests/20140701_112946/read_latencies.csv create mode 100644 newtests/20140701_112946/summary.csv create mode 100644 newtests/20140709_125412/append_latencies.csv create mode 100644 newtests/20140709_125412/console.log create mode 100644 newtests/20140709_125412/crash.log create mode 100644 newtests/20140709_125412/error.log create mode 100644 newtests/20140709_125412/errors.csv create mode 100644 newtests/20140709_125412/floppstore.config create mode 100644 newtests/20140709_125412/log.sasl.txt create mode 100644 newtests/20140709_125412/read_latencies.csv create mode 100644 newtests/20140709_125412/summary.csv create mode 100644 newtests/20140711_182613/append_latencies.csv create mode 100644 newtests/20140711_182613/console.log create mode 100644 newtests/20140711_182613/crash.log create mode 100644 newtests/20140711_182613/error.log create mode 100644 newtests/20140711_182613/errors.csv create mode 100644 newtests/20140711_182613/floppstore.config create mode 100644 newtests/20140711_182613/log.sasl.txt create mode 100644 newtests/20140711_182613/read_latencies.csv create mode 100644 newtests/20140711_182613/summary.csv create mode 100644 newtests/20140711_182632/append_latencies.csv create mode 100644 newtests/20140711_182632/console.log create mode 100644 newtests/20140711_182632/crash.log create mode 100644 newtests/20140711_182632/error.log create mode 100644 newtests/20140711_182632/errors.csv create mode 100644 newtests/20140711_182632/floppstore.config create mode 100644 newtests/20140711_182632/log.sasl.txt create mode 100644 newtests/20140711_182632/read_latencies.csv create mode 100644 newtests/20140711_182632/summary.csv create mode 100644 newtests/20140711_182641/append_latencies.csv create mode 100644 newtests/20140711_182641/console.log create mode 100644 newtests/20140711_182641/crash.log create mode 100644 newtests/20140711_182641/error.log create mode 100644 newtests/20140711_182641/errors.csv create mode 100644 newtests/20140711_182641/floppstore.config create mode 100644 newtests/20140711_182641/log.sasl.txt create mode 100644 newtests/20140711_182641/read_latencies.csv create mode 100644 newtests/20140711_182641/summary.csv create mode 100644 newtests/20140716_154312/append_latencies.csv create mode 100644 newtests/20140716_154312/console.log create mode 100644 newtests/20140716_154312/crash.log create mode 100644 newtests/20140716_154312/error.log create mode 100644 newtests/20140716_154312/errors.csv create mode 100644 newtests/20140716_154312/floppstore.config create mode 100644 newtests/20140716_154312/log.sasl.txt create mode 100644 newtests/20140716_154312/read_latencies.csv create mode 100644 newtests/20140716_154312/summary.csv create mode 100644 newtests/20140716_154402/append_latencies.csv create mode 100644 newtests/20140716_154402/console.log create mode 100644 newtests/20140716_154402/crash.log create mode 100644 newtests/20140716_154402/error.log create mode 100644 newtests/20140716_154402/errors.csv create mode 100644 newtests/20140716_154402/floppstore.config create mode 100644 newtests/20140716_154402/log.sasl.txt create mode 100644 newtests/20140716_154402/read_latencies.csv create mode 100644 newtests/20140716_154402/summary.csv create mode 100644 newtests/20140716_154446/append_latencies.csv create mode 100644 newtests/20140716_154446/console.log create mode 100644 newtests/20140716_154446/crash.log create mode 100644 newtests/20140716_154446/error.log create mode 100644 newtests/20140716_154446/errors.csv create mode 100644 newtests/20140716_154446/floppstore.config create mode 100644 newtests/20140716_154446/log.sasl.txt create mode 100644 newtests/20140716_154446/read_latencies.csv create mode 100644 newtests/20140716_154446/summary.csv create mode 100644 newtests/20140716_155207/append_latencies.csv create mode 100644 newtests/20140716_155207/console.log create mode 100644 newtests/20140716_155207/crash.log create mode 100644 newtests/20140716_155207/error.log create mode 100644 newtests/20140716_155207/errors.csv create mode 100644 newtests/20140716_155207/floppstore.config create mode 100644 newtests/20140716_155207/log.sasl.txt create mode 100644 newtests/20140716_155207/read_latencies.csv create mode 100644 newtests/20140716_155207/summary.csv create mode 100644 newtests/20140716_155332/append_latencies.csv create mode 100644 newtests/20140716_155332/console.log create mode 100644 newtests/20140716_155332/crash.log create mode 100644 newtests/20140716_155332/error.log create mode 100644 newtests/20140716_155332/errors.csv create mode 100644 newtests/20140716_155332/floppstore.config create mode 100644 newtests/20140716_155332/log.sasl.txt create mode 100644 newtests/20140716_155332/read_latencies.csv create mode 100644 newtests/20140716_155332/summary.csv create mode 100644 newtests/20140716_155458/console.log create mode 100644 newtests/20140716_155458/crash.log create mode 100644 newtests/20140716_155458/error.log create mode 100644 newtests/20140716_155521/append_latencies.csv create mode 100644 newtests/20140716_155521/console.log create mode 100644 newtests/20140716_155521/crash.log create mode 100644 newtests/20140716_155521/error.log create mode 100644 newtests/20140716_155521/errors.csv create mode 100644 newtests/20140716_155521/floppstore.config create mode 100644 newtests/20140716_155521/log.sasl.txt create mode 100644 newtests/20140716_155521/read_latencies.csv create mode 100644 newtests/20140716_155521/summary.csv create mode 100644 newtests/20140716_155627/append_latencies.csv create mode 100644 newtests/20140716_155627/console.log create mode 100644 newtests/20140716_155627/crash.log create mode 100644 newtests/20140716_155627/error.log create mode 100644 newtests/20140716_155627/errors.csv create mode 100644 newtests/20140716_155627/floppstore.config create mode 100644 newtests/20140716_155627/log.sasl.txt create mode 100644 newtests/20140716_155627/read_latencies.csv create mode 100644 newtests/20140716_155627/summary.csv create mode 100644 newtests/20140716_160035/append_latencies.csv create mode 100644 newtests/20140716_160035/console.log create mode 100644 newtests/20140716_160035/crash.log create mode 100644 newtests/20140716_160035/error.log create mode 100644 newtests/20140716_160035/errors.csv create mode 100644 newtests/20140716_160035/floppstore.config create mode 100644 newtests/20140716_160035/log.sasl.txt create mode 100644 newtests/20140716_160035/read_latencies.csv create mode 100644 newtests/20140716_160035/summary.csv create mode 100644 newtests/20140716_160222/append_latencies.csv create mode 100644 newtests/20140716_160222/console.log create mode 100644 newtests/20140716_160222/crash.log create mode 100644 newtests/20140716_160222/error.log create mode 100644 newtests/20140716_160222/errors.csv create mode 100644 newtests/20140716_160222/floppstore.config create mode 100644 newtests/20140716_160222/log.sasl.txt create mode 100644 newtests/20140716_160222/read_latencies.csv create mode 100644 newtests/20140716_160222/summary.csv create mode 100644 newtests/20140716_160324/console.log create mode 100644 newtests/20140716_160324/crash.log create mode 100644 newtests/20140716_160324/error.log create mode 100644 newtests/20140716_160324/floppstore.config create mode 100644 newtests/20140716_160324/log.sasl.txt create mode 100644 newtests/20140716_160337/append_latencies.csv create mode 100644 newtests/20140716_160337/console.log create mode 100644 newtests/20140716_160337/crash.log create mode 100644 newtests/20140716_160337/error.log create mode 100644 newtests/20140716_160337/errors.csv create mode 100644 newtests/20140716_160337/floppstore.config create mode 100644 newtests/20140716_160337/log.sasl.txt create mode 100644 newtests/20140716_160337/read_latencies.csv create mode 100644 newtests/20140716_160337/summary.csv create mode 100644 newtests/20140716_160632/append_latencies.csv create mode 100644 newtests/20140716_160632/console.log create mode 100644 newtests/20140716_160632/crash.log create mode 100644 newtests/20140716_160632/error.log create mode 100644 newtests/20140716_160632/errors.csv create mode 100644 newtests/20140716_160632/floppstore.config create mode 100644 newtests/20140716_160632/log.sasl.txt create mode 100644 newtests/20140716_160632/read_latencies.csv create mode 100644 newtests/20140716_160632/summary.csv create mode 100644 newtests/20140716_161238/append_latencies.csv create mode 100644 newtests/20140716_161238/console.log create mode 100644 newtests/20140716_161238/crash.log create mode 100644 newtests/20140716_161238/error.log create mode 100644 newtests/20140716_161238/errors.csv create mode 100644 newtests/20140716_161238/floppstore.config create mode 100644 newtests/20140716_161238/log.sasl.txt create mode 100644 newtests/20140716_161238/read_latencies.csv create mode 100644 newtests/20140716_161238/summary.csv create mode 100644 newtests/20140716_161437/append_latencies.csv create mode 100644 newtests/20140716_161437/console.log create mode 100644 newtests/20140716_161437/crash.log create mode 100644 newtests/20140716_161437/error.log create mode 100644 newtests/20140716_161437/errors.csv create mode 100644 newtests/20140716_161437/floppstore.config create mode 100644 newtests/20140716_161437/log.sasl.txt create mode 100644 newtests/20140716_161437/read_latencies.csv create mode 100644 newtests/20140716_161437/summary.csv create mode 100644 newtests/20140716_161530/append_latencies.csv create mode 100644 newtests/20140716_161530/console.log create mode 100644 newtests/20140716_161530/crash.log create mode 100644 newtests/20140716_161530/error.log create mode 100644 newtests/20140716_161530/errors.csv create mode 100644 newtests/20140716_161530/floppstore.config create mode 100644 newtests/20140716_161530/log.sasl.txt create mode 100644 newtests/20140716_161530/read_latencies.csv create mode 100644 newtests/20140716_161530/summary.csv create mode 100644 newtests/20140716_161614/append_latencies.csv create mode 100644 newtests/20140716_161614/console.log create mode 100644 newtests/20140716_161614/crash.log create mode 100644 newtests/20140716_161614/error.log create mode 100644 newtests/20140716_161614/errors.csv create mode 100644 newtests/20140716_161614/floppstore.config create mode 100644 newtests/20140716_161614/log.sasl.txt create mode 100644 newtests/20140716_161614/read_latencies.csv create mode 100644 newtests/20140716_161614/summary.csv create mode 100644 newtests/20140716_162007/append_latencies.csv create mode 100644 newtests/20140716_162007/console.log create mode 100644 newtests/20140716_162007/crash.log create mode 100644 newtests/20140716_162007/error.log create mode 100644 newtests/20140716_162007/errors.csv create mode 100644 newtests/20140716_162007/floppstore.config create mode 100644 newtests/20140716_162007/log.sasl.txt create mode 100644 newtests/20140716_162007/read_latencies.csv create mode 100644 newtests/20140716_162007/summary.csv create mode 100644 newtests/20140716_162303/append_latencies.csv create mode 100644 newtests/20140716_162303/console.log create mode 100644 newtests/20140716_162303/crash.log create mode 100644 newtests/20140716_162303/error.log create mode 100644 newtests/20140716_162303/errors.csv create mode 100644 newtests/20140716_162303/floppstore.config create mode 100644 newtests/20140716_162303/log.sasl.txt create mode 100644 newtests/20140716_162303/read_latencies.csv create mode 100644 newtests/20140716_162303/summary.csv create mode 100644 newtests/20140716_162722/append_latencies.csv create mode 100644 newtests/20140716_162722/console.log create mode 100644 newtests/20140716_162722/crash.log create mode 100644 newtests/20140716_162722/error.log create mode 100644 newtests/20140716_162722/errors.csv create mode 100644 newtests/20140716_162722/floppstore.config create mode 100644 newtests/20140716_162722/log.sasl.txt create mode 100644 newtests/20140716_162722/read_latencies.csv create mode 100644 newtests/20140716_162722/summary.csv create mode 100644 newtests/20140716_163000/append_latencies.csv create mode 100644 newtests/20140716_163000/console.log create mode 100644 newtests/20140716_163000/crash.log create mode 100644 newtests/20140716_163000/error.log create mode 100644 newtests/20140716_163000/errors.csv create mode 100644 newtests/20140716_163000/floppstore.config create mode 100644 newtests/20140716_163000/log.sasl.txt create mode 100644 newtests/20140716_163000/read_latencies.csv create mode 100644 newtests/20140716_163000/summary.csv create mode 100644 newtests/20140716_163347/append_latencies.csv create mode 100644 newtests/20140716_163347/console.log create mode 100644 newtests/20140716_163347/crash.log create mode 100644 newtests/20140716_163347/error.log create mode 100644 newtests/20140716_163347/errors.csv create mode 100644 newtests/20140716_163347/floppstore.config create mode 100644 newtests/20140716_163347/log.sasl.txt create mode 100644 newtests/20140716_163347/read_latencies.csv create mode 100644 newtests/20140716_163347/summary.csv create mode 100644 newtests/20140716_163407/append_latencies.csv create mode 100644 newtests/20140716_163407/console.log create mode 100644 newtests/20140716_163407/crash.log create mode 100644 newtests/20140716_163407/error.log create mode 100644 newtests/20140716_163407/errors.csv create mode 100644 newtests/20140716_163407/floppstore.config create mode 100644 newtests/20140716_163407/log.sasl.txt create mode 100644 newtests/20140716_163407/read_latencies.csv create mode 100644 newtests/20140716_163407/summary.csv create mode 100644 newtests/20140716_164802/append_latencies.csv create mode 100644 newtests/20140716_164802/console.log create mode 100644 newtests/20140716_164802/crash.log create mode 100644 newtests/20140716_164802/error.log create mode 100644 newtests/20140716_164802/errors.csv create mode 100644 newtests/20140716_164802/floppstore.config create mode 100644 newtests/20140716_164802/log.sasl.txt create mode 100644 newtests/20140716_164802/read_latencies.csv create mode 100644 newtests/20140716_164802/summary.csv create mode 100644 newtests/20140716_165104/append_latencies.csv create mode 100644 newtests/20140716_165104/console.log create mode 100644 newtests/20140716_165104/crash.log create mode 100644 newtests/20140716_165104/error.log create mode 100644 newtests/20140716_165104/errors.csv create mode 100644 newtests/20140716_165104/floppstore.config create mode 100644 newtests/20140716_165104/log.sasl.txt create mode 100644 newtests/20140716_165104/read_latencies.csv create mode 100644 newtests/20140716_165104/summary.csv create mode 100644 newtests/20140716_165306/append_latencies.csv create mode 100644 newtests/20140716_165306/console.log create mode 100644 newtests/20140716_165306/crash.log create mode 100644 newtests/20140716_165306/error.log create mode 100644 newtests/20140716_165306/errors.csv create mode 100644 newtests/20140716_165306/floppstore.config create mode 100644 newtests/20140716_165306/log.sasl.txt create mode 100644 newtests/20140716_165306/read_latencies.csv create mode 100644 newtests/20140716_165306/summary.csv create mode 100644 newtests/20140716_165356/append_latencies.csv create mode 100644 newtests/20140716_165356/console.log create mode 100644 newtests/20140716_165356/crash.log create mode 100644 newtests/20140716_165356/error.log create mode 100644 newtests/20140716_165356/errors.csv create mode 100644 newtests/20140716_165356/floppstore.config create mode 100644 newtests/20140716_165356/log.sasl.txt create mode 100644 newtests/20140716_165356/read_latencies.csv create mode 100644 newtests/20140716_165356/summary.csv create mode 100644 newtests/20140716_170644/append_latencies.csv create mode 100644 newtests/20140716_170644/console.log create mode 100644 newtests/20140716_170644/crash.log create mode 100644 newtests/20140716_170644/error.log create mode 100644 newtests/20140716_170644/errors.csv create mode 100644 newtests/20140716_170644/floppstore.config create mode 100644 newtests/20140716_170644/log.sasl.txt create mode 100644 newtests/20140716_170644/read_latencies.csv create mode 100644 newtests/20140716_170644/summary.csv create mode 100644 newtests/20140716_170806/append_latencies.csv create mode 100644 newtests/20140716_170806/console.log create mode 100644 newtests/20140716_170806/crash.log create mode 100644 newtests/20140716_170806/error.log create mode 100644 newtests/20140716_170806/errors.csv create mode 100644 newtests/20140716_170806/floppstore.config create mode 100644 newtests/20140716_170806/log.sasl.txt create mode 100644 newtests/20140716_170806/read_latencies.csv create mode 100644 newtests/20140716_170806/summary.csv create mode 100644 newtests/20140716_202737/append_latencies.csv create mode 100644 newtests/20140716_202737/console.log create mode 100644 newtests/20140716_202737/crash.log create mode 100644 newtests/20140716_202737/error.log create mode 100644 newtests/20140716_202737/errors.csv create mode 100644 newtests/20140716_202737/floppstore.config create mode 100644 newtests/20140716_202737/log.sasl.txt create mode 100644 newtests/20140716_202737/read_latencies.csv create mode 100644 newtests/20140716_202737/summary.csv create mode 100644 newtests/20140716_202950/append_latencies.csv create mode 100644 newtests/20140716_202950/console.log create mode 100644 newtests/20140716_202950/crash.log create mode 100644 newtests/20140716_202950/error.log create mode 100644 newtests/20140716_202950/errors.csv create mode 100644 newtests/20140716_202950/floppstore.config create mode 100644 newtests/20140716_202950/log.sasl.txt create mode 100644 newtests/20140716_202950/read_latencies.csv create mode 100644 newtests/20140716_202950/summary.csv create mode 100644 newtests/20140716_203343/append_latencies.csv create mode 100644 newtests/20140716_203343/console.log create mode 100644 newtests/20140716_203343/crash.log create mode 100644 newtests/20140716_203343/error.log create mode 100644 newtests/20140716_203343/errors.csv create mode 100644 newtests/20140716_203343/floppstore.config create mode 100644 newtests/20140716_203343/log.sasl.txt create mode 100644 newtests/20140716_203343/read_latencies.csv create mode 100644 newtests/20140716_203343/summary.csv create mode 100644 newtests/20140716_203731/append_latencies.csv create mode 100644 newtests/20140716_203731/console.log create mode 100644 newtests/20140716_203731/crash.log create mode 100644 newtests/20140716_203731/error.log create mode 100644 newtests/20140716_203731/errors.csv create mode 100644 newtests/20140716_203731/floppstore.config create mode 100644 newtests/20140716_203731/log.sasl.txt create mode 100644 newtests/20140716_203731/read_latencies.csv create mode 100644 newtests/20140716_203731/summary.csv create mode 100644 newtests/20140716_204925/append_latencies.csv create mode 100644 newtests/20140716_204925/console.log create mode 100644 newtests/20140716_204925/crash.log create mode 100644 newtests/20140716_204925/error.log create mode 100644 newtests/20140716_204925/errors.csv create mode 100644 newtests/20140716_204925/floppstore.config create mode 100644 newtests/20140716_204925/log.sasl.txt create mode 100644 newtests/20140716_204925/read_latencies.csv create mode 100644 newtests/20140716_204925/summary.csv create mode 100644 newtests/20140716_205022/append_latencies.csv create mode 100644 newtests/20140716_205022/console.log create mode 100644 newtests/20140716_205022/crash.log create mode 100644 newtests/20140716_205022/error.log create mode 100644 newtests/20140716_205022/errors.csv create mode 100644 newtests/20140716_205022/floppstore.config create mode 100644 newtests/20140716_205022/log.sasl.txt create mode 100644 newtests/20140716_205022/read_latencies.csv create mode 100644 newtests/20140716_205022/summary.csv create mode 100644 newtests/20140716_205202/append_latencies.csv create mode 100644 newtests/20140716_205202/console.log create mode 100644 newtests/20140716_205202/crash.log create mode 100644 newtests/20140716_205202/error.log create mode 100644 newtests/20140716_205202/errors.csv create mode 100644 newtests/20140716_205202/floppstore.config create mode 100644 newtests/20140716_205202/log.sasl.txt create mode 100644 newtests/20140716_205202/read_latencies.csv create mode 100644 newtests/20140716_205202/summary.csv create mode 100644 newtests/20140716_205355/append_latencies.csv create mode 100644 newtests/20140716_205355/console.log create mode 100644 newtests/20140716_205355/crash.log create mode 100644 newtests/20140716_205355/error.log create mode 100644 newtests/20140716_205355/errors.csv create mode 100644 newtests/20140716_205355/floppstore.config create mode 100644 newtests/20140716_205355/log.sasl.txt create mode 100644 newtests/20140716_205355/read_latencies.csv create mode 100644 newtests/20140716_205355/summary.csv create mode 100644 newtests/20140717_145625/append_latencies.csv create mode 100644 newtests/20140717_145625/console.log create mode 100644 newtests/20140717_145625/crash.log create mode 100644 newtests/20140717_145625/error.log create mode 100644 newtests/20140717_145625/errors.csv create mode 100644 newtests/20140717_145625/floppstore.config create mode 100644 newtests/20140717_145625/log.sasl.txt create mode 100644 newtests/20140717_145625/read_latencies.csv create mode 100644 newtests/20140717_145625/summary.csv create mode 100644 newtests/20140717_145733/append_latencies.csv create mode 100644 newtests/20140717_145733/console.log create mode 100644 newtests/20140717_145733/crash.log create mode 100644 newtests/20140717_145733/error.log create mode 100644 newtests/20140717_145733/errors.csv create mode 100644 newtests/20140717_145733/floppstore.config create mode 100644 newtests/20140717_145733/log.sasl.txt create mode 100644 newtests/20140717_145733/read_latencies.csv create mode 100644 newtests/20140717_145733/summary.csv create mode 100644 newtests/20140717_145743/append_latencies.csv create mode 100644 newtests/20140717_145743/console.log create mode 100644 newtests/20140717_145743/crash.log create mode 100644 newtests/20140717_145743/error.log create mode 100644 newtests/20140717_145743/errors.csv create mode 100644 newtests/20140717_145743/floppstore.config create mode 100644 newtests/20140717_145743/log.sasl.txt create mode 100644 newtests/20140717_145743/read_latencies.csv create mode 100644 newtests/20140717_145743/summary.csv create mode 100644 newtests/20140717_151128/append_latencies.csv create mode 100644 newtests/20140717_151128/console.log create mode 100644 newtests/20140717_151128/crash.log create mode 100644 newtests/20140717_151128/error.log create mode 100644 newtests/20140717_151128/errors.csv create mode 100644 newtests/20140717_151128/floppstore.config create mode 100644 newtests/20140717_151128/log.sasl.txt create mode 100644 newtests/20140717_151128/read_latencies.csv create mode 100644 newtests/20140717_151128/summary.csv create mode 100644 newtests/20140717_151250/append_latencies.csv create mode 100644 newtests/20140717_151250/console.log create mode 100644 newtests/20140717_151250/crash.log create mode 100644 newtests/20140717_151250/error.log create mode 100644 newtests/20140717_151250/errors.csv create mode 100644 newtests/20140717_151250/floppstore.config create mode 100644 newtests/20140717_151250/log.sasl.txt create mode 100644 newtests/20140717_151250/read_latencies.csv create mode 100644 newtests/20140717_151250/summary.csv create mode 100644 newtests/20140717_151444/append_latencies.csv create mode 100644 newtests/20140717_151444/console.log create mode 100644 newtests/20140717_151444/crash.log create mode 100644 newtests/20140717_151444/error.log create mode 100644 newtests/20140717_151444/errors.csv create mode 100644 newtests/20140717_151444/floppstore.config create mode 100644 newtests/20140717_151444/log.sasl.txt create mode 100644 newtests/20140717_151444/read_latencies.csv create mode 100644 newtests/20140717_151444/summary.csv create mode 100644 newtests/20140717_151946/append_latencies.csv create mode 100644 newtests/20140717_151946/console.log create mode 100644 newtests/20140717_151946/crash.log create mode 100644 newtests/20140717_151946/error.log create mode 100644 newtests/20140717_151946/errors.csv create mode 100644 newtests/20140717_151946/floppstore.config create mode 100644 newtests/20140717_151946/log.sasl.txt create mode 100644 newtests/20140717_151946/read_latencies.csv create mode 100644 newtests/20140717_151946/summary.csv create mode 100644 newtests/20140717_152313/append_latencies.csv create mode 100644 newtests/20140717_152313/console.log create mode 100644 newtests/20140717_152313/crash.log create mode 100644 newtests/20140717_152313/error.log create mode 100644 newtests/20140717_152313/errors.csv create mode 100644 newtests/20140717_152313/floppstore.config create mode 100644 newtests/20140717_152313/log.sasl.txt create mode 100644 newtests/20140717_152313/read_latencies.csv create mode 100644 newtests/20140717_152313/summary.csv create mode 100644 newtests/20140717_152423/append_latencies.csv create mode 100644 newtests/20140717_152423/console.log create mode 100644 newtests/20140717_152423/crash.log create mode 100644 newtests/20140717_152423/error.log create mode 100644 newtests/20140717_152423/errors.csv create mode 100644 newtests/20140717_152423/floppstore.config create mode 100644 newtests/20140717_152423/log.sasl.txt create mode 100644 newtests/20140717_152423/read_latencies.csv create mode 100644 newtests/20140717_152423/summary.csv create mode 100644 newtests/20140717_153010/append_latencies.csv create mode 100644 newtests/20140717_153010/console.log create mode 100644 newtests/20140717_153010/crash.log create mode 100644 newtests/20140717_153010/error.log create mode 100644 newtests/20140717_153010/errors.csv create mode 100644 newtests/20140717_153010/floppstore.config create mode 100644 newtests/20140717_153010/log.sasl.txt create mode 100644 newtests/20140717_153010/read_latencies.csv create mode 100644 newtests/20140717_153010/summary.csv create mode 100644 newtests/20140717_154723/console.log create mode 100644 newtests/20140717_154723/crash.log create mode 100644 newtests/20140717_154723/error.log create mode 100644 newtests/20140717_154801/append_latencies.csv create mode 100644 newtests/20140717_154801/console.log create mode 100644 newtests/20140717_154801/crash.log create mode 100644 newtests/20140717_154801/error.log create mode 100644 newtests/20140717_154801/errors.csv create mode 100644 newtests/20140717_154801/floppstore.config create mode 100644 newtests/20140717_154801/log.sasl.txt create mode 100644 newtests/20140717_154801/read_latencies.csv create mode 100644 newtests/20140717_154801/summary.csv create mode 100644 newtests/20140717_154801/summary.png create mode 100644 newtests/20140722_105906/append_latencies.csv create mode 100644 newtests/20140722_105906/console.log create mode 100644 newtests/20140722_105906/crash.log create mode 100644 newtests/20140722_105906/error.log create mode 100644 newtests/20140722_105906/errors.csv create mode 100644 newtests/20140722_105906/floppstore.config create mode 100644 newtests/20140722_105906/interactive-tx_latencies.csv create mode 100644 newtests/20140722_105906/log.sasl.txt create mode 100644 newtests/20140722_105906/read_latencies.csv create mode 100644 newtests/20140722_105906/static-tx_latencies.csv create mode 100644 newtests/20140722_105906/summary.csv create mode 100644 newtests/20140722_110309/append_latencies.csv create mode 100644 newtests/20140722_110309/console.log create mode 100644 newtests/20140722_110309/crash.log create mode 100644 newtests/20140722_110309/error.log create mode 100644 newtests/20140722_110309/errors.csv create mode 100644 newtests/20140722_110309/floppstore.config create mode 100644 newtests/20140722_110309/interactive-tx_latencies.csv create mode 100644 newtests/20140722_110309/log.sasl.txt create mode 100644 newtests/20140722_110309/read_latencies.csv create mode 100644 newtests/20140722_110309/static-tx_latencies.csv create mode 100644 newtests/20140722_110309/summary.csv create mode 100644 newtests/20140722_110442/append_latencies.csv create mode 100644 newtests/20140722_110442/console.log create mode 100644 newtests/20140722_110442/crash.log create mode 100644 newtests/20140722_110442/error.log create mode 100644 newtests/20140722_110442/errors.csv create mode 100644 newtests/20140722_110442/floppstore.config create mode 100644 newtests/20140722_110442/interactive-tx_latencies.csv create mode 100644 newtests/20140722_110442/log.sasl.txt create mode 100644 newtests/20140722_110442/read_latencies.csv create mode 100644 newtests/20140722_110442/static-tx_latencies.csv create mode 100644 newtests/20140722_110442/summary.csv create mode 100644 newtests/20140722_124623/append_latencies.csv create mode 100644 newtests/20140722_124623/console.log create mode 100644 newtests/20140722_124623/crash.log create mode 100644 newtests/20140722_124623/error.log create mode 100644 newtests/20140722_124623/errors.csv create mode 100644 newtests/20140722_124623/floppstore.config create mode 100644 newtests/20140722_124623/interactive-tx_latencies.csv create mode 100644 newtests/20140722_124623/log.sasl.txt create mode 100644 newtests/20140722_124623/read_latencies.csv create mode 100644 newtests/20140722_124623/static-tx_latencies.csv create mode 100644 newtests/20140722_124623/summary.csv create mode 100644 newtests/20140722_124824/append_latencies.csv create mode 100644 newtests/20140722_124824/console.log create mode 100644 newtests/20140722_124824/crash.log create mode 100644 newtests/20140722_124824/error.log create mode 100644 newtests/20140722_124824/errors.csv create mode 100644 newtests/20140722_124824/floppstore.config create mode 100644 newtests/20140722_124824/interactive-tx_latencies.csv create mode 100644 newtests/20140722_124824/log.sasl.txt create mode 100644 newtests/20140722_124824/read_latencies.csv create mode 100644 newtests/20140722_124824/static-tx_latencies.csv create mode 100644 newtests/20140722_124824/summary.csv create mode 100644 newtests/20140722_140229/append_latencies.csv create mode 100644 newtests/20140722_140229/console.log create mode 100644 newtests/20140722_140229/crash.log create mode 100644 newtests/20140722_140229/error.log create mode 100644 newtests/20140722_140229/errors.csv create mode 100644 newtests/20140722_140229/floppstore.config create mode 100644 newtests/20140722_140229/interactive-tx_latencies.csv create mode 100644 newtests/20140722_140229/log.sasl.txt create mode 100644 newtests/20140722_140229/read_latencies.csv create mode 100644 newtests/20140722_140229/static-tx_latencies.csv create mode 100644 newtests/20140722_140229/summary.csv create mode 100644 newtests/20140722_140845/append_latencies.csv create mode 100644 newtests/20140722_140845/console.log create mode 100644 newtests/20140722_140845/crash.log create mode 100644 newtests/20140722_140845/error.log create mode 100644 newtests/20140722_140845/errors.csv create mode 100644 newtests/20140722_140845/floppstore.config create mode 100644 newtests/20140722_140845/interactive-tx_latencies.csv create mode 100644 newtests/20140722_140845/log.sasl.txt create mode 100644 newtests/20140722_140845/read_latencies.csv create mode 100644 newtests/20140722_140845/static-tx_latencies.csv create mode 100644 newtests/20140722_140845/summary.csv create mode 100644 newtests/20140722_141942/append_latencies.csv create mode 100644 newtests/20140722_141942/console.log create mode 100644 newtests/20140722_141942/crash.log create mode 100644 newtests/20140722_141942/error.log create mode 100644 newtests/20140722_141942/errors.csv create mode 100644 newtests/20140722_141942/floppstore.config create mode 100644 newtests/20140722_141942/interactive-tx_latencies.csv create mode 100644 newtests/20140722_141942/log.sasl.txt create mode 100644 newtests/20140722_141942/read_latencies.csv create mode 100644 newtests/20140722_141942/static-tx_latencies.csv create mode 100644 newtests/20140722_141942/summary.csv create mode 100644 newtests/20140722_142103/append_latencies.csv create mode 100644 newtests/20140722_142103/console.log create mode 100644 newtests/20140722_142103/crash.log create mode 100644 newtests/20140722_142103/error.log create mode 100644 newtests/20140722_142103/errors.csv create mode 100644 newtests/20140722_142103/floppstore.config create mode 100644 newtests/20140722_142103/interactive-tx_latencies.csv create mode 100644 newtests/20140722_142103/log.sasl.txt create mode 100644 newtests/20140722_142103/read_latencies.csv create mode 100644 newtests/20140722_142103/static-tx_latencies.csv create mode 100644 newtests/20140722_142103/summary.csv create mode 100644 newtests/20140722_142202/append_latencies.csv create mode 100644 newtests/20140722_142202/console.log create mode 100644 newtests/20140722_142202/crash.log create mode 100644 newtests/20140722_142202/error.log create mode 100644 newtests/20140722_142202/errors.csv create mode 100644 newtests/20140722_142202/floppstore.config create mode 100644 newtests/20140722_142202/interactive-tx_latencies.csv create mode 100644 newtests/20140722_142202/log.sasl.txt create mode 100644 newtests/20140722_142202/read_latencies.csv create mode 100644 newtests/20140722_142202/static-tx_latencies.csv create mode 100644 newtests/20140722_142202/summary.csv create mode 100644 newtests/20140722_142341/append_latencies.csv create mode 100644 newtests/20140722_142341/console.log create mode 100644 newtests/20140722_142341/crash.log create mode 100644 newtests/20140722_142341/error.log create mode 100644 newtests/20140722_142341/errors.csv create mode 100644 newtests/20140722_142341/floppstore.config create mode 100644 newtests/20140722_142341/interactive-tx_latencies.csv create mode 100644 newtests/20140722_142341/log.sasl.txt create mode 100644 newtests/20140722_142341/read_latencies.csv create mode 100644 newtests/20140722_142341/static-tx_latencies.csv create mode 100644 newtests/20140722_142341/summary.csv create mode 100644 newtests/20140722_142917/append_latencies.csv create mode 100644 newtests/20140722_142917/console.log create mode 100644 newtests/20140722_142917/crash.log create mode 100644 newtests/20140722_142917/error.log create mode 100644 newtests/20140722_142917/errors.csv create mode 100644 newtests/20140722_142917/floppstore.config create mode 100644 newtests/20140722_142917/interactive-tx_latencies.csv create mode 100644 newtests/20140722_142917/log.sasl.txt create mode 100644 newtests/20140722_142917/read_latencies.csv create mode 100644 newtests/20140722_142917/static-tx_latencies.csv create mode 100644 newtests/20140722_142917/summary.csv create mode 100644 newtests/20140722_143932/console.log create mode 100644 newtests/20140722_143932/crash.log create mode 100644 newtests/20140722_143932/error.log create mode 100644 newtests/20140722_143955/console.log create mode 100644 newtests/20140722_143955/crash.log create mode 100644 newtests/20140722_143955/error.log create mode 100644 newtests/20140722_143955/errors.csv create mode 100644 newtests/20140722_143955/floppstore.config create mode 100644 newtests/20140722_143955/log.sasl.txt create mode 100644 newtests/20140722_143955/static-tx_latencies.csv create mode 100644 newtests/20140722_143955/summary.csv create mode 100644 newtests/20140722_144135/console.log create mode 100644 newtests/20140722_144135/crash.log create mode 100644 newtests/20140722_144135/error.log create mode 100644 newtests/20140722_144135/errors.csv create mode 100644 newtests/20140722_144135/floppstore.config create mode 100644 newtests/20140722_144135/log.sasl.txt create mode 100644 newtests/20140722_144135/static-tx_latencies.csv create mode 100644 newtests/20140722_144135/summary.csv create mode 100644 newtests/20140722_144554/append_latencies.csv create mode 100644 newtests/20140722_144554/console.log create mode 100644 newtests/20140722_144554/crash.log create mode 100644 newtests/20140722_144554/error.log create mode 100644 newtests/20140722_144554/errors.csv create mode 100644 newtests/20140722_144554/floppstore.config create mode 100644 newtests/20140722_144554/interactive-tx_latencies.csv create mode 100644 newtests/20140722_144554/log.sasl.txt create mode 100644 newtests/20140722_144554/read_latencies.csv create mode 100644 newtests/20140722_144554/static-tx_latencies.csv create mode 100644 newtests/20140722_144554/summary.csv create mode 100644 newtests/20140722_144834/append_latencies.csv create mode 100644 newtests/20140722_144834/console.log create mode 100644 newtests/20140722_144834/crash.log create mode 100644 newtests/20140722_144834/error.log create mode 100644 newtests/20140722_144834/errors.csv create mode 100644 newtests/20140722_144834/floppstore.config create mode 100644 newtests/20140722_144834/interactive-tx_latencies.csv create mode 100644 newtests/20140722_144834/log.sasl.txt create mode 100644 newtests/20140722_144834/read_latencies.csv create mode 100644 newtests/20140722_144834/static-tx_latencies.csv create mode 100644 newtests/20140722_144834/summary.csv create mode 100644 newtests/20140722_150342/console.log create mode 100644 newtests/20140722_150342/crash.log create mode 100644 newtests/20140722_150342/error.log create mode 100644 newtests/20140722_150342/errors.csv create mode 100644 newtests/20140722_150342/floppstore.config create mode 100644 newtests/20140722_150342/interactive-tx_latencies.csv create mode 100644 newtests/20140722_150342/log.sasl.txt create mode 100644 newtests/20140722_150342/static-tx_latencies.csv create mode 100644 newtests/20140722_150342/summary.csv create mode 100644 newtests/20140722_150549/console.log create mode 100644 newtests/20140722_150549/crash.log create mode 100644 newtests/20140722_150549/error.log create mode 100644 newtests/20140722_150549/errors.csv create mode 100644 newtests/20140722_150549/floppstore.config create mode 100644 newtests/20140722_150549/interactive-tx_latencies.csv create mode 100644 newtests/20140722_150549/log.sasl.txt create mode 100644 newtests/20140722_150549/static-tx_latencies.csv create mode 100644 newtests/20140722_150549/summary.csv create mode 100644 newtests/20140722_150633/console.log create mode 100644 newtests/20140722_150633/crash.log create mode 100644 newtests/20140722_150633/error.log create mode 100644 newtests/20140722_150633/errors.csv create mode 100644 newtests/20140722_150633/floppstore.config create mode 100644 newtests/20140722_150633/interactive-tx_latencies.csv create mode 100644 newtests/20140722_150633/log.sasl.txt create mode 100644 newtests/20140722_150633/static-tx_latencies.csv create mode 100644 newtests/20140722_150633/summary.csv create mode 100644 newtests/20140722_150647/console.log create mode 100644 newtests/20140722_150647/crash.log create mode 100644 newtests/20140722_150647/error.log create mode 100644 newtests/20140722_150647/errors.csv create mode 100644 newtests/20140722_150647/floppstore.config create mode 100644 newtests/20140722_150647/interactive-tx_latencies.csv create mode 100644 newtests/20140722_150647/log.sasl.txt create mode 100644 newtests/20140722_150647/static-tx_latencies.csv create mode 100644 newtests/20140722_150647/summary.csv create mode 100644 newtests/20140722_150754/console.log create mode 100644 newtests/20140722_150754/crash.log create mode 100644 newtests/20140722_150754/error.log create mode 100644 newtests/20140722_150754/errors.csv create mode 100644 newtests/20140722_150754/floppstore.config create mode 100644 newtests/20140722_150754/interactive-tx_latencies.csv create mode 100644 newtests/20140722_150754/log.sasl.txt create mode 100644 newtests/20140722_150754/static-tx_latencies.csv create mode 100644 newtests/20140722_150754/summary.csv create mode 100644 newtests/20140722_152913/console.log create mode 100644 newtests/20140722_152913/crash.log create mode 100644 newtests/20140722_152913/error.log create mode 100644 newtests/20140722_152913/errors.csv create mode 100644 newtests/20140722_152913/floppstore.config create mode 100644 newtests/20140722_152913/interactive-tx_latencies.csv create mode 100644 newtests/20140722_152913/log.sasl.txt create mode 100644 newtests/20140722_152913/static-tx_latencies.csv create mode 100644 newtests/20140722_152913/summary.csv create mode 100644 newtests/20140723_123916/console.log create mode 100644 newtests/20140723_123916/crash.log create mode 100644 newtests/20140723_123916/error.log create mode 100644 newtests/20140723_123916/errors.csv create mode 100644 newtests/20140723_123916/floppstore.config create mode 100644 newtests/20140723_123916/interactive-tx_latencies.csv create mode 100644 newtests/20140723_123916/log.sasl.txt create mode 100644 newtests/20140723_123916/static-tx_latencies.csv create mode 100644 newtests/20140723_123916/summary.csv create mode 100644 newtests/20140723_123954/console.log create mode 100644 newtests/20140723_123954/crash.log create mode 100644 newtests/20140723_123954/error.log create mode 100644 newtests/20140723_123954/errors.csv create mode 100644 newtests/20140723_123954/floppstore.config create mode 100644 newtests/20140723_123954/interactive-tx_latencies.csv create mode 100644 newtests/20140723_123954/log.sasl.txt create mode 100644 newtests/20140723_123954/static-tx_latencies.csv create mode 100644 newtests/20140723_123954/summary.csv create mode 100644 newtests/20140723_125435/console.log create mode 100644 newtests/20140723_125435/crash.log create mode 100644 newtests/20140723_125435/error.log create mode 100644 newtests/20140723_125435/errors.csv create mode 100644 newtests/20140723_125435/floppstore.config create mode 100644 newtests/20140723_125435/interactive-tx_latencies.csv create mode 100644 newtests/20140723_125435/log.sasl.txt create mode 100644 newtests/20140723_125435/static-tx_latencies.csv create mode 100644 newtests/20140723_125435/summary.csv create mode 100644 newtests/20140723_140132/console.log create mode 100644 newtests/20140723_140132/crash.log create mode 100644 newtests/20140723_140132/error.log create mode 100644 newtests/20140723_140132/errors.csv create mode 100644 newtests/20140723_140132/floppstore.config create mode 100644 newtests/20140723_140132/interactive-tx_latencies.csv create mode 100644 newtests/20140723_140132/log.sasl.txt create mode 100644 newtests/20140723_140132/static-tx_latencies.csv create mode 100644 newtests/20140723_140132/summary.csv create mode 100644 newtests/20140723_143206/console.log create mode 100644 newtests/20140723_143206/crash.log create mode 100644 newtests/20140723_143206/error.log create mode 100644 newtests/20140723_143206/errors.csv create mode 100644 newtests/20140723_143206/floppstore.config create mode 100644 newtests/20140723_143206/interactive-tx_latencies.csv create mode 100644 newtests/20140723_143206/log.sasl.txt create mode 100644 newtests/20140723_143206/static-tx_latencies.csv create mode 100644 newtests/20140723_143206/summary.csv create mode 100644 newtests/20140723_143600/console.log create mode 100644 newtests/20140723_143600/crash.log create mode 100644 newtests/20140723_143600/error.log create mode 100644 newtests/20140723_143600/errors.csv create mode 100644 newtests/20140723_143600/floppstore.config create mode 100644 newtests/20140723_143600/interactive-tx_latencies.csv create mode 100644 newtests/20140723_143600/log.sasl.txt create mode 100644 newtests/20140723_143600/static-tx_latencies.csv create mode 100644 newtests/20140723_143600/summary.csv create mode 100644 newtests/20140723_144217/console.log create mode 100644 newtests/20140723_144217/crash.log create mode 100644 newtests/20140723_144217/error.log create mode 100644 newtests/20140723_144217/errors.csv create mode 100644 newtests/20140723_144217/floppstore.config create mode 100644 newtests/20140723_144217/interactive-tx_latencies.csv create mode 100644 newtests/20140723_144217/log.sasl.txt create mode 100644 newtests/20140723_144217/static-tx_latencies.csv create mode 100644 newtests/20140723_144217/summary.csv create mode 100644 newtests/20140723_144723/console.log create mode 100644 newtests/20140723_144723/crash.log create mode 100644 newtests/20140723_144723/error.log create mode 100644 newtests/20140723_144723/errors.csv create mode 100644 newtests/20140723_144723/floppstore.config create mode 100644 newtests/20140723_144723/interactive-tx_latencies.csv create mode 100644 newtests/20140723_144723/log.sasl.txt create mode 100644 newtests/20140723_144723/static-tx_latencies.csv create mode 100644 newtests/20140723_144723/summary.csv create mode 100644 newtests/20140723_144925/append_latencies.csv create mode 100644 newtests/20140723_144925/console.log create mode 100644 newtests/20140723_144925/crash.log create mode 100644 newtests/20140723_144925/error.log create mode 100644 newtests/20140723_144925/errors.csv create mode 100644 newtests/20140723_144925/floppstore.config create mode 100644 newtests/20140723_144925/interactive-tx_latencies.csv create mode 100644 newtests/20140723_144925/log.sasl.txt create mode 100644 newtests/20140723_144925/read_latencies.csv create mode 100644 newtests/20140723_144925/static-tx_latencies.csv create mode 100644 newtests/20140723_144925/summary.csv create mode 100644 newtests/20140723_203459/console.log create mode 100644 newtests/20140723_203459/crash.log create mode 100644 newtests/20140723_203459/error.log create mode 100644 newtests/20140723_203459/errors.csv create mode 100644 newtests/20140723_203459/floppstore.config create mode 100644 newtests/20140723_203459/itx_latency.csv create mode 100644 newtests/20140723_203459/log.sasl.txt create mode 100644 newtests/20140723_203459/stx_latency.csv create mode 100644 newtests/20140723_203459/summary.csv create mode 100644 newtests/current/console.log create mode 100644 newtests/current/crash.log create mode 100644 newtests/current/error.log create mode 100644 newtests/current/errors.csv create mode 100644 newtests/current/floppstore.config create mode 100644 newtests/current/itx_latency.csv create mode 100644 newtests/current/log.sasl.txt create mode 100644 newtests/current/stx_latency.csv create mode 100644 newtests/current/summary.csv diff --git a/examples/floppstore.config b/examples/floppstore.config index 1413752d5..2e9df2f4b 100644 --- a/examples/floppstore.config +++ b/examples/floppstore.config @@ -2,15 +2,18 @@ {duration, 1}. -{concurrent, 5}. +{concurrent, 1}. {driver, basho_bench_driver_floppystore}. -{key_generator, {uniform_int, 5000000}}. +{key_generator, {uniform_int, 50000}}. {value_generator, {fixed_bin, 10}}. -{operations, [{static_tx, 1}, {interactive_tx,1}]}. %% , {append, 1}, {read, 1}]}. +%%{operations, [{append, 1}, {read, 1}]}. +{operations, [{stx, 1}, {itx, 1}]}. + %%[{append, 1}, {read, 1}]}. +%%[{stx, 1}, {itx,1}]}. %% , {append, 1}, {read, 1}]}. %% the second element in the list below (e.g., "../../public/bitcask") must point to %% the relevant directory of a bitcask installation diff --git a/newtests/20140701_112946/append_latencies.csv b/newtests/20140701_112946/append_latencies.csv new file mode 100644 index 000000000..07b590abf --- /dev/null +++ b/newtests/20140701_112946/append_latencies.csv @@ -0,0 +1,8 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +10.000806, 10.000806, 4661, 953, 2238.5, 2120, 3295, 6535, 20873, 75433, 0 +20.001816, 10.00101, 4464, 1174, 2296.4, 2202, 3407, 4567, 15911, 78848, 0 +30.001812, 9.999996, 4312, 1126, 2406.3, 2283, 3638, 4992, 18089, 86873, 0 +40.001808, 9.999996, 4560, 1093, 2342.2, 2266, 3308, 4264, 59342, 86873, 0 +50.001819, 10.000011, 4645, 992, 2183.3, 2218, 3017, 3935, 36728, 80811, 0 +60.001812, 9.999993, 4913, 1056, 2093.6, 2085, 2862, 3522, 46222, 78082, 0 +61.007935, 1.006123, 444, 1056, 2106.7, 2096, 2871, 3649, 46222, 78082, 0 diff --git a/newtests/20140701_112946/console.log b/newtests/20140701_112946/console.log new file mode 100644 index 000000000..e974828ec --- /dev/null +++ b/newtests/20140701_112946/console.log @@ -0,0 +1,43 @@ +2014-07-01 11:29:46.240 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140701_112946/error.log"} into lager_event +2014-07-01 11:29:46.240 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140701_112946/console.log"} into lager_event +2014-07-01 11:29:46.240 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-01 11:29:46.274 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-01 11:29:46.274 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-01 11:29:46.274 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-01 11:29:46.274 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-01 11:29:46.714 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-01 11:29:47.075 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-01 11:29:47.077 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140701_112946/console.log to debug +2014-07-01 11:29:47.083 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} +2014-07-01 11:29:47.166 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-01 11:29:47.167 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-01 11:29:47.167 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-01 11:29:47.184 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-01 11:29:47.184 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-01 11:29:47.272 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-01 11:29:47.272 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-01 11:29:47.302 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-01 11:29:47.308 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-01 11:29:47.316 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-01 11:29:47.316 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-01 11:29:47.357 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-01 11:29:47.428 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> +2014-07-01 11:29:47.437 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> +2014-07-01 11:29:47.452 [info] <0.95.0>@basho_bench_driver_floppystore:new:59 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-01 11:29:47.453 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> +2014-07-01 11:29:47.453 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> +2014-07-01 11:29:47.469 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> +2014-07-01 11:29:47.470 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> +2014-07-01 11:29:47.488 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:132 Finished pinging 'floppy@127.0.0.1' +2014-07-01 11:29:47.488 [info] <0.95.0>@basho_bench_driver_floppystore:new:75 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-01 11:29:47.488 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-01 11:29:47.514 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:132 Finished pinging 'floppy@127.0.0.1' +2014-07-01 11:29:47.515 [info] <0.108.0>@basho_bench_driver_floppystore:new:75 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-01 11:29:47.515 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> +2014-07-01 11:29:47.516 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> +2014-07-01 11:29:47.522 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> +2014-07-01 11:29:47.522 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> +2014-07-01 11:29:47.523 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-01 11:30:48.542 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. diff --git a/newtests/20140701_112946/crash.log b/newtests/20140701_112946/crash.log new file mode 100644 index 000000000..e69de29bb diff --git a/newtests/20140701_112946/error.log b/newtests/20140701_112946/error.log new file mode 100644 index 000000000..e69de29bb diff --git a/newtests/20140701_112946/errors.csv b/newtests/20140701_112946/errors.csv new file mode 100644 index 000000000..29210b502 --- /dev/null +++ b/newtests/20140701_112946/errors.csv @@ -0,0 +1 @@ +"error","count" diff --git a/newtests/20140701_112946/floppstore.config b/newtests/20140701_112946/floppstore.config new file mode 100644 index 000000000..0ee2cec79 --- /dev/null +++ b/newtests/20140701_112946/floppstore.config @@ -0,0 +1,22 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. + +{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. + +{operations, [{append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. diff --git a/newtests/20140701_112946/log.sasl.txt b/newtests/20140701_112946/log.sasl.txt new file mode 100644 index 000000000..5c9b44bac --- /dev/null +++ b/newtests/20140701_112946/log.sasl.txt @@ -0,0 +1,183 @@ + +=PROGRESS REPORT==== 1-Jul-2014::11:29:47 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 1-Jul-2014::11:29:47 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 1-Jul-2014::11:29:47 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 1-Jul-2014::11:29:47 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 1-Jul-2014::11:29:47 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 1-Jul-2014::11:29:47 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 1-Jul-2014::11:29:47 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 1-Jul-2014::11:29:47 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 1-Jul-2014::11:29:47 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 1-Jul-2014::11:29:47 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 1-Jul-2014::11:29:47 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 1-Jul-2014::11:29:47 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 1-Jul-2014::11:29:47 === + supervisor: {local,net_sup} + started: [{pid,<0.97.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 1-Jul-2014::11:29:47 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 1-Jul-2014::11:29:47 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 1-Jul-2014::11:29:47 === + supervisor: {local,kernel_sup} + started: [{pid,<0.96.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 1-Jul-2014::11:29:47 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 1-Jul-2014::11:29:47 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.103.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 1-Jul-2014::11:29:47 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 1-Jul-2014::11:29:47 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 1-Jul-2014::11:29:47 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.109.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 1-Jul-2014::11:29:47 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' diff --git a/newtests/20140701_112946/read_latencies.csv b/newtests/20140701_112946/read_latencies.csv new file mode 100644 index 000000000..939e343ea --- /dev/null +++ b/newtests/20140701_112946/read_latencies.csv @@ -0,0 +1,8 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +10.000806, 10.000806, 4634, 935, 2020.2, 1960, 3109, 4103, 10706, 42627, 0 +20.001816, 10.00101, 4433, 992, 2128.8, 2062, 3255, 4356, 6438, 76861, 0 +30.001812, 9.999996, 4154, 1016, 2227.6, 2177, 3503, 4658, 7900, 11378, 0 +40.001808, 9.999996, 4425, 1045, 2089.3, 2086, 3191, 4147, 7207, 15814, 0 +50.001819, 10.000011, 4813, 965, 2006.0, 2028, 2879, 3707, 9222, 76627, 0 +60.001812, 9.999993, 4921, 1014, 1922.8, 1842, 2768, 3275, 5898, 47620, 0 +61.007935, 1.006123, 497, 1014, 1929.0, 1887, 2780, 3289, 5202, 47620, 0 diff --git a/newtests/20140701_112946/summary.csv b/newtests/20140701_112946/summary.csv new file mode 100644 index 000000000..61deae758 --- /dev/null +++ b/newtests/20140701_112946/summary.csv @@ -0,0 +1,8 @@ +elapsed, window, total, successful, failed +10.000806, 10.000806, 9295, 9295, 0 +20.001816, 10.00101, 8897, 8897, 0 +30.001812, 9.999996, 8466, 8466, 0 +40.001808, 9.999996, 8985, 8985, 0 +50.001819, 10.000011, 9458, 9458, 0 +60.001812, 9.999993, 9834, 9834, 0 +61.007935, 1.006123, 941, 941, 0 diff --git a/newtests/20140709_125412/append_latencies.csv b/newtests/20140709_125412/append_latencies.csv new file mode 100644 index 000000000..0e6a3efd9 --- /dev/null +++ b/newtests/20140709_125412/append_latencies.csv @@ -0,0 +1,8 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +10.000761, 10.000761, 5201, 892, 2036.1, 1822, 2882, 4897, 29720, 53515, 0 +20.00176, 10.000999, 5032, 816, 2058.6, 1985, 2976, 3953, 35864, 64128, 0 +30.001849, 10.000089, 4871, 848, 2181.4, 2049, 3221, 6938, 44155, 46053, 0 +40.001761, 9.999912, 5084, 971, 2006.5, 2021, 2985, 3676, 7036, 13191, 0 +50.002183, 10.000422, 5147, 825, 1954.4, 1885, 2829, 3513, 14415, 61094, 0 +60.000764, 9.998581, 4885, 1016, 2105.0, 1964, 3165, 4879, 27709, 49736, 0 +61.007866, 1.007102, 493, 1016, 2076.0, 1951, 3142, 4461, 17309, 49736, 0 diff --git a/newtests/20140709_125412/console.log b/newtests/20140709_125412/console.log new file mode 100644 index 000000000..8993bac56 --- /dev/null +++ b/newtests/20140709_125412/console.log @@ -0,0 +1,43 @@ +2014-07-09 12:54:12.704 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140709_125412/error.log"} into lager_event +2014-07-09 12:54:12.704 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140709_125412/console.log"} into lager_event +2014-07-09 12:54:12.704 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-09 12:54:12.740 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-09 12:54:12.740 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-09 12:54:12.741 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-09 12:54:12.741 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-09 12:54:13.177 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-09 12:54:13.657 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-09 12:54:13.665 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140709_125412/console.log to debug +2014-07-09 12:54:13.672 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} +2014-07-09 12:54:13.769 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-09 12:54:13.769 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-09 12:54:13.770 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-09 12:54:13.786 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-09 12:54:13.786 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-09 12:54:13.876 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-09 12:54:13.876 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-09 12:54:13.907 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-09 12:54:13.914 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-09 12:54:13.920 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-09 12:54:13.920 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-09 12:54:13.959 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-09 12:54:14.034 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> +2014-07-09 12:54:14.043 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> +2014-07-09 12:54:14.059 [info] <0.95.0>@basho_bench_driver_floppystore:new:59 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-09 12:54:14.059 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> +2014-07-09 12:54:14.059 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> +2014-07-09 12:54:14.074 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> +2014-07-09 12:54:14.075 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> +2014-07-09 12:54:14.097 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:132 Finished pinging 'floppy@127.0.0.1' +2014-07-09 12:54:14.097 [info] <0.95.0>@basho_bench_driver_floppystore:new:75 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-09 12:54:14.097 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-09 12:54:14.133 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:132 Finished pinging 'floppy@127.0.0.1' +2014-07-09 12:54:14.133 [info] <0.108.0>@basho_bench_driver_floppystore:new:75 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-09 12:54:14.133 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> +2014-07-09 12:54:14.134 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> +2014-07-09 12:54:14.140 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> +2014-07-09 12:54:14.140 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> +2014-07-09 12:54:14.140 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-09 12:55:15.159 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. diff --git a/newtests/20140709_125412/crash.log b/newtests/20140709_125412/crash.log new file mode 100644 index 000000000..e69de29bb diff --git a/newtests/20140709_125412/error.log b/newtests/20140709_125412/error.log new file mode 100644 index 000000000..e69de29bb diff --git a/newtests/20140709_125412/errors.csv b/newtests/20140709_125412/errors.csv new file mode 100644 index 000000000..29210b502 --- /dev/null +++ b/newtests/20140709_125412/errors.csv @@ -0,0 +1 @@ +"error","count" diff --git a/newtests/20140709_125412/floppstore.config b/newtests/20140709_125412/floppstore.config new file mode 100644 index 000000000..0ee2cec79 --- /dev/null +++ b/newtests/20140709_125412/floppstore.config @@ -0,0 +1,22 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. + +{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. + +{operations, [{append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. diff --git a/newtests/20140709_125412/log.sasl.txt b/newtests/20140709_125412/log.sasl.txt new file mode 100644 index 000000000..aa5ad277b --- /dev/null +++ b/newtests/20140709_125412/log.sasl.txt @@ -0,0 +1,183 @@ + +=PROGRESS REPORT==== 9-Jul-2014::12:54:13 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 9-Jul-2014::12:54:13 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 9-Jul-2014::12:54:13 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 9-Jul-2014::12:54:13 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 9-Jul-2014::12:54:13 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 9-Jul-2014::12:54:13 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 9-Jul-2014::12:54:13 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 9-Jul-2014::12:54:13 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 9-Jul-2014::12:54:13 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 9-Jul-2014::12:54:13 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 9-Jul-2014::12:54:13 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 9-Jul-2014::12:54:13 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 9-Jul-2014::12:54:14 === + supervisor: {local,net_sup} + started: [{pid,<0.97.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 9-Jul-2014::12:54:14 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 9-Jul-2014::12:54:14 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 9-Jul-2014::12:54:14 === + supervisor: {local,kernel_sup} + started: [{pid,<0.96.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 9-Jul-2014::12:54:14 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 9-Jul-2014::12:54:14 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.103.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 9-Jul-2014::12:54:14 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 9-Jul-2014::12:54:14 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 9-Jul-2014::12:54:14 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.109.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 9-Jul-2014::12:54:14 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' diff --git a/newtests/20140709_125412/read_latencies.csv b/newtests/20140709_125412/read_latencies.csv new file mode 100644 index 000000000..728047a8d --- /dev/null +++ b/newtests/20140709_125412/read_latencies.csv @@ -0,0 +1,8 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +10.000761, 10.000761, 5123, 854, 1803.0, 1583, 2687, 3432, 15884, 42643, 0 +20.00176, 10.000999, 4985, 775, 1876.8, 1734, 2841, 3611, 9220, 62209, 0 +30.001849, 10.000089, 4709, 812, 1940.1, 1832, 2944, 4124, 13828, 42997, 0 +40.001761, 9.999912, 5078, 890, 1877.4, 1816, 2886, 3594, 6237, 13141, 0 +50.002183, 10.000422, 5267, 844, 1834.3, 1735, 2777, 3368, 7523, 53119, 0 +60.000764, 9.998581, 4901, 926, 1932.9, 1828, 2996, 4362, 10440, 31195, 0 +61.007866, 1.007102, 493, 926, 1927.9, 1835, 2935, 4043, 10977, 31195, 0 diff --git a/newtests/20140709_125412/summary.csv b/newtests/20140709_125412/summary.csv new file mode 100644 index 000000000..6c7bc8ff1 --- /dev/null +++ b/newtests/20140709_125412/summary.csv @@ -0,0 +1,8 @@ +elapsed, window, total, successful, failed +10.000761, 10.000761, 10324, 10324, 0 +20.00176, 10.000999, 10017, 10017, 0 +30.001849, 10.000089, 9580, 9580, 0 +40.001761, 9.999912, 10162, 10162, 0 +50.002183, 10.000422, 10414, 10414, 0 +60.000764, 9.998581, 9786, 9786, 0 +61.007866, 1.007102, 986, 986, 0 diff --git a/newtests/20140711_182613/append_latencies.csv b/newtests/20140711_182613/append_latencies.csv new file mode 100644 index 000000000..2cee6f0d8 --- /dev/null +++ b/newtests/20140711_182613/append_latencies.csv @@ -0,0 +1 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors diff --git a/newtests/20140711_182613/console.log b/newtests/20140711_182613/console.log new file mode 100644 index 000000000..0ec6afa8b --- /dev/null +++ b/newtests/20140711_182613/console.log @@ -0,0 +1,35 @@ +2014-07-11 18:26:14.052 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140711_182613/error.log"} into lager_event +2014-07-11 18:26:14.052 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140711_182613/console.log"} into lager_event +2014-07-11 18:26:14.052 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-11 18:26:14.084 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-11 18:26:14.084 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-11 18:26:14.084 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-11 18:26:14.084 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-11 18:26:14.529 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-11 18:26:14.896 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-11 18:26:14.904 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140711_182613/console.log to debug +2014-07-11 18:26:14.913 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} +2014-07-11 18:26:15.001 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-11 18:26:15.001 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-11 18:26:15.002 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-11 18:26:15.018 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-11 18:26:15.018 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-11 18:26:15.111 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-11 18:26:15.111 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-11 18:26:15.141 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-11 18:26:15.145 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-11 18:26:15.151 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-11 18:26:15.151 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-11 18:26:15.190 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-11 18:26:15.258 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> +2014-07-11 18:26:15.267 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> +2014-07-11 18:26:15.283 [info] <0.95.0>@basho_bench_driver_floppystore:new:56 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-11 18:26:15.284 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> +2014-07-11 18:26:15.284 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> +2014-07-11 18:26:15.302 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> +2014-07-11 18:26:15.302 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> +2014-07-11 18:26:15.320 [error] <0.95.0>@basho_bench_driver_floppystore:ping_each:137 Failed to ping node 'floppy@127.0.0.1' +2014-07-11 18:26:15.320 [info] <0.95.0>@basho_bench_driver_floppystore:new:72 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-11 18:26:15.320 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> diff --git a/newtests/20140711_182613/crash.log b/newtests/20140711_182613/crash.log new file mode 100644 index 000000000..e69de29bb diff --git a/newtests/20140711_182613/error.log b/newtests/20140711_182613/error.log new file mode 100644 index 000000000..a58fcdb1f --- /dev/null +++ b/newtests/20140711_182613/error.log @@ -0,0 +1 @@ +2014-07-11 18:26:15.320 [error] <0.95.0>@basho_bench_driver_floppystore:ping_each:137 Failed to ping node 'floppy@127.0.0.1' diff --git a/newtests/20140711_182613/errors.csv b/newtests/20140711_182613/errors.csv new file mode 100644 index 000000000..29210b502 --- /dev/null +++ b/newtests/20140711_182613/errors.csv @@ -0,0 +1 @@ +"error","count" diff --git a/newtests/20140711_182613/floppstore.config b/newtests/20140711_182613/floppstore.config new file mode 100644 index 000000000..0ee2cec79 --- /dev/null +++ b/newtests/20140711_182613/floppstore.config @@ -0,0 +1,22 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. + +{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. + +{operations, [{append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. diff --git a/newtests/20140711_182613/log.sasl.txt b/newtests/20140711_182613/log.sasl.txt new file mode 100644 index 000000000..2712d8904 --- /dev/null +++ b/newtests/20140711_182613/log.sasl.txt @@ -0,0 +1,159 @@ + +=PROGRESS REPORT==== 11-Jul-2014::18:26:14 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 11-Jul-2014::18:26:15 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 11-Jul-2014::18:26:15 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 11-Jul-2014::18:26:15 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 11-Jul-2014::18:26:15 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 11-Jul-2014::18:26:15 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 11-Jul-2014::18:26:15 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 11-Jul-2014::18:26:15 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 11-Jul-2014::18:26:15 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 11-Jul-2014::18:26:15 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 11-Jul-2014::18:26:15 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 11-Jul-2014::18:26:15 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 11-Jul-2014::18:26:15 === + supervisor: {local,net_sup} + started: [{pid,<0.97.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 11-Jul-2014::18:26:15 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 11-Jul-2014::18:26:15 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 11-Jul-2014::18:26:15 === + supervisor: {local,kernel_sup} + started: [{pid,<0.96.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 11-Jul-2014::18:26:15 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 11-Jul-2014::18:26:15 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.103.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 11-Jul-2014::18:26:15 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] diff --git a/newtests/20140711_182613/read_latencies.csv b/newtests/20140711_182613/read_latencies.csv new file mode 100644 index 000000000..2cee6f0d8 --- /dev/null +++ b/newtests/20140711_182613/read_latencies.csv @@ -0,0 +1 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors diff --git a/newtests/20140711_182613/summary.csv b/newtests/20140711_182613/summary.csv new file mode 100644 index 000000000..fa9e41e5d --- /dev/null +++ b/newtests/20140711_182613/summary.csv @@ -0,0 +1 @@ +elapsed, window, total, successful, failed diff --git a/newtests/20140711_182632/append_latencies.csv b/newtests/20140711_182632/append_latencies.csv new file mode 100644 index 000000000..cb579baaa --- /dev/null +++ b/newtests/20140711_182632/append_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.154102, 0.154102, 0, 0, 0, 0, 0, 0, 0, 0, 7 diff --git a/newtests/20140711_182632/console.log b/newtests/20140711_182632/console.log new file mode 100644 index 000000000..f8a9469b5 --- /dev/null +++ b/newtests/20140711_182632/console.log @@ -0,0 +1,93 @@ +2014-07-11 18:26:33.048 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140711_182632/error.log"} into lager_event +2014-07-11 18:26:33.048 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140711_182632/console.log"} into lager_event +2014-07-11 18:26:33.048 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-11 18:26:33.086 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-11 18:26:33.086 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-11 18:26:33.086 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-11 18:26:33.087 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-11 18:26:33.518 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-11 18:26:34.016 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-11 18:26:34.017 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140711_182632/console.log to debug +2014-07-11 18:26:34.024 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} +2014-07-11 18:26:34.112 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-11 18:26:34.112 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-11 18:26:34.113 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-11 18:26:34.127 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-11 18:26:34.127 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-11 18:26:34.214 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-11 18:26:34.215 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-11 18:26:34.244 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-11 18:26:34.248 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-11 18:26:34.253 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-11 18:26:34.253 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-11 18:26:34.293 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-11 18:26:34.360 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> +2014-07-11 18:26:34.368 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> +2014-07-11 18:26:34.382 [info] <0.95.0>@basho_bench_driver_floppystore:new:56 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-11 18:26:34.382 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> +2014-07-11 18:26:34.383 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> +2014-07-11 18:26:34.402 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> +2014-07-11 18:26:34.402 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> +2014-07-11 18:26:34.426 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-11 18:26:34.426 [info] <0.95.0>@basho_bench_driver_floppystore:new:72 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-11 18:26:34.427 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-11 18:26:34.453 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-11 18:26:34.453 [info] <0.108.0>@basho_bench_driver_floppystore:new:72 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-11 18:26:34.454 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> +2014-07-11 18:26:34.454 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> +2014-07-11 18:26:34.459 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> +2014-07-11 18:26:34.459 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> +2014-07-11 18:26:34.459 [debug] <0.95.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,106}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-11 18:26:34.459 [debug] <0.108.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,106}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-11 18:26:34.460 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash +2014-07-11 18:26:34.460 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash +2014-07-11 18:26:34.460 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-11 18:26:34.460 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-11 18:26:34.490 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-11 18:26:34.490 [info] <0.111.0>@basho_bench_driver_floppystore:new:72 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-11 18:26:34.490 [warning] <0.110.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-11 18:26:34.490 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> +2014-07-11 18:26:34.490 [debug] <0.111.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,106}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-11 18:26:34.491 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash +2014-07-11 18:26:34.491 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.110.0> +2014-07-11 18:26:34.491 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-11 18:26:34.520 [info] <0.113.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-11 18:26:34.520 [info] <0.113.0>@basho_bench_driver_floppystore:new:72 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-11 18:26:34.520 [warning] <0.112.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-11 18:26:34.520 [info] <0.113.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.113.0> +2014-07-11 18:26:34.521 [debug] <0.113.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,106}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-11 18:26:34.521 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash +2014-07-11 18:26:34.521 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.112.0> +2014-07-11 18:26:34.521 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.110.0> exit with reason normal in context child_terminated +2014-07-11 18:26:34.545 [info] <0.115.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-11 18:26:34.545 [info] <0.115.0>@basho_bench_driver_floppystore:new:72 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-11 18:26:34.545 [warning] <0.114.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-11 18:26:34.545 [info] <0.115.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.115.0> +2014-07-11 18:26:34.546 [debug] <0.115.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,106}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-11 18:26:34.546 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash +2014-07-11 18:26:34.546 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.114.0> +2014-07-11 18:26:34.546 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.112.0> exit with reason normal in context child_terminated +2014-07-11 18:26:34.578 [info] <0.117.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-11 18:26:34.578 [info] <0.117.0>@basho_bench_driver_floppystore:new:72 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-11 18:26:34.578 [warning] <0.116.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-11 18:26:34.578 [info] <0.117.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.117.0> +2014-07-11 18:26:34.579 [debug] <0.117.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,106}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-11 18:26:34.579 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.116.0> +2014-07-11 18:26:34.579 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash +2014-07-11 18:26:34.580 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.114.0> exit with reason normal in context child_terminated +2014-07-11 18:26:34.607 [info] <0.119.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-11 18:26:34.607 [info] <0.119.0>@basho_bench_driver_floppystore:new:72 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-11 18:26:34.607 [warning] <0.118.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-11 18:26:34.607 [info] <0.119.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.119.0> +2014-07-11 18:26:34.608 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.118.0> +2014-07-11 18:26:34.608 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.116.0> exit with reason normal in context child_terminated +2014-07-11 18:26:34.609 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-11 18:26:34.613 [debug] <0.119.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,106}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-11 18:26:34.620 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {append,append} +2014-07-11 18:26:34.620 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} +2014-07-11 18:26:34.621 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{append,append},7},{{{append,append},crash},7}] +2014-07-11 18:26:34.621 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: +2014-07-11 18:26:34.621 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{append,append},crash}: 7 +2014-07-11 18:26:34.622 [info] <0.2.0>@basho_bench:wait_for_stop:191 Test stopped: shutdown diff --git a/newtests/20140711_182632/crash.log b/newtests/20140711_182632/crash.log new file mode 100644 index 000000000..54a6993bf --- /dev/null +++ b/newtests/20140711_182632/crash.log @@ -0,0 +1,42 @@ +2014-07-11 18:26:34 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-11 18:26:34 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-11 18:26:34 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-11 18:26:34 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.112.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-11 18:26:34 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.114.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-11 18:26:34 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.116.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-11 18:26:34 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.116.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140711_182632/error.log b/newtests/20140711_182632/error.log new file mode 100644 index 000000000..64df2f5c3 --- /dev/null +++ b/newtests/20140711_182632/error.log @@ -0,0 +1,13 @@ +2014-07-11 18:26:34.460 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash +2014-07-11 18:26:34.460 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash +2014-07-11 18:26:34.460 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-11 18:26:34.491 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash +2014-07-11 18:26:34.491 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-11 18:26:34.521 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash +2014-07-11 18:26:34.521 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.110.0> exit with reason normal in context child_terminated +2014-07-11 18:26:34.546 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash +2014-07-11 18:26:34.546 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.112.0> exit with reason normal in context child_terminated +2014-07-11 18:26:34.579 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash +2014-07-11 18:26:34.580 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.114.0> exit with reason normal in context child_terminated +2014-07-11 18:26:34.608 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.116.0> exit with reason normal in context child_terminated +2014-07-11 18:26:34.609 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140711_182632/errors.csv b/newtests/20140711_182632/errors.csv new file mode 100644 index 000000000..a31ba014e --- /dev/null +++ b/newtests/20140711_182632/errors.csv @@ -0,0 +1,2 @@ +"error","count" +"{{append,append},crash}","7" diff --git a/newtests/20140711_182632/floppstore.config b/newtests/20140711_182632/floppstore.config new file mode 100644 index 000000000..0ee2cec79 --- /dev/null +++ b/newtests/20140711_182632/floppstore.config @@ -0,0 +1,22 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. + +{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. + +{operations, [{append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. diff --git a/newtests/20140711_182632/log.sasl.txt b/newtests/20140711_182632/log.sasl.txt new file mode 100644 index 000000000..2754f88c1 --- /dev/null +++ b/newtests/20140711_182632/log.sasl.txt @@ -0,0 +1,336 @@ + +=PROGRESS REPORT==== 11-Jul-2014::18:26:34 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 11-Jul-2014::18:26:34 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 11-Jul-2014::18:26:34 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 11-Jul-2014::18:26:34 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 11-Jul-2014::18:26:34 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 11-Jul-2014::18:26:34 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 11-Jul-2014::18:26:34 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 11-Jul-2014::18:26:34 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 11-Jul-2014::18:26:34 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 11-Jul-2014::18:26:34 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 11-Jul-2014::18:26:34 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 11-Jul-2014::18:26:34 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 11-Jul-2014::18:26:34 === + supervisor: {local,net_sup} + started: [{pid,<0.97.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 11-Jul-2014::18:26:34 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 11-Jul-2014::18:26:34 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 11-Jul-2014::18:26:34 === + supervisor: {local,kernel_sup} + started: [{pid,<0.96.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 11-Jul-2014::18:26:34 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 11-Jul-2014::18:26:34 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.103.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 11-Jul-2014::18:26:34 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 11-Jul-2014::18:26:34 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 11-Jul-2014::18:26:34 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.109.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 11-Jul-2014::18:26:34 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 11-Jul-2014::18:26:34 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=PROGRESS REPORT==== 11-Jul-2014::18:26:34 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.110.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 11-Jul-2014::18:26:34 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 11-Jul-2014::18:26:34 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.112.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 11-Jul-2014::18:26:34 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 11-Jul-2014::18:26:34 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.114.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 11-Jul-2014::18:26:34 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.112.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 11-Jul-2014::18:26:34 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.116.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 11-Jul-2014::18:26:34 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.114.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 11-Jul-2014::18:26:34 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.118.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 11-Jul-2014::18:26:34 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.116.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 11-Jul-2014::18:26:34 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.116.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140711_182632/read_latencies.csv b/newtests/20140711_182632/read_latencies.csv new file mode 100644 index 000000000..e1163c2de --- /dev/null +++ b/newtests/20140711_182632/read_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.154102, 0.154102, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140711_182632/summary.csv b/newtests/20140711_182632/summary.csv new file mode 100644 index 000000000..004a6fe10 --- /dev/null +++ b/newtests/20140711_182632/summary.csv @@ -0,0 +1,2 @@ +elapsed, window, total, successful, failed +0.154102, 0.154102, 7, 0, 7 diff --git a/newtests/20140711_182641/append_latencies.csv b/newtests/20140711_182641/append_latencies.csv new file mode 100644 index 000000000..9bc654f0d --- /dev/null +++ b/newtests/20140711_182641/append_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.163101, 0.163101, 0, 0, 0, 0, 0, 0, 0, 0, 7 diff --git a/newtests/20140711_182641/console.log b/newtests/20140711_182641/console.log new file mode 100644 index 000000000..d6daad9a8 --- /dev/null +++ b/newtests/20140711_182641/console.log @@ -0,0 +1,92 @@ +2014-07-11 18:26:41.548 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140711_182641/error.log"} into lager_event +2014-07-11 18:26:41.548 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140711_182641/console.log"} into lager_event +2014-07-11 18:26:41.548 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-11 18:26:41.579 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-11 18:26:41.580 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-11 18:26:41.580 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-11 18:26:41.580 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-11 18:26:42.022 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-11 18:26:42.394 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-11 18:26:42.395 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140711_182641/console.log to debug +2014-07-11 18:26:42.402 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} +2014-07-11 18:26:42.482 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-11 18:26:42.483 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-11 18:26:42.483 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-11 18:26:42.498 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-11 18:26:42.499 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-11 18:26:42.584 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-11 18:26:42.584 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-11 18:26:42.613 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-11 18:26:42.617 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-11 18:26:42.621 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-11 18:26:42.622 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-11 18:26:42.661 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-11 18:26:42.727 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> +2014-07-11 18:26:42.734 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> +2014-07-11 18:26:42.746 [info] <0.95.0>@basho_bench_driver_floppystore:new:56 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-11 18:26:42.746 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> +2014-07-11 18:26:42.747 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> +2014-07-11 18:26:42.762 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> +2014-07-11 18:26:42.762 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> +2014-07-11 18:26:42.777 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-11 18:26:42.777 [info] <0.95.0>@basho_bench_driver_floppystore:new:72 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-11 18:26:42.778 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-11 18:26:42.812 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-11 18:26:42.812 [info] <0.108.0>@basho_bench_driver_floppystore:new:72 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-11 18:26:42.812 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> +2014-07-11 18:26:42.813 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> +2014-07-11 18:26:42.819 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> +2014-07-11 18:26:42.819 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> +2014-07-11 18:26:42.820 [debug] <0.95.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,106}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-11 18:26:42.820 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash +2014-07-11 18:26:42.820 [debug] <0.108.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,106}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-11 18:26:42.820 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-11 18:26:42.820 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash +2014-07-11 18:26:42.827 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-11 18:26:42.857 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-11 18:26:42.857 [info] <0.111.0>@basho_bench_driver_floppystore:new:72 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-11 18:26:42.857 [warning] <0.110.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-11 18:26:42.857 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> +2014-07-11 18:26:42.857 [debug] <0.111.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,106}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-11 18:26:42.857 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.110.0> +2014-07-11 18:26:42.857 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash +2014-07-11 18:26:42.858 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-11 18:26:42.887 [info] <0.113.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-11 18:26:42.887 [info] <0.113.0>@basho_bench_driver_floppystore:new:72 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-11 18:26:42.887 [warning] <0.112.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-11 18:26:42.887 [info] <0.113.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.113.0> +2014-07-11 18:26:42.888 [debug] <0.113.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,106}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-11 18:26:42.888 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash +2014-07-11 18:26:42.888 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.112.0> +2014-07-11 18:26:42.889 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.110.0> exit with reason normal in context child_terminated +2014-07-11 18:26:42.919 [info] <0.115.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-11 18:26:42.919 [info] <0.115.0>@basho_bench_driver_floppystore:new:72 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-11 18:26:42.919 [warning] <0.114.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-11 18:26:42.919 [info] <0.115.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.115.0> +2014-07-11 18:26:42.919 [debug] <0.115.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,106}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-11 18:26:42.919 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash +2014-07-11 18:26:42.920 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.114.0> +2014-07-11 18:26:42.920 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.112.0> exit with reason normal in context child_terminated +2014-07-11 18:26:42.946 [info] <0.117.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-11 18:26:42.946 [info] <0.117.0>@basho_bench_driver_floppystore:new:72 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-11 18:26:42.946 [warning] <0.116.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-11 18:26:42.946 [info] <0.117.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.117.0> +2014-07-11 18:26:42.947 [debug] <0.117.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,106}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-11 18:26:42.947 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash +2014-07-11 18:26:42.947 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.116.0> +2014-07-11 18:26:42.947 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.114.0> exit with reason normal in context child_terminated +2014-07-11 18:26:42.975 [info] <0.119.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-11 18:26:42.975 [info] <0.119.0>@basho_bench_driver_floppystore:new:72 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-11 18:26:42.975 [warning] <0.118.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-11 18:26:42.975 [info] <0.119.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.119.0> +2014-07-11 18:26:42.975 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.118.0> +2014-07-11 18:26:42.976 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.116.0> exit with reason normal in context child_terminated +2014-07-11 18:26:42.976 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-11 18:26:42.982 [debug] <0.119.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,106}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-11 18:26:42.989 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {append,append} +2014-07-11 18:26:42.989 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} +2014-07-11 18:26:42.990 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{append,append},7},{{{append,append},crash},7}] +2014-07-11 18:26:42.990 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: +2014-07-11 18:26:42.990 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{append,append},crash}: 7 diff --git a/newtests/20140711_182641/crash.log b/newtests/20140711_182641/crash.log new file mode 100644 index 000000000..807e38ca1 --- /dev/null +++ b/newtests/20140711_182641/crash.log @@ -0,0 +1,42 @@ +2014-07-11 18:26:42 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-11 18:26:42 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-11 18:26:42 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-11 18:26:42 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.112.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-11 18:26:42 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.114.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-11 18:26:42 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.116.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-11 18:26:42 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.116.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140711_182641/error.log b/newtests/20140711_182641/error.log new file mode 100644 index 000000000..a9f65e878 --- /dev/null +++ b/newtests/20140711_182641/error.log @@ -0,0 +1,13 @@ +2014-07-11 18:26:42.820 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash +2014-07-11 18:26:42.820 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash +2014-07-11 18:26:42.827 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-11 18:26:42.857 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash +2014-07-11 18:26:42.858 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-11 18:26:42.888 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash +2014-07-11 18:26:42.889 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.110.0> exit with reason normal in context child_terminated +2014-07-11 18:26:42.919 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash +2014-07-11 18:26:42.920 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.112.0> exit with reason normal in context child_terminated +2014-07-11 18:26:42.947 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash +2014-07-11 18:26:42.947 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.114.0> exit with reason normal in context child_terminated +2014-07-11 18:26:42.976 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.116.0> exit with reason normal in context child_terminated +2014-07-11 18:26:42.976 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140711_182641/errors.csv b/newtests/20140711_182641/errors.csv new file mode 100644 index 000000000..a31ba014e --- /dev/null +++ b/newtests/20140711_182641/errors.csv @@ -0,0 +1,2 @@ +"error","count" +"{{append,append},crash}","7" diff --git a/newtests/20140711_182641/floppstore.config b/newtests/20140711_182641/floppstore.config new file mode 100644 index 000000000..0ee2cec79 --- /dev/null +++ b/newtests/20140711_182641/floppstore.config @@ -0,0 +1,22 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. + +{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. + +{operations, [{append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. diff --git a/newtests/20140711_182641/log.sasl.txt b/newtests/20140711_182641/log.sasl.txt new file mode 100644 index 000000000..58b30c4b8 --- /dev/null +++ b/newtests/20140711_182641/log.sasl.txt @@ -0,0 +1,336 @@ + +=PROGRESS REPORT==== 11-Jul-2014::18:26:42 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 11-Jul-2014::18:26:42 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 11-Jul-2014::18:26:42 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 11-Jul-2014::18:26:42 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 11-Jul-2014::18:26:42 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 11-Jul-2014::18:26:42 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 11-Jul-2014::18:26:42 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 11-Jul-2014::18:26:42 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 11-Jul-2014::18:26:42 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 11-Jul-2014::18:26:42 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 11-Jul-2014::18:26:42 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 11-Jul-2014::18:26:42 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 11-Jul-2014::18:26:42 === + supervisor: {local,net_sup} + started: [{pid,<0.97.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 11-Jul-2014::18:26:42 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 11-Jul-2014::18:26:42 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 11-Jul-2014::18:26:42 === + supervisor: {local,kernel_sup} + started: [{pid,<0.96.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 11-Jul-2014::18:26:42 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 11-Jul-2014::18:26:42 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.103.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 11-Jul-2014::18:26:42 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 11-Jul-2014::18:26:42 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 11-Jul-2014::18:26:42 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.109.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 11-Jul-2014::18:26:42 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 11-Jul-2014::18:26:42 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 11-Jul-2014::18:26:42 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.110.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 11-Jul-2014::18:26:42 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 11-Jul-2014::18:26:42 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.112.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 11-Jul-2014::18:26:42 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 11-Jul-2014::18:26:42 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.114.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 11-Jul-2014::18:26:42 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.112.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 11-Jul-2014::18:26:42 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.116.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 11-Jul-2014::18:26:42 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.114.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 11-Jul-2014::18:26:42 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.118.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 11-Jul-2014::18:26:42 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.116.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 11-Jul-2014::18:26:42 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.116.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140711_182641/read_latencies.csv b/newtests/20140711_182641/read_latencies.csv new file mode 100644 index 000000000..ac1a69647 --- /dev/null +++ b/newtests/20140711_182641/read_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.163101, 0.163101, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140711_182641/summary.csv b/newtests/20140711_182641/summary.csv new file mode 100644 index 000000000..f23e8710c --- /dev/null +++ b/newtests/20140711_182641/summary.csv @@ -0,0 +1,2 @@ +elapsed, window, total, successful, failed +0.163101, 0.163101, 7, 0, 7 diff --git a/newtests/20140716_154312/append_latencies.csv b/newtests/20140716_154312/append_latencies.csv new file mode 100644 index 000000000..2cee6f0d8 --- /dev/null +++ b/newtests/20140716_154312/append_latencies.csv @@ -0,0 +1 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors diff --git a/newtests/20140716_154312/console.log b/newtests/20140716_154312/console.log new file mode 100644 index 000000000..c92acf5fb --- /dev/null +++ b/newtests/20140716_154312/console.log @@ -0,0 +1,35 @@ +2014-07-16 15:43:13.012 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_154312/error.log"} into lager_event +2014-07-16 15:43:13.012 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_154312/console.log"} into lager_event +2014-07-16 15:43:13.012 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-16 15:43:13.049 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-16 15:43:13.049 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-16 15:43:13.050 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-16 15:43:13.050 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-16 15:43:13.485 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-16 15:43:13.854 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-16 15:43:13.863 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_154312/console.log to debug +2014-07-16 15:43:13.872 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} +2014-07-16 15:43:13.958 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-16 15:43:13.958 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-16 15:43:13.959 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-16 15:43:13.975 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-16 15:43:13.975 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-16 15:43:14.066 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-16 15:43:14.067 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-16 15:43:14.098 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-16 15:43:14.103 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-16 15:43:14.110 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-16 15:43:14.110 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-16 15:43:14.152 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-16 15:43:14.218 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> +2014-07-16 15:43:14.225 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> +2014-07-16 15:43:14.238 [info] <0.95.0>@basho_bench_driver_floppystore:new:56 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-16 15:43:14.239 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> +2014-07-16 15:43:14.239 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> +2014-07-16 15:43:14.263 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> +2014-07-16 15:43:14.264 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> +2014-07-16 15:43:14.284 [error] <0.95.0>@basho_bench_driver_floppystore:ping_each:137 Failed to ping node 'floppy@127.0.0.1' +2014-07-16 15:43:14.284 [info] <0.95.0>@basho_bench_driver_floppystore:new:72 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 15:43:14.284 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> diff --git a/newtests/20140716_154312/crash.log b/newtests/20140716_154312/crash.log new file mode 100644 index 000000000..e69de29bb diff --git a/newtests/20140716_154312/error.log b/newtests/20140716_154312/error.log new file mode 100644 index 000000000..fa9c29e22 --- /dev/null +++ b/newtests/20140716_154312/error.log @@ -0,0 +1 @@ +2014-07-16 15:43:14.284 [error] <0.95.0>@basho_bench_driver_floppystore:ping_each:137 Failed to ping node 'floppy@127.0.0.1' diff --git a/newtests/20140716_154312/errors.csv b/newtests/20140716_154312/errors.csv new file mode 100644 index 000000000..29210b502 --- /dev/null +++ b/newtests/20140716_154312/errors.csv @@ -0,0 +1 @@ +"error","count" diff --git a/newtests/20140716_154312/floppstore.config b/newtests/20140716_154312/floppstore.config new file mode 100644 index 000000000..55db32761 --- /dev/null +++ b/newtests/20140716_154312/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. + +{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. + +{operations, [{append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_154312/log.sasl.txt b/newtests/20140716_154312/log.sasl.txt new file mode 100644 index 000000000..6df5748c0 --- /dev/null +++ b/newtests/20140716_154312/log.sasl.txt @@ -0,0 +1,159 @@ + +=PROGRESS REPORT==== 16-Jul-2014::15:43:13 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:43:13 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:43:13 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::15:43:13 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:43:13 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::15:43:14 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:43:14 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::15:43:14 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::15:43:14 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:43:14 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:43:14 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::15:43:14 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:43:14 === + supervisor: {local,net_sup} + started: [{pid,<0.97.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:43:14 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:43:14 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:43:14 === + supervisor: {local,kernel_sup} + started: [{pid,<0.96.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::15:43:14 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 16-Jul-2014::15:43:14 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.103.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:43:14 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] diff --git a/newtests/20140716_154312/read_latencies.csv b/newtests/20140716_154312/read_latencies.csv new file mode 100644 index 000000000..2cee6f0d8 --- /dev/null +++ b/newtests/20140716_154312/read_latencies.csv @@ -0,0 +1 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors diff --git a/newtests/20140716_154312/summary.csv b/newtests/20140716_154312/summary.csv new file mode 100644 index 000000000..fa9e41e5d --- /dev/null +++ b/newtests/20140716_154312/summary.csv @@ -0,0 +1 @@ +elapsed, window, total, successful, failed diff --git a/newtests/20140716_154402/append_latencies.csv b/newtests/20140716_154402/append_latencies.csv new file mode 100644 index 000000000..2cee6f0d8 --- /dev/null +++ b/newtests/20140716_154402/append_latencies.csv @@ -0,0 +1 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors diff --git a/newtests/20140716_154402/console.log b/newtests/20140716_154402/console.log new file mode 100644 index 000000000..9976cb7be --- /dev/null +++ b/newtests/20140716_154402/console.log @@ -0,0 +1,35 @@ +2014-07-16 15:44:02.740 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_154402/error.log"} into lager_event +2014-07-16 15:44:02.740 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_154402/console.log"} into lager_event +2014-07-16 15:44:02.740 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-16 15:44:02.775 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-16 15:44:02.776 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-16 15:44:02.776 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-16 15:44:02.776 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-16 15:44:03.213 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-16 15:44:03.627 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-16 15:44:03.628 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_154402/console.log to debug +2014-07-16 15:44:03.636 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} +2014-07-16 15:44:03.720 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-16 15:44:03.720 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-16 15:44:03.720 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-16 15:44:03.737 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-16 15:44:03.737 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-16 15:44:03.823 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-16 15:44:03.824 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-16 15:44:03.855 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-16 15:44:03.859 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-16 15:44:03.865 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-16 15:44:03.865 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-16 15:44:03.903 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-16 15:44:03.973 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> +2014-07-16 15:44:03.982 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> +2014-07-16 15:44:03.995 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-16 15:44:03.995 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> +2014-07-16 15:44:03.996 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> +2014-07-16 15:44:04.009 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> +2014-07-16 15:44:04.009 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> +2014-07-16 15:44:04.025 [error] <0.95.0>@basho_bench_driver_floppystore:ping_each:137 Failed to ping node 'floppy@127.0.0.1' +2014-07-16 15:44:04.025 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 15:44:04.025 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> diff --git a/newtests/20140716_154402/crash.log b/newtests/20140716_154402/crash.log new file mode 100644 index 000000000..e69de29bb diff --git a/newtests/20140716_154402/error.log b/newtests/20140716_154402/error.log new file mode 100644 index 000000000..b7763870d --- /dev/null +++ b/newtests/20140716_154402/error.log @@ -0,0 +1 @@ +2014-07-16 15:44:04.025 [error] <0.95.0>@basho_bench_driver_floppystore:ping_each:137 Failed to ping node 'floppy@127.0.0.1' diff --git a/newtests/20140716_154402/errors.csv b/newtests/20140716_154402/errors.csv new file mode 100644 index 000000000..29210b502 --- /dev/null +++ b/newtests/20140716_154402/errors.csv @@ -0,0 +1 @@ +"error","count" diff --git a/newtests/20140716_154402/floppstore.config b/newtests/20140716_154402/floppstore.config new file mode 100644 index 000000000..55db32761 --- /dev/null +++ b/newtests/20140716_154402/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. + +{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. + +{operations, [{append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_154402/log.sasl.txt b/newtests/20140716_154402/log.sasl.txt new file mode 100644 index 000000000..cc2287ea3 --- /dev/null +++ b/newtests/20140716_154402/log.sasl.txt @@ -0,0 +1,159 @@ + +=PROGRESS REPORT==== 16-Jul-2014::15:44:03 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:44:03 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:44:03 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::15:44:03 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:44:03 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::15:44:03 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:44:03 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::15:44:03 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::15:44:03 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:44:03 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:44:03 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::15:44:03 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:44:03 === + supervisor: {local,net_sup} + started: [{pid,<0.97.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:44:03 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:44:03 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:44:03 === + supervisor: {local,kernel_sup} + started: [{pid,<0.96.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::15:44:04 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 16-Jul-2014::15:44:04 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.103.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:44:04 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] diff --git a/newtests/20140716_154402/read_latencies.csv b/newtests/20140716_154402/read_latencies.csv new file mode 100644 index 000000000..2cee6f0d8 --- /dev/null +++ b/newtests/20140716_154402/read_latencies.csv @@ -0,0 +1 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors diff --git a/newtests/20140716_154402/summary.csv b/newtests/20140716_154402/summary.csv new file mode 100644 index 000000000..fa9e41e5d --- /dev/null +++ b/newtests/20140716_154402/summary.csv @@ -0,0 +1 @@ +elapsed, window, total, successful, failed diff --git a/newtests/20140716_154446/append_latencies.csv b/newtests/20140716_154446/append_latencies.csv new file mode 100644 index 000000000..7883aa9d9 --- /dev/null +++ b/newtests/20140716_154446/append_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.161625, 0.161625, 0, 0, 0, 0, 0, 0, 0, 0, 6 diff --git a/newtests/20140716_154446/console.log b/newtests/20140716_154446/console.log new file mode 100644 index 000000000..335012abb --- /dev/null +++ b/newtests/20140716_154446/console.log @@ -0,0 +1,91 @@ +2014-07-16 15:44:47.154 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_154446/error.log"} into lager_event +2014-07-16 15:44:47.154 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_154446/console.log"} into lager_event +2014-07-16 15:44:47.154 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-16 15:44:47.188 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-16 15:44:47.188 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-16 15:44:47.188 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-16 15:44:47.188 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-16 15:44:47.630 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-16 15:44:47.987 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-16 15:44:47.989 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_154446/console.log to debug +2014-07-16 15:44:47.995 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} +2014-07-16 15:44:48.078 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-16 15:44:48.078 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-16 15:44:48.079 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-16 15:44:48.095 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-16 15:44:48.095 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-16 15:44:48.177 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-16 15:44:48.177 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-16 15:44:48.202 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-16 15:44:48.206 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-16 15:44:48.211 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-16 15:44:48.211 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-16 15:44:48.252 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-16 15:44:48.311 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> +2014-07-16 15:44:48.321 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> +2014-07-16 15:44:48.337 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-16 15:44:48.337 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> +2014-07-16 15:44:48.338 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> +2014-07-16 15:44:48.354 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> +2014-07-16 15:44:48.354 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> +2014-07-16 15:44:48.369 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 15:44:48.369 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 15:44:48.370 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-16 15:44:48.397 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 15:44:48.397 [info] <0.108.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 15:44:48.397 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> +2014-07-16 15:44:48.398 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> +2014-07-16 15:44:48.404 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> +2014-07-16 15:44:48.404 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> +2014-07-16 15:44:48.404 [debug] <0.108.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,106}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 15:44:48.404 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash +2014-07-16 15:44:48.405 [debug] <0.95.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,106}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 15:44:48.405 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash +2014-07-16 15:44:48.405 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-16 15:44:48.405 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-16 15:44:48.443 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 15:44:48.443 [info] <0.111.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 15:44:48.443 [warning] <0.110.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 15:44:48.444 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> +2014-07-16 15:44:48.444 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.110.0> +2014-07-16 15:44:48.444 [debug] <0.111.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,106}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 15:44:48.444 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash +2014-07-16 15:44:48.444 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 15:44:48.471 [info] <0.113.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 15:44:48.471 [info] <0.113.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 15:44:48.471 [warning] <0.112.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 15:44:48.471 [info] <0.113.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.113.0> +2014-07-16 15:44:48.471 [debug] <0.113.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,106}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 15:44:48.471 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash +2014-07-16 15:44:48.471 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.112.0> +2014-07-16 15:44:48.472 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated +2014-07-16 15:44:48.502 [info] <0.115.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 15:44:48.502 [info] <0.115.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 15:44:48.502 [warning] <0.114.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 15:44:48.502 [info] <0.115.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.115.0> +2014-07-16 15:44:48.503 [debug] <0.115.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,106}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 15:44:48.503 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash +2014-07-16 15:44:48.503 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.114.0> +2014-07-16 15:44:48.503 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.112.0> exit with reason normal in context child_terminated +2014-07-16 15:44:48.533 [info] <0.117.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 15:44:48.533 [info] <0.117.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 15:44:48.533 [warning] <0.116.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 15:44:48.534 [info] <0.117.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.117.0> +2014-07-16 15:44:48.534 [debug] <0.117.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,106}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 15:44:48.534 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash +2014-07-16 15:44:48.534 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.116.0> +2014-07-16 15:44:48.534 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.114.0> exit with reason normal in context child_terminated +2014-07-16 15:44:48.558 [info] <0.119.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 15:44:48.558 [info] <0.119.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 15:44:48.558 [warning] <0.118.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 15:44:48.558 [info] <0.119.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.119.0> +2014-07-16 15:44:48.559 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.118.0> +2014-07-16 15:44:48.559 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason normal in context child_terminated +2014-07-16 15:44:48.560 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-16 15:44:48.573 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {append,append} +2014-07-16 15:44:48.573 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} +2014-07-16 15:44:48.574 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{append,append},6},{{{append,append},crash},6}] +2014-07-16 15:44:48.574 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: +2014-07-16 15:44:48.574 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{append,append},crash}: 6 diff --git a/newtests/20140716_154446/crash.log b/newtests/20140716_154446/crash.log new file mode 100644 index 000000000..58835eecd --- /dev/null +++ b/newtests/20140716_154446/crash.log @@ -0,0 +1,42 @@ +2014-07-16 15:44:48 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 15:44:48 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 15:44:48 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 15:44:48 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.112.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 15:44:48 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.114.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 15:44:48 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.116.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 15:44:48 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.116.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140716_154446/error.log b/newtests/20140716_154446/error.log new file mode 100644 index 000000000..3fa0ceffb --- /dev/null +++ b/newtests/20140716_154446/error.log @@ -0,0 +1,13 @@ +2014-07-16 15:44:48.404 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash +2014-07-16 15:44:48.405 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash +2014-07-16 15:44:48.405 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-16 15:44:48.444 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash +2014-07-16 15:44:48.444 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 15:44:48.471 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash +2014-07-16 15:44:48.472 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated +2014-07-16 15:44:48.503 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash +2014-07-16 15:44:48.503 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.112.0> exit with reason normal in context child_terminated +2014-07-16 15:44:48.534 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash +2014-07-16 15:44:48.534 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.114.0> exit with reason normal in context child_terminated +2014-07-16 15:44:48.559 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason normal in context child_terminated +2014-07-16 15:44:48.560 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_154446/errors.csv b/newtests/20140716_154446/errors.csv new file mode 100644 index 000000000..dc786eb57 --- /dev/null +++ b/newtests/20140716_154446/errors.csv @@ -0,0 +1,2 @@ +"error","count" +"{{append,append},crash}","6" diff --git a/newtests/20140716_154446/floppstore.config b/newtests/20140716_154446/floppstore.config new file mode 100644 index 000000000..55db32761 --- /dev/null +++ b/newtests/20140716_154446/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. + +{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. + +{operations, [{append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_154446/log.sasl.txt b/newtests/20140716_154446/log.sasl.txt new file mode 100644 index 000000000..ca45d8be7 --- /dev/null +++ b/newtests/20140716_154446/log.sasl.txt @@ -0,0 +1,336 @@ + +=PROGRESS REPORT==== 16-Jul-2014::15:44:48 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:44:48 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:44:48 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::15:44:48 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:44:48 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::15:44:48 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:44:48 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::15:44:48 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::15:44:48 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:44:48 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:44:48 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::15:44:48 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:44:48 === + supervisor: {local,net_sup} + started: [{pid,<0.97.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:44:48 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:44:48 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:44:48 === + supervisor: {local,kernel_sup} + started: [{pid,<0.96.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::15:44:48 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 16-Jul-2014::15:44:48 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.103.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:44:48 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:44:48 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:44:48 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.109.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:44:48 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 16-Jul-2014::15:44:48 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::15:44:48 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.110.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::15:44:48 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::15:44:48 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.112.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::15:44:48 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::15:44:48 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.114.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::15:44:48 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.112.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::15:44:48 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.116.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::15:44:48 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.114.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::15:44:48 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.118.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::15:44:48 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.116.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 16-Jul-2014::15:44:48 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.116.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140716_154446/read_latencies.csv b/newtests/20140716_154446/read_latencies.csv new file mode 100644 index 000000000..f81b3f99c --- /dev/null +++ b/newtests/20140716_154446/read_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.161625, 0.161625, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140716_154446/summary.csv b/newtests/20140716_154446/summary.csv new file mode 100644 index 000000000..2c702e295 --- /dev/null +++ b/newtests/20140716_154446/summary.csv @@ -0,0 +1,2 @@ +elapsed, window, total, successful, failed +0.161625, 0.161625, 6, 0, 6 diff --git a/newtests/20140716_155207/append_latencies.csv b/newtests/20140716_155207/append_latencies.csv new file mode 100644 index 000000000..b900d838a --- /dev/null +++ b/newtests/20140716_155207/append_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.192496, 0.192496, 0, 0, 0, 0, 0, 0, 0, 0, 6 diff --git a/newtests/20140716_155207/console.log b/newtests/20140716_155207/console.log new file mode 100644 index 000000000..a437897be --- /dev/null +++ b/newtests/20140716_155207/console.log @@ -0,0 +1,105 @@ +2014-07-16 15:52:07.589 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_155207/error.log"} into lager_event +2014-07-16 15:52:07.589 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_155207/console.log"} into lager_event +2014-07-16 15:52:07.589 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-16 15:52:07.622 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-16 15:52:07.622 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-16 15:52:07.622 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-16 15:52:07.622 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-16 15:52:08.063 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-16 15:52:08.492 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-16 15:52:08.493 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_155207/console.log to debug +2014-07-16 15:52:08.501 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} +2014-07-16 15:52:08.589 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-16 15:52:08.590 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-16 15:52:08.590 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-16 15:52:08.606 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-16 15:52:08.606 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-16 15:52:08.692 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-16 15:52:08.692 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-16 15:52:08.720 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-16 15:52:08.726 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-16 15:52:08.732 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-16 15:52:08.732 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-16 15:52:08.771 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-16 15:52:08.842 [info] <0.95.0>@basho_bench_driver_floppystore:new:54 **********Got types************* +2014-07-16 15:52:08.860 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> +2014-07-16 15:52:08.869 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> +2014-07-16 15:52:08.886 [info] <0.95.0>@basho_bench_driver_floppystore:new:58 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-16 15:52:08.887 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> +2014-07-16 15:52:08.887 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> +2014-07-16 15:52:08.906 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> +2014-07-16 15:52:08.906 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> +2014-07-16 15:52:08.925 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' +2014-07-16 15:52:08.925 [info] <0.95.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 15:52:08.925 [info] <0.95.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* +2014-07-16 15:52:08.926 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-16 15:52:08.957 [info] <0.108.0>@basho_bench_driver_floppystore:new:54 **********Got types************* +2014-07-16 15:52:08.957 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' +2014-07-16 15:52:08.957 [info] <0.108.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 15:52:08.957 [info] <0.108.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* +2014-07-16 15:52:08.957 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> +2014-07-16 15:52:08.958 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> +2014-07-16 15:52:08.965 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> +2014-07-16 15:52:08.965 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> +2014-07-16 15:52:08.965 [debug] <0.108.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,144}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 15:52:08.966 [debug] <0.95.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,144}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 15:52:08.966 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash +2014-07-16 15:52:08.966 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash +2014-07-16 15:52:08.966 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-16 15:52:08.966 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-16 15:52:09.000 [info] <0.111.0>@basho_bench_driver_floppystore:new:54 **********Got types************* +2014-07-16 15:52:09.000 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' +2014-07-16 15:52:09.000 [info] <0.111.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 15:52:09.000 [info] <0.111.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* +2014-07-16 15:52:09.000 [warning] <0.110.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 15:52:09.000 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> +2014-07-16 15:52:09.000 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.110.0> +2014-07-16 15:52:09.001 [debug] <0.111.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,144}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 15:52:09.001 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash +2014-07-16 15:52:09.001 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 15:52:09.037 [info] <0.113.0>@basho_bench_driver_floppystore:new:54 **********Got types************* +2014-07-16 15:52:09.037 [info] <0.113.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' +2014-07-16 15:52:09.037 [info] <0.113.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 15:52:09.037 [info] <0.113.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* +2014-07-16 15:52:09.037 [warning] <0.112.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 15:52:09.037 [info] <0.113.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.113.0> +2014-07-16 15:52:09.037 [debug] <0.113.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,144}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 15:52:09.037 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash +2014-07-16 15:52:09.038 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.112.0> +2014-07-16 15:52:09.038 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated +2014-07-16 15:52:09.073 [info] <0.115.0>@basho_bench_driver_floppystore:new:54 **********Got types************* +2014-07-16 15:52:09.074 [info] <0.115.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' +2014-07-16 15:52:09.074 [info] <0.115.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 15:52:09.074 [info] <0.115.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* +2014-07-16 15:52:09.074 [warning] <0.114.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 15:52:09.074 [info] <0.115.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.115.0> +2014-07-16 15:52:09.074 [debug] <0.115.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,144}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 15:52:09.074 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash +2014-07-16 15:52:09.074 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.114.0> +2014-07-16 15:52:09.075 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.112.0> exit with reason normal in context child_terminated +2014-07-16 15:52:09.110 [info] <0.117.0>@basho_bench_driver_floppystore:new:54 **********Got types************* +2014-07-16 15:52:09.111 [info] <0.117.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' +2014-07-16 15:52:09.111 [info] <0.117.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 15:52:09.111 [info] <0.117.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* +2014-07-16 15:52:09.111 [warning] <0.116.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 15:52:09.111 [info] <0.117.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.117.0> +2014-07-16 15:52:09.111 [debug] <0.117.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,144}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 15:52:09.111 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash +2014-07-16 15:52:09.112 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.116.0> +2014-07-16 15:52:09.112 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.114.0> exit with reason normal in context child_terminated +2014-07-16 15:52:09.149 [info] <0.119.0>@basho_bench_driver_floppystore:new:54 **********Got types************* +2014-07-16 15:52:09.149 [info] <0.119.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' +2014-07-16 15:52:09.149 [info] <0.119.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 15:52:09.149 [info] <0.119.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* +2014-07-16 15:52:09.149 [warning] <0.118.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 15:52:09.149 [info] <0.119.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.119.0> +2014-07-16 15:52:09.150 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.118.0> +2014-07-16 15:52:09.150 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason normal in context child_terminated +2014-07-16 15:52:09.151 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-16 15:52:09.165 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {append,append} +2014-07-16 15:52:09.165 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} +2014-07-16 15:52:09.165 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{append,append},6},{{{append,append},crash},6}] +2014-07-16 15:52:09.165 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: +2014-07-16 15:52:09.166 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{append,append},crash}: 6 diff --git a/newtests/20140716_155207/crash.log b/newtests/20140716_155207/crash.log new file mode 100644 index 000000000..666ee8501 --- /dev/null +++ b/newtests/20140716_155207/crash.log @@ -0,0 +1,42 @@ +2014-07-16 15:52:08 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 15:52:09 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 15:52:09 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 15:52:09 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.112.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 15:52:09 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.114.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 15:52:09 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.116.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 15:52:09 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.116.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140716_155207/error.log b/newtests/20140716_155207/error.log new file mode 100644 index 000000000..a58272ca9 --- /dev/null +++ b/newtests/20140716_155207/error.log @@ -0,0 +1,13 @@ +2014-07-16 15:52:08.966 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash +2014-07-16 15:52:08.966 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash +2014-07-16 15:52:08.966 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-16 15:52:09.001 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash +2014-07-16 15:52:09.001 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 15:52:09.037 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash +2014-07-16 15:52:09.038 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated +2014-07-16 15:52:09.074 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash +2014-07-16 15:52:09.075 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.112.0> exit with reason normal in context child_terminated +2014-07-16 15:52:09.111 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash +2014-07-16 15:52:09.112 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.114.0> exit with reason normal in context child_terminated +2014-07-16 15:52:09.150 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason normal in context child_terminated +2014-07-16 15:52:09.151 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_155207/errors.csv b/newtests/20140716_155207/errors.csv new file mode 100644 index 000000000..dc786eb57 --- /dev/null +++ b/newtests/20140716_155207/errors.csv @@ -0,0 +1,2 @@ +"error","count" +"{{append,append},crash}","6" diff --git a/newtests/20140716_155207/floppstore.config b/newtests/20140716_155207/floppstore.config new file mode 100644 index 000000000..55db32761 --- /dev/null +++ b/newtests/20140716_155207/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. + +{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. + +{operations, [{append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_155207/log.sasl.txt b/newtests/20140716_155207/log.sasl.txt new file mode 100644 index 000000000..f003f9952 --- /dev/null +++ b/newtests/20140716_155207/log.sasl.txt @@ -0,0 +1,336 @@ + +=PROGRESS REPORT==== 16-Jul-2014::15:52:08 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:52:08 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:52:08 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::15:52:08 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:52:08 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::15:52:08 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:52:08 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::15:52:08 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::15:52:08 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:52:08 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:52:08 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::15:52:08 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:52:08 === + supervisor: {local,net_sup} + started: [{pid,<0.97.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:52:08 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:52:08 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:52:08 === + supervisor: {local,kernel_sup} + started: [{pid,<0.96.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::15:52:08 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 16-Jul-2014::15:52:08 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.103.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:52:08 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:52:08 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:52:08 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.109.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:52:08 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 16-Jul-2014::15:52:08 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::15:52:09 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.110.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::15:52:09 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::15:52:09 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.112.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::15:52:09 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::15:52:09 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.114.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::15:52:09 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.112.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::15:52:09 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.116.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::15:52:09 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.114.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::15:52:09 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.118.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::15:52:09 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.116.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 16-Jul-2014::15:52:09 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.116.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140716_155207/read_latencies.csv b/newtests/20140716_155207/read_latencies.csv new file mode 100644 index 000000000..2a7796054 --- /dev/null +++ b/newtests/20140716_155207/read_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.192496, 0.192496, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140716_155207/summary.csv b/newtests/20140716_155207/summary.csv new file mode 100644 index 000000000..0bf2fba2c --- /dev/null +++ b/newtests/20140716_155207/summary.csv @@ -0,0 +1,2 @@ +elapsed, window, total, successful, failed +0.192496, 0.192496, 6, 0, 6 diff --git a/newtests/20140716_155332/append_latencies.csv b/newtests/20140716_155332/append_latencies.csv new file mode 100644 index 000000000..a059c0f0c --- /dev/null +++ b/newtests/20140716_155332/append_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.150941, 0.150941, 0, 0, 0, 0, 0, 0, 0, 0, 6 diff --git a/newtests/20140716_155332/console.log b/newtests/20140716_155332/console.log new file mode 100644 index 000000000..8c13842fd --- /dev/null +++ b/newtests/20140716_155332/console.log @@ -0,0 +1,105 @@ +2014-07-16 15:53:33.132 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_155332/error.log"} into lager_event +2014-07-16 15:53:33.132 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_155332/console.log"} into lager_event +2014-07-16 15:53:33.132 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-16 15:53:33.167 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-16 15:53:33.167 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-16 15:53:33.168 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-16 15:53:33.168 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-16 15:53:33.606 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-16 15:53:33.970 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-16 15:53:33.971 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_155332/console.log to debug +2014-07-16 15:53:33.978 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} +2014-07-16 15:53:34.059 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-16 15:53:34.059 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-16 15:53:34.060 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-16 15:53:34.074 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-16 15:53:34.075 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-16 15:53:34.158 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-16 15:53:34.159 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-16 15:53:34.186 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-16 15:53:34.190 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-16 15:53:34.195 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-16 15:53:34.195 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-16 15:53:34.234 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-16 15:53:34.281 [info] <0.95.0>@basho_bench_driver_floppystore:new:54 **********Got types************* +2014-07-16 15:53:34.298 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> +2014-07-16 15:53:34.306 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> +2014-07-16 15:53:34.321 [info] <0.95.0>@basho_bench_driver_floppystore:new:58 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-16 15:53:34.321 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> +2014-07-16 15:53:34.322 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> +2014-07-16 15:53:34.337 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> +2014-07-16 15:53:34.338 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> +2014-07-16 15:53:34.351 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' +2014-07-16 15:53:34.351 [info] <0.95.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 15:53:34.351 [info] <0.95.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* +2014-07-16 15:53:34.352 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-16 15:53:34.381 [info] <0.108.0>@basho_bench_driver_floppystore:new:54 **********Got types************* +2014-07-16 15:53:34.381 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' +2014-07-16 15:53:34.381 [info] <0.108.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 15:53:34.381 [info] <0.108.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* +2014-07-16 15:53:34.381 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> +2014-07-16 15:53:34.382 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> +2014-07-16 15:53:34.388 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> +2014-07-16 15:53:34.388 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> +2014-07-16 15:53:34.389 [debug] <0.108.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 15:53:34.389 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash +2014-07-16 15:53:34.389 [debug] <0.95.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 15:53:34.389 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-16 15:53:34.389 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash +2014-07-16 15:53:34.389 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-16 15:53:34.420 [info] <0.111.0>@basho_bench_driver_floppystore:new:54 **********Got types************* +2014-07-16 15:53:34.420 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' +2014-07-16 15:53:34.421 [info] <0.111.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 15:53:34.421 [info] <0.111.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* +2014-07-16 15:53:34.421 [warning] <0.110.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 15:53:34.421 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> +2014-07-16 15:53:34.421 [debug] <0.111.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 15:53:34.421 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash +2014-07-16 15:53:34.421 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.110.0> +2014-07-16 15:53:34.422 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 15:53:34.446 [info] <0.113.0>@basho_bench_driver_floppystore:new:54 **********Got types************* +2014-07-16 15:53:34.447 [info] <0.113.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' +2014-07-16 15:53:34.447 [info] <0.113.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 15:53:34.447 [info] <0.113.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* +2014-07-16 15:53:34.447 [warning] <0.112.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 15:53:34.447 [info] <0.113.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.113.0> +2014-07-16 15:53:34.447 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.112.0> +2014-07-16 15:53:34.447 [debug] <0.113.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 15:53:34.447 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash +2014-07-16 15:53:34.447 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated +2014-07-16 15:53:34.479 [info] <0.115.0>@basho_bench_driver_floppystore:new:54 **********Got types************* +2014-07-16 15:53:34.480 [info] <0.115.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' +2014-07-16 15:53:34.480 [info] <0.115.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 15:53:34.480 [info] <0.115.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* +2014-07-16 15:53:34.480 [warning] <0.114.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 15:53:34.480 [info] <0.115.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.115.0> +2014-07-16 15:53:34.480 [debug] <0.115.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 15:53:34.480 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash +2014-07-16 15:53:34.480 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.114.0> +2014-07-16 15:53:34.481 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.112.0> exit with reason normal in context child_terminated +2014-07-16 15:53:34.506 [info] <0.117.0>@basho_bench_driver_floppystore:new:54 **********Got types************* +2014-07-16 15:53:34.506 [info] <0.117.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' +2014-07-16 15:53:34.506 [info] <0.117.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 15:53:34.506 [info] <0.117.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* +2014-07-16 15:53:34.506 [warning] <0.116.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 15:53:34.506 [info] <0.117.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.117.0> +2014-07-16 15:53:34.507 [debug] <0.117.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 15:53:34.507 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash +2014-07-16 15:53:34.507 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.116.0> +2014-07-16 15:53:34.507 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.114.0> exit with reason normal in context child_terminated +2014-07-16 15:53:34.531 [info] <0.119.0>@basho_bench_driver_floppystore:new:54 **********Got types************* +2014-07-16 15:53:34.532 [info] <0.119.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' +2014-07-16 15:53:34.532 [info] <0.119.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 15:53:34.532 [info] <0.119.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* +2014-07-16 15:53:34.532 [warning] <0.118.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 15:53:34.532 [info] <0.119.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.119.0> +2014-07-16 15:53:34.533 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.118.0> +2014-07-16 15:53:34.533 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason normal in context child_terminated +2014-07-16 15:53:34.534 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-16 15:53:34.546 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {append,append} +2014-07-16 15:53:34.546 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} +2014-07-16 15:53:34.546 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{append,append},6},{{{append,append},crash},6}] +2014-07-16 15:53:34.546 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: +2014-07-16 15:53:34.546 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{append,append},crash}: 6 diff --git a/newtests/20140716_155332/crash.log b/newtests/20140716_155332/crash.log new file mode 100644 index 000000000..ac284deeb --- /dev/null +++ b/newtests/20140716_155332/crash.log @@ -0,0 +1,42 @@ +2014-07-16 15:53:34 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 15:53:34 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 15:53:34 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 15:53:34 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.112.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 15:53:34 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.114.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 15:53:34 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.116.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 15:53:34 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.116.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140716_155332/error.log b/newtests/20140716_155332/error.log new file mode 100644 index 000000000..91867f869 --- /dev/null +++ b/newtests/20140716_155332/error.log @@ -0,0 +1,13 @@ +2014-07-16 15:53:34.389 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash +2014-07-16 15:53:34.389 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash +2014-07-16 15:53:34.389 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-16 15:53:34.421 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash +2014-07-16 15:53:34.422 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 15:53:34.447 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash +2014-07-16 15:53:34.447 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated +2014-07-16 15:53:34.480 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash +2014-07-16 15:53:34.481 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.112.0> exit with reason normal in context child_terminated +2014-07-16 15:53:34.507 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash +2014-07-16 15:53:34.507 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.114.0> exit with reason normal in context child_terminated +2014-07-16 15:53:34.533 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason normal in context child_terminated +2014-07-16 15:53:34.534 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_155332/errors.csv b/newtests/20140716_155332/errors.csv new file mode 100644 index 000000000..dc786eb57 --- /dev/null +++ b/newtests/20140716_155332/errors.csv @@ -0,0 +1,2 @@ +"error","count" +"{{append,append},crash}","6" diff --git a/newtests/20140716_155332/floppstore.config b/newtests/20140716_155332/floppstore.config new file mode 100644 index 000000000..55db32761 --- /dev/null +++ b/newtests/20140716_155332/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. + +{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. + +{operations, [{append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_155332/log.sasl.txt b/newtests/20140716_155332/log.sasl.txt new file mode 100644 index 000000000..7ba36fcd0 --- /dev/null +++ b/newtests/20140716_155332/log.sasl.txt @@ -0,0 +1,336 @@ + +=PROGRESS REPORT==== 16-Jul-2014::15:53:34 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:53:34 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:53:34 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::15:53:34 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:53:34 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::15:53:34 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:53:34 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::15:53:34 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::15:53:34 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:53:34 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:53:34 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::15:53:34 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:53:34 === + supervisor: {local,net_sup} + started: [{pid,<0.97.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:53:34 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:53:34 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:53:34 === + supervisor: {local,kernel_sup} + started: [{pid,<0.96.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::15:53:34 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 16-Jul-2014::15:53:34 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.103.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:53:34 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:53:34 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:53:34 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.109.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:53:34 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 16-Jul-2014::15:53:34 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::15:53:34 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.110.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::15:53:34 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::15:53:34 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.112.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::15:53:34 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::15:53:34 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.114.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::15:53:34 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.112.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::15:53:34 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.116.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::15:53:34 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.114.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::15:53:34 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.118.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::15:53:34 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.116.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 16-Jul-2014::15:53:34 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.116.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140716_155332/read_latencies.csv b/newtests/20140716_155332/read_latencies.csv new file mode 100644 index 000000000..74352dc3f --- /dev/null +++ b/newtests/20140716_155332/read_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.150941, 0.150941, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140716_155332/summary.csv b/newtests/20140716_155332/summary.csv new file mode 100644 index 000000000..c453cef5b --- /dev/null +++ b/newtests/20140716_155332/summary.csv @@ -0,0 +1,2 @@ +elapsed, window, total, successful, failed +0.150941, 0.150941, 6, 0, 6 diff --git a/newtests/20140716_155458/console.log b/newtests/20140716_155458/console.log new file mode 100644 index 000000000..e69de29bb diff --git a/newtests/20140716_155458/crash.log b/newtests/20140716_155458/crash.log new file mode 100644 index 000000000..e69de29bb diff --git a/newtests/20140716_155458/error.log b/newtests/20140716_155458/error.log new file mode 100644 index 000000000..e69de29bb diff --git a/newtests/20140716_155521/append_latencies.csv b/newtests/20140716_155521/append_latencies.csv new file mode 100644 index 000000000..7fe792055 --- /dev/null +++ b/newtests/20140716_155521/append_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.179098, 0.179098, 0, 0, 0, 0, 0, 0, 0, 0, 6 diff --git a/newtests/20140716_155521/console.log b/newtests/20140716_155521/console.log new file mode 100644 index 000000000..9935726df --- /dev/null +++ b/newtests/20140716_155521/console.log @@ -0,0 +1,105 @@ +2014-07-16 15:55:21.578 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_155521/error.log"} into lager_event +2014-07-16 15:55:21.578 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_155521/console.log"} into lager_event +2014-07-16 15:55:21.578 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-16 15:55:21.614 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-16 15:55:21.614 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-16 15:55:21.614 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-16 15:55:21.615 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-16 15:55:22.055 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-16 15:55:22.377 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-16 15:55:22.379 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_155521/console.log to debug +2014-07-16 15:55:22.385 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} +2014-07-16 15:55:22.455 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-16 15:55:22.456 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-16 15:55:22.456 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-16 15:55:22.471 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-16 15:55:22.471 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-16 15:55:22.559 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-16 15:55:22.559 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-16 15:55:22.589 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-16 15:55:22.594 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-16 15:55:22.599 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-16 15:55:22.599 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-16 15:55:22.639 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-16 15:55:22.684 [info] <0.95.0>@basho_bench_driver_floppystore:new:54 **********Got types************* +2014-07-16 15:55:22.698 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> +2014-07-16 15:55:22.705 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> +2014-07-16 15:55:22.718 [info] <0.95.0>@basho_bench_driver_floppystore:new:58 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-16 15:55:22.718 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> +2014-07-16 15:55:22.718 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> +2014-07-16 15:55:22.731 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> +2014-07-16 15:55:22.732 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> +2014-07-16 15:55:22.745 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' +2014-07-16 15:55:22.745 [info] <0.95.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 15:55:22.745 [info] <0.95.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* +2014-07-16 15:55:22.746 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-16 15:55:22.779 [info] <0.108.0>@basho_bench_driver_floppystore:new:54 **********Got types************* +2014-07-16 15:55:22.779 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' +2014-07-16 15:55:22.779 [info] <0.108.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 15:55:22.779 [info] <0.108.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* +2014-07-16 15:55:22.780 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> +2014-07-16 15:55:22.780 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> +2014-07-16 15:55:22.786 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> +2014-07-16 15:55:22.786 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> +2014-07-16 15:55:22.786 [debug] <0.108.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 15:55:22.786 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash +2014-07-16 15:55:22.787 [debug] <0.95.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 15:55:22.787 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-16 15:55:22.787 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash +2014-07-16 15:55:22.787 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-16 15:55:22.824 [info] <0.111.0>@basho_bench_driver_floppystore:new:54 **********Got types************* +2014-07-16 15:55:22.824 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' +2014-07-16 15:55:22.824 [info] <0.111.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 15:55:22.824 [info] <0.111.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* +2014-07-16 15:55:22.824 [warning] <0.110.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 15:55:22.824 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> +2014-07-16 15:55:22.825 [debug] <0.111.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 15:55:22.825 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash +2014-07-16 15:55:22.825 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.110.0> +2014-07-16 15:55:22.825 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 15:55:22.856 [info] <0.113.0>@basho_bench_driver_floppystore:new:54 **********Got types************* +2014-07-16 15:55:22.856 [info] <0.113.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' +2014-07-16 15:55:22.857 [info] <0.113.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 15:55:22.857 [info] <0.113.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* +2014-07-16 15:55:22.857 [warning] <0.112.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 15:55:22.857 [info] <0.113.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.113.0> +2014-07-16 15:55:22.857 [debug] <0.113.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 15:55:22.857 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.112.0> +2014-07-16 15:55:22.857 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash +2014-07-16 15:55:22.858 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated +2014-07-16 15:55:22.898 [info] <0.115.0>@basho_bench_driver_floppystore:new:54 **********Got types************* +2014-07-16 15:55:22.898 [info] <0.115.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' +2014-07-16 15:55:22.898 [info] <0.115.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 15:55:22.898 [info] <0.115.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* +2014-07-16 15:55:22.898 [warning] <0.114.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 15:55:22.898 [info] <0.115.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.115.0> +2014-07-16 15:55:22.899 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.114.0> +2014-07-16 15:55:22.899 [debug] <0.115.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 15:55:22.899 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash +2014-07-16 15:55:22.899 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.112.0> exit with reason normal in context child_terminated +2014-07-16 15:55:22.924 [info] <0.117.0>@basho_bench_driver_floppystore:new:54 **********Got types************* +2014-07-16 15:55:22.925 [info] <0.117.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' +2014-07-16 15:55:22.925 [info] <0.117.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 15:55:22.925 [info] <0.117.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* +2014-07-16 15:55:22.925 [warning] <0.116.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 15:55:22.925 [info] <0.117.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.117.0> +2014-07-16 15:55:22.925 [debug] <0.117.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 15:55:22.925 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.116.0> +2014-07-16 15:55:22.925 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash +2014-07-16 15:55:22.926 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.114.0> exit with reason normal in context child_terminated +2014-07-16 15:55:22.958 [info] <0.119.0>@basho_bench_driver_floppystore:new:54 **********Got types************* +2014-07-16 15:55:22.958 [info] <0.119.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' +2014-07-16 15:55:22.958 [info] <0.119.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 15:55:22.958 [info] <0.119.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* +2014-07-16 15:55:22.958 [warning] <0.118.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 15:55:22.958 [info] <0.119.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.119.0> +2014-07-16 15:55:22.959 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.118.0> +2014-07-16 15:55:22.960 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason normal in context child_terminated +2014-07-16 15:55:22.960 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-16 15:55:22.973 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {append,append} +2014-07-16 15:55:22.973 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} +2014-07-16 15:55:22.973 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{append,append},6},{{{append,append},crash},6}] +2014-07-16 15:55:22.973 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: +2014-07-16 15:55:22.973 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{append,append},crash}: 6 diff --git a/newtests/20140716_155521/crash.log b/newtests/20140716_155521/crash.log new file mode 100644 index 000000000..b013a0b20 --- /dev/null +++ b/newtests/20140716_155521/crash.log @@ -0,0 +1,42 @@ +2014-07-16 15:55:22 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 15:55:22 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 15:55:22 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 15:55:22 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.112.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 15:55:22 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.114.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 15:55:22 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.116.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 15:55:22 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.116.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140716_155521/error.log b/newtests/20140716_155521/error.log new file mode 100644 index 000000000..6845009c6 --- /dev/null +++ b/newtests/20140716_155521/error.log @@ -0,0 +1,13 @@ +2014-07-16 15:55:22.786 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash +2014-07-16 15:55:22.787 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash +2014-07-16 15:55:22.787 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-16 15:55:22.825 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash +2014-07-16 15:55:22.825 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 15:55:22.857 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash +2014-07-16 15:55:22.858 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated +2014-07-16 15:55:22.899 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash +2014-07-16 15:55:22.899 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.112.0> exit with reason normal in context child_terminated +2014-07-16 15:55:22.925 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash +2014-07-16 15:55:22.926 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.114.0> exit with reason normal in context child_terminated +2014-07-16 15:55:22.960 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason normal in context child_terminated +2014-07-16 15:55:22.960 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_155521/errors.csv b/newtests/20140716_155521/errors.csv new file mode 100644 index 000000000..dc786eb57 --- /dev/null +++ b/newtests/20140716_155521/errors.csv @@ -0,0 +1,2 @@ +"error","count" +"{{append,append},crash}","6" diff --git a/newtests/20140716_155521/floppstore.config b/newtests/20140716_155521/floppstore.config new file mode 100644 index 000000000..55db32761 --- /dev/null +++ b/newtests/20140716_155521/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. + +{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. + +{operations, [{append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_155521/log.sasl.txt b/newtests/20140716_155521/log.sasl.txt new file mode 100644 index 000000000..526fd2a8b --- /dev/null +++ b/newtests/20140716_155521/log.sasl.txt @@ -0,0 +1,336 @@ + +=PROGRESS REPORT==== 16-Jul-2014::15:55:22 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:55:22 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:55:22 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::15:55:22 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:55:22 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::15:55:22 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:55:22 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::15:55:22 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::15:55:22 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:55:22 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:55:22 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::15:55:22 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:55:22 === + supervisor: {local,net_sup} + started: [{pid,<0.97.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:55:22 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:55:22 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:55:22 === + supervisor: {local,kernel_sup} + started: [{pid,<0.96.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::15:55:22 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 16-Jul-2014::15:55:22 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.103.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:55:22 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:55:22 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:55:22 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.109.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:55:22 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 16-Jul-2014::15:55:22 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::15:55:22 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.110.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::15:55:22 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::15:55:22 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.112.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::15:55:22 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::15:55:22 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.114.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::15:55:22 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.112.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::15:55:22 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.116.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::15:55:22 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.114.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::15:55:22 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.118.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::15:55:22 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.116.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 16-Jul-2014::15:55:22 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.116.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140716_155521/read_latencies.csv b/newtests/20140716_155521/read_latencies.csv new file mode 100644 index 000000000..2bcda9dc5 --- /dev/null +++ b/newtests/20140716_155521/read_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.179098, 0.179098, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140716_155521/summary.csv b/newtests/20140716_155521/summary.csv new file mode 100644 index 000000000..8925c591a --- /dev/null +++ b/newtests/20140716_155521/summary.csv @@ -0,0 +1,2 @@ +elapsed, window, total, successful, failed +0.179098, 0.179098, 6, 0, 6 diff --git a/newtests/20140716_155627/append_latencies.csv b/newtests/20140716_155627/append_latencies.csv new file mode 100644 index 000000000..f5965956d --- /dev/null +++ b/newtests/20140716_155627/append_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.156541, 0.156541, 0, 0, 0, 0, 0, 0, 0, 0, 7 diff --git a/newtests/20140716_155627/console.log b/newtests/20140716_155627/console.log new file mode 100644 index 000000000..b2218c902 --- /dev/null +++ b/newtests/20140716_155627/console.log @@ -0,0 +1,106 @@ +2014-07-16 15:56:27.283 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_155627/error.log"} into lager_event +2014-07-16 15:56:27.283 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_155627/console.log"} into lager_event +2014-07-16 15:56:27.283 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-16 15:56:27.317 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-16 15:56:27.317 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-16 15:56:27.317 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-16 15:56:27.317 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-16 15:56:27.759 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-16 15:56:28.100 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-16 15:56:28.101 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_155627/console.log to debug +2014-07-16 15:56:28.108 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} +2014-07-16 15:56:28.188 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-16 15:56:28.188 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-16 15:56:28.189 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-16 15:56:28.204 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-16 15:56:28.204 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-16 15:56:28.289 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-16 15:56:28.290 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-16 15:56:28.318 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-16 15:56:28.322 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-16 15:56:28.326 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-16 15:56:28.326 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-16 15:56:28.364 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-16 15:56:28.415 [info] <0.95.0>@basho_bench_driver_floppystore:new:54 **********Got types************* +2014-07-16 15:56:28.430 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> +2014-07-16 15:56:28.437 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> +2014-07-16 15:56:28.449 [info] <0.95.0>@basho_bench_driver_floppystore:new:58 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-16 15:56:28.449 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> +2014-07-16 15:56:28.450 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> +2014-07-16 15:56:28.464 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> +2014-07-16 15:56:28.464 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> +2014-07-16 15:56:28.481 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' +2014-07-16 15:56:28.481 [info] <0.95.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 15:56:28.481 [info] <0.95.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* +2014-07-16 15:56:28.482 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-16 15:56:28.510 [info] <0.108.0>@basho_bench_driver_floppystore:new:54 **********Got types************* +2014-07-16 15:56:28.510 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' +2014-07-16 15:56:28.511 [info] <0.108.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 15:56:28.511 [info] <0.108.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* +2014-07-16 15:56:28.511 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> +2014-07-16 15:56:28.511 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> +2014-07-16 15:56:28.517 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> +2014-07-16 15:56:28.517 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> +2014-07-16 15:56:28.518 [debug] <0.95.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 15:56:28.518 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash +2014-07-16 15:56:28.518 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-16 15:56:28.518 [debug] <0.108.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 15:56:28.518 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash +2014-07-16 15:56:28.525 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 15:56:28.551 [info] <0.111.0>@basho_bench_driver_floppystore:new:54 **********Got types************* +2014-07-16 15:56:28.551 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' +2014-07-16 15:56:28.551 [info] <0.111.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 15:56:28.551 [info] <0.111.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* +2014-07-16 15:56:28.551 [warning] <0.110.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 15:56:28.551 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> +2014-07-16 15:56:28.552 [debug] <0.111.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 15:56:28.552 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.110.0> +2014-07-16 15:56:28.552 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash +2014-07-16 15:56:28.552 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-16 15:56:28.582 [info] <0.113.0>@basho_bench_driver_floppystore:new:54 **********Got types************* +2014-07-16 15:56:28.582 [info] <0.113.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' +2014-07-16 15:56:28.582 [info] <0.113.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 15:56:28.582 [info] <0.113.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* +2014-07-16 15:56:28.582 [warning] <0.112.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 15:56:28.582 [info] <0.113.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.113.0> +2014-07-16 15:56:28.583 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.112.0> +2014-07-16 15:56:28.583 [debug] <0.113.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 15:56:28.583 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash +2014-07-16 15:56:28.583 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.110.0> exit with reason normal in context child_terminated +2014-07-16 15:56:28.607 [info] <0.115.0>@basho_bench_driver_floppystore:new:54 **********Got types************* +2014-07-16 15:56:28.607 [info] <0.115.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' +2014-07-16 15:56:28.607 [info] <0.115.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 15:56:28.607 [info] <0.115.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* +2014-07-16 15:56:28.607 [warning] <0.114.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 15:56:28.607 [info] <0.115.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.115.0> +2014-07-16 15:56:28.608 [debug] <0.115.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 15:56:28.608 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.114.0> +2014-07-16 15:56:28.608 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash +2014-07-16 15:56:28.608 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.112.0> exit with reason normal in context child_terminated +2014-07-16 15:56:28.634 [info] <0.117.0>@basho_bench_driver_floppystore:new:54 **********Got types************* +2014-07-16 15:56:28.634 [info] <0.117.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' +2014-07-16 15:56:28.634 [info] <0.117.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 15:56:28.634 [info] <0.117.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* +2014-07-16 15:56:28.634 [warning] <0.116.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 15:56:28.634 [info] <0.117.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.117.0> +2014-07-16 15:56:28.634 [debug] <0.117.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 15:56:28.635 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash +2014-07-16 15:56:28.635 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.116.0> +2014-07-16 15:56:28.635 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.114.0> exit with reason normal in context child_terminated +2014-07-16 15:56:28.667 [info] <0.119.0>@basho_bench_driver_floppystore:new:54 **********Got types************* +2014-07-16 15:56:28.667 [info] <0.119.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' +2014-07-16 15:56:28.667 [info] <0.119.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 15:56:28.667 [info] <0.119.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* +2014-07-16 15:56:28.667 [warning] <0.118.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 15:56:28.667 [info] <0.119.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.119.0> +2014-07-16 15:56:28.667 [debug] <0.119.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 15:56:28.667 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.118.0> +2014-07-16 15:56:28.668 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.116.0> exit with reason normal in context child_terminated +2014-07-16 15:56:28.668 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-16 15:56:28.678 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {append,append} +2014-07-16 15:56:28.679 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} +2014-07-16 15:56:28.679 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{append,append},7},{{{append,append},crash},7}] +2014-07-16 15:56:28.679 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: +2014-07-16 15:56:28.679 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{append,append},crash}: 7 diff --git a/newtests/20140716_155627/crash.log b/newtests/20140716_155627/crash.log new file mode 100644 index 000000000..32213c7a5 --- /dev/null +++ b/newtests/20140716_155627/crash.log @@ -0,0 +1,42 @@ +2014-07-16 15:56:28 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 15:56:28 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 15:56:28 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 15:56:28 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.112.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 15:56:28 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.114.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 15:56:28 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.116.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 15:56:28 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.116.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140716_155627/error.log b/newtests/20140716_155627/error.log new file mode 100644 index 000000000..46a7c9d57 --- /dev/null +++ b/newtests/20140716_155627/error.log @@ -0,0 +1,13 @@ +2014-07-16 15:56:28.518 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash +2014-07-16 15:56:28.518 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash +2014-07-16 15:56:28.525 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 15:56:28.552 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash +2014-07-16 15:56:28.552 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-16 15:56:28.583 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash +2014-07-16 15:56:28.583 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.110.0> exit with reason normal in context child_terminated +2014-07-16 15:56:28.608 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash +2014-07-16 15:56:28.608 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.112.0> exit with reason normal in context child_terminated +2014-07-16 15:56:28.635 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash +2014-07-16 15:56:28.635 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.114.0> exit with reason normal in context child_terminated +2014-07-16 15:56:28.668 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.116.0> exit with reason normal in context child_terminated +2014-07-16 15:56:28.668 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_155627/errors.csv b/newtests/20140716_155627/errors.csv new file mode 100644 index 000000000..a31ba014e --- /dev/null +++ b/newtests/20140716_155627/errors.csv @@ -0,0 +1,2 @@ +"error","count" +"{{append,append},crash}","7" diff --git a/newtests/20140716_155627/floppstore.config b/newtests/20140716_155627/floppstore.config new file mode 100644 index 000000000..55db32761 --- /dev/null +++ b/newtests/20140716_155627/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. + +{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. + +{operations, [{append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_155627/log.sasl.txt b/newtests/20140716_155627/log.sasl.txt new file mode 100644 index 000000000..3d8ef7556 --- /dev/null +++ b/newtests/20140716_155627/log.sasl.txt @@ -0,0 +1,336 @@ + +=PROGRESS REPORT==== 16-Jul-2014::15:56:28 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:56:28 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:56:28 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::15:56:28 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:56:28 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::15:56:28 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:56:28 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::15:56:28 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::15:56:28 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:56:28 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:56:28 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::15:56:28 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:56:28 === + supervisor: {local,net_sup} + started: [{pid,<0.97.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:56:28 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:56:28 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:56:28 === + supervisor: {local,kernel_sup} + started: [{pid,<0.96.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::15:56:28 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 16-Jul-2014::15:56:28 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.103.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:56:28 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:56:28 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:56:28 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.109.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::15:56:28 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 16-Jul-2014::15:56:28 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::15:56:28 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.110.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::15:56:28 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::15:56:28 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.112.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::15:56:28 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::15:56:28 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.114.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::15:56:28 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.112.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::15:56:28 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.116.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::15:56:28 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.114.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::15:56:28 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.118.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::15:56:28 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.116.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 16-Jul-2014::15:56:28 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.116.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140716_155627/read_latencies.csv b/newtests/20140716_155627/read_latencies.csv new file mode 100644 index 000000000..7b0bd52ad --- /dev/null +++ b/newtests/20140716_155627/read_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.156541, 0.156541, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140716_155627/summary.csv b/newtests/20140716_155627/summary.csv new file mode 100644 index 000000000..46d349d98 --- /dev/null +++ b/newtests/20140716_155627/summary.csv @@ -0,0 +1,2 @@ +elapsed, window, total, successful, failed +0.156541, 0.156541, 7, 0, 7 diff --git a/newtests/20140716_160035/append_latencies.csv b/newtests/20140716_160035/append_latencies.csv new file mode 100644 index 000000000..a1ac67404 --- /dev/null +++ b/newtests/20140716_160035/append_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.143616, 0.143616, 0, 0, 0, 0, 0, 0, 0, 0, 6 diff --git a/newtests/20140716_160035/console.log b/newtests/20140716_160035/console.log new file mode 100644 index 000000000..010aacdba --- /dev/null +++ b/newtests/20140716_160035/console.log @@ -0,0 +1,105 @@ +2014-07-16 16:00:35.762 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_160035/error.log"} into lager_event +2014-07-16 16:00:35.762 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_160035/console.log"} into lager_event +2014-07-16 16:00:35.762 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-16 16:00:35.795 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-16 16:00:35.795 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-16 16:00:35.796 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-16 16:00:35.796 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-16 16:00:36.237 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-16 16:00:36.586 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-16 16:00:36.587 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_160035/console.log to debug +2014-07-16 16:00:36.594 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} +2014-07-16 16:00:36.673 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-16 16:00:36.674 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-16 16:00:36.674 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-16 16:00:36.689 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-16 16:00:36.689 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-16 16:00:36.775 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-16 16:00:36.775 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-16 16:00:36.804 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-16 16:00:36.808 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-16 16:00:36.813 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-16 16:00:36.813 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-16 16:00:36.859 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-16 16:00:36.908 [info] <0.95.0>@basho_bench_driver_floppystore:new:54 **********Got types************* +2014-07-16 16:00:36.923 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> +2014-07-16 16:00:36.931 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> +2014-07-16 16:00:36.944 [info] <0.95.0>@basho_bench_driver_floppystore:new:58 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-16 16:00:36.945 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> +2014-07-16 16:00:36.945 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> +2014-07-16 16:00:36.958 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> +2014-07-16 16:00:36.958 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> +2014-07-16 16:00:36.972 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:00:36.972 [info] <0.95.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:00:36.972 [info] <0.95.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* [{riak_dt_gcounter,[increment]},{riak_dt_gset,[add]}] +2014-07-16 16:00:36.973 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-16 16:00:37.000 [info] <0.108.0>@basho_bench_driver_floppystore:new:54 **********Got types************* +2014-07-16 16:00:37.000 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:00:37.000 [info] <0.108.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:00:37.000 [info] <0.108.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* [{riak_dt_gcounter,[increment]},{riak_dt_gset,[add]}] +2014-07-16 16:00:37.001 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> +2014-07-16 16:00:37.001 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> +2014-07-16 16:00:37.008 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> +2014-07-16 16:00:37.008 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> +2014-07-16 16:00:37.008 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-16 16:00:37.008 [debug] <0.95.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:00:37.008 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash +2014-07-16 16:00:37.008 [debug] <0.108.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:00:37.009 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash +2014-07-16 16:00:37.009 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 16:00:37.034 [info] <0.111.0>@basho_bench_driver_floppystore:new:54 **********Got types************* +2014-07-16 16:00:37.034 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:00:37.034 [info] <0.111.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:00:37.034 [info] <0.111.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* [{riak_dt_gcounter,[increment]},{riak_dt_gset,[add]}] +2014-07-16 16:00:37.034 [warning] <0.110.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:00:37.035 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> +2014-07-16 16:00:37.035 [debug] <0.111.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:00:37.035 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash +2014-07-16 16:00:37.035 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.110.0> +2014-07-16 16:00:37.035 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-16 16:00:37.058 [info] <0.113.0>@basho_bench_driver_floppystore:new:54 **********Got types************* +2014-07-16 16:00:37.058 [info] <0.113.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:00:37.058 [info] <0.113.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:00:37.058 [info] <0.113.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* [{riak_dt_gcounter,[increment]},{riak_dt_gset,[add]}] +2014-07-16 16:00:37.058 [warning] <0.112.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:00:37.058 [info] <0.113.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.113.0> +2014-07-16 16:00:37.058 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.112.0> +2014-07-16 16:00:37.058 [debug] <0.113.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:00:37.059 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash +2014-07-16 16:00:37.059 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.110.0> exit with reason normal in context child_terminated +2014-07-16 16:00:37.091 [info] <0.115.0>@basho_bench_driver_floppystore:new:54 **********Got types************* +2014-07-16 16:00:37.091 [info] <0.115.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:00:37.091 [info] <0.115.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:00:37.091 [info] <0.115.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* [{riak_dt_gcounter,[increment]},{riak_dt_gset,[add]}] +2014-07-16 16:00:37.091 [warning] <0.114.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:00:37.091 [info] <0.115.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.115.0> +2014-07-16 16:00:37.091 [debug] <0.115.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:00:37.091 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash +2014-07-16 16:00:37.092 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.114.0> +2014-07-16 16:00:37.092 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.112.0> exit with reason normal in context child_terminated +2014-07-16 16:00:37.118 [info] <0.117.0>@basho_bench_driver_floppystore:new:54 **********Got types************* +2014-07-16 16:00:37.118 [info] <0.117.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:00:37.118 [info] <0.117.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:00:37.119 [info] <0.117.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* [{riak_dt_gcounter,[increment]},{riak_dt_gset,[add]}] +2014-07-16 16:00:37.119 [warning] <0.116.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:00:37.119 [info] <0.117.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.117.0> +2014-07-16 16:00:37.119 [debug] <0.117.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:00:37.119 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash +2014-07-16 16:00:37.119 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.116.0> +2014-07-16 16:00:37.120 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.114.0> exit with reason normal in context child_terminated +2014-07-16 16:00:37.143 [info] <0.119.0>@basho_bench_driver_floppystore:new:54 **********Got types************* +2014-07-16 16:00:37.144 [info] <0.119.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:00:37.144 [info] <0.119.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:00:37.144 [info] <0.119.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* [{riak_dt_gcounter,[increment]},{riak_dt_gset,[add]}] +2014-07-16 16:00:37.144 [warning] <0.118.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:00:37.144 [info] <0.119.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.119.0> +2014-07-16 16:00:37.145 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.118.0> +2014-07-16 16:00:37.145 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.116.0> exit with reason normal in context child_terminated +2014-07-16 16:00:37.145 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-16 16:00:37.158 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {append,append} +2014-07-16 16:00:37.158 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} +2014-07-16 16:00:37.158 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{append,append},6},{{{append,append},crash},6}] +2014-07-16 16:00:37.158 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: +2014-07-16 16:00:37.158 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{append,append},crash}: 6 diff --git a/newtests/20140716_160035/crash.log b/newtests/20140716_160035/crash.log new file mode 100644 index 000000000..70cc10bd4 --- /dev/null +++ b/newtests/20140716_160035/crash.log @@ -0,0 +1,42 @@ +2014-07-16 16:00:37 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:00:37 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:00:37 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:00:37 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.112.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:00:37 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.114.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:00:37 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.116.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:00:37 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.116.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140716_160035/error.log b/newtests/20140716_160035/error.log new file mode 100644 index 000000000..89c33bb0b --- /dev/null +++ b/newtests/20140716_160035/error.log @@ -0,0 +1,13 @@ +2014-07-16 16:00:37.008 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash +2014-07-16 16:00:37.009 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash +2014-07-16 16:00:37.009 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 16:00:37.035 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash +2014-07-16 16:00:37.035 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-16 16:00:37.059 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash +2014-07-16 16:00:37.059 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.110.0> exit with reason normal in context child_terminated +2014-07-16 16:00:37.091 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash +2014-07-16 16:00:37.092 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.112.0> exit with reason normal in context child_terminated +2014-07-16 16:00:37.119 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash +2014-07-16 16:00:37.120 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.114.0> exit with reason normal in context child_terminated +2014-07-16 16:00:37.145 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.116.0> exit with reason normal in context child_terminated +2014-07-16 16:00:37.145 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_160035/errors.csv b/newtests/20140716_160035/errors.csv new file mode 100644 index 000000000..dc786eb57 --- /dev/null +++ b/newtests/20140716_160035/errors.csv @@ -0,0 +1,2 @@ +"error","count" +"{{append,append},crash}","6" diff --git a/newtests/20140716_160035/floppstore.config b/newtests/20140716_160035/floppstore.config new file mode 100644 index 000000000..55db32761 --- /dev/null +++ b/newtests/20140716_160035/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. + +{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. + +{operations, [{append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_160035/log.sasl.txt b/newtests/20140716_160035/log.sasl.txt new file mode 100644 index 000000000..7661bc5f3 --- /dev/null +++ b/newtests/20140716_160035/log.sasl.txt @@ -0,0 +1,336 @@ + +=PROGRESS REPORT==== 16-Jul-2014::16:00:36 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:00:36 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:00:36 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::16:00:36 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:00:36 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::16:00:36 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:00:36 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::16:00:36 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::16:00:36 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:00:36 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:00:36 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::16:00:36 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:00:36 === + supervisor: {local,net_sup} + started: [{pid,<0.97.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:00:36 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:00:36 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:00:36 === + supervisor: {local,kernel_sup} + started: [{pid,<0.96.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::16:00:36 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 16-Jul-2014::16:00:36 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.103.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:00:36 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:00:37 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:00:37 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.109.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:00:37 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 16-Jul-2014::16:00:37 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:00:37 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.110.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:00:37 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:00:37 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.112.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:00:37 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:00:37 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.114.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:00:37 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.112.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:00:37 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.116.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:00:37 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.114.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:00:37 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.118.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:00:37 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.116.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 16-Jul-2014::16:00:37 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.116.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140716_160035/read_latencies.csv b/newtests/20140716_160035/read_latencies.csv new file mode 100644 index 000000000..0ef81497c --- /dev/null +++ b/newtests/20140716_160035/read_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.143616, 0.143616, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140716_160035/summary.csv b/newtests/20140716_160035/summary.csv new file mode 100644 index 000000000..03d43a55e --- /dev/null +++ b/newtests/20140716_160035/summary.csv @@ -0,0 +1,2 @@ +elapsed, window, total, successful, failed +0.143616, 0.143616, 6, 0, 6 diff --git a/newtests/20140716_160222/append_latencies.csv b/newtests/20140716_160222/append_latencies.csv new file mode 100644 index 000000000..5ac939cf3 --- /dev/null +++ b/newtests/20140716_160222/append_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.160611, 0.160611, 0, 0, 0, 0, 0, 0, 0, 0, 6 diff --git a/newtests/20140716_160222/console.log b/newtests/20140716_160222/console.log new file mode 100644 index 000000000..dc2662dd0 --- /dev/null +++ b/newtests/20140716_160222/console.log @@ -0,0 +1,106 @@ +2014-07-16 16:02:22.681 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_160222/error.log"} into lager_event +2014-07-16 16:02:22.681 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_160222/console.log"} into lager_event +2014-07-16 16:02:22.681 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-16 16:02:22.715 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-16 16:02:22.715 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-16 16:02:22.715 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-16 16:02:22.715 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-16 16:02:23.156 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-16 16:02:23.465 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-16 16:02:23.467 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_160222/console.log to debug +2014-07-16 16:02:23.473 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} +2014-07-16 16:02:23.549 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-16 16:02:23.550 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-16 16:02:23.550 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-16 16:02:23.565 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-16 16:02:23.565 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-16 16:02:23.642 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-16 16:02:23.642 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-16 16:02:23.669 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-16 16:02:23.674 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-16 16:02:23.678 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-16 16:02:23.679 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-16 16:02:23.716 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-16 16:02:23.772 [info] <0.95.0>@basho_bench_driver_floppystore:new:54 **********Got types************* +2014-07-16 16:02:23.787 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> +2014-07-16 16:02:23.793 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> +2014-07-16 16:02:23.807 [info] <0.95.0>@basho_bench_driver_floppystore:new:58 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-16 16:02:23.807 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> +2014-07-16 16:02:23.807 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> +2014-07-16 16:02:23.820 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> +2014-07-16 16:02:23.821 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> +2014-07-16 16:02:23.838 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:02:23.838 [info] <0.95.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:02:23.838 [info] <0.95.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* [] +2014-07-16 16:02:23.839 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-16 16:02:23.873 [info] <0.108.0>@basho_bench_driver_floppystore:new:54 **********Got types************* +2014-07-16 16:02:23.873 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:02:23.873 [info] <0.108.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:02:23.873 [info] <0.108.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* [] +2014-07-16 16:02:23.874 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> +2014-07-16 16:02:23.874 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> +2014-07-16 16:02:23.879 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> +2014-07-16 16:02:23.879 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> +2014-07-16 16:02:23.879 [debug] <0.108.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:02:23.879 [debug] <0.95.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:02:23.879 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash +2014-07-16 16:02:23.879 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash +2014-07-16 16:02:23.879 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-16 16:02:23.880 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-16 16:02:23.915 [info] <0.111.0>@basho_bench_driver_floppystore:new:54 **********Got types************* +2014-07-16 16:02:23.916 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:02:23.916 [info] <0.111.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:02:23.916 [info] <0.111.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* [] +2014-07-16 16:02:23.916 [warning] <0.110.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:02:23.916 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> +2014-07-16 16:02:23.916 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.110.0> +2014-07-16 16:02:23.916 [debug] <0.111.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:02:23.916 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash +2014-07-16 16:02:23.917 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 16:02:23.951 [info] <0.113.0>@basho_bench_driver_floppystore:new:54 **********Got types************* +2014-07-16 16:02:23.951 [info] <0.113.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:02:23.951 [info] <0.113.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:02:23.951 [info] <0.113.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* [] +2014-07-16 16:02:23.951 [warning] <0.112.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:02:23.951 [info] <0.113.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.113.0> +2014-07-16 16:02:23.952 [debug] <0.113.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:02:23.952 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash +2014-07-16 16:02:23.952 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.112.0> +2014-07-16 16:02:23.952 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated +2014-07-16 16:02:23.977 [info] <0.115.0>@basho_bench_driver_floppystore:new:54 **********Got types************* +2014-07-16 16:02:23.978 [info] <0.115.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:02:23.978 [info] <0.115.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:02:23.978 [info] <0.115.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* [] +2014-07-16 16:02:23.978 [warning] <0.114.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:02:23.978 [info] <0.115.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.115.0> +2014-07-16 16:02:23.978 [debug] <0.115.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:02:23.978 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash +2014-07-16 16:02:23.978 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.114.0> +2014-07-16 16:02:23.979 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.112.0> exit with reason normal in context child_terminated +2014-07-16 16:02:24.003 [info] <0.117.0>@basho_bench_driver_floppystore:new:54 **********Got types************* +2014-07-16 16:02:24.003 [info] <0.117.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:02:24.003 [info] <0.117.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:02:24.003 [info] <0.117.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* [] +2014-07-16 16:02:24.003 [warning] <0.116.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:02:24.003 [info] <0.117.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.117.0> +2014-07-16 16:02:24.004 [debug] <0.117.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:02:24.004 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.116.0> +2014-07-16 16:02:24.004 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash +2014-07-16 16:02:24.004 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.114.0> exit with reason normal in context child_terminated +2014-07-16 16:02:24.033 [info] <0.119.0>@basho_bench_driver_floppystore:new:54 **********Got types************* +2014-07-16 16:02:24.033 [info] <0.119.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:02:24.034 [info] <0.119.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:02:24.034 [info] <0.119.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* [] +2014-07-16 16:02:24.034 [warning] <0.118.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:02:24.034 [info] <0.119.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.119.0> +2014-07-16 16:02:24.034 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.118.0> +2014-07-16 16:02:24.035 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason normal in context child_terminated +2014-07-16 16:02:24.035 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-16 16:02:24.046 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {append,append} +2014-07-16 16:02:24.046 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} +2014-07-16 16:02:24.047 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{append,append},6},{{{append,append},crash},6}] +2014-07-16 16:02:24.047 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: +2014-07-16 16:02:24.047 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{append,append},crash}: 6 +2014-07-16 16:02:24.047 [info] <0.2.0>@basho_bench:wait_for_stop:191 Test stopped: shutdown diff --git a/newtests/20140716_160222/crash.log b/newtests/20140716_160222/crash.log new file mode 100644 index 000000000..b93710730 --- /dev/null +++ b/newtests/20140716_160222/crash.log @@ -0,0 +1,42 @@ +2014-07-16 16:02:23 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:02:23 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:02:23 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:02:23 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.112.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:02:24 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.114.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:02:24 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.116.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:02:24 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.116.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140716_160222/error.log b/newtests/20140716_160222/error.log new file mode 100644 index 000000000..7831ee8d0 --- /dev/null +++ b/newtests/20140716_160222/error.log @@ -0,0 +1,13 @@ +2014-07-16 16:02:23.879 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash +2014-07-16 16:02:23.879 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash +2014-07-16 16:02:23.880 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-16 16:02:23.916 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash +2014-07-16 16:02:23.917 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 16:02:23.952 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash +2014-07-16 16:02:23.952 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated +2014-07-16 16:02:23.978 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash +2014-07-16 16:02:23.979 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.112.0> exit with reason normal in context child_terminated +2014-07-16 16:02:24.004 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash +2014-07-16 16:02:24.004 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.114.0> exit with reason normal in context child_terminated +2014-07-16 16:02:24.035 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason normal in context child_terminated +2014-07-16 16:02:24.035 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_160222/errors.csv b/newtests/20140716_160222/errors.csv new file mode 100644 index 000000000..dc786eb57 --- /dev/null +++ b/newtests/20140716_160222/errors.csv @@ -0,0 +1,2 @@ +"error","count" +"{{append,append},crash}","6" diff --git a/newtests/20140716_160222/floppstore.config b/newtests/20140716_160222/floppstore.config new file mode 100644 index 000000000..55db32761 --- /dev/null +++ b/newtests/20140716_160222/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. + +{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. + +{operations, [{append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_160222/log.sasl.txt b/newtests/20140716_160222/log.sasl.txt new file mode 100644 index 000000000..614dc7fad --- /dev/null +++ b/newtests/20140716_160222/log.sasl.txt @@ -0,0 +1,336 @@ + +=PROGRESS REPORT==== 16-Jul-2014::16:02:23 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:02:23 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:02:23 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::16:02:23 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:02:23 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::16:02:23 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:02:23 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::16:02:23 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::16:02:23 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:02:23 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:02:23 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::16:02:23 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:02:23 === + supervisor: {local,net_sup} + started: [{pid,<0.97.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:02:23 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:02:23 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:02:23 === + supervisor: {local,kernel_sup} + started: [{pid,<0.96.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::16:02:23 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 16-Jul-2014::16:02:23 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.103.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:02:23 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:02:23 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:02:23 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.109.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:02:23 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 16-Jul-2014::16:02:23 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:02:23 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.110.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:02:23 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:02:23 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.112.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:02:23 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:02:23 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.114.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:02:23 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.112.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:02:24 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.116.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:02:24 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.114.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:02:24 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.118.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:02:24 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.116.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 16-Jul-2014::16:02:24 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.116.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140716_160222/read_latencies.csv b/newtests/20140716_160222/read_latencies.csv new file mode 100644 index 000000000..19917f52c --- /dev/null +++ b/newtests/20140716_160222/read_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.160611, 0.160611, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140716_160222/summary.csv b/newtests/20140716_160222/summary.csv new file mode 100644 index 000000000..2ca790c49 --- /dev/null +++ b/newtests/20140716_160222/summary.csv @@ -0,0 +1,2 @@ +elapsed, window, total, successful, failed +0.160611, 0.160611, 6, 0, 6 diff --git a/newtests/20140716_160324/console.log b/newtests/20140716_160324/console.log new file mode 100644 index 000000000..e69de29bb diff --git a/newtests/20140716_160324/crash.log b/newtests/20140716_160324/crash.log new file mode 100644 index 000000000..e69de29bb diff --git a/newtests/20140716_160324/error.log b/newtests/20140716_160324/error.log new file mode 100644 index 000000000..e69de29bb diff --git a/newtests/20140716_160324/floppstore.config b/newtests/20140716_160324/floppstore.config new file mode 100644 index 000000000..55db32761 --- /dev/null +++ b/newtests/20140716_160324/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. + +{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. + +{operations, [{append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_160324/log.sasl.txt b/newtests/20140716_160324/log.sasl.txt new file mode 100644 index 000000000..5000516dc --- /dev/null +++ b/newtests/20140716_160324/log.sasl.txt @@ -0,0 +1,42 @@ + +=PROGRESS REPORT==== 16-Jul-2014::16:03:25 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:03:25 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:03:25 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::16:03:25 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:03:25 === + application: sasl + started_at: nonode@nohost diff --git a/newtests/20140716_160337/append_latencies.csv b/newtests/20140716_160337/append_latencies.csv new file mode 100644 index 000000000..8872aa1f2 --- /dev/null +++ b/newtests/20140716_160337/append_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.15691, 0.15691, 0, 0, 0, 0, 0, 0, 0, 0, 6 diff --git a/newtests/20140716_160337/console.log b/newtests/20140716_160337/console.log new file mode 100644 index 000000000..0dcd472dc --- /dev/null +++ b/newtests/20140716_160337/console.log @@ -0,0 +1,98 @@ +2014-07-16 16:03:37.179 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_160337/error.log"} into lager_event +2014-07-16 16:03:37.179 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_160337/console.log"} into lager_event +2014-07-16 16:03:37.179 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-16 16:03:37.214 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-16 16:03:37.215 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-16 16:03:37.215 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-16 16:03:37.215 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-16 16:03:37.655 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-16 16:03:37.954 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-16 16:03:37.955 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_160337/console.log to debug +2014-07-16 16:03:37.961 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} +2014-07-16 16:03:38.034 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-16 16:03:38.034 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-16 16:03:38.035 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-16 16:03:38.048 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-16 16:03:38.048 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-16 16:03:38.125 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-16 16:03:38.126 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-16 16:03:38.154 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-16 16:03:38.158 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-16 16:03:38.163 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-16 16:03:38.163 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-16 16:03:38.201 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-16 16:03:38.263 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> +2014-07-16 16:03:38.270 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> +2014-07-16 16:03:38.285 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-16 16:03:38.285 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> +2014-07-16 16:03:38.285 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> +2014-07-16 16:03:38.299 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> +2014-07-16 16:03:38.299 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> +2014-07-16 16:03:38.313 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:135 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:03:38.313 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:03:38.313 [info] <0.95.0>@basho_bench_driver_floppystore:new:77 **********Inserteds************* [] +2014-07-16 16:03:38.314 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-16 16:03:38.348 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:135 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:03:38.348 [info] <0.108.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:03:38.349 [info] <0.108.0>@basho_bench_driver_floppystore:new:77 **********Inserteds************* [] +2014-07-16 16:03:38.349 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> +2014-07-16 16:03:38.350 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> +2014-07-16 16:03:38.355 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> +2014-07-16 16:03:38.355 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> +2014-07-16 16:03:38.356 [debug] <0.108.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,144}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:03:38.356 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash +2014-07-16 16:03:38.356 [debug] <0.95.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,144}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:03:38.356 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash +2014-07-16 16:03:38.356 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-16 16:03:38.362 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-16 16:03:38.390 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:135 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:03:38.390 [info] <0.111.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:03:38.390 [info] <0.111.0>@basho_bench_driver_floppystore:new:77 **********Inserteds************* [] +2014-07-16 16:03:38.390 [warning] <0.110.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:03:38.390 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> +2014-07-16 16:03:38.391 [debug] <0.111.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,144}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:03:38.391 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.110.0> +2014-07-16 16:03:38.391 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash +2014-07-16 16:03:38.391 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 16:03:38.422 [info] <0.113.0>@basho_bench_driver_floppystore:ping_each:135 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:03:38.422 [info] <0.113.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:03:38.422 [info] <0.113.0>@basho_bench_driver_floppystore:new:77 **********Inserteds************* [] +2014-07-16 16:03:38.422 [warning] <0.112.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:03:38.422 [info] <0.113.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.113.0> +2014-07-16 16:03:38.423 [debug] <0.113.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,144}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:03:38.423 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash +2014-07-16 16:03:38.423 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.112.0> +2014-07-16 16:03:38.423 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated +2014-07-16 16:03:38.448 [info] <0.115.0>@basho_bench_driver_floppystore:ping_each:135 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:03:38.448 [info] <0.115.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:03:38.449 [info] <0.115.0>@basho_bench_driver_floppystore:new:77 **********Inserteds************* [] +2014-07-16 16:03:38.449 [warning] <0.114.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:03:38.449 [info] <0.115.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.115.0> +2014-07-16 16:03:38.449 [debug] <0.115.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,144}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:03:38.449 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash +2014-07-16 16:03:38.449 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.114.0> +2014-07-16 16:03:38.450 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.112.0> exit with reason normal in context child_terminated +2014-07-16 16:03:38.474 [info] <0.117.0>@basho_bench_driver_floppystore:ping_each:135 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:03:38.474 [info] <0.117.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:03:38.474 [info] <0.117.0>@basho_bench_driver_floppystore:new:77 **********Inserteds************* [] +2014-07-16 16:03:38.474 [warning] <0.116.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:03:38.474 [info] <0.117.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.117.0> +2014-07-16 16:03:38.474 [debug] <0.117.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,144}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:03:38.474 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash +2014-07-16 16:03:38.474 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.116.0> +2014-07-16 16:03:38.475 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.114.0> exit with reason normal in context child_terminated +2014-07-16 16:03:38.505 [info] <0.119.0>@basho_bench_driver_floppystore:ping_each:135 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:03:38.505 [info] <0.119.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:03:38.505 [info] <0.119.0>@basho_bench_driver_floppystore:new:77 **********Inserteds************* [] +2014-07-16 16:03:38.505 [warning] <0.118.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:03:38.506 [info] <0.119.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.119.0> +2014-07-16 16:03:38.506 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.118.0> +2014-07-16 16:03:38.506 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason normal in context child_terminated +2014-07-16 16:03:38.507 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-16 16:03:38.517 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {append,append} +2014-07-16 16:03:38.517 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} +2014-07-16 16:03:38.517 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{append,append},6},{{{append,append},crash},6}] +2014-07-16 16:03:38.517 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: +2014-07-16 16:03:38.517 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{append,append},crash}: 6 diff --git a/newtests/20140716_160337/crash.log b/newtests/20140716_160337/crash.log new file mode 100644 index 000000000..4b7b7be66 --- /dev/null +++ b/newtests/20140716_160337/crash.log @@ -0,0 +1,42 @@ +2014-07-16 16:03:38 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:03:38 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:03:38 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:03:38 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.112.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:03:38 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.114.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:03:38 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.116.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:03:38 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.116.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140716_160337/error.log b/newtests/20140716_160337/error.log new file mode 100644 index 000000000..e12c3ac1b --- /dev/null +++ b/newtests/20140716_160337/error.log @@ -0,0 +1,13 @@ +2014-07-16 16:03:38.356 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash +2014-07-16 16:03:38.356 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash +2014-07-16 16:03:38.362 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-16 16:03:38.391 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash +2014-07-16 16:03:38.391 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 16:03:38.423 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash +2014-07-16 16:03:38.423 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated +2014-07-16 16:03:38.449 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash +2014-07-16 16:03:38.450 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.112.0> exit with reason normal in context child_terminated +2014-07-16 16:03:38.474 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash +2014-07-16 16:03:38.475 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.114.0> exit with reason normal in context child_terminated +2014-07-16 16:03:38.506 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason normal in context child_terminated +2014-07-16 16:03:38.507 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_160337/errors.csv b/newtests/20140716_160337/errors.csv new file mode 100644 index 000000000..dc786eb57 --- /dev/null +++ b/newtests/20140716_160337/errors.csv @@ -0,0 +1,2 @@ +"error","count" +"{{append,append},crash}","6" diff --git a/newtests/20140716_160337/floppstore.config b/newtests/20140716_160337/floppstore.config new file mode 100644 index 000000000..55db32761 --- /dev/null +++ b/newtests/20140716_160337/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. + +{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. + +{operations, [{append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_160337/log.sasl.txt b/newtests/20140716_160337/log.sasl.txt new file mode 100644 index 000000000..6c6e75e7b --- /dev/null +++ b/newtests/20140716_160337/log.sasl.txt @@ -0,0 +1,336 @@ + +=PROGRESS REPORT==== 16-Jul-2014::16:03:38 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:03:38 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:03:38 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::16:03:38 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:03:38 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::16:03:38 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:03:38 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::16:03:38 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::16:03:38 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:03:38 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:03:38 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::16:03:38 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:03:38 === + supervisor: {local,net_sup} + started: [{pid,<0.97.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:03:38 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:03:38 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:03:38 === + supervisor: {local,kernel_sup} + started: [{pid,<0.96.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::16:03:38 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 16-Jul-2014::16:03:38 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.103.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:03:38 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:03:38 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:03:38 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.109.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:03:38 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 16-Jul-2014::16:03:38 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:03:38 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.110.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:03:38 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:03:38 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.112.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:03:38 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:03:38 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.114.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:03:38 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.112.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:03:38 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.116.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:03:38 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.114.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:03:38 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.118.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:03:38 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.116.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 16-Jul-2014::16:03:38 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.116.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140716_160337/read_latencies.csv b/newtests/20140716_160337/read_latencies.csv new file mode 100644 index 000000000..7262765c6 --- /dev/null +++ b/newtests/20140716_160337/read_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.15691, 0.15691, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140716_160337/summary.csv b/newtests/20140716_160337/summary.csv new file mode 100644 index 000000000..33c0e3507 --- /dev/null +++ b/newtests/20140716_160337/summary.csv @@ -0,0 +1,2 @@ +elapsed, window, total, successful, failed +0.15691, 0.15691, 6, 0, 6 diff --git a/newtests/20140716_160632/append_latencies.csv b/newtests/20140716_160632/append_latencies.csv new file mode 100644 index 000000000..c9e2de1c6 --- /dev/null +++ b/newtests/20140716_160632/append_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.154689, 0.154689, 0, 0, 0, 0, 0, 0, 0, 0, 6 diff --git a/newtests/20140716_160632/console.log b/newtests/20140716_160632/console.log new file mode 100644 index 000000000..38becb601 --- /dev/null +++ b/newtests/20140716_160632/console.log @@ -0,0 +1,98 @@ +2014-07-16 16:06:32.939 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_160632/error.log"} into lager_event +2014-07-16 16:06:32.939 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_160632/console.log"} into lager_event +2014-07-16 16:06:32.939 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-16 16:06:32.976 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-16 16:06:32.976 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-16 16:06:32.976 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-16 16:06:32.977 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-16 16:06:33.416 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-16 16:06:33.738 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-16 16:06:33.740 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_160632/console.log to debug +2014-07-16 16:06:33.746 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} +2014-07-16 16:06:33.821 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-16 16:06:33.822 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-16 16:06:33.822 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-16 16:06:33.837 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-16 16:06:33.837 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-16 16:06:33.917 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-16 16:06:33.917 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-16 16:06:33.944 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-16 16:06:33.948 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-16 16:06:33.952 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-16 16:06:33.952 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-16 16:06:33.989 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-16 16:06:34.049 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> +2014-07-16 16:06:34.056 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> +2014-07-16 16:06:34.067 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-16 16:06:34.068 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> +2014-07-16 16:06:34.068 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> +2014-07-16 16:06:34.082 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> +2014-07-16 16:06:34.082 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> +2014-07-16 16:06:34.096 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:06:34.096 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:06:34.096 [info] <0.95.0>@basho_bench_driver_floppystore:new:76 **********Inserteds************* [riak_dt_gcounter,riak_dt_gset] +2014-07-16 16:06:34.097 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-16 16:06:34.128 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:06:34.128 [info] <0.108.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:06:34.129 [info] <0.108.0>@basho_bench_driver_floppystore:new:76 **********Inserteds************* [riak_dt_gcounter,riak_dt_gset] +2014-07-16 16:06:34.129 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> +2014-07-16 16:06:34.129 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> +2014-07-16 16:06:34.136 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> +2014-07-16 16:06:34.136 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> +2014-07-16 16:06:34.137 [debug] <0.95.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[riak_dt_gcounter,riak_dt_gset]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,143}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,106}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:06:34.137 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash +2014-07-16 16:06:34.137 [debug] <0.108.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[riak_dt_gcounter,riak_dt_gset]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,143}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,106}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:06:34.137 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash +2014-07-16 16:06:34.137 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-16 16:06:34.143 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 16:06:34.169 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:06:34.169 [info] <0.111.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:06:34.169 [info] <0.111.0>@basho_bench_driver_floppystore:new:76 **********Inserteds************* [riak_dt_gcounter,riak_dt_gset] +2014-07-16 16:06:34.169 [warning] <0.110.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:06:34.169 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> +2014-07-16 16:06:34.170 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.110.0> +2014-07-16 16:06:34.170 [debug] <0.111.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[riak_dt_gcounter,riak_dt_gset]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,143}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,106}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:06:34.170 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash +2014-07-16 16:06:34.170 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-16 16:06:34.195 [info] <0.113.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:06:34.195 [info] <0.113.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:06:34.195 [info] <0.113.0>@basho_bench_driver_floppystore:new:76 **********Inserteds************* [riak_dt_gcounter,riak_dt_gset] +2014-07-16 16:06:34.195 [warning] <0.112.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:06:34.195 [info] <0.113.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.113.0> +2014-07-16 16:06:34.196 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.112.0> +2014-07-16 16:06:34.196 [debug] <0.113.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[riak_dt_gcounter,riak_dt_gset]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,143}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,106}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:06:34.196 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash +2014-07-16 16:06:34.196 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.110.0> exit with reason normal in context child_terminated +2014-07-16 16:06:34.232 [info] <0.115.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:06:34.232 [info] <0.115.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:06:34.232 [info] <0.115.0>@basho_bench_driver_floppystore:new:76 **********Inserteds************* [riak_dt_gcounter,riak_dt_gset] +2014-07-16 16:06:34.232 [warning] <0.114.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:06:34.232 [info] <0.115.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.115.0> +2014-07-16 16:06:34.233 [debug] <0.115.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[riak_dt_gcounter,riak_dt_gset]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,143}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,106}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:06:34.233 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.114.0> +2014-07-16 16:06:34.233 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash +2014-07-16 16:06:34.233 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.112.0> exit with reason normal in context child_terminated +2014-07-16 16:06:34.257 [info] <0.117.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:06:34.257 [info] <0.117.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:06:34.257 [info] <0.117.0>@basho_bench_driver_floppystore:new:76 **********Inserteds************* [riak_dt_gcounter,riak_dt_gset] +2014-07-16 16:06:34.257 [warning] <0.116.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:06:34.257 [info] <0.117.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.117.0> +2014-07-16 16:06:34.258 [debug] <0.117.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[riak_dt_gcounter,riak_dt_gset]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,143}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,106}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:06:34.258 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.116.0> +2014-07-16 16:06:34.258 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash +2014-07-16 16:06:34.258 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.114.0> exit with reason normal in context child_terminated +2014-07-16 16:06:34.283 [info] <0.119.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:06:34.283 [info] <0.119.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:06:34.283 [info] <0.119.0>@basho_bench_driver_floppystore:new:76 **********Inserteds************* [riak_dt_gcounter,riak_dt_gset] +2014-07-16 16:06:34.283 [warning] <0.118.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:06:34.283 [info] <0.119.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.119.0> +2014-07-16 16:06:34.284 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.118.0> +2014-07-16 16:06:34.284 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.116.0> exit with reason normal in context child_terminated +2014-07-16 16:06:34.285 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-16 16:06:34.297 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {append,append} +2014-07-16 16:06:34.297 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} +2014-07-16 16:06:34.297 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{append,append},6},{{{append,append},crash},6}] +2014-07-16 16:06:34.297 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: +2014-07-16 16:06:34.297 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{append,append},crash}: 6 diff --git a/newtests/20140716_160632/crash.log b/newtests/20140716_160632/crash.log new file mode 100644 index 000000000..12612671a --- /dev/null +++ b/newtests/20140716_160632/crash.log @@ -0,0 +1,42 @@ +2014-07-16 16:06:34 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:06:34 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:06:34 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:06:34 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.112.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:06:34 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.114.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:06:34 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.116.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:06:34 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.116.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140716_160632/error.log b/newtests/20140716_160632/error.log new file mode 100644 index 000000000..a5ccfd50c --- /dev/null +++ b/newtests/20140716_160632/error.log @@ -0,0 +1,13 @@ +2014-07-16 16:06:34.137 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash +2014-07-16 16:06:34.137 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash +2014-07-16 16:06:34.143 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 16:06:34.170 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash +2014-07-16 16:06:34.170 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-16 16:06:34.196 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash +2014-07-16 16:06:34.196 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.110.0> exit with reason normal in context child_terminated +2014-07-16 16:06:34.233 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash +2014-07-16 16:06:34.233 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.112.0> exit with reason normal in context child_terminated +2014-07-16 16:06:34.258 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash +2014-07-16 16:06:34.258 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.114.0> exit with reason normal in context child_terminated +2014-07-16 16:06:34.284 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.116.0> exit with reason normal in context child_terminated +2014-07-16 16:06:34.285 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_160632/errors.csv b/newtests/20140716_160632/errors.csv new file mode 100644 index 000000000..dc786eb57 --- /dev/null +++ b/newtests/20140716_160632/errors.csv @@ -0,0 +1,2 @@ +"error","count" +"{{append,append},crash}","6" diff --git a/newtests/20140716_160632/floppstore.config b/newtests/20140716_160632/floppstore.config new file mode 100644 index 000000000..55db32761 --- /dev/null +++ b/newtests/20140716_160632/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. + +{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. + +{operations, [{append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_160632/log.sasl.txt b/newtests/20140716_160632/log.sasl.txt new file mode 100644 index 000000000..b76c20e3f --- /dev/null +++ b/newtests/20140716_160632/log.sasl.txt @@ -0,0 +1,336 @@ + +=PROGRESS REPORT==== 16-Jul-2014::16:06:33 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:06:33 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:06:33 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::16:06:33 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:06:33 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::16:06:33 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:06:33 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::16:06:33 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::16:06:33 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:06:33 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:06:33 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::16:06:33 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:06:34 === + supervisor: {local,net_sup} + started: [{pid,<0.97.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:06:34 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:06:34 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:06:34 === + supervisor: {local,kernel_sup} + started: [{pid,<0.96.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::16:06:34 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 16-Jul-2014::16:06:34 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.103.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:06:34 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:06:34 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:06:34 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.109.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:06:34 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 16-Jul-2014::16:06:34 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:06:34 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.110.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:06:34 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:06:34 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.112.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:06:34 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:06:34 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.114.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:06:34 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.112.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:06:34 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.116.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:06:34 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.114.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:06:34 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.118.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:06:34 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.116.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 16-Jul-2014::16:06:34 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.116.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140716_160632/read_latencies.csv b/newtests/20140716_160632/read_latencies.csv new file mode 100644 index 000000000..ffdd0bab3 --- /dev/null +++ b/newtests/20140716_160632/read_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.154689, 0.154689, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140716_160632/summary.csv b/newtests/20140716_160632/summary.csv new file mode 100644 index 000000000..b89d6e521 --- /dev/null +++ b/newtests/20140716_160632/summary.csv @@ -0,0 +1,2 @@ +elapsed, window, total, successful, failed +0.154689, 0.154689, 6, 0, 6 diff --git a/newtests/20140716_161238/append_latencies.csv b/newtests/20140716_161238/append_latencies.csv new file mode 100644 index 000000000..643e9c6c1 --- /dev/null +++ b/newtests/20140716_161238/append_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.161442, 0.161442, 0, 0, 0, 0, 0, 0, 0, 0, 6 diff --git a/newtests/20140716_161238/console.log b/newtests/20140716_161238/console.log new file mode 100644 index 000000000..5eed72583 --- /dev/null +++ b/newtests/20140716_161238/console.log @@ -0,0 +1,91 @@ +2014-07-16 16:12:38.826 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_161238/error.log"} into lager_event +2014-07-16 16:12:38.826 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_161238/console.log"} into lager_event +2014-07-16 16:12:38.826 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-16 16:12:38.864 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-16 16:12:38.864 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-16 16:12:38.864 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-16 16:12:38.864 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-16 16:12:39.300 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-16 16:12:39.644 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-16 16:12:39.645 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_161238/console.log to debug +2014-07-16 16:12:39.652 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} +2014-07-16 16:12:39.732 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-16 16:12:39.732 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-16 16:12:39.733 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-16 16:12:39.747 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-16 16:12:39.747 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-16 16:12:39.831 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-16 16:12:39.831 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-16 16:12:39.861 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-16 16:12:39.866 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-16 16:12:39.871 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-16 16:12:39.872 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-16 16:12:39.909 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-16 16:12:39.970 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> +2014-07-16 16:12:39.977 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> +2014-07-16 16:12:39.993 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-16 16:12:39.993 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> +2014-07-16 16:12:39.994 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> +2014-07-16 16:12:40.010 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> +2014-07-16 16:12:40.010 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> +2014-07-16 16:12:40.025 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:12:40.025 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:12:40.026 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-16 16:12:40.058 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:12:40.058 [info] <0.108.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:12:40.059 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> +2014-07-16 16:12:40.059 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> +2014-07-16 16:12:40.064 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> +2014-07-16 16:12:40.064 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> +2014-07-16 16:12:40.065 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-16 16:12:40.065 [debug] <0.95.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,length,[error],[]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,150}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:12:40.065 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash +2014-07-16 16:12:40.065 [debug] <0.108.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,length,[error],[]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,150}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:12:40.065 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash +2014-07-16 16:12:40.065 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 16:12:40.102 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:12:40.102 [info] <0.111.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:12:40.102 [warning] <0.110.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:12:40.102 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> +2014-07-16 16:12:40.103 [debug] <0.111.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,length,[error],[]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,150}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:12:40.103 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.110.0> +2014-07-16 16:12:40.103 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash +2014-07-16 16:12:40.103 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-16 16:12:40.134 [info] <0.113.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:12:40.134 [info] <0.113.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:12:40.134 [warning] <0.112.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:12:40.134 [info] <0.113.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.113.0> +2014-07-16 16:12:40.134 [debug] <0.113.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,length,[error],[]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,150}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:12:40.134 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash +2014-07-16 16:12:40.134 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.112.0> +2014-07-16 16:12:40.135 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.110.0> exit with reason normal in context child_terminated +2014-07-16 16:12:40.159 [info] <0.115.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:12:40.159 [info] <0.115.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:12:40.159 [warning] <0.114.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:12:40.159 [info] <0.115.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.115.0> +2014-07-16 16:12:40.159 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.114.0> +2014-07-16 16:12:40.160 [debug] <0.115.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,length,[error],[]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,150}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:12:40.160 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash +2014-07-16 16:12:40.160 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.112.0> exit with reason normal in context child_terminated +2014-07-16 16:12:40.186 [info] <0.117.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:12:40.186 [info] <0.117.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:12:40.186 [warning] <0.116.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:12:40.187 [info] <0.117.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.117.0> +2014-07-16 16:12:40.187 [debug] <0.117.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,length,[error],[]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,150}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:12:40.187 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.116.0> +2014-07-16 16:12:40.187 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash +2014-07-16 16:12:40.187 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.114.0> exit with reason normal in context child_terminated +2014-07-16 16:12:40.219 [info] <0.119.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:12:40.219 [info] <0.119.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:12:40.219 [warning] <0.118.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:12:40.220 [info] <0.119.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.119.0> +2014-07-16 16:12:40.220 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.118.0> +2014-07-16 16:12:40.220 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.116.0> exit with reason normal in context child_terminated +2014-07-16 16:12:40.221 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-16 16:12:40.231 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {append,append} +2014-07-16 16:12:40.231 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} +2014-07-16 16:12:40.232 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{append,append},6},{{{append,append},crash},6}] +2014-07-16 16:12:40.232 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: +2014-07-16 16:12:40.232 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{append,append},crash}: 6 diff --git a/newtests/20140716_161238/crash.log b/newtests/20140716_161238/crash.log new file mode 100644 index 000000000..eae31f074 --- /dev/null +++ b/newtests/20140716_161238/crash.log @@ -0,0 +1,42 @@ +2014-07-16 16:12:40 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:12:40 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:12:40 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:12:40 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.112.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:12:40 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.114.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:12:40 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.116.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:12:40 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.116.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140716_161238/error.log b/newtests/20140716_161238/error.log new file mode 100644 index 000000000..cfbaae357 --- /dev/null +++ b/newtests/20140716_161238/error.log @@ -0,0 +1,13 @@ +2014-07-16 16:12:40.065 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash +2014-07-16 16:12:40.065 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash +2014-07-16 16:12:40.065 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 16:12:40.103 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash +2014-07-16 16:12:40.103 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-16 16:12:40.134 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash +2014-07-16 16:12:40.135 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.110.0> exit with reason normal in context child_terminated +2014-07-16 16:12:40.160 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash +2014-07-16 16:12:40.160 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.112.0> exit with reason normal in context child_terminated +2014-07-16 16:12:40.187 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash +2014-07-16 16:12:40.187 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.114.0> exit with reason normal in context child_terminated +2014-07-16 16:12:40.220 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.116.0> exit with reason normal in context child_terminated +2014-07-16 16:12:40.221 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_161238/errors.csv b/newtests/20140716_161238/errors.csv new file mode 100644 index 000000000..dc786eb57 --- /dev/null +++ b/newtests/20140716_161238/errors.csv @@ -0,0 +1,2 @@ +"error","count" +"{{append,append},crash}","6" diff --git a/newtests/20140716_161238/floppstore.config b/newtests/20140716_161238/floppstore.config new file mode 100644 index 000000000..55db32761 --- /dev/null +++ b/newtests/20140716_161238/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. + +{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. + +{operations, [{append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_161238/log.sasl.txt b/newtests/20140716_161238/log.sasl.txt new file mode 100644 index 000000000..fc8cb754f --- /dev/null +++ b/newtests/20140716_161238/log.sasl.txt @@ -0,0 +1,336 @@ + +=PROGRESS REPORT==== 16-Jul-2014::16:12:39 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:12:39 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:12:39 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::16:12:39 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:12:39 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::16:12:39 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:12:39 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::16:12:39 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::16:12:39 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:12:39 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:12:39 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::16:12:39 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:12:39 === + supervisor: {local,net_sup} + started: [{pid,<0.97.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:12:39 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:12:39 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:12:39 === + supervisor: {local,kernel_sup} + started: [{pid,<0.96.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::16:12:40 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 16-Jul-2014::16:12:40 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.103.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:12:40 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:12:40 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:12:40 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.109.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:12:40 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 16-Jul-2014::16:12:40 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:12:40 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.110.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:12:40 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:12:40 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.112.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:12:40 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:12:40 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.114.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:12:40 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.112.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:12:40 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.116.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:12:40 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.114.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:12:40 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.118.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:12:40 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.116.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 16-Jul-2014::16:12:40 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.116.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140716_161238/read_latencies.csv b/newtests/20140716_161238/read_latencies.csv new file mode 100644 index 000000000..ffd212a5b --- /dev/null +++ b/newtests/20140716_161238/read_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.161442, 0.161442, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140716_161238/summary.csv b/newtests/20140716_161238/summary.csv new file mode 100644 index 000000000..100e19388 --- /dev/null +++ b/newtests/20140716_161238/summary.csv @@ -0,0 +1,2 @@ +elapsed, window, total, successful, failed +0.161442, 0.161442, 6, 0, 6 diff --git a/newtests/20140716_161437/append_latencies.csv b/newtests/20140716_161437/append_latencies.csv new file mode 100644 index 000000000..297e45eb4 --- /dev/null +++ b/newtests/20140716_161437/append_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.1523, 0.1523, 0, 0, 0, 0, 0, 0, 0, 0, 6 diff --git a/newtests/20140716_161437/console.log b/newtests/20140716_161437/console.log new file mode 100644 index 000000000..bf0ce5869 --- /dev/null +++ b/newtests/20140716_161437/console.log @@ -0,0 +1,91 @@ +2014-07-16 16:14:37.875 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_161437/error.log"} into lager_event +2014-07-16 16:14:37.875 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_161437/console.log"} into lager_event +2014-07-16 16:14:37.875 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-16 16:14:37.908 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-16 16:14:37.908 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-16 16:14:37.908 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-16 16:14:37.908 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-16 16:14:38.351 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-16 16:14:38.721 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-16 16:14:38.723 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_161437/console.log to debug +2014-07-16 16:14:38.729 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} +2014-07-16 16:14:38.811 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-16 16:14:38.811 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-16 16:14:38.812 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-16 16:14:38.826 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-16 16:14:38.826 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-16 16:14:38.909 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-16 16:14:38.909 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-16 16:14:38.938 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-16 16:14:38.944 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-16 16:14:38.951 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-16 16:14:38.952 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-16 16:14:38.982 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-16 16:14:39.044 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> +2014-07-16 16:14:39.050 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> +2014-07-16 16:14:39.063 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-16 16:14:39.063 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> +2014-07-16 16:14:39.063 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> +2014-07-16 16:14:39.077 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> +2014-07-16 16:14:39.077 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> +2014-07-16 16:14:39.091 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:14:39.091 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:14:39.092 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-16 16:14:39.123 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:14:39.123 [info] <0.108.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:14:39.124 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> +2014-07-16 16:14:39.124 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> +2014-07-16 16:14:39.129 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> +2014-07-16 16:14:39.129 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> +2014-07-16 16:14:39.130 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-16 16:14:39.130 [debug] <0.108.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,length,[error],[]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,150}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:14:39.130 [debug] <0.95.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,length,[error],[]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,150}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:14:39.130 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash +2014-07-16 16:14:39.130 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash +2014-07-16 16:14:39.131 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-16 16:14:39.160 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:14:39.160 [info] <0.111.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:14:39.160 [warning] <0.110.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:14:39.160 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> +2014-07-16 16:14:39.160 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.110.0> +2014-07-16 16:14:39.161 [debug] <0.111.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,length,[error],[]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,150}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:14:39.161 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash +2014-07-16 16:14:39.161 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 16:14:39.193 [info] <0.113.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:14:39.193 [info] <0.113.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:14:39.193 [warning] <0.112.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:14:39.193 [info] <0.113.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.113.0> +2014-07-16 16:14:39.194 [debug] <0.113.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,length,[error],[]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,150}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:14:39.194 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.112.0> +2014-07-16 16:14:39.194 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash +2014-07-16 16:14:39.194 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated +2014-07-16 16:14:39.221 [info] <0.115.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:14:39.221 [info] <0.115.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:14:39.221 [warning] <0.114.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:14:39.221 [info] <0.115.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.115.0> +2014-07-16 16:14:39.221 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.114.0> +2014-07-16 16:14:39.221 [debug] <0.115.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,length,[error],[]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,150}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:14:39.221 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash +2014-07-16 16:14:39.222 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.112.0> exit with reason normal in context child_terminated +2014-07-16 16:14:39.245 [info] <0.117.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:14:39.245 [info] <0.117.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:14:39.245 [warning] <0.116.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:14:39.245 [info] <0.117.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.117.0> +2014-07-16 16:14:39.246 [debug] <0.117.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,length,[error],[]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,150}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:14:39.246 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.116.0> +2014-07-16 16:14:39.246 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash +2014-07-16 16:14:39.246 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.114.0> exit with reason normal in context child_terminated +2014-07-16 16:14:39.275 [info] <0.119.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:14:39.275 [info] <0.119.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:14:39.275 [warning] <0.118.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:14:39.276 [info] <0.119.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.119.0> +2014-07-16 16:14:39.276 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.118.0> +2014-07-16 16:14:39.277 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason normal in context child_terminated +2014-07-16 16:14:39.277 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-16 16:14:39.290 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {append,append} +2014-07-16 16:14:39.290 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} +2014-07-16 16:14:39.290 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{append,append},6},{{{append,append},crash},6}] +2014-07-16 16:14:39.290 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: +2014-07-16 16:14:39.290 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{append,append},crash}: 6 diff --git a/newtests/20140716_161437/crash.log b/newtests/20140716_161437/crash.log new file mode 100644 index 000000000..0fa5e23d7 --- /dev/null +++ b/newtests/20140716_161437/crash.log @@ -0,0 +1,42 @@ +2014-07-16 16:14:39 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:14:39 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:14:39 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:14:39 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.112.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:14:39 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.114.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:14:39 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.116.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:14:39 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.116.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140716_161437/error.log b/newtests/20140716_161437/error.log new file mode 100644 index 000000000..2051be7ef --- /dev/null +++ b/newtests/20140716_161437/error.log @@ -0,0 +1,13 @@ +2014-07-16 16:14:39.130 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash +2014-07-16 16:14:39.130 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash +2014-07-16 16:14:39.131 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-16 16:14:39.161 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash +2014-07-16 16:14:39.161 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 16:14:39.194 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash +2014-07-16 16:14:39.194 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated +2014-07-16 16:14:39.221 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash +2014-07-16 16:14:39.222 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.112.0> exit with reason normal in context child_terminated +2014-07-16 16:14:39.246 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash +2014-07-16 16:14:39.246 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.114.0> exit with reason normal in context child_terminated +2014-07-16 16:14:39.277 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason normal in context child_terminated +2014-07-16 16:14:39.277 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_161437/errors.csv b/newtests/20140716_161437/errors.csv new file mode 100644 index 000000000..dc786eb57 --- /dev/null +++ b/newtests/20140716_161437/errors.csv @@ -0,0 +1,2 @@ +"error","count" +"{{append,append},crash}","6" diff --git a/newtests/20140716_161437/floppstore.config b/newtests/20140716_161437/floppstore.config new file mode 100644 index 000000000..55db32761 --- /dev/null +++ b/newtests/20140716_161437/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. + +{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. + +{operations, [{append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_161437/log.sasl.txt b/newtests/20140716_161437/log.sasl.txt new file mode 100644 index 000000000..770ef888d --- /dev/null +++ b/newtests/20140716_161437/log.sasl.txt @@ -0,0 +1,336 @@ + +=PROGRESS REPORT==== 16-Jul-2014::16:14:38 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:14:38 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:14:38 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::16:14:38 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:14:38 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::16:14:38 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:14:38 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::16:14:38 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::16:14:38 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:14:38 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:14:38 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::16:14:38 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:14:39 === + supervisor: {local,net_sup} + started: [{pid,<0.97.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:14:39 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:14:39 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:14:39 === + supervisor: {local,kernel_sup} + started: [{pid,<0.96.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::16:14:39 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 16-Jul-2014::16:14:39 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.103.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:14:39 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:14:39 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:14:39 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.109.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:14:39 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 16-Jul-2014::16:14:39 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:14:39 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.110.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:14:39 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:14:39 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.112.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:14:39 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:14:39 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.114.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:14:39 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.112.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:14:39 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.116.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:14:39 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.114.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:14:39 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.118.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:14:39 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.116.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 16-Jul-2014::16:14:39 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.116.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140716_161437/read_latencies.csv b/newtests/20140716_161437/read_latencies.csv new file mode 100644 index 000000000..fe5eaa554 --- /dev/null +++ b/newtests/20140716_161437/read_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.1523, 0.1523, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140716_161437/summary.csv b/newtests/20140716_161437/summary.csv new file mode 100644 index 000000000..c346d7be4 --- /dev/null +++ b/newtests/20140716_161437/summary.csv @@ -0,0 +1,2 @@ +elapsed, window, total, successful, failed +0.1523, 0.1523, 6, 0, 6 diff --git a/newtests/20140716_161530/append_latencies.csv b/newtests/20140716_161530/append_latencies.csv new file mode 100644 index 000000000..1ac06de33 --- /dev/null +++ b/newtests/20140716_161530/append_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.163789, 0.163789, 0, 0, 0, 0, 0, 0, 0, 0, 6 diff --git a/newtests/20140716_161530/console.log b/newtests/20140716_161530/console.log new file mode 100644 index 000000000..d3d8529a2 --- /dev/null +++ b/newtests/20140716_161530/console.log @@ -0,0 +1,92 @@ +2014-07-16 16:15:30.787 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_161530/error.log"} into lager_event +2014-07-16 16:15:30.787 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_161530/console.log"} into lager_event +2014-07-16 16:15:30.787 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-16 16:15:30.822 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-16 16:15:30.822 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-16 16:15:30.822 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-16 16:15:30.822 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-16 16:15:31.264 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-16 16:15:31.633 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-16 16:15:31.634 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_161530/console.log to debug +2014-07-16 16:15:31.641 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} +2014-07-16 16:15:31.720 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-16 16:15:31.721 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-16 16:15:31.721 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-16 16:15:31.737 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-16 16:15:31.737 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-16 16:15:31.819 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-16 16:15:31.819 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-16 16:15:31.846 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-16 16:15:31.850 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-16 16:15:31.855 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-16 16:15:31.855 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-16 16:15:31.892 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-16 16:15:31.952 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> +2014-07-16 16:15:31.959 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> +2014-07-16 16:15:31.971 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-16 16:15:31.972 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> +2014-07-16 16:15:31.972 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> +2014-07-16 16:15:31.985 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> +2014-07-16 16:15:31.985 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> +2014-07-16 16:15:32.000 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:15:32.000 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:15:32.000 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-16 16:15:32.031 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:15:32.032 [info] <0.108.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:15:32.032 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> +2014-07-16 16:15:32.032 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> +2014-07-16 16:15:32.038 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> +2014-07-16 16:15:32.038 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> +2014-07-16 16:15:32.038 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-16 16:15:32.038 [debug] <0.108.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,length,[error],[]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,150}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:15:32.038 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash +2014-07-16 16:15:32.038 [debug] <0.95.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,length,[error],[]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,150}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:15:32.039 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash +2014-07-16 16:15:32.045 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-16 16:15:32.075 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:15:32.076 [info] <0.111.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:15:32.076 [warning] <0.110.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:15:32.076 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> +2014-07-16 16:15:32.076 [debug] <0.111.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,length,[error],[]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,150}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:15:32.076 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.110.0> +2014-07-16 16:15:32.076 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash +2014-07-16 16:15:32.077 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 16:15:32.107 [info] <0.113.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:15:32.108 [info] <0.113.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:15:32.108 [warning] <0.112.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:15:32.108 [info] <0.113.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.113.0> +2014-07-16 16:15:32.108 [debug] <0.113.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,length,[error],[]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,150}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:15:32.108 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.112.0> +2014-07-16 16:15:32.108 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash +2014-07-16 16:15:32.109 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated +2014-07-16 16:15:32.136 [info] <0.115.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:15:32.136 [info] <0.115.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:15:32.137 [warning] <0.114.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:15:32.137 [info] <0.115.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.115.0> +2014-07-16 16:15:32.137 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.114.0> +2014-07-16 16:15:32.137 [debug] <0.115.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,length,[error],[]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,150}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:15:32.137 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash +2014-07-16 16:15:32.137 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.112.0> exit with reason normal in context child_terminated +2014-07-16 16:15:32.161 [info] <0.117.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:15:32.161 [info] <0.117.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:15:32.161 [warning] <0.116.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:15:32.161 [info] <0.117.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.117.0> +2014-07-16 16:15:32.162 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.116.0> +2014-07-16 16:15:32.162 [debug] <0.117.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,length,[error],[]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,150}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:15:32.162 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash +2014-07-16 16:15:32.162 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.114.0> exit with reason normal in context child_terminated +2014-07-16 16:15:32.195 [info] <0.119.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:15:32.195 [info] <0.119.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:15:32.195 [warning] <0.118.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:15:32.195 [info] <0.119.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.119.0> +2014-07-16 16:15:32.196 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.118.0> +2014-07-16 16:15:32.196 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason normal in context child_terminated +2014-07-16 16:15:32.197 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-16 16:15:32.208 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {append,append} +2014-07-16 16:15:32.208 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} +2014-07-16 16:15:32.208 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{append,append},6},{{{append,append},crash},6}] +2014-07-16 16:15:32.208 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: +2014-07-16 16:15:32.208 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{append,append},crash}: 6 +2014-07-16 16:15:32.209 [info] <0.2.0>@basho_bench:wait_for_stop:191 Test stopped: shutdown diff --git a/newtests/20140716_161530/crash.log b/newtests/20140716_161530/crash.log new file mode 100644 index 000000000..af0067412 --- /dev/null +++ b/newtests/20140716_161530/crash.log @@ -0,0 +1,42 @@ +2014-07-16 16:15:32 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:15:32 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:15:32 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:15:32 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.112.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:15:32 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.114.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:15:32 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.116.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:15:32 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.116.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140716_161530/error.log b/newtests/20140716_161530/error.log new file mode 100644 index 000000000..e900e6670 --- /dev/null +++ b/newtests/20140716_161530/error.log @@ -0,0 +1,13 @@ +2014-07-16 16:15:32.038 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash +2014-07-16 16:15:32.039 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash +2014-07-16 16:15:32.045 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-16 16:15:32.076 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash +2014-07-16 16:15:32.077 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 16:15:32.108 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash +2014-07-16 16:15:32.109 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated +2014-07-16 16:15:32.137 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash +2014-07-16 16:15:32.137 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.112.0> exit with reason normal in context child_terminated +2014-07-16 16:15:32.162 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash +2014-07-16 16:15:32.162 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.114.0> exit with reason normal in context child_terminated +2014-07-16 16:15:32.196 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason normal in context child_terminated +2014-07-16 16:15:32.197 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_161530/errors.csv b/newtests/20140716_161530/errors.csv new file mode 100644 index 000000000..dc786eb57 --- /dev/null +++ b/newtests/20140716_161530/errors.csv @@ -0,0 +1,2 @@ +"error","count" +"{{append,append},crash}","6" diff --git a/newtests/20140716_161530/floppstore.config b/newtests/20140716_161530/floppstore.config new file mode 100644 index 000000000..55db32761 --- /dev/null +++ b/newtests/20140716_161530/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. + +{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. + +{operations, [{append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_161530/log.sasl.txt b/newtests/20140716_161530/log.sasl.txt new file mode 100644 index 000000000..9bd84eb6a --- /dev/null +++ b/newtests/20140716_161530/log.sasl.txt @@ -0,0 +1,336 @@ + +=PROGRESS REPORT==== 16-Jul-2014::16:15:31 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:15:31 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:15:31 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::16:15:31 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:15:31 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::16:15:31 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:15:31 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::16:15:31 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::16:15:31 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:15:31 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:15:31 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::16:15:31 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:15:31 === + supervisor: {local,net_sup} + started: [{pid,<0.97.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:15:31 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:15:31 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:15:31 === + supervisor: {local,kernel_sup} + started: [{pid,<0.96.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::16:15:31 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 16-Jul-2014::16:15:31 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.103.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:15:32 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:15:32 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:15:32 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.109.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:15:32 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 16-Jul-2014::16:15:32 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:15:32 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.110.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:15:32 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:15:32 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.112.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:15:32 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:15:32 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.114.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:15:32 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.112.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:15:32 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.116.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:15:32 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.114.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:15:32 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.118.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:15:32 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.116.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 16-Jul-2014::16:15:32 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.116.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140716_161530/read_latencies.csv b/newtests/20140716_161530/read_latencies.csv new file mode 100644 index 000000000..e7b40d453 --- /dev/null +++ b/newtests/20140716_161530/read_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.163789, 0.163789, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140716_161530/summary.csv b/newtests/20140716_161530/summary.csv new file mode 100644 index 000000000..5d61e6684 --- /dev/null +++ b/newtests/20140716_161530/summary.csv @@ -0,0 +1,2 @@ +elapsed, window, total, successful, failed +0.163789, 0.163789, 6, 0, 6 diff --git a/newtests/20140716_161614/append_latencies.csv b/newtests/20140716_161614/append_latencies.csv new file mode 100644 index 000000000..931fe64f1 --- /dev/null +++ b/newtests/20140716_161614/append_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.150837, 0.150837, 0, 0, 0, 0, 0, 0, 0, 0, 7 diff --git a/newtests/20140716_161614/console.log b/newtests/20140716_161614/console.log new file mode 100644 index 000000000..2ba22ed4b --- /dev/null +++ b/newtests/20140716_161614/console.log @@ -0,0 +1,93 @@ +2014-07-16 16:16:14.604 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_161614/error.log"} into lager_event +2014-07-16 16:16:14.604 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_161614/console.log"} into lager_event +2014-07-16 16:16:14.604 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-16 16:16:14.642 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-16 16:16:14.642 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-16 16:16:14.642 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-16 16:16:14.642 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-16 16:16:15.078 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-16 16:16:15.396 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-16 16:16:15.398 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_161614/console.log to debug +2014-07-16 16:16:15.404 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} +2014-07-16 16:16:15.477 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-16 16:16:15.477 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-16 16:16:15.478 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-16 16:16:15.491 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-16 16:16:15.491 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-16 16:16:15.577 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-16 16:16:15.578 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-16 16:16:15.606 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-16 16:16:15.612 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-16 16:16:15.617 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-16 16:16:15.617 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-16 16:16:15.653 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-16 16:16:15.721 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> +2014-07-16 16:16:15.728 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> +2014-07-16 16:16:15.741 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-16 16:16:15.741 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> +2014-07-16 16:16:15.742 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> +2014-07-16 16:16:15.756 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> +2014-07-16 16:16:15.756 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> +2014-07-16 16:16:15.770 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:16:15.770 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:16:15.771 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-16 16:16:15.805 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:16:15.805 [info] <0.108.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:16:15.806 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> +2014-07-16 16:16:15.806 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> +2014-07-16 16:16:15.812 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> +2014-07-16 16:16:15.812 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> +2014-07-16 16:16:15.813 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-16 16:16:15.813 [debug] <0.108.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,length,[{ok,[increment]}],[]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,150}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:16:15.813 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash +2014-07-16 16:16:15.813 [debug] <0.95.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,length,[{ok,[add]}],[]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,150}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:16:15.813 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash +2014-07-16 16:16:15.813 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-16 16:16:15.840 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:16:15.840 [info] <0.111.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:16:15.840 [warning] <0.110.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:16:15.840 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> +2014-07-16 16:16:15.841 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.110.0> +2014-07-16 16:16:15.841 [debug] <0.111.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,length,[{ok,[increment]}],[]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,150}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:16:15.841 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash +2014-07-16 16:16:15.841 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 16:16:15.867 [info] <0.113.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:16:15.867 [info] <0.113.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:16:15.867 [warning] <0.112.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:16:15.867 [info] <0.113.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.113.0> +2014-07-16 16:16:15.867 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.112.0> +2014-07-16 16:16:15.867 [debug] <0.113.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,length,[{ok,[increment]}],[]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,150}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:16:15.867 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash +2014-07-16 16:16:15.868 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated +2014-07-16 16:16:15.900 [info] <0.115.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:16:15.900 [info] <0.115.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:16:15.900 [warning] <0.114.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:16:15.900 [info] <0.115.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.115.0> +2014-07-16 16:16:15.901 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.114.0> +2014-07-16 16:16:15.901 [debug] <0.115.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,length,[{ok,[add]}],[]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,150}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:16:15.901 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash +2014-07-16 16:16:15.901 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.112.0> exit with reason normal in context child_terminated +2014-07-16 16:16:15.929 [info] <0.117.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:16:15.929 [info] <0.117.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:16:15.929 [warning] <0.116.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:16:15.929 [info] <0.117.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.117.0> +2014-07-16 16:16:15.929 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.116.0> +2014-07-16 16:16:15.930 [debug] <0.117.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,length,[{ok,[add]}],[]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,150}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:16:15.930 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash +2014-07-16 16:16:15.930 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.114.0> exit with reason normal in context child_terminated +2014-07-16 16:16:15.956 [info] <0.119.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:16:15.956 [info] <0.119.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:16:15.956 [warning] <0.118.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:16:15.956 [info] <0.119.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.119.0> +2014-07-16 16:16:15.956 [debug] <0.119.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,length,[{ok,[increment]}],[]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,150}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:16:15.957 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.118.0> +2014-07-16 16:16:15.957 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason normal in context child_terminated +2014-07-16 16:16:15.958 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-16 16:16:15.970 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {append,append} +2014-07-16 16:16:15.970 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} +2014-07-16 16:16:15.970 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{append,append},7},{{{append,append},crash},7}] +2014-07-16 16:16:15.970 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: +2014-07-16 16:16:15.970 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{append,append},crash}: 7 +2014-07-16 16:16:15.971 [info] <0.2.0>@basho_bench:wait_for_stop:191 Test stopped: shutdown diff --git a/newtests/20140716_161614/crash.log b/newtests/20140716_161614/crash.log new file mode 100644 index 000000000..d68c6f822 --- /dev/null +++ b/newtests/20140716_161614/crash.log @@ -0,0 +1,42 @@ +2014-07-16 16:16:15 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:16:15 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:16:15 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:16:15 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.112.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:16:15 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.114.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:16:15 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.116.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:16:15 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.116.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140716_161614/error.log b/newtests/20140716_161614/error.log new file mode 100644 index 000000000..63d43e316 --- /dev/null +++ b/newtests/20140716_161614/error.log @@ -0,0 +1,13 @@ +2014-07-16 16:16:15.813 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash +2014-07-16 16:16:15.813 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash +2014-07-16 16:16:15.813 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-16 16:16:15.841 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash +2014-07-16 16:16:15.841 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 16:16:15.867 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash +2014-07-16 16:16:15.868 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated +2014-07-16 16:16:15.901 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash +2014-07-16 16:16:15.901 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.112.0> exit with reason normal in context child_terminated +2014-07-16 16:16:15.930 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash +2014-07-16 16:16:15.930 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.114.0> exit with reason normal in context child_terminated +2014-07-16 16:16:15.957 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason normal in context child_terminated +2014-07-16 16:16:15.958 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_161614/errors.csv b/newtests/20140716_161614/errors.csv new file mode 100644 index 000000000..a31ba014e --- /dev/null +++ b/newtests/20140716_161614/errors.csv @@ -0,0 +1,2 @@ +"error","count" +"{{append,append},crash}","7" diff --git a/newtests/20140716_161614/floppstore.config b/newtests/20140716_161614/floppstore.config new file mode 100644 index 000000000..55db32761 --- /dev/null +++ b/newtests/20140716_161614/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. + +{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. + +{operations, [{append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_161614/log.sasl.txt b/newtests/20140716_161614/log.sasl.txt new file mode 100644 index 000000000..26c21c397 --- /dev/null +++ b/newtests/20140716_161614/log.sasl.txt @@ -0,0 +1,336 @@ + +=PROGRESS REPORT==== 16-Jul-2014::16:16:15 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:16:15 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:16:15 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::16:16:15 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:16:15 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::16:16:15 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:16:15 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::16:16:15 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::16:16:15 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:16:15 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:16:15 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::16:16:15 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:16:15 === + supervisor: {local,net_sup} + started: [{pid,<0.97.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:16:15 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:16:15 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:16:15 === + supervisor: {local,kernel_sup} + started: [{pid,<0.96.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::16:16:15 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 16-Jul-2014::16:16:15 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.103.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:16:15 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:16:15 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:16:15 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.109.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:16:15 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 16-Jul-2014::16:16:15 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:16:15 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.110.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:16:15 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:16:15 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.112.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:16:15 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:16:15 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.114.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:16:15 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.112.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:16:15 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.116.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:16:15 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.114.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:16:15 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.118.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:16:15 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.116.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 16-Jul-2014::16:16:15 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.116.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140716_161614/read_latencies.csv b/newtests/20140716_161614/read_latencies.csv new file mode 100644 index 000000000..5b5704dbb --- /dev/null +++ b/newtests/20140716_161614/read_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.150837, 0.150837, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140716_161614/summary.csv b/newtests/20140716_161614/summary.csv new file mode 100644 index 000000000..59f6041aa --- /dev/null +++ b/newtests/20140716_161614/summary.csv @@ -0,0 +1,2 @@ +elapsed, window, total, successful, failed +0.150837, 0.150837, 7, 0, 7 diff --git a/newtests/20140716_162007/append_latencies.csv b/newtests/20140716_162007/append_latencies.csv new file mode 100644 index 000000000..544ef91b5 --- /dev/null +++ b/newtests/20140716_162007/append_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.258733, 0.258733, 13, 1748, 15072.5, 6979, 59609, 63205, 63205, 63205, 0 diff --git a/newtests/20140716_162007/console.log b/newtests/20140716_162007/console.log new file mode 100644 index 000000000..597ff8dec --- /dev/null +++ b/newtests/20140716_162007/console.log @@ -0,0 +1,100 @@ +2014-07-16 16:20:07.905 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_162007/error.log"} into lager_event +2014-07-16 16:20:07.905 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_162007/console.log"} into lager_event +2014-07-16 16:20:07.905 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-16 16:20:07.937 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-16 16:20:07.937 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-16 16:20:07.937 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-16 16:20:07.937 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-16 16:20:08.382 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-16 16:20:08.689 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-16 16:20:08.690 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_162007/console.log to debug +2014-07-16 16:20:08.696 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} +2014-07-16 16:20:08.768 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-16 16:20:08.768 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-16 16:20:08.769 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-16 16:20:08.782 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-16 16:20:08.782 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-16 16:20:08.860 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-16 16:20:08.860 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-16 16:20:08.887 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-16 16:20:08.891 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-16 16:20:08.895 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-16 16:20:08.895 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-16 16:20:08.929 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-16 16:20:08.992 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> +2014-07-16 16:20:08.998 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> +2014-07-16 16:20:09.010 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-16 16:20:09.010 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> +2014-07-16 16:20:09.010 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> +2014-07-16 16:20:09.024 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> +2014-07-16 16:20:09.024 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> +2014-07-16 16:20:09.039 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:20:09.039 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:20:09.039 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-16 16:20:09.072 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:20:09.072 [info] <0.108.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:20:09.072 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> +2014-07-16 16:20:09.073 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> +2014-07-16 16:20:09.079 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> +2014-07-16 16:20:09.079 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> +2014-07-16 16:20:09.079 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-16 16:20:09.154 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:20:09.154 [error] emulator Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:20:09.154 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 16:20:09.159 [error] emulator Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:20:09.159 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:20:09.191 [info] <0.115.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:20:09.191 [info] <0.115.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:20:09.191 [warning] <0.114.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:20:09.191 [info] <0.115.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.115.0> +2014-07-16 16:20:09.191 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.114.0> +2014-07-16 16:20:09.192 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-16 16:20:09.215 [error] emulator Error in process <0.115.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:20:09.215 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:20:09.226 [info] <0.117.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:20:09.226 [info] <0.117.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:20:09.226 [warning] <0.116.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:20:09.226 [info] <0.117.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.117.0> +2014-07-16 16:20:09.226 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.116.0> +2014-07-16 16:20:09.227 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.114.0> exit with reason normal in context child_terminated +2014-07-16 16:20:09.235 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:20:09.235 [error] emulator Error in process <0.117.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:20:09.259 [info] <0.123.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:20:09.259 [info] <0.123.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:20:09.259 [warning] <0.122.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:20:09.259 [info] <0.123.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.123.0> +2014-07-16 16:20:09.260 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.122.0> +2014-07-16 16:20:09.260 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.116.0> exit with reason normal in context child_terminated +2014-07-16 16:20:09.282 [error] emulator Error in process <0.123.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:20:09.282 [error] <0.122.0>@basho_bench_worker:handle_info:149 Worker <0.123.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:20:09.293 [info] <0.128.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:20:09.293 [info] <0.128.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:20:09.294 [warning] <0.126.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:20:09.294 [info] <0.128.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.128.0> +2014-07-16 16:20:09.294 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.126.0> +2014-07-16 16:20:09.295 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.122.0> exit with reason normal in context child_terminated +2014-07-16 16:20:09.325 [error] emulator Error in process <0.128.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:20:09.325 [error] <0.126.0>@basho_bench_worker:handle_info:149 Worker <0.128.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:20:09.330 [info] <0.133.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:20:09.330 [info] <0.133.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:20:09.330 [warning] <0.131.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:20:09.330 [info] <0.133.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.133.0> +2014-07-16 16:20:09.331 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.131.0> +2014-07-16 16:20:09.332 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.126.0> exit with reason normal in context child_terminated +2014-07-16 16:20:09.333 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.126.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-16 16:20:09.340 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} +2014-07-16 16:20:09.340 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. diff --git a/newtests/20140716_162007/crash.log b/newtests/20140716_162007/crash.log new file mode 100644 index 000000000..788abaf2f --- /dev/null +++ b/newtests/20140716_162007/crash.log @@ -0,0 +1,60 @@ +2014-07-16 16:20:09 =ERROR REPORT==== +Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + +2014-07-16 16:20:09 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:20:09 =ERROR REPORT==== +Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + +2014-07-16 16:20:09 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:20:09 =ERROR REPORT==== +Error in process <0.115.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + +2014-07-16 16:20:09 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.114.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:20:09 =ERROR REPORT==== +Error in process <0.117.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + +2014-07-16 16:20:09 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.116.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:20:09 =ERROR REPORT==== +Error in process <0.123.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + +2014-07-16 16:20:09 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.122.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:20:09 =ERROR REPORT==== +Error in process <0.128.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + +2014-07-16 16:20:09 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.126.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:20:09 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.126.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140716_162007/error.log b/newtests/20140716_162007/error.log new file mode 100644 index 000000000..3aab4fd03 --- /dev/null +++ b/newtests/20140716_162007/error.log @@ -0,0 +1,31 @@ +2014-07-16 16:20:09.154 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:20:09.154 [error] emulator Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:20:09.154 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 16:20:09.159 [error] emulator Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:20:09.159 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:20:09.192 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-16 16:20:09.215 [error] emulator Error in process <0.115.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:20:09.215 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:20:09.227 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.114.0> exit with reason normal in context child_terminated +2014-07-16 16:20:09.235 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:20:09.235 [error] emulator Error in process <0.117.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:20:09.260 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.116.0> exit with reason normal in context child_terminated +2014-07-16 16:20:09.282 [error] emulator Error in process <0.123.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:20:09.282 [error] <0.122.0>@basho_bench_worker:handle_info:149 Worker <0.123.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:20:09.295 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.122.0> exit with reason normal in context child_terminated +2014-07-16 16:20:09.325 [error] emulator Error in process <0.128.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:20:09.325 [error] <0.126.0>@basho_bench_worker:handle_info:149 Worker <0.128.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:20:09.332 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.126.0> exit with reason normal in context child_terminated +2014-07-16 16:20:09.333 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.126.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_162007/errors.csv b/newtests/20140716_162007/errors.csv new file mode 100644 index 000000000..29210b502 --- /dev/null +++ b/newtests/20140716_162007/errors.csv @@ -0,0 +1 @@ +"error","count" diff --git a/newtests/20140716_162007/floppstore.config b/newtests/20140716_162007/floppstore.config new file mode 100644 index 000000000..55db32761 --- /dev/null +++ b/newtests/20140716_162007/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. + +{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. + +{operations, [{append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_162007/log.sasl.txt b/newtests/20140716_162007/log.sasl.txt new file mode 100644 index 000000000..12354c11a --- /dev/null +++ b/newtests/20140716_162007/log.sasl.txt @@ -0,0 +1,336 @@ + +=PROGRESS REPORT==== 16-Jul-2014::16:20:08 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:20:08 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:20:08 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::16:20:08 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:20:08 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::16:20:08 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:20:08 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::16:20:08 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::16:20:08 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:20:08 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:20:08 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::16:20:08 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:20:08 === + supervisor: {local,net_sup} + started: [{pid,<0.97.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:20:08 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:20:09 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:20:09 === + supervisor: {local,kernel_sup} + started: [{pid,<0.96.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::16:20:09 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 16-Jul-2014::16:20:09 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.103.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:20:09 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:20:09 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:20:09 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.109.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:20:09 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 16-Jul-2014::16:20:09 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:20:09 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.114.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:20:09 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:20:09 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.116.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:20:09 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.114.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:20:09 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.122.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:20:09 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.116.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:20:09 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.126.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:20:09 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.122.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:20:09 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.131.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:20:09 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.126.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 16-Jul-2014::16:20:09 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.126.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140716_162007/read_latencies.csv b/newtests/20140716_162007/read_latencies.csv new file mode 100644 index 000000000..1d89dfc54 --- /dev/null +++ b/newtests/20140716_162007/read_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.258733, 0.258733, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140716_162007/summary.csv b/newtests/20140716_162007/summary.csv new file mode 100644 index 000000000..45f2a75b3 --- /dev/null +++ b/newtests/20140716_162007/summary.csv @@ -0,0 +1,2 @@ +elapsed, window, total, successful, failed +0.258733, 0.258733, 13, 13, 0 diff --git a/newtests/20140716_162303/append_latencies.csv b/newtests/20140716_162303/append_latencies.csv new file mode 100644 index 000000000..6a2110650 --- /dev/null +++ b/newtests/20140716_162303/append_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.227162, 0.227162, 15, 1767, 6891.1, 2569, 17324, 30866, 30866, 30866, 0 diff --git a/newtests/20140716_162303/console.log b/newtests/20140716_162303/console.log new file mode 100644 index 000000000..fa0902a4b --- /dev/null +++ b/newtests/20140716_162303/console.log @@ -0,0 +1,101 @@ +2014-07-16 16:23:04.139 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_162303/error.log"} into lager_event +2014-07-16 16:23:04.139 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_162303/console.log"} into lager_event +2014-07-16 16:23:04.139 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-16 16:23:04.171 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-16 16:23:04.171 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-16 16:23:04.171 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-16 16:23:04.171 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-16 16:23:04.616 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-16 16:23:04.917 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-16 16:23:04.918 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_162303/console.log to debug +2014-07-16 16:23:04.924 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} +2014-07-16 16:23:04.999 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-16 16:23:04.999 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-16 16:23:05.000 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-16 16:23:05.013 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-16 16:23:05.013 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-16 16:23:05.092 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-16 16:23:05.093 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-16 16:23:05.120 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-16 16:23:05.124 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-16 16:23:05.129 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-16 16:23:05.129 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-16 16:23:05.166 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-16 16:23:05.230 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> +2014-07-16 16:23:05.236 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> +2014-07-16 16:23:05.249 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-16 16:23:05.249 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> +2014-07-16 16:23:05.250 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> +2014-07-16 16:23:05.262 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> +2014-07-16 16:23:05.262 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> +2014-07-16 16:23:05.277 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:23:05.277 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:23:05.277 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-16 16:23:05.310 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:23:05.310 [info] <0.108.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:23:05.310 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> +2014-07-16 16:23:05.311 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> +2014-07-16 16:23:05.318 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> +2014-07-16 16:23:05.318 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> +2014-07-16 16:23:05.319 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-16 16:23:05.369 [error] emulator Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:23:05.369 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:23:05.370 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 16:23:05.374 [error] emulator Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:23:05.374 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:23:05.404 [info] <0.117.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:23:05.404 [info] <0.117.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:23:05.404 [warning] <0.116.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:23:05.404 [info] <0.117.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.117.0> +2014-07-16 16:23:05.405 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.116.0> +2014-07-16 16:23:05.405 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-16 16:23:05.420 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:23:05.420 [error] emulator Error in process <0.117.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:23:05.437 [info] <0.119.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:23:05.437 [info] <0.119.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:23:05.437 [warning] <0.118.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:23:05.437 [info] <0.119.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.119.0> +2014-07-16 16:23:05.438 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.118.0> +2014-07-16 16:23:05.438 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason normal in context child_terminated +2014-07-16 16:23:05.470 [error] <0.118.0>@basho_bench_worker:handle_info:149 Worker <0.119.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:23:05.470 [error] emulator Error in process <0.119.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:23:05.470 [info] <0.124.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:23:05.470 [info] <0.124.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:23:05.470 [warning] <0.123.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:23:05.470 [info] <0.124.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.124.0> +2014-07-16 16:23:05.471 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.123.0> +2014-07-16 16:23:05.471 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.118.0> exit with reason normal in context child_terminated +2014-07-16 16:23:05.495 [error] <0.123.0>@basho_bench_worker:handle_info:149 Worker <0.124.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:23:05.495 [error] emulator Error in process <0.124.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:23:05.509 [info] <0.130.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:23:05.509 [info] <0.130.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:23:05.509 [warning] <0.129.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:23:05.509 [info] <0.130.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.130.0> +2014-07-16 16:23:05.510 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.129.0> +2014-07-16 16:23:05.510 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.123.0> exit with reason normal in context child_terminated +2014-07-16 16:23:05.517 [error] emulator Error in process <0.130.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:23:05.517 [error] <0.129.0>@basho_bench_worker:handle_info:149 Worker <0.130.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:23:05.537 [info] <0.138.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:23:05.537 [info] <0.138.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:23:05.537 [warning] <0.136.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:23:05.537 [info] <0.138.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.138.0> +2014-07-16 16:23:05.538 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.136.0> +2014-07-16 16:23:05.538 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.129.0> exit with reason normal in context child_terminated +2014-07-16 16:23:05.539 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.129.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-16 16:23:05.545 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} +2014-07-16 16:23:05.545 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. +2014-07-16 16:23:05.545 [info] <0.2.0>@basho_bench:wait_for_stop:191 Test stopped: shutdown diff --git a/newtests/20140716_162303/crash.log b/newtests/20140716_162303/crash.log new file mode 100644 index 000000000..f90553a61 --- /dev/null +++ b/newtests/20140716_162303/crash.log @@ -0,0 +1,60 @@ +2014-07-16 16:23:05 =ERROR REPORT==== +Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + +2014-07-16 16:23:05 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:23:05 =ERROR REPORT==== +Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + +2014-07-16 16:23:05 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:23:05 =ERROR REPORT==== +Error in process <0.117.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + +2014-07-16 16:23:05 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.116.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:23:05 =ERROR REPORT==== +Error in process <0.119.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + +2014-07-16 16:23:05 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.118.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:23:05 =ERROR REPORT==== +Error in process <0.124.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + +2014-07-16 16:23:05 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.123.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:23:05 =ERROR REPORT==== +Error in process <0.130.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + +2014-07-16 16:23:05 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.129.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:23:05 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.129.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140716_162303/error.log b/newtests/20140716_162303/error.log new file mode 100644 index 000000000..bb83e5e1f --- /dev/null +++ b/newtests/20140716_162303/error.log @@ -0,0 +1,31 @@ +2014-07-16 16:23:05.369 [error] emulator Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:23:05.369 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:23:05.370 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 16:23:05.374 [error] emulator Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:23:05.374 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:23:05.405 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-16 16:23:05.420 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:23:05.420 [error] emulator Error in process <0.117.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:23:05.438 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason normal in context child_terminated +2014-07-16 16:23:05.470 [error] <0.118.0>@basho_bench_worker:handle_info:149 Worker <0.119.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:23:05.470 [error] emulator Error in process <0.119.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:23:05.471 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.118.0> exit with reason normal in context child_terminated +2014-07-16 16:23:05.495 [error] <0.123.0>@basho_bench_worker:handle_info:149 Worker <0.124.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:23:05.495 [error] emulator Error in process <0.124.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:23:05.510 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.123.0> exit with reason normal in context child_terminated +2014-07-16 16:23:05.517 [error] emulator Error in process <0.130.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:23:05.517 [error] <0.129.0>@basho_bench_worker:handle_info:149 Worker <0.130.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:23:05.538 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.129.0> exit with reason normal in context child_terminated +2014-07-16 16:23:05.539 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.129.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_162303/errors.csv b/newtests/20140716_162303/errors.csv new file mode 100644 index 000000000..29210b502 --- /dev/null +++ b/newtests/20140716_162303/errors.csv @@ -0,0 +1 @@ +"error","count" diff --git a/newtests/20140716_162303/floppstore.config b/newtests/20140716_162303/floppstore.config new file mode 100644 index 000000000..55db32761 --- /dev/null +++ b/newtests/20140716_162303/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. + +{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. + +{operations, [{append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_162303/log.sasl.txt b/newtests/20140716_162303/log.sasl.txt new file mode 100644 index 000000000..630e3dc84 --- /dev/null +++ b/newtests/20140716_162303/log.sasl.txt @@ -0,0 +1,336 @@ + +=PROGRESS REPORT==== 16-Jul-2014::16:23:04 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:23:04 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:23:04 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::16:23:05 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:23:05 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::16:23:05 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:23:05 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::16:23:05 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::16:23:05 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:23:05 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:23:05 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::16:23:05 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:23:05 === + supervisor: {local,net_sup} + started: [{pid,<0.97.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:23:05 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:23:05 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:23:05 === + supervisor: {local,kernel_sup} + started: [{pid,<0.96.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::16:23:05 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 16-Jul-2014::16:23:05 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.103.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:23:05 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:23:05 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:23:05 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.109.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:23:05 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 16-Jul-2014::16:23:05 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:23:05 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.116.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:23:05 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:23:05 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.118.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:23:05 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.116.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:23:05 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.123.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:23:05 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.118.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:23:05 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.129.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:23:05 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.123.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:23:05 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.136.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:23:05 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.129.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 16-Jul-2014::16:23:05 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.129.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140716_162303/read_latencies.csv b/newtests/20140716_162303/read_latencies.csv new file mode 100644 index 000000000..e4b609ce5 --- /dev/null +++ b/newtests/20140716_162303/read_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.227162, 0.227162, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140716_162303/summary.csv b/newtests/20140716_162303/summary.csv new file mode 100644 index 000000000..7471f51be --- /dev/null +++ b/newtests/20140716_162303/summary.csv @@ -0,0 +1,2 @@ +elapsed, window, total, successful, failed +0.227162, 0.227162, 15, 15, 0 diff --git a/newtests/20140716_162722/append_latencies.csv b/newtests/20140716_162722/append_latencies.csv new file mode 100644 index 000000000..2e6fe0e85 --- /dev/null +++ b/newtests/20140716_162722/append_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.213608, 0.213608, 11, 1602, 9623.4, 1968, 38610, 38610, 38610, 38610, 0 diff --git a/newtests/20140716_162722/console.log b/newtests/20140716_162722/console.log new file mode 100644 index 000000000..767908b7f --- /dev/null +++ b/newtests/20140716_162722/console.log @@ -0,0 +1,100 @@ +2014-07-16 16:27:22.284 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_162722/error.log"} into lager_event +2014-07-16 16:27:22.284 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_162722/console.log"} into lager_event +2014-07-16 16:27:22.284 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-16 16:27:22.318 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-16 16:27:22.318 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-16 16:27:22.318 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-16 16:27:22.318 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-16 16:27:22.760 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-16 16:27:23.140 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-16 16:27:23.142 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_162722/console.log to debug +2014-07-16 16:27:23.148 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} +2014-07-16 16:27:23.227 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-16 16:27:23.227 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-16 16:27:23.227 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-16 16:27:23.242 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-16 16:27:23.242 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-16 16:27:23.331 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-16 16:27:23.331 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-16 16:27:23.362 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-16 16:27:23.367 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-16 16:27:23.371 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-16 16:27:23.372 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-16 16:27:23.410 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-16 16:27:23.476 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> +2014-07-16 16:27:23.483 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> +2014-07-16 16:27:23.495 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-16 16:27:23.495 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> +2014-07-16 16:27:23.496 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> +2014-07-16 16:27:23.510 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> +2014-07-16 16:27:23.511 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> +2014-07-16 16:27:23.526 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:27:23.526 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:27:23.526 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-16 16:27:23.559 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:27:23.559 [info] <0.108.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:27:23.559 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> +2014-07-16 16:27:23.560 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> +2014-07-16 16:27:23.567 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> +2014-07-16 16:27:23.567 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> +2014-07-16 16:27:23.567 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-16 16:27:23.615 [error] emulator Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:27:23.615 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:27:23.616 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 16:27:23.619 [error] emulator Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:27:23.619 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:27:23.646 [info] <0.115.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:27:23.646 [info] <0.115.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:27:23.646 [warning] <0.114.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:27:23.646 [info] <0.115.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.115.0> +2014-07-16 16:27:23.647 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.114.0> +2014-07-16 16:27:23.647 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-16 16:27:23.671 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:27:23.671 [error] emulator Error in process <0.115.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:27:23.682 [info] <0.117.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:27:23.682 [info] <0.117.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:27:23.682 [warning] <0.116.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:27:23.682 [info] <0.117.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.117.0> +2014-07-16 16:27:23.683 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.116.0> +2014-07-16 16:27:23.683 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.114.0> exit with reason normal in context child_terminated +2014-07-16 16:27:23.691 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:27:23.691 [error] emulator Error in process <0.117.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:27:23.712 [info] <0.125.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:27:23.712 [info] <0.125.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:27:23.712 [warning] <0.123.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:27:23.712 [info] <0.125.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.125.0> +2014-07-16 16:27:23.712 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.123.0> +2014-07-16 16:27:23.713 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.116.0> exit with reason normal in context child_terminated +2014-07-16 16:27:23.721 [error] <0.123.0>@basho_bench_worker:handle_info:149 Worker <0.125.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:27:23.721 [error] emulator Error in process <0.125.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:27:23.744 [info] <0.129.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:27:23.744 [info] <0.129.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:27:23.744 [warning] <0.128.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:27:23.744 [info] <0.129.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.129.0> +2014-07-16 16:27:23.745 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.128.0> +2014-07-16 16:27:23.745 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.123.0> exit with reason normal in context child_terminated +2014-07-16 16:27:23.753 [error] emulator Error in process <0.129.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:27:23.753 [error] <0.128.0>@basho_bench_worker:handle_info:149 Worker <0.129.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:27:23.772 [info] <0.133.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:27:23.772 [info] <0.133.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:27:23.772 [warning] <0.132.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:27:23.772 [info] <0.133.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.133.0> +2014-07-16 16:27:23.773 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.132.0> +2014-07-16 16:27:23.773 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.128.0> exit with reason normal in context child_terminated +2014-07-16 16:27:23.774 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.128.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-16 16:27:23.781 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} +2014-07-16 16:27:23.781 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. diff --git a/newtests/20140716_162722/crash.log b/newtests/20140716_162722/crash.log new file mode 100644 index 000000000..cf2ebaab1 --- /dev/null +++ b/newtests/20140716_162722/crash.log @@ -0,0 +1,60 @@ +2014-07-16 16:27:23 =ERROR REPORT==== +Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + +2014-07-16 16:27:23 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:27:23 =ERROR REPORT==== +Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + +2014-07-16 16:27:23 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:27:23 =ERROR REPORT==== +Error in process <0.115.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + +2014-07-16 16:27:23 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.114.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:27:23 =ERROR REPORT==== +Error in process <0.117.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + +2014-07-16 16:27:23 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.116.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:27:23 =ERROR REPORT==== +Error in process <0.125.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + +2014-07-16 16:27:23 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.123.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:27:23 =ERROR REPORT==== +Error in process <0.129.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + +2014-07-16 16:27:23 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.128.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:27:23 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.128.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140716_162722/error.log b/newtests/20140716_162722/error.log new file mode 100644 index 000000000..601d92587 --- /dev/null +++ b/newtests/20140716_162722/error.log @@ -0,0 +1,31 @@ +2014-07-16 16:27:23.615 [error] emulator Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:27:23.615 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:27:23.616 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 16:27:23.619 [error] emulator Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:27:23.619 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:27:23.647 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-16 16:27:23.671 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:27:23.671 [error] emulator Error in process <0.115.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:27:23.683 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.114.0> exit with reason normal in context child_terminated +2014-07-16 16:27:23.691 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:27:23.691 [error] emulator Error in process <0.117.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:27:23.713 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.116.0> exit with reason normal in context child_terminated +2014-07-16 16:27:23.721 [error] <0.123.0>@basho_bench_worker:handle_info:149 Worker <0.125.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:27:23.721 [error] emulator Error in process <0.125.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:27:23.745 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.123.0> exit with reason normal in context child_terminated +2014-07-16 16:27:23.753 [error] emulator Error in process <0.129.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:27:23.753 [error] <0.128.0>@basho_bench_worker:handle_info:149 Worker <0.129.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:27:23.773 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.128.0> exit with reason normal in context child_terminated +2014-07-16 16:27:23.774 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.128.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_162722/errors.csv b/newtests/20140716_162722/errors.csv new file mode 100644 index 000000000..29210b502 --- /dev/null +++ b/newtests/20140716_162722/errors.csv @@ -0,0 +1 @@ +"error","count" diff --git a/newtests/20140716_162722/floppstore.config b/newtests/20140716_162722/floppstore.config new file mode 100644 index 000000000..55db32761 --- /dev/null +++ b/newtests/20140716_162722/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. + +{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. + +{operations, [{append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_162722/log.sasl.txt b/newtests/20140716_162722/log.sasl.txt new file mode 100644 index 000000000..ea44d72fe --- /dev/null +++ b/newtests/20140716_162722/log.sasl.txt @@ -0,0 +1,336 @@ + +=PROGRESS REPORT==== 16-Jul-2014::16:27:23 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:27:23 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:27:23 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::16:27:23 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:27:23 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::16:27:23 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:27:23 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::16:27:23 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::16:27:23 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:27:23 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:27:23 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::16:27:23 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:27:23 === + supervisor: {local,net_sup} + started: [{pid,<0.97.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:27:23 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:27:23 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:27:23 === + supervisor: {local,kernel_sup} + started: [{pid,<0.96.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::16:27:23 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 16-Jul-2014::16:27:23 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.103.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:27:23 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:27:23 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:27:23 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.109.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:27:23 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 16-Jul-2014::16:27:23 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:27:23 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.114.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:27:23 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:27:23 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.116.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:27:23 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.114.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:27:23 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.123.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:27:23 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.116.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:27:23 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.128.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:27:23 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.123.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:27:23 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.132.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:27:23 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.128.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 16-Jul-2014::16:27:23 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.128.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140716_162722/read_latencies.csv b/newtests/20140716_162722/read_latencies.csv new file mode 100644 index 000000000..329ff6db8 --- /dev/null +++ b/newtests/20140716_162722/read_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.213608, 0.213608, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140716_162722/summary.csv b/newtests/20140716_162722/summary.csv new file mode 100644 index 000000000..a1d9733b7 --- /dev/null +++ b/newtests/20140716_162722/summary.csv @@ -0,0 +1,2 @@ +elapsed, window, total, successful, failed +0.213608, 0.213608, 11, 11, 0 diff --git a/newtests/20140716_163000/append_latencies.csv b/newtests/20140716_163000/append_latencies.csv new file mode 100644 index 000000000..f17aabb92 --- /dev/null +++ b/newtests/20140716_163000/append_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.239068, 0.239068, 12, 1714, 12061.4, 2123, 48490, 50550, 50550, 50550, 0 diff --git a/newtests/20140716_163000/console.log b/newtests/20140716_163000/console.log new file mode 100644 index 000000000..1184227f1 --- /dev/null +++ b/newtests/20140716_163000/console.log @@ -0,0 +1,100 @@ +2014-07-16 16:30:00.841 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_163000/error.log"} into lager_event +2014-07-16 16:30:00.841 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_163000/console.log"} into lager_event +2014-07-16 16:30:00.841 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-16 16:30:00.874 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-16 16:30:00.874 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-16 16:30:00.874 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-16 16:30:00.874 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-16 16:30:01.315 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-16 16:30:01.651 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-16 16:30:01.652 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_163000/console.log to debug +2014-07-16 16:30:01.659 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} +2014-07-16 16:30:01.733 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-16 16:30:01.733 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-16 16:30:01.734 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-16 16:30:01.747 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-16 16:30:01.747 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-16 16:30:01.821 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-16 16:30:01.821 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-16 16:30:01.846 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-16 16:30:01.850 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-16 16:30:01.854 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-16 16:30:01.854 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-16 16:30:01.882 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-16 16:30:01.947 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> +2014-07-16 16:30:01.954 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> +2014-07-16 16:30:01.971 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-16 16:30:01.971 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> +2014-07-16 16:30:01.972 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> +2014-07-16 16:30:01.986 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> +2014-07-16 16:30:01.986 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> +2014-07-16 16:30:02.000 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:30:02.000 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:30:02.001 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-16 16:30:02.029 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:30:02.029 [info] <0.108.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:30:02.029 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> +2014-07-16 16:30:02.030 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> +2014-07-16 16:30:02.036 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> +2014-07-16 16:30:02.036 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> +2014-07-16 16:30:02.037 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-16 16:30:02.107 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:30:02.108 [error] emulator Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:30:02.108 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 16:30:02.112 [error] emulator Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:30:02.112 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:30:02.140 [info] <0.118.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:30:02.140 [info] <0.118.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:30:02.141 [warning] <0.117.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:30:02.141 [info] <0.118.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.118.0> +2014-07-16 16:30:02.141 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.117.0> +2014-07-16 16:30:02.141 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-16 16:30:02.149 [error] <0.117.0>@basho_bench_worker:handle_info:149 Worker <0.118.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:30:02.149 [error] emulator Error in process <0.118.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:30:02.169 [info] <0.120.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:30:02.169 [info] <0.120.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:30:02.169 [warning] <0.119.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:30:02.169 [info] <0.120.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.120.0> +2014-07-16 16:30:02.170 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.119.0> +2014-07-16 16:30:02.170 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.117.0> exit with reason normal in context child_terminated +2014-07-16 16:30:02.185 [error] emulator Error in process <0.120.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:30:02.185 [error] <0.119.0>@basho_bench_worker:handle_info:149 Worker <0.120.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:30:02.206 [info] <0.124.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:30:02.206 [info] <0.124.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:30:02.206 [warning] <0.123.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:30:02.206 [info] <0.124.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.124.0> +2014-07-16 16:30:02.207 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.123.0> +2014-07-16 16:30:02.207 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.119.0> exit with reason normal in context child_terminated +2014-07-16 16:30:02.215 [error] <0.123.0>@basho_bench_worker:handle_info:149 Worker <0.124.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:30:02.215 [error] emulator Error in process <0.124.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:30:02.237 [info] <0.129.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:30:02.237 [info] <0.129.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:30:02.237 [warning] <0.128.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:30:02.237 [info] <0.129.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.129.0> +2014-07-16 16:30:02.238 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.128.0> +2014-07-16 16:30:02.238 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.123.0> exit with reason normal in context child_terminated +2014-07-16 16:30:02.252 [error] emulator Error in process <0.129.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:30:02.252 [error] <0.128.0>@basho_bench_worker:handle_info:149 Worker <0.129.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:30:02.268 [info] <0.134.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:30:02.268 [info] <0.134.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:30:02.268 [warning] <0.132.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:30:02.268 [info] <0.134.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.134.0> +2014-07-16 16:30:02.268 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.132.0> +2014-07-16 16:30:02.269 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.128.0> exit with reason normal in context child_terminated +2014-07-16 16:30:02.269 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.128.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-16 16:30:02.280 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} +2014-07-16 16:30:02.280 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. diff --git a/newtests/20140716_163000/crash.log b/newtests/20140716_163000/crash.log new file mode 100644 index 000000000..d80e64b2b --- /dev/null +++ b/newtests/20140716_163000/crash.log @@ -0,0 +1,60 @@ +2014-07-16 16:30:02 =ERROR REPORT==== +Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + +2014-07-16 16:30:02 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:30:02 =ERROR REPORT==== +Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + +2014-07-16 16:30:02 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:30:02 =ERROR REPORT==== +Error in process <0.118.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + +2014-07-16 16:30:02 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.117.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:30:02 =ERROR REPORT==== +Error in process <0.120.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + +2014-07-16 16:30:02 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.119.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:30:02 =ERROR REPORT==== +Error in process <0.124.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + +2014-07-16 16:30:02 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.123.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:30:02 =ERROR REPORT==== +Error in process <0.129.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + +2014-07-16 16:30:02 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.128.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:30:02 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.128.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140716_163000/error.log b/newtests/20140716_163000/error.log new file mode 100644 index 000000000..e117159df --- /dev/null +++ b/newtests/20140716_163000/error.log @@ -0,0 +1,31 @@ +2014-07-16 16:30:02.107 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:30:02.108 [error] emulator Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:30:02.108 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 16:30:02.112 [error] emulator Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:30:02.112 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:30:02.141 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-16 16:30:02.149 [error] <0.117.0>@basho_bench_worker:handle_info:149 Worker <0.118.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:30:02.149 [error] emulator Error in process <0.118.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:30:02.170 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.117.0> exit with reason normal in context child_terminated +2014-07-16 16:30:02.185 [error] emulator Error in process <0.120.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:30:02.185 [error] <0.119.0>@basho_bench_worker:handle_info:149 Worker <0.120.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:30:02.207 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.119.0> exit with reason normal in context child_terminated +2014-07-16 16:30:02.215 [error] <0.123.0>@basho_bench_worker:handle_info:149 Worker <0.124.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:30:02.215 [error] emulator Error in process <0.124.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:30:02.238 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.123.0> exit with reason normal in context child_terminated +2014-07-16 16:30:02.252 [error] emulator Error in process <0.129.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:30:02.252 [error] <0.128.0>@basho_bench_worker:handle_info:149 Worker <0.129.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:30:02.269 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.128.0> exit with reason normal in context child_terminated +2014-07-16 16:30:02.269 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.128.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_163000/errors.csv b/newtests/20140716_163000/errors.csv new file mode 100644 index 000000000..29210b502 --- /dev/null +++ b/newtests/20140716_163000/errors.csv @@ -0,0 +1 @@ +"error","count" diff --git a/newtests/20140716_163000/floppstore.config b/newtests/20140716_163000/floppstore.config new file mode 100644 index 000000000..55db32761 --- /dev/null +++ b/newtests/20140716_163000/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. + +{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. + +{operations, [{append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_163000/log.sasl.txt b/newtests/20140716_163000/log.sasl.txt new file mode 100644 index 000000000..f691fae72 --- /dev/null +++ b/newtests/20140716_163000/log.sasl.txt @@ -0,0 +1,336 @@ + +=PROGRESS REPORT==== 16-Jul-2014::16:30:01 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:30:01 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:30:01 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::16:30:01 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:30:01 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::16:30:01 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:30:01 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::16:30:01 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::16:30:01 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:30:01 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:30:01 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::16:30:01 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:30:01 === + supervisor: {local,net_sup} + started: [{pid,<0.97.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:30:01 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:30:01 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:30:01 === + supervisor: {local,kernel_sup} + started: [{pid,<0.96.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::16:30:01 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 16-Jul-2014::16:30:01 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.103.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:30:02 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:30:02 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:30:02 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.109.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:30:02 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 16-Jul-2014::16:30:02 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:30:02 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.117.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:30:02 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:30:02 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.119.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:30:02 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.117.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:30:02 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.123.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:30:02 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.119.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:30:02 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.128.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:30:02 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.123.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:30:02 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.132.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:30:02 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.128.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 16-Jul-2014::16:30:02 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.128.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140716_163000/read_latencies.csv b/newtests/20140716_163000/read_latencies.csv new file mode 100644 index 000000000..25bd5d40f --- /dev/null +++ b/newtests/20140716_163000/read_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.239068, 0.239068, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140716_163000/summary.csv b/newtests/20140716_163000/summary.csv new file mode 100644 index 000000000..e175e6226 --- /dev/null +++ b/newtests/20140716_163000/summary.csv @@ -0,0 +1,2 @@ +elapsed, window, total, successful, failed +0.239068, 0.239068, 12, 12, 0 diff --git a/newtests/20140716_163347/append_latencies.csv b/newtests/20140716_163347/append_latencies.csv new file mode 100644 index 000000000..367e2259c --- /dev/null +++ b/newtests/20140716_163347/append_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.250647, 0.250647, 10, 1627, 15953.0, 7248, 58147, 58147, 58147, 58147, 0 diff --git a/newtests/20140716_163347/console.log b/newtests/20140716_163347/console.log new file mode 100644 index 000000000..940d48f99 --- /dev/null +++ b/newtests/20140716_163347/console.log @@ -0,0 +1,100 @@ +2014-07-16 16:33:47.317 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_163347/error.log"} into lager_event +2014-07-16 16:33:47.317 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_163347/console.log"} into lager_event +2014-07-16 16:33:47.317 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-16 16:33:47.353 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-16 16:33:47.354 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-16 16:33:47.354 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-16 16:33:47.354 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-16 16:33:47.793 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-16 16:33:48.170 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-16 16:33:48.172 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_163347/console.log to debug +2014-07-16 16:33:48.179 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} +2014-07-16 16:33:48.269 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-16 16:33:48.269 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-16 16:33:48.270 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-16 16:33:48.284 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-16 16:33:48.285 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-16 16:33:48.374 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-16 16:33:48.374 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-16 16:33:48.401 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-16 16:33:48.406 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-16 16:33:48.412 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-16 16:33:48.412 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-16 16:33:48.450 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-16 16:33:48.512 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> +2014-07-16 16:33:48.521 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> +2014-07-16 16:33:48.535 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-16 16:33:48.535 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> +2014-07-16 16:33:48.536 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> +2014-07-16 16:33:48.551 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> +2014-07-16 16:33:48.552 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> +2014-07-16 16:33:48.567 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:33:48.567 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:33:48.568 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-16 16:33:48.596 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:33:48.596 [info] <0.108.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:33:48.596 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> +2014-07-16 16:33:48.596 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> +2014-07-16 16:33:48.602 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> +2014-07-16 16:33:48.602 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> +2014-07-16 16:33:48.603 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-16 16:33:48.636 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:33:48.636 [error] emulator Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:33:48.637 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 16:33:48.640 [error] emulator Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:33:48.640 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:33:48.670 [info] <0.115.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:33:48.670 [info] <0.115.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:33:48.670 [warning] <0.114.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:33:48.670 [info] <0.115.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.115.0> +2014-07-16 16:33:48.671 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.114.0> +2014-07-16 16:33:48.671 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-16 16:33:48.678 [error] emulator Error in process <0.115.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:33:48.678 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:33:48.704 [info] <0.118.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:33:48.704 [info] <0.118.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:33:48.704 [warning] <0.117.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:33:48.704 [info] <0.118.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.118.0> +2014-07-16 16:33:48.705 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.117.0> +2014-07-16 16:33:48.705 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.114.0> exit with reason normal in context child_terminated +2014-07-16 16:33:48.736 [info] <0.122.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:33:48.736 [info] <0.122.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:33:48.737 [warning] <0.120.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:33:48.737 [info] <0.122.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.122.0> +2014-07-16 16:33:48.737 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.120.0> +2014-07-16 16:33:48.782 [error] emulator Error in process <0.122.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:33:48.782 [error] <0.120.0>@basho_bench_worker:handle_info:149 Worker <0.122.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:33:48.783 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.120.0> exit with reason normal in context child_terminated +2014-07-16 16:33:48.788 [error] emulator Error in process <0.118.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:33:48.788 [error] <0.117.0>@basho_bench_worker:handle_info:149 Worker <0.118.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:33:48.818 [info] <0.130.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:33:48.818 [info] <0.130.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:33:48.818 [warning] <0.129.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:33:48.818 [info] <0.130.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.130.0> +2014-07-16 16:33:48.818 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.129.0> +2014-07-16 16:33:48.819 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.117.0> exit with reason normal in context child_terminated +2014-07-16 16:33:48.826 [error] emulator Error in process <0.130.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:33:48.826 [error] <0.129.0>@basho_bench_worker:handle_info:149 Worker <0.130.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:33:48.846 [info] <0.133.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:33:48.846 [info] <0.133.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:33:48.846 [warning] <0.131.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:33:48.846 [info] <0.133.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.133.0> +2014-07-16 16:33:48.847 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.131.0> +2014-07-16 16:33:48.847 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.129.0> exit with reason normal in context child_terminated +2014-07-16 16:33:48.848 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.129.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-16 16:33:48.855 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} +2014-07-16 16:33:48.855 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. diff --git a/newtests/20140716_163347/crash.log b/newtests/20140716_163347/crash.log new file mode 100644 index 000000000..e3343912d --- /dev/null +++ b/newtests/20140716_163347/crash.log @@ -0,0 +1,60 @@ +2014-07-16 16:33:48 =ERROR REPORT==== +Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + +2014-07-16 16:33:48 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:33:48 =ERROR REPORT==== +Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + +2014-07-16 16:33:48 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:33:48 =ERROR REPORT==== +Error in process <0.115.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + +2014-07-16 16:33:48 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.114.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:33:48 =ERROR REPORT==== +Error in process <0.122.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + +2014-07-16 16:33:48 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.120.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:33:48 =ERROR REPORT==== +Error in process <0.118.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + +2014-07-16 16:33:48 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.117.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:33:48 =ERROR REPORT==== +Error in process <0.130.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + +2014-07-16 16:33:48 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.129.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:33:48 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.129.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140716_163347/error.log b/newtests/20140716_163347/error.log new file mode 100644 index 000000000..514dc41a3 --- /dev/null +++ b/newtests/20140716_163347/error.log @@ -0,0 +1,31 @@ +2014-07-16 16:33:48.636 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:33:48.636 [error] emulator Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:33:48.637 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 16:33:48.640 [error] emulator Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:33:48.640 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:33:48.671 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-16 16:33:48.678 [error] emulator Error in process <0.115.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:33:48.678 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:33:48.705 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.114.0> exit with reason normal in context child_terminated +2014-07-16 16:33:48.782 [error] emulator Error in process <0.122.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:33:48.782 [error] <0.120.0>@basho_bench_worker:handle_info:149 Worker <0.122.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:33:48.783 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.120.0> exit with reason normal in context child_terminated +2014-07-16 16:33:48.788 [error] emulator Error in process <0.118.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:33:48.788 [error] <0.117.0>@basho_bench_worker:handle_info:149 Worker <0.118.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:33:48.819 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.117.0> exit with reason normal in context child_terminated +2014-07-16 16:33:48.826 [error] emulator Error in process <0.130.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:33:48.826 [error] <0.129.0>@basho_bench_worker:handle_info:149 Worker <0.130.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:33:48.847 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.129.0> exit with reason normal in context child_terminated +2014-07-16 16:33:48.848 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.129.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_163347/errors.csv b/newtests/20140716_163347/errors.csv new file mode 100644 index 000000000..29210b502 --- /dev/null +++ b/newtests/20140716_163347/errors.csv @@ -0,0 +1 @@ +"error","count" diff --git a/newtests/20140716_163347/floppstore.config b/newtests/20140716_163347/floppstore.config new file mode 100644 index 000000000..55db32761 --- /dev/null +++ b/newtests/20140716_163347/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. + +{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. + +{operations, [{append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_163347/log.sasl.txt b/newtests/20140716_163347/log.sasl.txt new file mode 100644 index 000000000..168228b8e --- /dev/null +++ b/newtests/20140716_163347/log.sasl.txt @@ -0,0 +1,336 @@ + +=PROGRESS REPORT==== 16-Jul-2014::16:33:48 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:33:48 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:33:48 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::16:33:48 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:33:48 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::16:33:48 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:33:48 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::16:33:48 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::16:33:48 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:33:48 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:33:48 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::16:33:48 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:33:48 === + supervisor: {local,net_sup} + started: [{pid,<0.97.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:33:48 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:33:48 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:33:48 === + supervisor: {local,kernel_sup} + started: [{pid,<0.96.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::16:33:48 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 16-Jul-2014::16:33:48 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.103.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:33:48 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:33:48 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:33:48 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.109.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:33:48 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 16-Jul-2014::16:33:48 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:33:48 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.114.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:33:48 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:33:48 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.117.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:33:48 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.114.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:33:48 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.120.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:33:48 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.120.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:33:48 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.129.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:33:48 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.117.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:33:48 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.131.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:33:48 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.129.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 16-Jul-2014::16:33:48 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.129.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140716_163347/read_latencies.csv b/newtests/20140716_163347/read_latencies.csv new file mode 100644 index 000000000..714dbc67a --- /dev/null +++ b/newtests/20140716_163347/read_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.250647, 0.250647, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140716_163347/summary.csv b/newtests/20140716_163347/summary.csv new file mode 100644 index 000000000..40f5277b4 --- /dev/null +++ b/newtests/20140716_163347/summary.csv @@ -0,0 +1,2 @@ +elapsed, window, total, successful, failed +0.250647, 0.250647, 10, 10, 0 diff --git a/newtests/20140716_163407/append_latencies.csv b/newtests/20140716_163407/append_latencies.csv new file mode 100644 index 000000000..74322ee6a --- /dev/null +++ b/newtests/20140716_163407/append_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.244133, 0.244133, 14, 1402, 7715.2, 1981, 7116, 55474, 55474, 55474, 0 diff --git a/newtests/20140716_163407/console.log b/newtests/20140716_163407/console.log new file mode 100644 index 000000000..d841f69d4 --- /dev/null +++ b/newtests/20140716_163407/console.log @@ -0,0 +1,100 @@ +2014-07-16 16:34:07.482 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_163407/error.log"} into lager_event +2014-07-16 16:34:07.482 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_163407/console.log"} into lager_event +2014-07-16 16:34:07.482 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-16 16:34:07.515 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-16 16:34:07.515 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-16 16:34:07.515 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-16 16:34:07.515 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-16 16:34:07.956 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-16 16:34:08.367 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-16 16:34:08.369 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_163407/console.log to debug +2014-07-16 16:34:08.376 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} +2014-07-16 16:34:08.455 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-16 16:34:08.455 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-16 16:34:08.456 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-16 16:34:08.473 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-16 16:34:08.473 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-16 16:34:08.558 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-16 16:34:08.558 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-16 16:34:08.586 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-16 16:34:08.590 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-16 16:34:08.594 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-16 16:34:08.595 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-16 16:34:08.626 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-16 16:34:08.691 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> +2014-07-16 16:34:08.698 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> +2014-07-16 16:34:08.711 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-16 16:34:08.712 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> +2014-07-16 16:34:08.712 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> +2014-07-16 16:34:08.728 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> +2014-07-16 16:34:08.728 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> +2014-07-16 16:34:08.742 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:34:08.742 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:34:08.743 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-16 16:34:08.768 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:34:08.768 [info] <0.108.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:34:08.769 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> +2014-07-16 16:34:08.769 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> +2014-07-16 16:34:08.774 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> +2014-07-16 16:34:08.774 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> +2014-07-16 16:34:08.775 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-16 16:34:08.844 [error] emulator Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:34:08.844 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:34:08.845 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 16:34:08.849 [error] emulator Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:34:08.849 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:34:08.872 [info] <0.116.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:34:08.872 [info] <0.116.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:34:08.872 [warning] <0.115.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:34:08.872 [info] <0.116.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.116.0> +2014-07-16 16:34:08.873 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.115.0> +2014-07-16 16:34:08.874 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-16 16:34:08.895 [error] <0.115.0>@basho_bench_worker:handle_info:149 Worker <0.116.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:34:08.895 [error] emulator Error in process <0.116.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:34:08.910 [info] <0.119.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:34:08.910 [info] <0.119.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:34:08.910 [warning] <0.117.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:34:08.910 [info] <0.119.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.119.0> +2014-07-16 16:34:08.910 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.117.0> +2014-07-16 16:34:08.911 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.115.0> exit with reason normal in context child_terminated +2014-07-16 16:34:08.918 [error] emulator Error in process <0.119.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:34:08.918 [error] <0.117.0>@basho_bench_worker:handle_info:149 Worker <0.119.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:34:08.943 [info] <0.125.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:34:08.943 [info] <0.125.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:34:08.943 [warning] <0.123.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:34:08.943 [info] <0.125.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.125.0> +2014-07-16 16:34:08.944 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.123.0> +2014-07-16 16:34:08.944 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.117.0> exit with reason normal in context child_terminated +2014-07-16 16:34:08.951 [error] emulator Error in process <0.125.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:34:08.951 [error] <0.123.0>@basho_bench_worker:handle_info:149 Worker <0.125.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:34:08.973 [info] <0.129.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:34:08.973 [info] <0.129.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:34:08.973 [warning] <0.127.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:34:08.973 [info] <0.129.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.129.0> +2014-07-16 16:34:08.973 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.127.0> +2014-07-16 16:34:08.974 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.123.0> exit with reason normal in context child_terminated +2014-07-16 16:34:09.003 [error] emulator Error in process <0.129.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:34:09.003 [error] <0.127.0>@basho_bench_worker:handle_info:149 Worker <0.129.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:34:09.012 [info] <0.133.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:34:09.012 [info] <0.133.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:34:09.012 [warning] <0.131.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:34:09.012 [info] <0.133.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.133.0> +2014-07-16 16:34:09.013 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.131.0> +2014-07-16 16:34:09.014 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.127.0> exit with reason normal in context child_terminated +2014-07-16 16:34:09.014 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.127.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-16 16:34:09.021 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} +2014-07-16 16:34:09.021 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. diff --git a/newtests/20140716_163407/crash.log b/newtests/20140716_163407/crash.log new file mode 100644 index 000000000..f6b3d38c3 --- /dev/null +++ b/newtests/20140716_163407/crash.log @@ -0,0 +1,60 @@ +2014-07-16 16:34:08 =ERROR REPORT==== +Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + +2014-07-16 16:34:08 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:34:08 =ERROR REPORT==== +Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + +2014-07-16 16:34:08 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:34:08 =ERROR REPORT==== +Error in process <0.116.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + +2014-07-16 16:34:08 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.115.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:34:08 =ERROR REPORT==== +Error in process <0.119.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + +2014-07-16 16:34:08 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.117.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:34:08 =ERROR REPORT==== +Error in process <0.125.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + +2014-07-16 16:34:08 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.123.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:34:09 =ERROR REPORT==== +Error in process <0.129.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + +2014-07-16 16:34:09 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.127.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:34:09 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.127.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140716_163407/error.log b/newtests/20140716_163407/error.log new file mode 100644 index 000000000..1f50ecdb4 --- /dev/null +++ b/newtests/20140716_163407/error.log @@ -0,0 +1,31 @@ +2014-07-16 16:34:08.844 [error] emulator Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:34:08.844 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:34:08.845 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 16:34:08.849 [error] emulator Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:34:08.849 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:34:08.874 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-16 16:34:08.895 [error] <0.115.0>@basho_bench_worker:handle_info:149 Worker <0.116.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:34:08.895 [error] emulator Error in process <0.116.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:34:08.911 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.115.0> exit with reason normal in context child_terminated +2014-07-16 16:34:08.918 [error] emulator Error in process <0.119.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:34:08.918 [error] <0.117.0>@basho_bench_worker:handle_info:149 Worker <0.119.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:34:08.944 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.117.0> exit with reason normal in context child_terminated +2014-07-16 16:34:08.951 [error] emulator Error in process <0.125.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:34:08.951 [error] <0.123.0>@basho_bench_worker:handle_info:149 Worker <0.125.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:34:08.974 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.123.0> exit with reason normal in context child_terminated +2014-07-16 16:34:09.003 [error] emulator Error in process <0.129.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 16:34:09.003 [error] <0.127.0>@basho_bench_worker:handle_info:149 Worker <0.129.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:34:09.014 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.127.0> exit with reason normal in context child_terminated +2014-07-16 16:34:09.014 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.127.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_163407/errors.csv b/newtests/20140716_163407/errors.csv new file mode 100644 index 000000000..29210b502 --- /dev/null +++ b/newtests/20140716_163407/errors.csv @@ -0,0 +1 @@ +"error","count" diff --git a/newtests/20140716_163407/floppstore.config b/newtests/20140716_163407/floppstore.config new file mode 100644 index 000000000..55db32761 --- /dev/null +++ b/newtests/20140716_163407/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. + +{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. + +{operations, [{append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_163407/log.sasl.txt b/newtests/20140716_163407/log.sasl.txt new file mode 100644 index 000000000..e85c7452e --- /dev/null +++ b/newtests/20140716_163407/log.sasl.txt @@ -0,0 +1,336 @@ + +=PROGRESS REPORT==== 16-Jul-2014::16:34:08 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:34:08 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:34:08 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::16:34:08 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:34:08 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::16:34:08 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:34:08 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::16:34:08 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::16:34:08 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:34:08 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:34:08 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::16:34:08 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:34:08 === + supervisor: {local,net_sup} + started: [{pid,<0.97.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:34:08 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:34:08 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:34:08 === + supervisor: {local,kernel_sup} + started: [{pid,<0.96.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::16:34:08 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 16-Jul-2014::16:34:08 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.103.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:34:08 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:34:08 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:34:08 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.109.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:34:08 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 16-Jul-2014::16:34:08 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:34:08 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.115.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:34:08 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:34:08 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.117.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:34:08 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.115.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:34:08 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.123.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:34:08 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.117.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:34:08 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.127.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:34:08 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.123.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:34:09 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.131.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:34:09 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.127.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 16-Jul-2014::16:34:09 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.127.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140716_163407/read_latencies.csv b/newtests/20140716_163407/read_latencies.csv new file mode 100644 index 000000000..0138ea5b7 --- /dev/null +++ b/newtests/20140716_163407/read_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.244133, 0.244133, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140716_163407/summary.csv b/newtests/20140716_163407/summary.csv new file mode 100644 index 000000000..58b1cb6a9 --- /dev/null +++ b/newtests/20140716_163407/summary.csv @@ -0,0 +1,2 @@ +elapsed, window, total, successful, failed +0.244133, 0.244133, 14, 14, 0 diff --git a/newtests/20140716_164802/append_latencies.csv b/newtests/20140716_164802/append_latencies.csv new file mode 100644 index 000000000..88ab9dcab --- /dev/null +++ b/newtests/20140716_164802/append_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +4.26656, 4.26656, 2088, 1004, 2154.4, 1676, 3533, 9776, 19339, 44735, 6 diff --git a/newtests/20140716_164802/console.log b/newtests/20140716_164802/console.log new file mode 100644 index 000000000..4761b399f --- /dev/null +++ b/newtests/20140716_164802/console.log @@ -0,0 +1,89 @@ +2014-07-16 16:48:02.214 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_164802/error.log"} into lager_event +2014-07-16 16:48:02.214 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_164802/console.log"} into lager_event +2014-07-16 16:48:02.214 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-16 16:48:02.246 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-16 16:48:02.246 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-16 16:48:02.247 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-16 16:48:02.247 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-16 16:48:02.691 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-16 16:48:03.012 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-16 16:48:03.013 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_164802/console.log to debug +2014-07-16 16:48:03.019 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} +2014-07-16 16:48:03.095 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-16 16:48:03.096 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-16 16:48:03.096 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-16 16:48:03.110 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-16 16:48:03.110 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-16 16:48:03.193 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-16 16:48:03.194 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-16 16:48:03.221 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-16 16:48:03.226 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-16 16:48:03.230 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-16 16:48:03.230 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-16 16:48:03.268 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-16 16:48:03.330 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> +2014-07-16 16:48:03.336 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> +2014-07-16 16:48:03.351 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-16 16:48:03.351 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> +2014-07-16 16:48:03.352 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> +2014-07-16 16:48:03.365 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> +2014-07-16 16:48:03.365 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> +2014-07-16 16:48:03.379 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:48:03.379 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:48:03.380 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-16 16:48:03.413 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:48:03.413 [info] <0.108.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:48:03.413 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> +2014-07-16 16:48:03.414 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> +2014-07-16 16:48:03.420 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> +2014-07-16 16:48:03.420 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> +2014-07-16 16:48:03.420 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-16 16:48:05.698 [debug] <0.108.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{dict,fetch,[[riak_dt_gcounter],{dict,2,16,16,8,80,48,{[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]},{{[],[],[[riak_dt_gcounter,increment]],[],[[riak_dt_gset,add]],[],[],[],[],[],[],[],[],[],[],[]}}}],[{file,"dict.erl"},{line,126}]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,146}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,101}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:48:05.698 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash +2014-07-16 16:48:05.698 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-16 16:48:05.752 [info] <0.2147.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:48:05.752 [info] <0.2147.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:48:05.752 [warning] <0.2146.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:48:05.752 [info] <0.2147.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.2147.0> +2014-07-16 16:48:05.753 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.2146.0> +2014-07-16 16:48:06.233 [debug] <0.2147.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{dict,fetch,[[riak_dt_gset],{dict,2,16,16,8,80,48,{[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]},{{[],[],[[riak_dt_gcounter,increment]],[],[[riak_dt_gset,add]],[],[],[],[],[],[],[],[],[],[],[]}}}],[{file,"dict.erl"},{line,126}]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,146}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,101}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:48:06.233 [error] <0.2146.0>@basho_bench_worker:handle_info:149 Worker <0.2147.0> exited with crash +2014-07-16 16:48:06.234 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.2146.0> exit with reason normal in context child_terminated +2014-07-16 16:48:06.287 [info] <0.2722.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:48:06.287 [info] <0.2722.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:48:06.287 [warning] <0.2720.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:48:06.287 [info] <0.2722.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.2722.0> +2014-07-16 16:48:06.288 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.2720.0> +2014-07-16 16:48:06.823 [debug] <0.2722.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{dict,fetch,[[riak_dt_gset],{dict,2,16,16,8,80,48,{[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]},{{[],[],[[riak_dt_gcounter,increment]],[],[[riak_dt_gset,add]],[],[],[],[],[],[],[],[],[],[],[]}}}],[{file,"dict.erl"},{line,126}]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,146}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,101}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:48:06.823 [error] <0.2720.0>@basho_bench_worker:handle_info:149 Worker <0.2722.0> exited with crash +2014-07-16 16:48:06.824 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.2720.0> exit with reason normal in context child_terminated +2014-07-16 16:48:06.871 [info] <0.3369.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:48:06.871 [info] <0.3369.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:48:06.871 [warning] <0.3368.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:48:06.871 [info] <0.3369.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.3369.0> +2014-07-16 16:48:06.872 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.3368.0> +2014-07-16 16:48:06.896 [debug] <0.95.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{dict,fetch,[[riak_dt_gcounter],{dict,2,16,16,8,80,48,{[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]},{{[],[],[[riak_dt_gcounter,increment]],[],[[riak_dt_gset,add]],[],[],[],[],[],[],[],[],[],[],[]}}}],[{file,"dict.erl"},{line,126}]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,146}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,101}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:48:06.896 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash +2014-07-16 16:48:06.897 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 16:48:06.938 [info] <0.3432.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:48:06.938 [info] <0.3432.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:48:06.939 [warning] <0.3431.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:48:06.939 [info] <0.3432.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.3432.0> +2014-07-16 16:48:06.939 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.3431.0> +2014-07-16 16:48:06.986 [debug] <0.3369.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{dict,fetch,[[riak_dt_gset],{dict,2,16,16,8,80,48,{[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]},{{[],[],[[riak_dt_gcounter,increment]],[],[[riak_dt_gset,add]],[],[],[],[],[],[],[],[],[],[],[]}}}],[{file,"dict.erl"},{line,126}]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,146}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,101}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:48:06.986 [error] <0.3368.0>@basho_bench_worker:handle_info:149 Worker <0.3369.0> exited with crash +2014-07-16 16:48:06.987 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.3368.0> exit with reason normal in context child_terminated +2014-07-16 16:48:07.034 [info] <0.3514.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:48:07.034 [info] <0.3514.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:48:07.034 [warning] <0.3512.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:48:07.034 [info] <0.3514.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.3514.0> +2014-07-16 16:48:07.034 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.3512.0> +2014-07-16 16:48:07.679 [debug] <0.3432.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{dict,fetch,[[riak_dt_gcounter],{dict,2,16,16,8,80,48,{[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]},{{[],[],[[riak_dt_gcounter,increment]],[],[[riak_dt_gset,add]],[],[],[],[],[],[],[],[],[],[],[]}}}],[{file,"dict.erl"},{line,126}]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,146}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,101}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:48:07.679 [error] <0.3431.0>@basho_bench_worker:handle_info:149 Worker <0.3432.0> exited with crash +2014-07-16 16:48:07.680 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.3431.0> exit with reason normal in context child_terminated +2014-07-16 16:48:07.681 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.3431.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-16 16:48:07.697 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{append,append},6},{{{append,append},crash},6}] +2014-07-16 16:48:07.697 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: +2014-07-16 16:48:07.697 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{append,append},crash}: 6 diff --git a/newtests/20140716_164802/crash.log b/newtests/20140716_164802/crash.log new file mode 100644 index 000000000..1f14540ef --- /dev/null +++ b/newtests/20140716_164802/crash.log @@ -0,0 +1,42 @@ +2014-07-16 16:48:05 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:48:06 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.2146.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:48:06 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.2720.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:48:06 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:48:06 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.3368.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:48:07 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.3431.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:48:07 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.3431.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140716_164802/error.log b/newtests/20140716_164802/error.log new file mode 100644 index 000000000..09928cf80 --- /dev/null +++ b/newtests/20140716_164802/error.log @@ -0,0 +1,13 @@ +2014-07-16 16:48:05.698 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash +2014-07-16 16:48:05.698 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-16 16:48:06.233 [error] <0.2146.0>@basho_bench_worker:handle_info:149 Worker <0.2147.0> exited with crash +2014-07-16 16:48:06.234 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.2146.0> exit with reason normal in context child_terminated +2014-07-16 16:48:06.823 [error] <0.2720.0>@basho_bench_worker:handle_info:149 Worker <0.2722.0> exited with crash +2014-07-16 16:48:06.824 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.2720.0> exit with reason normal in context child_terminated +2014-07-16 16:48:06.896 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash +2014-07-16 16:48:06.897 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 16:48:06.986 [error] <0.3368.0>@basho_bench_worker:handle_info:149 Worker <0.3369.0> exited with crash +2014-07-16 16:48:06.987 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.3368.0> exit with reason normal in context child_terminated +2014-07-16 16:48:07.679 [error] <0.3431.0>@basho_bench_worker:handle_info:149 Worker <0.3432.0> exited with crash +2014-07-16 16:48:07.680 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.3431.0> exit with reason normal in context child_terminated +2014-07-16 16:48:07.681 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.3431.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_164802/errors.csv b/newtests/20140716_164802/errors.csv new file mode 100644 index 000000000..dc786eb57 --- /dev/null +++ b/newtests/20140716_164802/errors.csv @@ -0,0 +1,2 @@ +"error","count" +"{{append,append},crash}","6" diff --git a/newtests/20140716_164802/floppstore.config b/newtests/20140716_164802/floppstore.config new file mode 100644 index 000000000..55db32761 --- /dev/null +++ b/newtests/20140716_164802/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. + +{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. + +{operations, [{append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_164802/log.sasl.txt b/newtests/20140716_164802/log.sasl.txt new file mode 100644 index 000000000..9abd86368 --- /dev/null +++ b/newtests/20140716_164802/log.sasl.txt @@ -0,0 +1,336 @@ + +=PROGRESS REPORT==== 16-Jul-2014::16:48:03 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:48:03 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:48:03 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::16:48:03 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:48:03 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::16:48:03 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:48:03 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::16:48:03 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::16:48:03 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:48:03 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:48:03 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::16:48:03 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:48:03 === + supervisor: {local,net_sup} + started: [{pid,<0.97.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:48:03 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:48:03 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:48:03 === + supervisor: {local,kernel_sup} + started: [{pid,<0.96.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::16:48:03 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 16-Jul-2014::16:48:03 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.103.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:48:03 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:48:03 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:48:03 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.109.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:48:03 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 16-Jul-2014::16:48:05 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:48:05 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.2146.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:48:06 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.2146.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:48:06 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.2720.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:48:06 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.2720.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:48:06 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.3368.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:48:06 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:48:06 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.3431.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:48:06 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.3368.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:48:07 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.3512.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:48:07 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.3431.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 16-Jul-2014::16:48:07 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.3431.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140716_164802/read_latencies.csv b/newtests/20140716_164802/read_latencies.csv new file mode 100644 index 000000000..29d0b4351 --- /dev/null +++ b/newtests/20140716_164802/read_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +4.26656, 4.26656, 2078, 905, 1769.3, 1436, 2555, 5912, 44323, 48794, 0 diff --git a/newtests/20140716_164802/summary.csv b/newtests/20140716_164802/summary.csv new file mode 100644 index 000000000..a93bf37de --- /dev/null +++ b/newtests/20140716_164802/summary.csv @@ -0,0 +1,2 @@ +elapsed, window, total, successful, failed +4.26656, 4.26656, 4172, 4166, 6 diff --git a/newtests/20140716_165104/append_latencies.csv b/newtests/20140716_165104/append_latencies.csv new file mode 100644 index 000000000..ff1f5ab35 --- /dev/null +++ b/newtests/20140716_165104/append_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +2.751539, 2.751539, 1492, 939, 1796.4, 1581, 2592, 2970, 9077, 11182, 6 diff --git a/newtests/20140716_165104/console.log b/newtests/20140716_165104/console.log new file mode 100644 index 000000000..4d4eb9bfc --- /dev/null +++ b/newtests/20140716_165104/console.log @@ -0,0 +1,89 @@ +2014-07-16 16:51:04.372 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_165104/error.log"} into lager_event +2014-07-16 16:51:04.372 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_165104/console.log"} into lager_event +2014-07-16 16:51:04.372 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-16 16:51:04.405 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-16 16:51:04.405 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-16 16:51:04.405 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-16 16:51:04.405 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-16 16:51:04.849 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-16 16:51:05.210 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-16 16:51:05.211 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_165104/console.log to debug +2014-07-16 16:51:05.218 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} +2014-07-16 16:51:05.296 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-16 16:51:05.296 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-16 16:51:05.296 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-16 16:51:05.310 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-16 16:51:05.310 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-16 16:51:05.400 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-16 16:51:05.400 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-16 16:51:05.433 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-16 16:51:05.437 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-16 16:51:05.441 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-16 16:51:05.441 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-16 16:51:05.471 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-16 16:51:05.536 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> +2014-07-16 16:51:05.543 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> +2014-07-16 16:51:05.555 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-16 16:51:05.555 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> +2014-07-16 16:51:05.556 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> +2014-07-16 16:51:05.574 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> +2014-07-16 16:51:05.574 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> +2014-07-16 16:51:05.590 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:51:05.590 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:51:05.591 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-16 16:51:05.617 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:51:05.617 [info] <0.108.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:51:05.618 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> +2014-07-16 16:51:05.618 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> +2014-07-16 16:51:05.623 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> +2014-07-16 16:51:05.623 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> +2014-07-16 16:51:05.623 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-16 16:51:05.954 [debug] <0.95.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{dict,fetch,[[riak_dt_gset],{dict,2,16,16,8,80,48,{[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]},{{[],[],[[riak_dt_gcounter,increment]],[],[[riak_dt_gset,add]],[],[],[],[],[],[],[],[],[],[],[]}}}],[{file,"dict.erl"},{line,126}]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,146}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,101}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:51:05.954 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash +2014-07-16 16:51:05.955 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 16:51:06.001 [info] <0.485.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:51:06.001 [info] <0.485.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:51:06.001 [warning] <0.484.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:51:06.001 [info] <0.485.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.485.0> +2014-07-16 16:51:06.002 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.484.0> +2014-07-16 16:51:06.368 [debug] <0.485.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{dict,fetch,[[riak_dt_gset],{dict,2,16,16,8,80,48,{[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]},{{[],[],[[riak_dt_gcounter,increment]],[],[[riak_dt_gset,add]],[],[],[],[],[],[],[],[],[],[],[]}}}],[{file,"dict.erl"},{line,126}]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,146}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,101}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:51:06.368 [error] <0.484.0>@basho_bench_worker:handle_info:149 Worker <0.485.0> exited with crash +2014-07-16 16:51:06.374 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.484.0> exit with reason normal in context child_terminated +2014-07-16 16:51:06.421 [info] <0.950.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:51:06.421 [info] <0.950.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:51:06.421 [warning] <0.949.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:51:06.422 [info] <0.950.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.950.0> +2014-07-16 16:51:06.422 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.949.0> +2014-07-16 16:51:06.773 [debug] <0.108.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{dict,fetch,[[riak_dt_gset],{dict,2,16,16,8,80,48,{[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]},{{[],[],[[riak_dt_gcounter,increment]],[],[[riak_dt_gset,add]],[],[],[],[],[],[],[],[],[],[],[]}}}],[{file,"dict.erl"},{line,126}]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,146}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,101}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:51:06.773 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash +2014-07-16 16:51:06.779 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-16 16:51:06.824 [info] <0.1365.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:51:06.824 [info] <0.1365.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:51:06.824 [warning] <0.1364.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:51:06.824 [info] <0.1365.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.1365.0> +2014-07-16 16:51:06.825 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.1364.0> +2014-07-16 16:51:07.672 [debug] <0.950.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{dict,fetch,[[riak_dt_gcounter],{dict,2,16,16,8,80,48,{[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]},{{[],[],[[riak_dt_gcounter,increment]],[],[[riak_dt_gset,add]],[],[],[],[],[],[],[],[],[],[],[]}}}],[{file,"dict.erl"},{line,126}]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,146}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,101}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:51:07.672 [error] <0.949.0>@basho_bench_worker:handle_info:149 Worker <0.950.0> exited with crash +2014-07-16 16:51:07.679 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.949.0> exit with reason normal in context child_terminated +2014-07-16 16:51:07.725 [info] <0.2391.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:51:07.725 [info] <0.2391.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:51:07.725 [warning] <0.2390.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:51:07.725 [info] <0.2391.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.2391.0> +2014-07-16 16:51:07.726 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.2390.0> +2014-07-16 16:51:08.213 [debug] <0.2391.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{dict,fetch,[[riak_dt_gcounter],{dict,2,16,16,8,80,48,{[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]},{{[],[],[[riak_dt_gcounter,increment]],[],[[riak_dt_gset,add]],[],[],[],[],[],[],[],[],[],[],[]}}}],[{file,"dict.erl"},{line,126}]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,146}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,101}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:51:08.213 [error] <0.2390.0>@basho_bench_worker:handle_info:149 Worker <0.2391.0> exited with crash +2014-07-16 16:51:08.220 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.2390.0> exit with reason normal in context child_terminated +2014-07-16 16:51:08.264 [info] <0.3002.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:51:08.264 [info] <0.3002.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:51:08.264 [warning] <0.3001.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:51:08.264 [info] <0.3002.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.3002.0> +2014-07-16 16:51:08.264 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.3001.0> +2014-07-16 16:51:08.368 [debug] <0.1365.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{dict,fetch,[[riak_dt_gset],{dict,2,16,16,8,80,48,{[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]},{{[],[],[[riak_dt_gcounter,increment]],[],[[riak_dt_gset,add]],[],[],[],[],[],[],[],[],[],[],[]}}}],[{file,"dict.erl"},{line,126}]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,146}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,101}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:51:08.369 [error] <0.1364.0>@basho_bench_worker:handle_info:149 Worker <0.1365.0> exited with crash +2014-07-16 16:51:08.369 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.1364.0> exit with reason normal in context child_terminated +2014-07-16 16:51:08.370 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.1364.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-16 16:51:08.383 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{append,append},6},{{{append,append},crash},6}] +2014-07-16 16:51:08.383 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: +2014-07-16 16:51:08.383 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{append,append},crash}: 6 diff --git a/newtests/20140716_165104/crash.log b/newtests/20140716_165104/crash.log new file mode 100644 index 000000000..0cde45917 --- /dev/null +++ b/newtests/20140716_165104/crash.log @@ -0,0 +1,42 @@ +2014-07-16 16:51:05 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:51:06 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.484.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:51:06 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:51:07 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.949.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:51:08 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.2390.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:51:08 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.1364.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:51:08 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.1364.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140716_165104/error.log b/newtests/20140716_165104/error.log new file mode 100644 index 000000000..51d5447ba --- /dev/null +++ b/newtests/20140716_165104/error.log @@ -0,0 +1,13 @@ +2014-07-16 16:51:05.954 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash +2014-07-16 16:51:05.955 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 16:51:06.368 [error] <0.484.0>@basho_bench_worker:handle_info:149 Worker <0.485.0> exited with crash +2014-07-16 16:51:06.374 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.484.0> exit with reason normal in context child_terminated +2014-07-16 16:51:06.773 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash +2014-07-16 16:51:06.779 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-16 16:51:07.672 [error] <0.949.0>@basho_bench_worker:handle_info:149 Worker <0.950.0> exited with crash +2014-07-16 16:51:07.679 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.949.0> exit with reason normal in context child_terminated +2014-07-16 16:51:08.213 [error] <0.2390.0>@basho_bench_worker:handle_info:149 Worker <0.2391.0> exited with crash +2014-07-16 16:51:08.220 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.2390.0> exit with reason normal in context child_terminated +2014-07-16 16:51:08.369 [error] <0.1364.0>@basho_bench_worker:handle_info:149 Worker <0.1365.0> exited with crash +2014-07-16 16:51:08.369 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.1364.0> exit with reason normal in context child_terminated +2014-07-16 16:51:08.370 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.1364.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_165104/errors.csv b/newtests/20140716_165104/errors.csv new file mode 100644 index 000000000..dc786eb57 --- /dev/null +++ b/newtests/20140716_165104/errors.csv @@ -0,0 +1,2 @@ +"error","count" +"{{append,append},crash}","6" diff --git a/newtests/20140716_165104/floppstore.config b/newtests/20140716_165104/floppstore.config new file mode 100644 index 000000000..55db32761 --- /dev/null +++ b/newtests/20140716_165104/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. + +{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. + +{operations, [{append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_165104/log.sasl.txt b/newtests/20140716_165104/log.sasl.txt new file mode 100644 index 000000000..bbfc6e171 --- /dev/null +++ b/newtests/20140716_165104/log.sasl.txt @@ -0,0 +1,336 @@ + +=PROGRESS REPORT==== 16-Jul-2014::16:51:05 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:51:05 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:51:05 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::16:51:05 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:51:05 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::16:51:05 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:51:05 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::16:51:05 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::16:51:05 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:51:05 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:51:05 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::16:51:05 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:51:05 === + supervisor: {local,net_sup} + started: [{pid,<0.97.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:51:05 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:51:05 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:51:05 === + supervisor: {local,kernel_sup} + started: [{pid,<0.96.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::16:51:05 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 16-Jul-2014::16:51:05 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.103.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:51:05 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:51:05 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:51:05 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.109.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:51:05 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 16-Jul-2014::16:51:05 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:51:06 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.484.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:51:06 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.484.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:51:06 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.949.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:51:06 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:51:06 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.1364.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:51:07 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.949.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:51:07 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.2390.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:51:08 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.2390.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:51:08 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.3001.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:51:08 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.1364.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 16-Jul-2014::16:51:08 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.1364.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140716_165104/read_latencies.csv b/newtests/20140716_165104/read_latencies.csv new file mode 100644 index 000000000..d74c41794 --- /dev/null +++ b/newtests/20140716_165104/read_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +2.751539, 2.751539, 1552, 856, 1599.0, 1399, 2402, 2690, 4097, 9238, 0 diff --git a/newtests/20140716_165104/summary.csv b/newtests/20140716_165104/summary.csv new file mode 100644 index 000000000..36876970a --- /dev/null +++ b/newtests/20140716_165104/summary.csv @@ -0,0 +1,2 @@ +elapsed, window, total, successful, failed +2.751539, 2.751539, 3050, 3044, 6 diff --git a/newtests/20140716_165306/append_latencies.csv b/newtests/20140716_165306/append_latencies.csv new file mode 100644 index 000000000..d2eaab382 --- /dev/null +++ b/newtests/20140716_165306/append_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +2.696005, 2.696005, 1497, 1024, 1808.2, 1632, 2619, 3025, 4504, 4506, 5 diff --git a/newtests/20140716_165306/console.log b/newtests/20140716_165306/console.log new file mode 100644 index 000000000..fbc0cc3fc --- /dev/null +++ b/newtests/20140716_165306/console.log @@ -0,0 +1,91 @@ +2014-07-16 16:53:06.289 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_165306/error.log"} into lager_event +2014-07-16 16:53:06.289 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_165306/console.log"} into lager_event +2014-07-16 16:53:06.289 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-16 16:53:06.323 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-16 16:53:06.323 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-16 16:53:06.323 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-16 16:53:06.323 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-16 16:53:06.765 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-16 16:53:07.059 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-16 16:53:07.060 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_165306/console.log to debug +2014-07-16 16:53:07.066 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} +2014-07-16 16:53:07.134 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-16 16:53:07.134 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-16 16:53:07.134 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-16 16:53:07.147 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-16 16:53:07.148 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-16 16:53:07.222 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-16 16:53:07.222 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-16 16:53:07.253 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-16 16:53:07.257 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-16 16:53:07.262 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-16 16:53:07.263 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-16 16:53:07.300 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-16 16:53:07.362 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> +2014-07-16 16:53:07.370 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> +2014-07-16 16:53:07.384 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-16 16:53:07.384 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> +2014-07-16 16:53:07.385 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> +2014-07-16 16:53:07.398 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> +2014-07-16 16:53:07.398 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> +2014-07-16 16:53:07.412 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:53:07.412 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:53:07.413 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-16 16:53:07.443 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:53:07.443 [info] <0.108.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:53:07.443 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> +2014-07-16 16:53:07.444 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> +2014-07-16 16:53:07.450 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> +2014-07-16 16:53:07.450 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> +2014-07-16 16:53:07.450 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-16 16:53:08.417 [debug] <0.108.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{dict,fetch,[[riak_dt_gcounter],{dict,2,16,16,8,80,48,{[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]},{{[],[],[[riak_dt_gcounter,increment]],[],[[riak_dt_gset,add]],[],[],[],[],[],[],[],[],[],[],[]}}}],[{file,"dict.erl"},{line,126}]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,147}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,101}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:53:08.417 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash +2014-07-16 16:53:08.418 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-16 16:53:08.503 [info] <0.1238.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:53:08.503 [info] <0.1238.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:53:08.503 [warning] <0.1237.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:53:08.503 [info] <0.1238.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.1238.0> +2014-07-16 16:53:08.504 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.1237.0> +2014-07-16 16:53:08.599 [debug] <0.95.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{dict,fetch,[[riak_dt_gcounter],{dict,2,16,16,8,80,48,{[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]},{{[],[],[[riak_dt_gcounter,increment]],[],[[riak_dt_gset,add]],[],[],[],[],[],[],[],[],[],[],[]}}}],[{file,"dict.erl"},{line,126}]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,147}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,101}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:53:08.599 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash +2014-07-16 16:53:08.600 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 16:53:08.645 [info] <0.1366.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:53:08.645 [info] <0.1366.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:53:08.645 [warning] <0.1365.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:53:08.645 [info] <0.1366.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.1366.0> +2014-07-16 16:53:08.646 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.1365.0> +2014-07-16 16:53:09.299 [debug] <0.1238.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{dict,fetch,[[riak_dt_gset],{dict,2,16,16,8,80,48,{[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]},{{[],[],[[riak_dt_gcounter,increment]],[],[[riak_dt_gset,add]],[],[],[],[],[],[],[],[],[],[],[]}}}],[{file,"dict.erl"},{line,126}]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,147}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,101}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:53:09.299 [error] <0.1237.0>@basho_bench_worker:handle_info:149 Worker <0.1238.0> exited with crash +2014-07-16 16:53:09.299 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.1237.0> exit with reason normal in context child_terminated +2014-07-16 16:53:09.348 [info] <0.2157.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:53:09.348 [info] <0.2157.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:53:09.348 [warning] <0.2155.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:53:09.349 [info] <0.2157.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.2157.0> +2014-07-16 16:53:09.349 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.2155.0> +2014-07-16 16:53:09.751 [debug] <0.1366.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{dict,fetch,[[riak_dt_gcounter],{dict,2,16,16,8,80,48,{[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]},{{[],[],[[riak_dt_gcounter,increment]],[],[[riak_dt_gset,add]],[],[],[],[],[],[],[],[],[],[],[]}}}],[{file,"dict.erl"},{line,126}]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,147}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,101}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:53:09.751 [error] <0.1365.0>@basho_bench_worker:handle_info:149 Worker <0.1366.0> exited with crash +2014-07-16 16:53:09.752 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.1365.0> exit with reason normal in context child_terminated +2014-07-16 16:53:09.800 [info] <0.2658.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:53:09.800 [info] <0.2658.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:53:09.800 [warning] <0.2657.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:53:09.800 [info] <0.2658.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.2658.0> +2014-07-16 16:53:09.801 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.2657.0> +2014-07-16 16:53:09.875 [error] emulator Error in process <0.2658.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,1505},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 16:53:09.875 [error] <0.2657.0>@basho_bench_worker:handle_info:149 Worker <0.2658.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,1505},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:53:09.876 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.2657.0> exit with reason normal in context child_terminated +2014-07-16 16:53:09.923 [info] <0.2785.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:53:09.923 [info] <0.2785.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:53:09.923 [warning] <0.2784.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:53:09.923 [info] <0.2785.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.2785.0> +2014-07-16 16:53:09.924 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.2784.0> +2014-07-16 16:53:10.138 [debug] <0.2157.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{dict,fetch,[[riak_dt_gcounter],{dict,2,16,16,8,80,48,{[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]},{{[],[],[[riak_dt_gcounter,increment]],[],[[riak_dt_gset,add]],[],[],[],[],[],[],[],[],[],[],[]}}}],[{file,"dict.erl"},{line,126}]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,147}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,101}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:53:10.139 [error] <0.2155.0>@basho_bench_worker:handle_info:149 Worker <0.2157.0> exited with crash +2014-07-16 16:53:10.139 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.2155.0> exit with reason normal in context child_terminated +2014-07-16 16:53:10.140 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.2155.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-16 16:53:10.151 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{append,append},5},{{{append,append},crash},5}] +2014-07-16 16:53:10.152 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: +2014-07-16 16:53:10.152 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{append,append},crash}: 5 diff --git a/newtests/20140716_165306/crash.log b/newtests/20140716_165306/crash.log new file mode 100644 index 000000000..24afefa73 --- /dev/null +++ b/newtests/20140716_165306/crash.log @@ -0,0 +1,45 @@ +2014-07-16 16:53:08 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:53:08 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:53:09 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.1237.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:53:09 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.1365.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:53:09 =ERROR REPORT==== +Error in process <0.2658.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,1505},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + +2014-07-16 16:53:09 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.2657.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:53:10 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.2155.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:53:10 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.2155.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140716_165306/error.log b/newtests/20140716_165306/error.log new file mode 100644 index 000000000..15ea9e5bd --- /dev/null +++ b/newtests/20140716_165306/error.log @@ -0,0 +1,16 @@ +2014-07-16 16:53:08.417 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash +2014-07-16 16:53:08.418 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-16 16:53:08.599 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash +2014-07-16 16:53:08.600 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 16:53:09.299 [error] <0.1237.0>@basho_bench_worker:handle_info:149 Worker <0.1238.0> exited with crash +2014-07-16 16:53:09.299 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.1237.0> exit with reason normal in context child_terminated +2014-07-16 16:53:09.751 [error] <0.1365.0>@basho_bench_worker:handle_info:149 Worker <0.1366.0> exited with crash +2014-07-16 16:53:09.752 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.1365.0> exit with reason normal in context child_terminated +2014-07-16 16:53:09.875 [error] emulator Error in process <0.2658.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,1505},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 16:53:09.875 [error] <0.2657.0>@basho_bench_worker:handle_info:149 Worker <0.2658.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,1505},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:53:09.876 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.2657.0> exit with reason normal in context child_terminated +2014-07-16 16:53:10.139 [error] <0.2155.0>@basho_bench_worker:handle_info:149 Worker <0.2157.0> exited with crash +2014-07-16 16:53:10.139 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.2155.0> exit with reason normal in context child_terminated +2014-07-16 16:53:10.140 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.2155.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_165306/errors.csv b/newtests/20140716_165306/errors.csv new file mode 100644 index 000000000..cdd6dd5c6 --- /dev/null +++ b/newtests/20140716_165306/errors.csv @@ -0,0 +1,2 @@ +"error","count" +"{{append,append},crash}","5" diff --git a/newtests/20140716_165306/floppstore.config b/newtests/20140716_165306/floppstore.config new file mode 100644 index 000000000..55db32761 --- /dev/null +++ b/newtests/20140716_165306/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. + +{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. + +{operations, [{append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_165306/log.sasl.txt b/newtests/20140716_165306/log.sasl.txt new file mode 100644 index 000000000..ec9316b5a --- /dev/null +++ b/newtests/20140716_165306/log.sasl.txt @@ -0,0 +1,336 @@ + +=PROGRESS REPORT==== 16-Jul-2014::16:53:07 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:53:07 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:53:07 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::16:53:07 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:53:07 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::16:53:07 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:53:07 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::16:53:07 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::16:53:07 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:53:07 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:53:07 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::16:53:07 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:53:07 === + supervisor: {local,net_sup} + started: [{pid,<0.97.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:53:07 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:53:07 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:53:07 === + supervisor: {local,kernel_sup} + started: [{pid,<0.96.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::16:53:07 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 16-Jul-2014::16:53:07 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.103.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:53:07 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:53:07 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:53:07 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.109.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:53:07 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 16-Jul-2014::16:53:08 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:53:08 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.1237.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:53:08 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:53:08 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.1365.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:53:09 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.1237.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:53:09 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.2155.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:53:09 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.1365.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:53:09 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.2657.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:53:09 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.2657.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:53:09 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.2784.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:53:10 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.2155.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 16-Jul-2014::16:53:10 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.2155.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140716_165306/read_latencies.csv b/newtests/20140716_165306/read_latencies.csv new file mode 100644 index 000000000..e5e42f3d8 --- /dev/null +++ b/newtests/20140716_165306/read_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +2.696005, 2.696005, 1452, 919, 1599.0, 1416, 2413, 2809, 4604, 4668, 0 diff --git a/newtests/20140716_165306/summary.csv b/newtests/20140716_165306/summary.csv new file mode 100644 index 000000000..b33310947 --- /dev/null +++ b/newtests/20140716_165306/summary.csv @@ -0,0 +1,2 @@ +elapsed, window, total, successful, failed +2.696005, 2.696005, 2954, 2949, 5 diff --git a/newtests/20140716_165356/append_latencies.csv b/newtests/20140716_165356/append_latencies.csv new file mode 100644 index 000000000..55f68fcb4 --- /dev/null +++ b/newtests/20140716_165356/append_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +4.243242, 4.243242, 2303, 1023, 1849.7, 1653, 2662, 3268, 5306, 7347, 5 diff --git a/newtests/20140716_165356/console.log b/newtests/20140716_165356/console.log new file mode 100644 index 000000000..983904dd8 --- /dev/null +++ b/newtests/20140716_165356/console.log @@ -0,0 +1,91 @@ +2014-07-16 16:53:56.356 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_165356/error.log"} into lager_event +2014-07-16 16:53:56.356 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_165356/console.log"} into lager_event +2014-07-16 16:53:56.356 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-16 16:53:56.388 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-16 16:53:56.388 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-16 16:53:56.388 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-16 16:53:56.389 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-16 16:53:56.833 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-16 16:53:57.209 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-16 16:53:57.210 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_165356/console.log to debug +2014-07-16 16:53:57.217 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} +2014-07-16 16:53:57.297 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-16 16:53:57.297 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-16 16:53:57.298 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-16 16:53:57.312 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-16 16:53:57.312 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-16 16:53:57.398 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-16 16:53:57.398 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-16 16:53:57.429 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-16 16:53:57.435 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-16 16:53:57.440 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-16 16:53:57.441 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-16 16:53:57.482 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-16 16:53:57.544 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> +2014-07-16 16:53:57.551 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> +2014-07-16 16:53:57.564 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-16 16:53:57.565 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> +2014-07-16 16:53:57.565 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> +2014-07-16 16:53:57.579 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> +2014-07-16 16:53:57.579 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> +2014-07-16 16:53:57.593 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:53:57.593 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:53:57.593 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-16 16:53:57.626 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:53:57.626 [info] <0.108.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:53:57.626 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> +2014-07-16 16:53:57.627 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> +2014-07-16 16:53:57.633 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> +2014-07-16 16:53:57.633 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> +2014-07-16 16:53:57.633 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-16 16:53:57.825 [debug] <0.95.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{dict,fetch,[[riak_dt_gset],{dict,2,16,16,8,80,48,{[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]},{{[],[],[[riak_dt_gcounter,increment]],[],[[riak_dt_gset,add]],[],[],[],[],[],[],[],[],[],[],[]}}}],[{file,"dict.erl"},{line,126}]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,147}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,101}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:53:57.825 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash +2014-07-16 16:53:57.825 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 16:53:57.874 [info] <0.325.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:53:57.874 [info] <0.325.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:53:57.874 [warning] <0.323.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:53:57.874 [info] <0.325.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.325.0> +2014-07-16 16:53:57.875 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.323.0> +2014-07-16 16:53:58.487 [debug] <0.108.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{dict,fetch,[[riak_dt_gset],{dict,2,16,16,8,80,48,{[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]},{{[],[],[[riak_dt_gcounter,increment]],[],[[riak_dt_gset,add]],[],[],[],[],[],[],[],[],[],[],[]}}}],[{file,"dict.erl"},{line,126}]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,147}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,101}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:53:58.487 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash +2014-07-16 16:53:58.493 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-16 16:53:58.539 [info] <0.1071.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:53:58.539 [info] <0.1071.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:53:58.539 [warning] <0.1070.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:53:58.539 [info] <0.1071.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.1071.0> +2014-07-16 16:53:58.539 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.1070.0> +2014-07-16 16:53:59.717 [debug] <0.1071.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{dict,fetch,[[riak_dt_gcounter],{dict,2,16,16,8,80,48,{[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]},{{[],[],[[riak_dt_gcounter,increment]],[],[[riak_dt_gset,add]],[],[],[],[],[],[],[],[],[],[],[]}}}],[{file,"dict.erl"},{line,126}]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,147}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,101}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:53:59.718 [error] <0.1070.0>@basho_bench_worker:handle_info:149 Worker <0.1071.0> exited with crash +2014-07-16 16:53:59.718 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.1070.0> exit with reason normal in context child_terminated +2014-07-16 16:53:59.763 [info] <0.2469.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:53:59.763 [info] <0.2469.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:53:59.763 [warning] <0.2468.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:53:59.763 [info] <0.2469.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.2469.0> +2014-07-16 16:53:59.764 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.2468.0> +2014-07-16 16:54:00.365 [debug] <0.325.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{dict,fetch,[[riak_dt_gset],{dict,2,16,16,8,80,48,{[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]},{{[],[],[[riak_dt_gcounter,increment]],[],[[riak_dt_gset,add]],[],[],[],[],[],[],[],[],[],[],[]}}}],[{file,"dict.erl"},{line,126}]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,147}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,101}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:54:00.365 [error] <0.323.0>@basho_bench_worker:handle_info:149 Worker <0.325.0> exited with crash +2014-07-16 16:54:00.372 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.323.0> exit with reason normal in context child_terminated +2014-07-16 16:54:00.420 [info] <0.3182.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:54:00.420 [info] <0.3182.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 16:54:00.420 [warning] <0.3181.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:54:00.420 [info] <0.3182.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.3182.0> +2014-07-16 16:54:00.420 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.3181.0> +2014-07-16 16:54:00.827 [debug] <0.2469.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{dict,fetch,[[riak_dt_gcounter],{dict,2,16,16,8,80,48,{[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]},{{[],[],[[riak_dt_gcounter,increment]],[],[[riak_dt_gset,add]],[],[],[],[],[],[],[],[],[],[],[]}}}],[{file,"dict.erl"},{line,126}]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,147}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,101}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:54:00.827 [error] <0.2468.0>@basho_bench_worker:handle_info:149 Worker <0.2469.0> exited with crash +2014-07-16 16:54:00.834 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.2468.0> exit with reason normal in context child_terminated +2014-07-16 16:54:00.879 [info] <0.3695.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 16:54:00.879 [info] <0.3695.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 16:54:00.879 [warning] <0.3694.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 16:54:00.879 [info] <0.3695.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.3695.0> +2014-07-16 16:54:00.879 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.3694.0> +2014-07-16 16:54:01.869 [error] emulator Error in process <0.3695.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gset],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-'... + + +2014-07-16 16:54:01.869 [error] <0.3694.0>@basho_bench_worker:handle_info:149 Worker <0.3695.0> exited with {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gset],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:54:01.870 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.3694.0> exit with reason normal in context child_terminated +2014-07-16 16:54:01.876 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.3694.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-16 16:54:01.892 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{append,append},5},{{{append,append},crash},5}] +2014-07-16 16:54:01.892 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: +2014-07-16 16:54:01.892 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{append,append},crash}: 5 diff --git a/newtests/20140716_165356/crash.log b/newtests/20140716_165356/crash.log new file mode 100644 index 000000000..44cf2029f --- /dev/null +++ b/newtests/20140716_165356/crash.log @@ -0,0 +1,45 @@ +2014-07-16 16:53:57 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:53:58 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:53:59 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.1070.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:54:00 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.323.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:54:00 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.2468.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:54:01 =ERROR REPORT==== +Error in process <0.3695.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gset],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-'... + +2014-07-16 16:54:01 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.3694.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 16:54:01 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.3694.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140716_165356/error.log b/newtests/20140716_165356/error.log new file mode 100644 index 000000000..18f1d7842 --- /dev/null +++ b/newtests/20140716_165356/error.log @@ -0,0 +1,16 @@ +2014-07-16 16:53:57.825 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash +2014-07-16 16:53:57.825 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 16:53:58.487 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash +2014-07-16 16:53:58.493 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-16 16:53:59.718 [error] <0.1070.0>@basho_bench_worker:handle_info:149 Worker <0.1071.0> exited with crash +2014-07-16 16:53:59.718 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.1070.0> exit with reason normal in context child_terminated +2014-07-16 16:54:00.365 [error] <0.323.0>@basho_bench_worker:handle_info:149 Worker <0.325.0> exited with crash +2014-07-16 16:54:00.372 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.323.0> exit with reason normal in context child_terminated +2014-07-16 16:54:00.827 [error] <0.2468.0>@basho_bench_worker:handle_info:149 Worker <0.2469.0> exited with crash +2014-07-16 16:54:00.834 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.2468.0> exit with reason normal in context child_terminated +2014-07-16 16:54:01.869 [error] emulator Error in process <0.3695.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gset],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-'... + + +2014-07-16 16:54:01.869 [error] <0.3694.0>@basho_bench_worker:handle_info:149 Worker <0.3695.0> exited with {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gset],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 16:54:01.870 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.3694.0> exit with reason normal in context child_terminated +2014-07-16 16:54:01.876 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.3694.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_165356/errors.csv b/newtests/20140716_165356/errors.csv new file mode 100644 index 000000000..cdd6dd5c6 --- /dev/null +++ b/newtests/20140716_165356/errors.csv @@ -0,0 +1,2 @@ +"error","count" +"{{append,append},crash}","5" diff --git a/newtests/20140716_165356/floppstore.config b/newtests/20140716_165356/floppstore.config new file mode 100644 index 000000000..55db32761 --- /dev/null +++ b/newtests/20140716_165356/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. + +{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. + +{operations, [{append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_165356/log.sasl.txt b/newtests/20140716_165356/log.sasl.txt new file mode 100644 index 000000000..d4bcd8786 --- /dev/null +++ b/newtests/20140716_165356/log.sasl.txt @@ -0,0 +1,336 @@ + +=PROGRESS REPORT==== 16-Jul-2014::16:53:57 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:53:57 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:53:57 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::16:53:57 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:53:57 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::16:53:57 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:53:57 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::16:53:57 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::16:53:57 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:53:57 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:53:57 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::16:53:57 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:53:57 === + supervisor: {local,net_sup} + started: [{pid,<0.97.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:53:57 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:53:57 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:53:57 === + supervisor: {local,kernel_sup} + started: [{pid,<0.96.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::16:53:57 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 16-Jul-2014::16:53:57 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.103.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:53:57 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:53:57 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:53:57 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.109.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::16:53:57 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 16-Jul-2014::16:53:57 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:53:57 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.323.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:53:58 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:53:58 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.1070.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:53:59 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.1070.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:53:59 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.2468.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:54:00 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.323.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:54:00 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.3181.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:54:00 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.2468.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::16:54:00 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.3694.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::16:54:01 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.3694.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 16-Jul-2014::16:54:01 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.3694.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140716_165356/read_latencies.csv b/newtests/20140716_165356/read_latencies.csv new file mode 100644 index 000000000..fe3c4f324 --- /dev/null +++ b/newtests/20140716_165356/read_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +4.243242, 4.243242, 2365, 834, 1628.5, 1440, 2450, 2831, 3582, 5758, 0 diff --git a/newtests/20140716_165356/summary.csv b/newtests/20140716_165356/summary.csv new file mode 100644 index 000000000..ce255f87e --- /dev/null +++ b/newtests/20140716_165356/summary.csv @@ -0,0 +1,2 @@ +elapsed, window, total, successful, failed +4.243242, 4.243242, 4673, 4668, 5 diff --git a/newtests/20140716_170644/append_latencies.csv b/newtests/20140716_170644/append_latencies.csv new file mode 100644 index 000000000..a4f6c7163 --- /dev/null +++ b/newtests/20140716_170644/append_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +3.654499, 3.654499, 1599, 1070, 2487.3, 1704, 6139, 17497, 41011, 48648, 5 diff --git a/newtests/20140716_170644/console.log b/newtests/20140716_170644/console.log new file mode 100644 index 000000000..aceea35d4 --- /dev/null +++ b/newtests/20140716_170644/console.log @@ -0,0 +1,92 @@ +2014-07-16 17:06:44.936 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_170644/error.log"} into lager_event +2014-07-16 17:06:44.936 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_170644/console.log"} into lager_event +2014-07-16 17:06:44.936 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-16 17:06:44.971 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-16 17:06:44.971 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-16 17:06:44.971 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-16 17:06:44.971 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-16 17:06:45.412 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-16 17:06:45.750 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-16 17:06:45.752 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_170644/console.log to debug +2014-07-16 17:06:45.758 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} +2014-07-16 17:06:45.840 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-16 17:06:45.841 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-16 17:06:45.841 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-16 17:06:45.858 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-16 17:06:45.859 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-16 17:06:45.940 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-16 17:06:45.941 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-16 17:06:45.972 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-16 17:06:45.976 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-16 17:06:45.981 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-16 17:06:45.981 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-16 17:06:46.018 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-16 17:06:46.083 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> +2014-07-16 17:06:46.090 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> +2014-07-16 17:06:46.102 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-16 17:06:46.103 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> +2014-07-16 17:06:46.103 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> +2014-07-16 17:06:46.116 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> +2014-07-16 17:06:46.117 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> +2014-07-16 17:06:46.130 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:135 Finished pinging 'floppy@127.0.0.1' +2014-07-16 17:06:46.130 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 17:06:46.131 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-16 17:06:46.166 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:135 Finished pinging 'floppy@127.0.0.1' +2014-07-16 17:06:46.166 [info] <0.108.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 17:06:46.167 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> +2014-07-16 17:06:46.167 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> +2014-07-16 17:06:46.173 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> +2014-07-16 17:06:46.174 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> +2014-07-16 17:06:46.174 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-16 17:06:47.914 [debug] <0.108.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{dict,fetch,[[riak_dt_gset],{dict,2,16,16,8,80,48,{[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]},{{[],[],[[riak_dt_gcounter,increment]],[],[[riak_dt_gset,add]],[],[],[],[],[],[],[],[],[],[],[]}}}],[{file,"dict.erl"},{line,126}]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,148}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,101}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 17:06:47.914 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash +2014-07-16 17:06:47.915 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-16 17:06:47.971 [info] <0.1345.0>@basho_bench_driver_floppystore:ping_each:135 Finished pinging 'floppy@127.0.0.1' +2014-07-16 17:06:47.971 [info] <0.1345.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 17:06:47.971 [warning] <0.1344.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 17:06:47.971 [info] <0.1345.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.1345.0> +2014-07-16 17:06:47.971 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.1344.0> +2014-07-16 17:06:48.062 [debug] <0.95.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{dict,fetch,[[riak_dt_gcounter],{dict,2,16,16,8,80,48,{[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]},{{[],[],[[riak_dt_gcounter,increment]],[],[[riak_dt_gset,add]],[],[],[],[],[],[],[],[],[],[],[]}}}],[{file,"dict.erl"},{line,126}]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,148}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,101}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 17:06:48.062 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash +2014-07-16 17:06:48.063 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 17:06:48.109 [info] <0.1488.0>@basho_bench_driver_floppystore:ping_each:135 Finished pinging 'floppy@127.0.0.1' +2014-07-16 17:06:48.109 [info] <0.1488.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 17:06:48.109 [warning] <0.1487.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 17:06:48.110 [info] <0.1488.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.1488.0> +2014-07-16 17:06:48.110 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.1487.0> +2014-07-16 17:06:48.385 [debug] <0.1488.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{dict,fetch,[[riak_dt_gset],{dict,2,16,16,8,80,48,{[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]},{{[],[],[[riak_dt_gcounter,increment]],[],[[riak_dt_gset,add]],[],[],[],[],[],[],[],[],[],[],[]}}}],[{file,"dict.erl"},{line,126}]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,148}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,101}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 17:06:48.385 [error] <0.1487.0>@basho_bench_worker:handle_info:149 Worker <0.1488.0> exited with crash +2014-07-16 17:06:48.392 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.1487.0> exit with reason normal in context child_terminated +2014-07-16 17:06:48.439 [info] <0.1832.0>@basho_bench_driver_floppystore:ping_each:135 Finished pinging 'floppy@127.0.0.1' +2014-07-16 17:06:48.439 [info] <0.1832.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 17:06:48.439 [warning] <0.1831.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 17:06:48.440 [info] <0.1832.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.1832.0> +2014-07-16 17:06:48.440 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.1831.0> +2014-07-16 17:06:48.917 [error] emulator Error in process <0.1832.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,3539},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 17:06:48.917 [error] <0.1831.0>@basho_bench_worker:handle_info:149 Worker <0.1832.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,3539},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 17:06:48.924 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.1831.0> exit with reason normal in context child_terminated +2014-07-16 17:06:48.970 [info] <0.2400.0>@basho_bench_driver_floppystore:ping_each:135 Finished pinging 'floppy@127.0.0.1' +2014-07-16 17:06:48.970 [info] <0.2400.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 17:06:48.970 [warning] <0.2398.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 17:06:48.970 [info] <0.2400.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.2400.0> +2014-07-16 17:06:48.971 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.2398.0> +2014-07-16 17:06:49.420 [debug] <0.1345.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{dict,fetch,[[riak_dt_gset],{dict,2,16,16,8,80,48,{[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]},{{[],[],[[riak_dt_gcounter,increment]],[],[[riak_dt_gset,add]],[],[],[],[],[],[],[],[],[],[],[]}}}],[{file,"dict.erl"},{line,126}]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,148}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,101}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 17:06:49.420 [error] <0.1344.0>@basho_bench_worker:handle_info:149 Worker <0.1345.0> exited with crash +2014-07-16 17:06:49.421 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.1344.0> exit with reason normal in context child_terminated +2014-07-16 17:06:49.468 [info] <0.2939.0>@basho_bench_driver_floppystore:ping_each:135 Finished pinging 'floppy@127.0.0.1' +2014-07-16 17:06:49.468 [info] <0.2939.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 17:06:49.469 [warning] <0.2938.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 17:06:49.469 [info] <0.2939.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.2939.0> +2014-07-16 17:06:49.469 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.2938.0> +2014-07-16 17:06:49.820 [debug] <0.2400.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{dict,fetch,[[riak_dt_gset],{dict,2,16,16,8,80,48,{[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]},{{[],[],[[riak_dt_gcounter,increment]],[],[[riak_dt_gset,add]],[],[],[],[],[],[],[],[],[],[],[]}}}],[{file,"dict.erl"},{line,126}]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,148}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,101}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 17:06:49.820 [error] <0.2398.0>@basho_bench_worker:handle_info:149 Worker <0.2400.0> exited with crash +2014-07-16 17:06:49.827 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.2398.0> exit with reason normal in context child_terminated +2014-07-16 17:06:49.827 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.2398.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-16 17:06:49.843 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{append,append},5},{{{append,append},crash},5}] +2014-07-16 17:06:49.843 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: +2014-07-16 17:06:49.843 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{append,append},crash}: 5 +2014-07-16 17:06:49.844 [info] <0.2.0>@basho_bench:wait_for_stop:191 Test stopped: shutdown diff --git a/newtests/20140716_170644/crash.log b/newtests/20140716_170644/crash.log new file mode 100644 index 000000000..c6411f8dd --- /dev/null +++ b/newtests/20140716_170644/crash.log @@ -0,0 +1,45 @@ +2014-07-16 17:06:47 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 17:06:48 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 17:06:48 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.1487.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 17:06:48 =ERROR REPORT==== +Error in process <0.1832.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,3539},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + +2014-07-16 17:06:48 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.1831.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 17:06:49 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.1344.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 17:06:49 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.2398.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 17:06:49 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.2398.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140716_170644/error.log b/newtests/20140716_170644/error.log new file mode 100644 index 000000000..2b0840d3b --- /dev/null +++ b/newtests/20140716_170644/error.log @@ -0,0 +1,16 @@ +2014-07-16 17:06:47.914 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash +2014-07-16 17:06:47.915 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-16 17:06:48.062 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash +2014-07-16 17:06:48.063 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 17:06:48.385 [error] <0.1487.0>@basho_bench_worker:handle_info:149 Worker <0.1488.0> exited with crash +2014-07-16 17:06:48.392 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.1487.0> exit with reason normal in context child_terminated +2014-07-16 17:06:48.917 [error] emulator Error in process <0.1832.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,3539},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 17:06:48.917 [error] <0.1831.0>@basho_bench_worker:handle_info:149 Worker <0.1832.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,3539},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 17:06:48.924 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.1831.0> exit with reason normal in context child_terminated +2014-07-16 17:06:49.420 [error] <0.1344.0>@basho_bench_worker:handle_info:149 Worker <0.1345.0> exited with crash +2014-07-16 17:06:49.421 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.1344.0> exit with reason normal in context child_terminated +2014-07-16 17:06:49.820 [error] <0.2398.0>@basho_bench_worker:handle_info:149 Worker <0.2400.0> exited with crash +2014-07-16 17:06:49.827 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.2398.0> exit with reason normal in context child_terminated +2014-07-16 17:06:49.827 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.2398.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_170644/errors.csv b/newtests/20140716_170644/errors.csv new file mode 100644 index 000000000..cdd6dd5c6 --- /dev/null +++ b/newtests/20140716_170644/errors.csv @@ -0,0 +1,2 @@ +"error","count" +"{{append,append},crash}","5" diff --git a/newtests/20140716_170644/floppstore.config b/newtests/20140716_170644/floppstore.config new file mode 100644 index 000000000..55db32761 --- /dev/null +++ b/newtests/20140716_170644/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. + +{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. + +{operations, [{append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_170644/log.sasl.txt b/newtests/20140716_170644/log.sasl.txt new file mode 100644 index 000000000..adeb7b133 --- /dev/null +++ b/newtests/20140716_170644/log.sasl.txt @@ -0,0 +1,336 @@ + +=PROGRESS REPORT==== 16-Jul-2014::17:06:45 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::17:06:45 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::17:06:45 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::17:06:45 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::17:06:45 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::17:06:45 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::17:06:45 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::17:06:45 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::17:06:45 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::17:06:45 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::17:06:45 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::17:06:46 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::17:06:46 === + supervisor: {local,net_sup} + started: [{pid,<0.97.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::17:06:46 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::17:06:46 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::17:06:46 === + supervisor: {local,kernel_sup} + started: [{pid,<0.96.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::17:06:46 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 16-Jul-2014::17:06:46 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.103.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::17:06:46 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::17:06:46 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::17:06:46 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.109.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::17:06:46 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 16-Jul-2014::17:06:47 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::17:06:47 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.1344.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::17:06:48 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::17:06:48 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.1487.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::17:06:48 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.1487.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::17:06:48 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.1831.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::17:06:48 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.1831.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::17:06:48 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.2398.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::17:06:49 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.1344.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::17:06:49 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.2938.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::17:06:49 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.2398.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 16-Jul-2014::17:06:49 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.2398.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140716_170644/read_latencies.csv b/newtests/20140716_170644/read_latencies.csv new file mode 100644 index 000000000..45bfcc047 --- /dev/null +++ b/newtests/20140716_170644/read_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +3.654499, 3.654499, 1645, 856, 1808.7, 1471, 2715, 7089, 17159, 23367, 0 diff --git a/newtests/20140716_170644/summary.csv b/newtests/20140716_170644/summary.csv new file mode 100644 index 000000000..6ad668ea4 --- /dev/null +++ b/newtests/20140716_170644/summary.csv @@ -0,0 +1,2 @@ +elapsed, window, total, successful, failed +3.654499, 3.654499, 3249, 3244, 5 diff --git a/newtests/20140716_170806/append_latencies.csv b/newtests/20140716_170806/append_latencies.csv new file mode 100644 index 000000000..e22d2decc --- /dev/null +++ b/newtests/20140716_170806/append_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +4.074618, 4.074618, 2276, 1016, 1870.3, 1680, 2656, 3105, 6199, 8798, 0 diff --git a/newtests/20140716_170806/console.log b/newtests/20140716_170806/console.log new file mode 100644 index 000000000..1798dfba1 --- /dev/null +++ b/newtests/20140716_170806/console.log @@ -0,0 +1,99 @@ +2014-07-16 17:08:06.968 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_170806/error.log"} into lager_event +2014-07-16 17:08:06.968 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_170806/console.log"} into lager_event +2014-07-16 17:08:06.968 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-16 17:08:07.002 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-16 17:08:07.002 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-16 17:08:07.002 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-16 17:08:07.003 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-16 17:08:07.443 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-16 17:08:07.844 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-16 17:08:07.845 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_170806/console.log to debug +2014-07-16 17:08:07.852 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} +2014-07-16 17:08:07.933 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-16 17:08:07.933 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-16 17:08:07.934 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-16 17:08:07.947 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-16 17:08:07.948 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-16 17:08:08.034 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-16 17:08:08.035 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-16 17:08:08.065 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-16 17:08:08.070 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-16 17:08:08.075 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-16 17:08:08.075 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-16 17:08:08.112 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-16 17:08:08.179 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> +2014-07-16 17:08:08.186 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> +2014-07-16 17:08:08.198 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-16 17:08:08.199 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> +2014-07-16 17:08:08.199 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> +2014-07-16 17:08:08.213 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> +2014-07-16 17:08:08.213 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> +2014-07-16 17:08:08.231 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 17:08:08.231 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 17:08:08.232 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-16 17:08:08.263 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 17:08:08.263 [info] <0.108.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 17:08:08.264 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> +2014-07-16 17:08:08.264 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> +2014-07-16 17:08:08.269 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> +2014-07-16 17:08:08.269 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> +2014-07-16 17:08:08.269 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-16 17:08:09.583 [error] emulator Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,4980},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 17:08:09.583 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,4980},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 17:08:09.583 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 17:08:09.638 [info] <0.1575.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 17:08:09.638 [info] <0.1575.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 17:08:09.638 [warning] <0.1574.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 17:08:09.638 [info] <0.1575.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.1575.0> +2014-07-16 17:08:09.638 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.1574.0> +2014-07-16 17:08:10.112 [error] emulator Error in process <0.1575.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5611},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 17:08:10.113 [error] <0.1574.0>@basho_bench_worker:handle_info:149 Worker <0.1575.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5611},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 17:08:10.113 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.1574.0> exit with reason normal in context child_terminated +2014-07-16 17:08:10.164 [info] <0.2161.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 17:08:10.164 [info] <0.2161.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 17:08:10.164 [warning] <0.2160.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 17:08:10.164 [info] <0.2161.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.2161.0> +2014-07-16 17:08:10.164 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.2160.0> +2014-07-16 17:08:10.866 [error] emulator Error in process <0.2161.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,8079},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 17:08:10.866 [error] <0.2160.0>@basho_bench_worker:handle_info:149 Worker <0.2161.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,8079},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 17:08:10.867 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.2160.0> exit with reason normal in context child_terminated +2014-07-16 17:08:10.917 [info] <0.2952.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 17:08:10.917 [info] <0.2952.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 17:08:10.917 [warning] <0.2951.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 17:08:10.917 [info] <0.2952.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.2952.0> +2014-07-16 17:08:10.918 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.2951.0> +2014-07-16 17:08:11.143 [error] emulator Error in process <0.2952.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,8963},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 17:08:11.143 [error] <0.2951.0>@basho_bench_worker:handle_info:149 Worker <0.2952.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,8963},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 17:08:11.143 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.2951.0> exit with reason normal in context child_terminated +2014-07-16 17:08:11.187 [info] <0.3245.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 17:08:11.187 [info] <0.3245.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 17:08:11.187 [warning] <0.3244.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 17:08:11.187 [info] <0.3245.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.3245.0> +2014-07-16 17:08:11.188 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.3244.0> +2014-07-16 17:08:12.263 [error] emulator Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,3082},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 17:08:12.263 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,3082},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 17:08:12.264 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-16 17:08:12.315 [info] <0.4490.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 17:08:12.315 [info] <0.4490.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 17:08:12.316 [warning] <0.4489.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 17:08:12.316 [info] <0.4490.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.4490.0> +2014-07-16 17:08:12.316 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.4489.0> +2014-07-16 17:08:12.337 [error] emulator Error in process <0.4490.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5915},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 17:08:12.338 [error] <0.4489.0>@basho_bench_worker:handle_info:149 Worker <0.4490.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5915},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 17:08:12.338 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.4489.0> exit with reason normal in context child_terminated +2014-07-16 17:08:12.339 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.4489.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-16 17:08:12.355 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. diff --git a/newtests/20140716_170806/crash.log b/newtests/20140716_170806/crash.log new file mode 100644 index 000000000..4a75b05ce --- /dev/null +++ b/newtests/20140716_170806/crash.log @@ -0,0 +1,60 @@ +2014-07-16 17:08:09 =ERROR REPORT==== +Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,4980},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + +2014-07-16 17:08:09 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 17:08:10 =ERROR REPORT==== +Error in process <0.1575.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5611},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + +2014-07-16 17:08:10 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.1574.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 17:08:10 =ERROR REPORT==== +Error in process <0.2161.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,8079},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + +2014-07-16 17:08:10 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.2160.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 17:08:11 =ERROR REPORT==== +Error in process <0.2952.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,8963},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + +2014-07-16 17:08:11 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.2951.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 17:08:12 =ERROR REPORT==== +Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,3082},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + +2014-07-16 17:08:12 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 17:08:12 =ERROR REPORT==== +Error in process <0.4490.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5915},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + +2014-07-16 17:08:12 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.4489.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 17:08:12 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.4489.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140716_170806/error.log b/newtests/20140716_170806/error.log new file mode 100644 index 000000000..c7d2b10b6 --- /dev/null +++ b/newtests/20140716_170806/error.log @@ -0,0 +1,31 @@ +2014-07-16 17:08:09.583 [error] emulator Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,4980},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 17:08:09.583 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,4980},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 17:08:09.583 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 17:08:10.112 [error] emulator Error in process <0.1575.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5611},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 17:08:10.113 [error] <0.1574.0>@basho_bench_worker:handle_info:149 Worker <0.1575.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5611},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 17:08:10.113 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.1574.0> exit with reason normal in context child_terminated +2014-07-16 17:08:10.866 [error] emulator Error in process <0.2161.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,8079},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 17:08:10.866 [error] <0.2160.0>@basho_bench_worker:handle_info:149 Worker <0.2161.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,8079},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 17:08:10.867 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.2160.0> exit with reason normal in context child_terminated +2014-07-16 17:08:11.143 [error] emulator Error in process <0.2952.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,8963},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 17:08:11.143 [error] <0.2951.0>@basho_bench_worker:handle_info:149 Worker <0.2952.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,8963},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 17:08:11.143 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.2951.0> exit with reason normal in context child_terminated +2014-07-16 17:08:12.263 [error] emulator Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,3082},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 17:08:12.263 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,3082},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 17:08:12.264 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-16 17:08:12.337 [error] emulator Error in process <0.4490.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5915},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 17:08:12.338 [error] <0.4489.0>@basho_bench_worker:handle_info:149 Worker <0.4490.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5915},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 17:08:12.338 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.4489.0> exit with reason normal in context child_terminated +2014-07-16 17:08:12.339 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.4489.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_170806/errors.csv b/newtests/20140716_170806/errors.csv new file mode 100644 index 000000000..29210b502 --- /dev/null +++ b/newtests/20140716_170806/errors.csv @@ -0,0 +1 @@ +"error","count" diff --git a/newtests/20140716_170806/floppstore.config b/newtests/20140716_170806/floppstore.config new file mode 100644 index 000000000..55db32761 --- /dev/null +++ b/newtests/20140716_170806/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. + +{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. + +{operations, [{append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_170806/log.sasl.txt b/newtests/20140716_170806/log.sasl.txt new file mode 100644 index 000000000..ee497a94c --- /dev/null +++ b/newtests/20140716_170806/log.sasl.txt @@ -0,0 +1,336 @@ + +=PROGRESS REPORT==== 16-Jul-2014::17:08:07 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::17:08:07 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::17:08:07 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::17:08:07 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::17:08:07 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::17:08:08 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::17:08:08 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::17:08:08 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::17:08:08 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::17:08:08 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::17:08:08 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::17:08:08 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::17:08:08 === + supervisor: {local,net_sup} + started: [{pid,<0.97.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::17:08:08 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::17:08:08 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::17:08:08 === + supervisor: {local,kernel_sup} + started: [{pid,<0.96.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::17:08:08 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 16-Jul-2014::17:08:08 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.103.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::17:08:08 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::17:08:08 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::17:08:08 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.109.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::17:08:08 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 16-Jul-2014::17:08:09 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::17:08:09 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.1574.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::17:08:10 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.1574.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::17:08:10 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.2160.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::17:08:10 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.2160.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::17:08:10 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.2951.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::17:08:11 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.2951.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::17:08:11 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.3244.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::17:08:12 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::17:08:12 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.4489.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::17:08:12 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.4489.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 16-Jul-2014::17:08:12 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.4489.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140716_170806/read_latencies.csv b/newtests/20140716_170806/read_latencies.csv new file mode 100644 index 000000000..6021e81d6 --- /dev/null +++ b/newtests/20140716_170806/read_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +4.074618, 4.074618, 2152, 902, 1632.3, 1437, 2449, 2841, 5769, 12029, 0 diff --git a/newtests/20140716_170806/summary.csv b/newtests/20140716_170806/summary.csv new file mode 100644 index 000000000..8685655f2 --- /dev/null +++ b/newtests/20140716_170806/summary.csv @@ -0,0 +1,2 @@ +elapsed, window, total, successful, failed +4.074618, 4.074618, 4428, 4428, 0 diff --git a/newtests/20140716_202737/append_latencies.csv b/newtests/20140716_202737/append_latencies.csv new file mode 100644 index 000000000..2b6400522 --- /dev/null +++ b/newtests/20140716_202737/append_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +5.925941, 5.925941, 2890, 993, 2169.2, 1690, 2860, 10936, 27683, 88686, 0 diff --git a/newtests/20140716_202737/console.log b/newtests/20140716_202737/console.log new file mode 100644 index 000000000..46a74e193 --- /dev/null +++ b/newtests/20140716_202737/console.log @@ -0,0 +1,99 @@ +2014-07-16 20:27:37.666 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_202737/error.log"} into lager_event +2014-07-16 20:27:37.666 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_202737/console.log"} into lager_event +2014-07-16 20:27:37.666 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-16 20:27:37.703 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-16 20:27:37.703 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-16 20:27:37.704 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-16 20:27:37.704 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-16 20:27:38.139 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-16 20:27:38.506 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-16 20:27:38.507 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_202737/console.log to debug +2014-07-16 20:27:38.513 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} +2014-07-16 20:27:38.591 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-16 20:27:38.592 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-16 20:27:38.592 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-16 20:27:38.606 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-16 20:27:38.607 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-16 20:27:38.701 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-16 20:27:38.701 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-16 20:27:38.730 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-16 20:27:38.734 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-16 20:27:38.738 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-16 20:27:38.738 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-16 20:27:38.775 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-16 20:27:38.841 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> +2014-07-16 20:27:38.848 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> +2014-07-16 20:27:38.863 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-16 20:27:38.863 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> +2014-07-16 20:27:38.863 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> +2014-07-16 20:27:38.889 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> +2014-07-16 20:27:38.889 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> +2014-07-16 20:27:38.905 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 20:27:38.905 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 20:27:38.906 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-16 20:27:38.937 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 20:27:38.937 [info] <0.108.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 20:27:38.937 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> +2014-07-16 20:27:38.938 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> +2014-07-16 20:27:38.945 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> +2014-07-16 20:27:38.945 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> +2014-07-16 20:27:38.945 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-16 20:27:39.933 [error] emulator Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,3517},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:27:39.933 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,3517},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:27:39.933 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 20:27:39.982 [info] <0.679.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 20:27:39.982 [info] <0.679.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 20:27:39.982 [warning] <0.678.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 20:27:39.982 [info] <0.679.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.679.0> +2014-07-16 20:27:39.983 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.678.0> +2014-07-16 20:27:42.052 [error] emulator Error in process <0.679.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,4694},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:27:42.052 [error] <0.678.0>@basho_bench_worker:handle_info:149 Worker <0.679.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,4694},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:27:42.053 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.678.0> exit with reason normal in context child_terminated +2014-07-16 20:27:42.111 [info] <0.2869.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 20:27:42.111 [info] <0.2869.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 20:27:42.111 [warning] <0.2868.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 20:27:42.111 [info] <0.2869.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.2869.0> +2014-07-16 20:27:42.111 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.2868.0> +2014-07-16 20:27:42.461 [error] emulator Error in process <0.2869.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,4406},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:27:42.462 [error] <0.2868.0>@basho_bench_worker:handle_info:149 Worker <0.2869.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,4406},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:27:42.462 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.2868.0> exit with reason normal in context child_terminated +2014-07-16 20:27:42.505 [info] <0.3295.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 20:27:42.505 [info] <0.3295.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 20:27:42.506 [warning] <0.3294.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 20:27:42.506 [info] <0.3295.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.3295.0> +2014-07-16 20:27:42.506 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.3294.0> +2014-07-16 20:27:44.182 [error] emulator Error in process <0.3295.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,8079},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:27:44.182 [error] <0.3294.0>@basho_bench_worker:handle_info:149 Worker <0.3295.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,8079},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:27:44.183 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.3294.0> exit with reason normal in context child_terminated +2014-07-16 20:27:44.237 [info] <0.5205.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 20:27:44.237 [info] <0.5205.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 20:27:44.237 [warning] <0.5204.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 20:27:44.237 [info] <0.5205.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.5205.0> +2014-07-16 20:27:44.238 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.5204.0> +2014-07-16 20:27:44.821 [error] emulator Error in process <0.5205.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,2853},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:27:44.821 [error] <0.5204.0>@basho_bench_worker:handle_info:149 Worker <0.5205.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,2853},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:27:44.822 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.5204.0> exit with reason normal in context child_terminated +2014-07-16 20:27:44.847 [error] emulator Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,7178},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:27:44.847 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,7178},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:27:44.863 [info] <0.5916.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 20:27:44.863 [info] <0.5916.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 20:27:44.863 [warning] <0.5915.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 20:27:44.863 [info] <0.5916.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.5916.0> +2014-07-16 20:27:44.864 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.5915.0> +2014-07-16 20:27:44.864 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-16 20:27:44.865 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-16 20:27:44.883 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. diff --git a/newtests/20140716_202737/crash.log b/newtests/20140716_202737/crash.log new file mode 100644 index 000000000..b3ad44a55 --- /dev/null +++ b/newtests/20140716_202737/crash.log @@ -0,0 +1,60 @@ +2014-07-16 20:27:39 =ERROR REPORT==== +Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,3517},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + +2014-07-16 20:27:39 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 20:27:42 =ERROR REPORT==== +Error in process <0.679.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,4694},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + +2014-07-16 20:27:42 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.678.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 20:27:42 =ERROR REPORT==== +Error in process <0.2869.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,4406},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + +2014-07-16 20:27:42 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.2868.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 20:27:44 =ERROR REPORT==== +Error in process <0.3295.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,8079},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + +2014-07-16 20:27:44 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.3294.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 20:27:44 =ERROR REPORT==== +Error in process <0.5205.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,2853},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + +2014-07-16 20:27:44 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.5204.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 20:27:44 =ERROR REPORT==== +Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,7178},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + +2014-07-16 20:27:44 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 20:27:44 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140716_202737/error.log b/newtests/20140716_202737/error.log new file mode 100644 index 000000000..6b25a517d --- /dev/null +++ b/newtests/20140716_202737/error.log @@ -0,0 +1,31 @@ +2014-07-16 20:27:39.933 [error] emulator Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,3517},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:27:39.933 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,3517},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:27:39.933 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 20:27:42.052 [error] emulator Error in process <0.679.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,4694},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:27:42.052 [error] <0.678.0>@basho_bench_worker:handle_info:149 Worker <0.679.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,4694},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:27:42.053 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.678.0> exit with reason normal in context child_terminated +2014-07-16 20:27:42.461 [error] emulator Error in process <0.2869.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,4406},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:27:42.462 [error] <0.2868.0>@basho_bench_worker:handle_info:149 Worker <0.2869.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,4406},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:27:42.462 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.2868.0> exit with reason normal in context child_terminated +2014-07-16 20:27:44.182 [error] emulator Error in process <0.3295.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,8079},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:27:44.182 [error] <0.3294.0>@basho_bench_worker:handle_info:149 Worker <0.3295.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,8079},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:27:44.183 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.3294.0> exit with reason normal in context child_terminated +2014-07-16 20:27:44.821 [error] emulator Error in process <0.5205.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,2853},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:27:44.821 [error] <0.5204.0>@basho_bench_worker:handle_info:149 Worker <0.5205.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,2853},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:27:44.822 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.5204.0> exit with reason normal in context child_terminated +2014-07-16 20:27:44.847 [error] emulator Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,7178},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:27:44.847 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,7178},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:27:44.864 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-16 20:27:44.865 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_202737/errors.csv b/newtests/20140716_202737/errors.csv new file mode 100644 index 000000000..29210b502 --- /dev/null +++ b/newtests/20140716_202737/errors.csv @@ -0,0 +1 @@ +"error","count" diff --git a/newtests/20140716_202737/floppstore.config b/newtests/20140716_202737/floppstore.config new file mode 100644 index 000000000..55db32761 --- /dev/null +++ b/newtests/20140716_202737/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. + +{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. + +{operations, [{append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_202737/log.sasl.txt b/newtests/20140716_202737/log.sasl.txt new file mode 100644 index 000000000..728f0d041 --- /dev/null +++ b/newtests/20140716_202737/log.sasl.txt @@ -0,0 +1,336 @@ + +=PROGRESS REPORT==== 16-Jul-2014::20:27:38 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:27:38 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:27:38 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::20:27:38 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:27:38 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::20:27:38 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:27:38 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::20:27:38 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::20:27:38 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:27:38 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:27:38 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::20:27:38 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:27:38 === + supervisor: {local,net_sup} + started: [{pid,<0.97.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:27:38 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:27:38 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:27:38 === + supervisor: {local,kernel_sup} + started: [{pid,<0.96.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::20:27:38 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 16-Jul-2014::20:27:38 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.103.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:27:38 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:27:38 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:27:38 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.109.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:27:38 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 16-Jul-2014::20:27:39 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::20:27:39 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.678.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::20:27:42 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.678.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::20:27:42 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.2868.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::20:27:42 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.2868.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::20:27:42 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.3294.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::20:27:44 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.3294.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::20:27:44 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.5204.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::20:27:44 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.5204.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::20:27:44 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.5915.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::20:27:44 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 16-Jul-2014::20:27:44 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140716_202737/read_latencies.csv b/newtests/20140716_202737/read_latencies.csv new file mode 100644 index 000000000..1a112476c --- /dev/null +++ b/newtests/20140716_202737/read_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +5.925941, 5.925941, 2920, 865, 1766.6, 1508, 2601, 4743, 12908, 47766, 0 diff --git a/newtests/20140716_202737/summary.csv b/newtests/20140716_202737/summary.csv new file mode 100644 index 000000000..a3f81cb7e --- /dev/null +++ b/newtests/20140716_202737/summary.csv @@ -0,0 +1,2 @@ +elapsed, window, total, successful, failed +5.925941, 5.925941, 5810, 5810, 0 diff --git a/newtests/20140716_202950/append_latencies.csv b/newtests/20140716_202950/append_latencies.csv new file mode 100644 index 000000000..51b00380a --- /dev/null +++ b/newtests/20140716_202950/append_latencies.csv @@ -0,0 +1,5 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +10.000722, 10.000722, 5154, 1012, 1997.1, 1769, 2909, 4313, 10051, 33191, 0 +20.0017, 10.000978, 4988, 1021, 2077.2, 1885, 3033, 3799, 7743, 19904, 0 +30.001687, 9.999987, 4940, 1129, 2083.0, 1885, 2991, 3799, 8583, 17189, 0 +33.572753, 3.571066, 1725, 1079, 2055.6, 1851, 2957, 3913, 9151, 17189, 0 diff --git a/newtests/20140716_202950/console.log b/newtests/20140716_202950/console.log new file mode 100644 index 000000000..5b990c64e --- /dev/null +++ b/newtests/20140716_202950/console.log @@ -0,0 +1,149 @@ +2014-07-16 20:29:50.871 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_202950/error.log"} into lager_event +2014-07-16 20:29:50.871 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_202950/console.log"} into lager_event +2014-07-16 20:29:50.871 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-16 20:29:50.955 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-16 20:29:50.955 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-16 20:29:50.955 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-16 20:29:50.955 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-16 20:29:51.309 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-16 20:29:51.803 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-16 20:29:51.804 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_202950/console.log to debug +2014-07-16 20:29:51.811 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} +2014-07-16 20:29:51.892 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-16 20:29:51.893 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-16 20:29:51.893 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-16 20:29:51.909 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-16 20:29:51.909 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-16 20:29:51.997 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-16 20:29:51.997 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-16 20:29:52.027 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-16 20:29:52.032 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-16 20:29:52.037 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-16 20:29:52.038 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-16 20:29:52.071 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-16 20:29:52.141 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> +2014-07-16 20:29:52.148 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> +2014-07-16 20:29:52.161 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-16 20:29:52.161 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> +2014-07-16 20:29:52.162 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> +2014-07-16 20:29:52.176 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> +2014-07-16 20:29:52.176 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> +2014-07-16 20:29:52.193 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 20:29:52.193 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 20:29:52.194 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-16 20:29:52.226 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 20:29:52.226 [info] <0.108.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 20:29:52.226 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> +2014-07-16 20:29:52.227 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> +2014-07-16 20:29:52.233 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> +2014-07-16 20:29:52.233 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> +2014-07-16 20:29:52.233 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-16 20:29:57.439 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gset],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:29:57.439 [error] emulator Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gset],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-'... + + +2014-07-16 20:29:57.440 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-16 20:29:57.501 [info] <0.5604.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 20:29:57.501 [info] <0.5604.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 20:29:57.501 [warning] <0.5603.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 20:29:57.501 [info] <0.5604.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.5604.0> +2014-07-16 20:29:57.502 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.5603.0> +2014-07-16 20:30:01.713 [error] emulator Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gcounter],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-'... + + +2014-07-16 20:30:01.713 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gcounter],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:30:01.714 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 20:30:01.769 [info] <0.9952.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 20:30:01.769 [info] <0.9952.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 20:30:01.769 [warning] <0.9951.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 20:30:01.769 [info] <0.9952.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.9952.0> +2014-07-16 20:30:01.770 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.9951.0> +2014-07-16 20:30:06.097 [error] emulator Error in process <0.9952.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,4231},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:30:06.097 [error] <0.9951.0>@basho_bench_worker:handle_info:149 Worker <0.9952.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,4231},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:30:06.103 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.9951.0> exit with reason normal in context child_terminated +2014-07-16 20:30:06.150 [info] <0.14396.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 20:30:06.150 [info] <0.14396.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 20:30:06.150 [warning] <0.14395.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 20:30:06.151 [info] <0.14396.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.14396.0> +2014-07-16 20:30:06.151 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.14395.0> +2014-07-16 20:30:06.903 [error] emulator Error in process <0.5604.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,6510},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:30:06.903 [error] <0.5603.0>@basho_bench_worker:handle_info:149 Worker <0.5604.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,6510},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:30:06.909 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.5603.0> exit with reason normal in context child_terminated +2014-07-16 20:30:06.959 [info] <0.15205.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 20:30:06.959 [info] <0.15205.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 20:30:06.959 [warning] <0.15204.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 20:30:06.959 [info] <0.15205.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.15205.0> +2014-07-16 20:30:06.960 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.15204.0> +2014-07-16 20:30:12.241 [error] emulator Error in process <0.14396.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,503},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:30:12.241 [error] <0.14395.0>@basho_bench_worker:handle_info:149 Worker <0.14396.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,503},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:30:12.242 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.14395.0> exit with reason normal in context child_terminated +2014-07-16 20:30:12.309 [info] <0.20472.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 20:30:12.309 [info] <0.20472.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 20:30:12.309 [warning] <0.20470.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 20:30:12.309 [info] <0.20472.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.20472.0> +2014-07-16 20:30:12.310 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.20470.0> +2014-07-16 20:30:16.566 [error] emulator Error in process <0.15205.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,6983},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:30:16.566 [error] <0.15204.0>@basho_bench_worker:handle_info:149 Worker <0.15205.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,6983},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:30:16.567 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.15204.0> exit with reason normal in context child_terminated +2014-07-16 20:30:16.620 [info] <0.24713.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 20:30:16.620 [info] <0.24713.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 20:30:16.620 [warning] <0.24712.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 20:30:16.620 [info] <0.24713.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.24713.0> +2014-07-16 20:30:16.621 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.24712.0> +2014-07-16 20:30:20.482 [error] emulator Error in process <0.24713.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5403},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:30:20.482 [error] <0.24712.0>@basho_bench_worker:handle_info:149 Worker <0.24713.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5403},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:30:20.484 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.24712.0> exit with reason normal in context child_terminated +2014-07-16 20:30:20.538 [info] <0.28645.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 20:30:20.538 [info] <0.28645.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 20:30:20.538 [warning] <0.28644.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 20:30:20.538 [info] <0.28645.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.28645.0> +2014-07-16 20:30:20.539 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.28644.0> +2014-07-16 20:30:21.336 [error] emulator Error in process <0.20472.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,1860},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:30:21.336 [error] <0.20470.0>@basho_bench_worker:handle_info:149 Worker <0.20472.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,1860},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:30:21.337 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.20470.0> exit with reason normal in context child_terminated +2014-07-16 20:30:21.385 [info] <0.29486.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 20:30:21.385 [info] <0.29486.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 20:30:21.385 [warning] <0.29484.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 20:30:21.385 [info] <0.29486.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.29486.0> +2014-07-16 20:30:21.386 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.29484.0> +2014-07-16 20:30:25.199 [error] emulator Error in process <0.28645.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,2055},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:30:25.199 [error] <0.28644.0>@basho_bench_worker:handle_info:149 Worker <0.28645.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,2055},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:30:25.200 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.28644.0> exit with reason normal in context child_terminated +2014-07-16 20:30:25.254 [info] <0.575.1>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 20:30:25.254 [info] <0.575.1>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 20:30:25.254 [warning] <0.574.1>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 20:30:25.254 [info] <0.575.1>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.575.1> +2014-07-16 20:30:25.254 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.574.1> +2014-07-16 20:30:25.333 [error] emulator Error in process <0.29486.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,627},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:30:25.333 [error] <0.29484.0>@basho_bench_worker:handle_info:149 Worker <0.29486.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,627},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:30:25.334 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.29484.0> exit with reason normal in context child_terminated +2014-07-16 20:30:25.389 [info] <0.698.1>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 20:30:25.389 [info] <0.698.1>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 20:30:25.389 [warning] <0.697.1>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 20:30:25.389 [info] <0.698.1>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.698.1> +2014-07-16 20:30:25.390 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.697.1> +2014-07-16 20:30:25.798 [error] emulator Error in process <0.575.1> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,2438},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:30:25.798 [error] <0.574.1>@basho_bench_worker:handle_info:149 Worker <0.575.1> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,2438},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:30:25.805 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.574.1> exit with reason normal in context child_terminated +2014-07-16 20:30:25.806 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.574.1> exit with reason reached_max_restart_intensity in context shutdown +2014-07-16 20:30:25.826 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. diff --git a/newtests/20140716_202950/crash.log b/newtests/20140716_202950/crash.log new file mode 100644 index 000000000..2f49187fc --- /dev/null +++ b/newtests/20140716_202950/crash.log @@ -0,0 +1,105 @@ +2014-07-16 20:29:57 =ERROR REPORT==== +Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gset],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-'... + +2014-07-16 20:29:57 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 20:30:01 =ERROR REPORT==== +Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gcounter],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-'... + +2014-07-16 20:30:01 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 20:30:06 =ERROR REPORT==== +Error in process <0.9952.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,4231},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + +2014-07-16 20:30:06 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.9951.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 20:30:06 =ERROR REPORT==== +Error in process <0.5604.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,6510},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + +2014-07-16 20:30:06 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.5603.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 20:30:12 =ERROR REPORT==== +Error in process <0.14396.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,503},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + +2014-07-16 20:30:12 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.14395.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 20:30:16 =ERROR REPORT==== +Error in process <0.15205.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,6983},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + +2014-07-16 20:30:16 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.15204.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 20:30:20 =ERROR REPORT==== +Error in process <0.24713.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5403},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + +2014-07-16 20:30:20 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.24712.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 20:30:21 =ERROR REPORT==== +Error in process <0.20472.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,1860},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + +2014-07-16 20:30:21 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.20470.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 20:30:25 =ERROR REPORT==== +Error in process <0.28645.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,2055},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + +2014-07-16 20:30:25 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.28644.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 20:30:25 =ERROR REPORT==== +Error in process <0.29486.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,627},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + +2014-07-16 20:30:25 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.29484.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 20:30:25 =ERROR REPORT==== +Error in process <0.575.1> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,2438},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + +2014-07-16 20:30:25 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.574.1>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 20:30:25 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.574.1>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140716_202950/error.log b/newtests/20140716_202950/error.log new file mode 100644 index 000000000..27a4bc0ff --- /dev/null +++ b/newtests/20140716_202950/error.log @@ -0,0 +1,56 @@ +2014-07-16 20:29:57.439 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gset],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:29:57.439 [error] emulator Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gset],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-'... + + +2014-07-16 20:29:57.440 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-16 20:30:01.713 [error] emulator Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gcounter],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-'... + + +2014-07-16 20:30:01.713 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gcounter],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:30:01.714 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 20:30:06.097 [error] emulator Error in process <0.9952.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,4231},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:30:06.097 [error] <0.9951.0>@basho_bench_worker:handle_info:149 Worker <0.9952.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,4231},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:30:06.103 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.9951.0> exit with reason normal in context child_terminated +2014-07-16 20:30:06.903 [error] emulator Error in process <0.5604.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,6510},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:30:06.903 [error] <0.5603.0>@basho_bench_worker:handle_info:149 Worker <0.5604.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,6510},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:30:06.909 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.5603.0> exit with reason normal in context child_terminated +2014-07-16 20:30:12.241 [error] emulator Error in process <0.14396.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,503},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:30:12.241 [error] <0.14395.0>@basho_bench_worker:handle_info:149 Worker <0.14396.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,503},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:30:12.242 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.14395.0> exit with reason normal in context child_terminated +2014-07-16 20:30:16.566 [error] emulator Error in process <0.15205.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,6983},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:30:16.566 [error] <0.15204.0>@basho_bench_worker:handle_info:149 Worker <0.15205.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,6983},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:30:16.567 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.15204.0> exit with reason normal in context child_terminated +2014-07-16 20:30:20.482 [error] emulator Error in process <0.24713.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5403},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:30:20.482 [error] <0.24712.0>@basho_bench_worker:handle_info:149 Worker <0.24713.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5403},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:30:20.484 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.24712.0> exit with reason normal in context child_terminated +2014-07-16 20:30:21.336 [error] emulator Error in process <0.20472.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,1860},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:30:21.336 [error] <0.20470.0>@basho_bench_worker:handle_info:149 Worker <0.20472.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,1860},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:30:21.337 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.20470.0> exit with reason normal in context child_terminated +2014-07-16 20:30:25.199 [error] emulator Error in process <0.28645.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,2055},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:30:25.199 [error] <0.28644.0>@basho_bench_worker:handle_info:149 Worker <0.28645.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,2055},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:30:25.200 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.28644.0> exit with reason normal in context child_terminated +2014-07-16 20:30:25.333 [error] emulator Error in process <0.29486.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,627},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:30:25.333 [error] <0.29484.0>@basho_bench_worker:handle_info:149 Worker <0.29486.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,627},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:30:25.334 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.29484.0> exit with reason normal in context child_terminated +2014-07-16 20:30:25.798 [error] emulator Error in process <0.575.1> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,2438},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:30:25.798 [error] <0.574.1>@basho_bench_worker:handle_info:149 Worker <0.575.1> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,2438},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:30:25.805 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.574.1> exit with reason normal in context child_terminated +2014-07-16 20:30:25.806 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.574.1> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_202950/errors.csv b/newtests/20140716_202950/errors.csv new file mode 100644 index 000000000..29210b502 --- /dev/null +++ b/newtests/20140716_202950/errors.csv @@ -0,0 +1 @@ +"error","count" diff --git a/newtests/20140716_202950/floppstore.config b/newtests/20140716_202950/floppstore.config new file mode 100644 index 000000000..55db32761 --- /dev/null +++ b/newtests/20140716_202950/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. + +{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. + +{operations, [{append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_202950/log.sasl.txt b/newtests/20140716_202950/log.sasl.txt new file mode 100644 index 000000000..d1f2ea6fe --- /dev/null +++ b/newtests/20140716_202950/log.sasl.txt @@ -0,0 +1,461 @@ + +=PROGRESS REPORT==== 16-Jul-2014::20:29:51 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:29:51 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:29:51 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::20:29:51 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:29:51 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::20:29:51 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:29:51 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::20:29:52 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::20:29:52 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:29:52 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:29:52 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::20:29:52 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:29:52 === + supervisor: {local,net_sup} + started: [{pid,<0.97.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:29:52 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:29:52 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:29:52 === + supervisor: {local,kernel_sup} + started: [{pid,<0.96.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::20:29:52 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 16-Jul-2014::20:29:52 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.103.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:29:52 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:29:52 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:29:52 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.109.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:29:52 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 16-Jul-2014::20:29:57 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::20:29:57 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.5603.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::20:30:01 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::20:30:01 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.9951.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::20:30:06 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.9951.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::20:30:06 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.14395.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::20:30:06 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.5603.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::20:30:06 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.15204.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::20:30:12 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.14395.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::20:30:12 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.20470.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::20:30:16 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.15204.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::20:30:16 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.24712.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::20:30:20 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.24712.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::20:30:20 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.28644.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::20:30:21 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.20470.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::20:30:21 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.29484.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::20:30:25 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.28644.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::20:30:25 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.574.1>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::20:30:25 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.29484.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::20:30:25 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.697.1>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::20:30:25 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.574.1>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 16-Jul-2014::20:30:25 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.574.1>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140716_202950/read_latencies.csv b/newtests/20140716_202950/read_latencies.csv new file mode 100644 index 000000000..33378e216 --- /dev/null +++ b/newtests/20140716_202950/read_latencies.csv @@ -0,0 +1,5 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +10.000722, 10.000722, 5210, 857, 1805.1, 1559, 2715, 4084, 11226, 16536, 0 +20.0017, 10.000978, 4998, 934, 1858.6, 1635, 2814, 3587, 10542, 14673, 0 +30.001687, 9.999987, 4965, 929, 1867.2, 1654, 2786, 3412, 10812, 23261, 0 +33.572753, 3.571066, 1799, 929, 1845.0, 1626, 2758, 3655, 10812, 23261, 0 diff --git a/newtests/20140716_202950/summary.csv b/newtests/20140716_202950/summary.csv new file mode 100644 index 000000000..b4a8ff31d --- /dev/null +++ b/newtests/20140716_202950/summary.csv @@ -0,0 +1,5 @@ +elapsed, window, total, successful, failed +10.000722, 10.000722, 10364, 10364, 0 +20.0017, 10.000978, 9986, 9986, 0 +30.001687, 9.999987, 9905, 9905, 0 +33.572753, 3.571066, 3524, 3524, 0 diff --git a/newtests/20140716_203343/append_latencies.csv b/newtests/20140716_203343/append_latencies.csv new file mode 100644 index 000000000..75411b8b7 --- /dev/null +++ b/newtests/20140716_203343/append_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +10.001115, 10.001115, 5214, 1038, 1991.8, 1739, 2832, 4103, 16729, 34095, 0 diff --git a/newtests/20140716_203343/console.log b/newtests/20140716_203343/console.log new file mode 100644 index 000000000..28fe0ff39 --- /dev/null +++ b/newtests/20140716_203343/console.log @@ -0,0 +1,52 @@ +2014-07-16 20:33:43.710 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_203343/error.log"} into lager_event +2014-07-16 20:33:43.710 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_203343/console.log"} into lager_event +2014-07-16 20:33:43.710 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-16 20:33:43.746 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-16 20:33:43.746 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-16 20:33:43.746 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-16 20:33:43.746 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-16 20:33:44.182 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-16 20:33:44.610 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-16 20:33:44.611 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_203343/console.log to debug +2014-07-16 20:33:44.618 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} +2014-07-16 20:33:44.699 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-16 20:33:44.700 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-16 20:33:44.701 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-16 20:33:44.716 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-16 20:33:44.716 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-16 20:33:44.810 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-16 20:33:44.810 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-16 20:33:44.838 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-16 20:33:44.841 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-16 20:33:44.845 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-16 20:33:44.846 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-16 20:33:44.885 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-16 20:33:44.951 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> +2014-07-16 20:33:44.958 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> +2014-07-16 20:33:44.971 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-16 20:33:44.971 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> +2014-07-16 20:33:44.972 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> +2014-07-16 20:33:44.985 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> +2014-07-16 20:33:44.986 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> +2014-07-16 20:33:45.003 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 20:33:45.003 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 20:33:45.004 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-16 20:33:45.053 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 20:33:45.053 [info] <0.108.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 20:33:45.054 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> +2014-07-16 20:33:45.054 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> +2014-07-16 20:33:45.062 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> +2014-07-16 20:33:45.062 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> +2014-07-16 20:33:45.062 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-16 20:33:50.490 [error] emulator Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gcounter],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-'... + + +2014-07-16 20:33:50.490 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gcounter],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:33:50.491 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-16 20:33:50.535 [info] <0.5689.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 20:33:50.535 [info] <0.5689.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-16 20:33:50.535 [warning] <0.5688.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 20:33:50.535 [info] <0.5689.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.5689.0> +2014-07-16 20:33:50.536 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.5688.0> diff --git a/newtests/20140716_203343/crash.log b/newtests/20140716_203343/crash.log new file mode 100644 index 000000000..7f3bf9d15 --- /dev/null +++ b/newtests/20140716_203343/crash.log @@ -0,0 +1,9 @@ +2014-07-16 20:33:50 =ERROR REPORT==== +Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gcounter],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-'... + +2014-07-16 20:33:50 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140716_203343/error.log b/newtests/20140716_203343/error.log new file mode 100644 index 000000000..a1c9e068c --- /dev/null +++ b/newtests/20140716_203343/error.log @@ -0,0 +1,5 @@ +2014-07-16 20:33:50.490 [error] emulator Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gcounter],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-'... + + +2014-07-16 20:33:50.490 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gcounter],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:33:50.491 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated diff --git a/newtests/20140716_203343/errors.csv b/newtests/20140716_203343/errors.csv new file mode 100644 index 000000000..29210b502 --- /dev/null +++ b/newtests/20140716_203343/errors.csv @@ -0,0 +1 @@ +"error","count" diff --git a/newtests/20140716_203343/floppstore.config b/newtests/20140716_203343/floppstore.config new file mode 100644 index 000000000..55db32761 --- /dev/null +++ b/newtests/20140716_203343/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. + +{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. + +{operations, [{append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_203343/log.sasl.txt b/newtests/20140716_203343/log.sasl.txt new file mode 100644 index 000000000..7c02b9daf --- /dev/null +++ b/newtests/20140716_203343/log.sasl.txt @@ -0,0 +1,208 @@ + +=PROGRESS REPORT==== 16-Jul-2014::20:33:44 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:33:44 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:33:44 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::20:33:44 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:33:44 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::20:33:44 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:33:44 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::20:33:44 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::20:33:44 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:33:44 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:33:44 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::20:33:44 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:33:44 === + supervisor: {local,net_sup} + started: [{pid,<0.97.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:33:44 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:33:44 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:33:44 === + supervisor: {local,kernel_sup} + started: [{pid,<0.96.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::20:33:44 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 16-Jul-2014::20:33:44 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.103.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:33:45 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:33:45 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:33:45 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.109.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:33:45 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 16-Jul-2014::20:33:50 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::20:33:50 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.5688.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] diff --git a/newtests/20140716_203343/read_latencies.csv b/newtests/20140716_203343/read_latencies.csv new file mode 100644 index 000000000..4159fb699 --- /dev/null +++ b/newtests/20140716_203343/read_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +10.001115, 10.001115, 5214, 936, 1796.5, 1558, 2631, 3616, 11995, 27396, 0 diff --git a/newtests/20140716_203343/summary.csv b/newtests/20140716_203343/summary.csv new file mode 100644 index 000000000..08f6b4a64 --- /dev/null +++ b/newtests/20140716_203343/summary.csv @@ -0,0 +1,2 @@ +elapsed, window, total, successful, failed +10.001115, 10.001115, 10428, 10428, 0 diff --git a/newtests/20140716_203731/append_latencies.csv b/newtests/20140716_203731/append_latencies.csv new file mode 100644 index 000000000..2390c4025 --- /dev/null +++ b/newtests/20140716_203731/append_latencies.csv @@ -0,0 +1,4 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +10.000141, 10.000141, 4299, 801, 1207.5, 1164, 1448, 2316, 6432, 33151, 0 +20.001154, 10.001013, 4243, 797, 1183.9, 1165, 1476, 1751, 2201, 3601, 0 +26.188973, 6.187819, 2616, 797, 1184.4, 1166, 1443, 1712, 2733, 4770, 0 diff --git a/newtests/20140716_203731/console.log b/newtests/20140716_203731/console.log new file mode 100644 index 000000000..a3e522413 --- /dev/null +++ b/newtests/20140716_203731/console.log @@ -0,0 +1,105 @@ +2014-07-16 20:37:31.294 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_203731/error.log"} into lager_event +2014-07-16 20:37:31.294 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_203731/console.log"} into lager_event +2014-07-16 20:37:31.294 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-16 20:37:31.330 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-16 20:37:31.330 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-16 20:37:31.330 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-16 20:37:31.330 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-16 20:37:31.771 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-16 20:37:32.150 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-16 20:37:32.151 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_203731/console.log to debug +2014-07-16 20:37:32.158 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} +2014-07-16 20:37:32.238 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-16 20:37:32.239 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-16 20:37:32.239 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-16 20:37:32.253 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-16 20:37:32.253 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-16 20:37:32.343 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-16 20:37:32.343 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-16 20:37:32.372 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-16 20:37:32.378 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-16 20:37:32.384 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-16 20:37:32.384 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-16 20:37:32.420 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-16 20:37:32.489 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> +2014-07-16 20:37:32.496 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> +2014-07-16 20:37:32.513 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-16 20:37:32.513 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> +2014-07-16 20:37:32.514 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> +2014-07-16 20:37:32.530 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> +2014-07-16 20:37:32.531 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> +2014-07-16 20:37:32.548 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 20:37:32.548 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 20:37:32.549 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-16 20:37:32.549 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.107.0> +2014-07-16 20:37:32.556 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> +2014-07-16 20:37:32.557 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-16 20:37:43.401 [error] emulator Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gcounter],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-'... + + +2014-07-16 20:37:43.402 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gcounter],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:37:43.402 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 20:37:43.444 [info] <0.9526.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 20:37:43.444 [info] <0.9526.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 20:37:43.444 [warning] <0.9525.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 20:37:43.444 [info] <0.9526.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.9526.0> +2014-07-16 20:37:43.445 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.9525.0> +2014-07-16 20:37:51.631 [error] <0.9525.0>@basho_bench_worker:handle_info:149 Worker <0.9526.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,7781},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:37:51.631 [error] emulator Error in process <0.9526.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,7781},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:37:51.632 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.9525.0> exit with reason normal in context child_terminated +2014-07-16 20:37:51.659 [info] <0.16630.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 20:37:51.659 [info] <0.16630.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 20:37:51.659 [warning] <0.16629.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 20:37:51.659 [info] <0.16630.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.16630.0> +2014-07-16 20:37:51.659 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.16629.0> +2014-07-16 20:37:54.256 [error] emulator Error in process <0.16630.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,7619},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:37:54.256 [error] <0.16629.0>@basho_bench_worker:handle_info:149 Worker <0.16630.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,7619},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:37:54.257 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.16629.0> exit with reason normal in context child_terminated +2014-07-16 20:37:54.289 [info] <0.18880.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 20:37:54.289 [info] <0.18880.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 20:37:54.289 [warning] <0.18879.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 20:37:54.289 [info] <0.18880.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.18880.0> +2014-07-16 20:37:54.289 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.18879.0> +2014-07-16 20:37:55.235 [error] emulator Error in process <0.18880.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gset],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-'... + + +2014-07-16 20:37:55.235 [error] <0.18879.0>@basho_bench_worker:handle_info:149 Worker <0.18880.0> exited with {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gset],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:37:55.236 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.18879.0> exit with reason normal in context child_terminated +2014-07-16 20:37:55.266 [info] <0.19755.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 20:37:55.266 [info] <0.19755.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 20:37:55.266 [warning] <0.19754.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 20:37:55.266 [info] <0.19755.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.19755.0> +2014-07-16 20:37:55.266 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.19754.0> +2014-07-16 20:37:56.374 [error] emulator Error in process <0.19755.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,3579},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:37:56.374 [error] <0.19754.0>@basho_bench_worker:handle_info:149 Worker <0.19755.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,3579},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:37:56.374 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.19754.0> exit with reason normal in context child_terminated +2014-07-16 20:37:56.412 [info] <0.20686.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 20:37:56.412 [info] <0.20686.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 20:37:56.412 [warning] <0.20685.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 20:37:56.412 [info] <0.20686.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.20686.0> +2014-07-16 20:37:56.412 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.20685.0> +2014-07-16 20:37:56.426 [error] emulator Error in process <0.20686.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,7092},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:37:56.426 [error] <0.20685.0>@basho_bench_worker:handle_info:149 Worker <0.20686.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,7092},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:37:56.427 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.20685.0> exit with reason normal in context child_terminated +2014-07-16 20:37:56.464 [info] <0.20699.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 20:37:56.464 [info] <0.20699.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 20:37:56.465 [warning] <0.20698.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 20:37:56.465 [info] <0.20699.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.20699.0> +2014-07-16 20:37:56.465 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.20698.0> +2014-07-16 20:37:58.737 [error] emulator Error in process <0.20699.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5784},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:37:58.737 [error] <0.20698.0>@basho_bench_worker:handle_info:149 Worker <0.20699.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5784},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:37:58.738 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.20698.0> exit with reason normal in context child_terminated +2014-07-16 20:37:58.739 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.20698.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-16 20:37:58.754 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. diff --git a/newtests/20140716_203731/crash.log b/newtests/20140716_203731/crash.log new file mode 100644 index 000000000..3e08ee527 --- /dev/null +++ b/newtests/20140716_203731/crash.log @@ -0,0 +1,69 @@ +2014-07-16 20:37:43 =ERROR REPORT==== +Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gcounter],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-'... + +2014-07-16 20:37:43 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 20:37:51 =ERROR REPORT==== +Error in process <0.9526.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,7781},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + +2014-07-16 20:37:51 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.9525.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 20:37:54 =ERROR REPORT==== +Error in process <0.16630.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,7619},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + +2014-07-16 20:37:54 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.16629.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 20:37:55 =ERROR REPORT==== +Error in process <0.18880.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gset],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-'... + +2014-07-16 20:37:55 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.18879.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 20:37:56 =ERROR REPORT==== +Error in process <0.19755.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,3579},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + +2014-07-16 20:37:56 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.19754.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 20:37:56 =ERROR REPORT==== +Error in process <0.20686.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,7092},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + +2014-07-16 20:37:56 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.20685.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 20:37:58 =ERROR REPORT==== +Error in process <0.20699.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5784},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + +2014-07-16 20:37:58 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.20698.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 20:37:58 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.20698.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140716_203731/error.log b/newtests/20140716_203731/error.log new file mode 100644 index 000000000..f382cd6f7 --- /dev/null +++ b/newtests/20140716_203731/error.log @@ -0,0 +1,36 @@ +2014-07-16 20:37:43.401 [error] emulator Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gcounter],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-'... + + +2014-07-16 20:37:43.402 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gcounter],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:37:43.402 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 20:37:51.631 [error] <0.9525.0>@basho_bench_worker:handle_info:149 Worker <0.9526.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,7781},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:37:51.631 [error] emulator Error in process <0.9526.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,7781},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:37:51.632 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.9525.0> exit with reason normal in context child_terminated +2014-07-16 20:37:54.256 [error] emulator Error in process <0.16630.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,7619},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:37:54.256 [error] <0.16629.0>@basho_bench_worker:handle_info:149 Worker <0.16630.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,7619},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:37:54.257 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.16629.0> exit with reason normal in context child_terminated +2014-07-16 20:37:55.235 [error] emulator Error in process <0.18880.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gset],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-'... + + +2014-07-16 20:37:55.235 [error] <0.18879.0>@basho_bench_worker:handle_info:149 Worker <0.18880.0> exited with {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gset],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:37:55.236 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.18879.0> exit with reason normal in context child_terminated +2014-07-16 20:37:56.374 [error] emulator Error in process <0.19755.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,3579},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:37:56.374 [error] <0.19754.0>@basho_bench_worker:handle_info:149 Worker <0.19755.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,3579},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:37:56.374 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.19754.0> exit with reason normal in context child_terminated +2014-07-16 20:37:56.426 [error] emulator Error in process <0.20686.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,7092},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:37:56.426 [error] <0.20685.0>@basho_bench_worker:handle_info:149 Worker <0.20686.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,7092},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:37:56.427 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.20685.0> exit with reason normal in context child_terminated +2014-07-16 20:37:58.737 [error] emulator Error in process <0.20699.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5784},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:37:58.737 [error] <0.20698.0>@basho_bench_worker:handle_info:149 Worker <0.20699.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5784},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:37:58.738 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.20698.0> exit with reason normal in context child_terminated +2014-07-16 20:37:58.739 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.20698.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_203731/errors.csv b/newtests/20140716_203731/errors.csv new file mode 100644 index 000000000..29210b502 --- /dev/null +++ b/newtests/20140716_203731/errors.csv @@ -0,0 +1 @@ +"error","count" diff --git a/newtests/20140716_203731/floppstore.config b/newtests/20140716_203731/floppstore.config new file mode 100644 index 000000000..ff45d1b34 --- /dev/null +++ b/newtests/20140716_203731/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 1}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. + +{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. + +{operations, [{append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_203731/log.sasl.txt b/newtests/20140716_203731/log.sasl.txt new file mode 100644 index 000000000..76bbe1c24 --- /dev/null +++ b/newtests/20140716_203731/log.sasl.txt @@ -0,0 +1,350 @@ + +=PROGRESS REPORT==== 16-Jul-2014::20:37:32 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:37:32 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:37:32 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::20:37:32 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:37:32 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::20:37:32 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:37:32 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::20:37:32 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::20:37:32 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:37:32 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:37:32 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::20:37:32 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:37:32 === + supervisor: {local,net_sup} + started: [{pid,<0.97.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:37:32 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:37:32 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:37:32 === + supervisor: {local,kernel_sup} + started: [{pid,<0.96.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::20:37:32 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 16-Jul-2014::20:37:32 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.103.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:37:32 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:37:32 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.107.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:37:32 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 16-Jul-2014::20:37:43 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::20:37:43 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.9525.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::20:37:51 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.9525.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::20:37:51 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.16629.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::20:37:54 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.16629.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::20:37:54 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.18879.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::20:37:55 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.18879.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::20:37:55 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.19754.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::20:37:56 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.19754.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::20:37:56 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.20685.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::20:37:56 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.20685.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::20:37:56 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.20698.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::20:37:58 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.20698.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 16-Jul-2014::20:37:58 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.20698.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140716_203731/read_latencies.csv b/newtests/20140716_203731/read_latencies.csv new file mode 100644 index 000000000..ae5f7f342 --- /dev/null +++ b/newtests/20140716_203731/read_latencies.csv @@ -0,0 +1,4 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +10.000141, 10.000141, 4354, 720, 1063.7, 1034, 1294, 1578, 5407, 11281, 0 +20.001154, 10.001013, 4387, 705, 1068.1, 1047, 1324, 1614, 2403, 7705, 0 +26.188973, 6.187819, 2600, 705, 1066.4, 1049, 1307, 1512, 2176, 3205, 0 diff --git a/newtests/20140716_203731/summary.csv b/newtests/20140716_203731/summary.csv new file mode 100644 index 000000000..5d923be9c --- /dev/null +++ b/newtests/20140716_203731/summary.csv @@ -0,0 +1,4 @@ +elapsed, window, total, successful, failed +10.000141, 10.000141, 8653, 8653, 0 +20.001154, 10.001013, 8630, 8630, 0 +26.188973, 6.187819, 5216, 5216, 0 diff --git a/newtests/20140716_204925/append_latencies.csv b/newtests/20140716_204925/append_latencies.csv new file mode 100644 index 000000000..9ec51711b --- /dev/null +++ b/newtests/20140716_204925/append_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.320309, 0.320309, 10, 1381, 7403.6, 1920, 34991, 34991, 34991, 34991, 0 diff --git a/newtests/20140716_204925/console.log b/newtests/20140716_204925/console.log new file mode 100644 index 000000000..bf858e5b2 --- /dev/null +++ b/newtests/20140716_204925/console.log @@ -0,0 +1,96 @@ +2014-07-16 20:49:25.916 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_204925/error.log"} into lager_event +2014-07-16 20:49:25.916 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_204925/console.log"} into lager_event +2014-07-16 20:49:25.916 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-16 20:49:25.950 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-16 20:49:25.950 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-16 20:49:25.950 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-16 20:49:25.950 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-16 20:49:26.387 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-16 20:49:26.742 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-16 20:49:26.743 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_204925/console.log to debug +2014-07-16 20:49:26.749 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} +2014-07-16 20:49:26.831 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-16 20:49:26.832 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-16 20:49:26.832 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-16 20:49:26.845 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-16 20:49:26.845 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-16 20:49:26.932 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-16 20:49:26.932 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-16 20:49:26.960 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-16 20:49:26.965 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-16 20:49:26.971 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-16 20:49:26.971 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-16 20:49:27.012 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-16 20:49:27.078 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> +2014-07-16 20:49:27.085 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> +2014-07-16 20:49:27.099 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-16 20:49:27.099 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> +2014-07-16 20:49:27.100 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> +2014-07-16 20:49:27.115 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> +2014-07-16 20:49:27.115 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> +2014-07-16 20:49:27.135 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 20:49:27.135 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 20:49:27.135 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-16 20:49:27.136 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.107.0> +2014-07-16 20:49:27.143 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> +2014-07-16 20:49:27.143 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-16 20:49:27.196 [error] emulator Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 20:49:27.196 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:49:27.197 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 20:49:27.232 [info] <0.112.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 20:49:27.232 [info] <0.112.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 20:49:27.232 [warning] <0.111.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 20:49:27.232 [info] <0.112.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.112.0> +2014-07-16 20:49:27.232 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.111.0> +2014-07-16 20:49:27.245 [error] emulator Error in process <0.112.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 20:49:27.245 [error] <0.111.0>@basho_bench_worker:handle_info:149 Worker <0.112.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:49:27.245 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.111.0> exit with reason normal in context child_terminated +2014-07-16 20:49:27.273 [info] <0.117.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 20:49:27.273 [info] <0.117.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 20:49:27.273 [warning] <0.116.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 20:49:27.273 [info] <0.117.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.117.0> +2014-07-16 20:49:27.274 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.116.0> +2014-07-16 20:49:27.281 [error] emulator Error in process <0.117.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 20:49:27.281 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:49:27.281 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason normal in context child_terminated +2014-07-16 20:49:27.319 [info] <0.121.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 20:49:27.319 [info] <0.121.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 20:49:27.319 [warning] <0.120.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 20:49:27.319 [info] <0.121.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.121.0> +2014-07-16 20:49:27.320 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.120.0> +2014-07-16 20:49:27.343 [error] emulator Error in process <0.121.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 20:49:27.343 [error] <0.120.0>@basho_bench_worker:handle_info:149 Worker <0.121.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:49:27.343 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.120.0> exit with reason normal in context child_terminated +2014-07-16 20:49:27.390 [info] <0.127.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 20:49:27.390 [info] <0.127.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 20:49:27.390 [warning] <0.126.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 20:49:27.390 [info] <0.127.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.127.0> +2014-07-16 20:49:27.390 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.126.0> +2014-07-16 20:49:27.399 [error] <0.126.0>@basho_bench_worker:handle_info:149 Worker <0.127.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:49:27.399 [error] emulator Error in process <0.127.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 20:49:27.400 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.126.0> exit with reason normal in context child_terminated +2014-07-16 20:49:27.445 [info] <0.131.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 20:49:27.445 [info] <0.131.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 20:49:27.445 [warning] <0.130.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 20:49:27.445 [info] <0.131.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.131.0> +2014-07-16 20:49:27.446 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.130.0> +2014-07-16 20:49:27.455 [error] emulator Error in process <0.131.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 20:49:27.455 [error] <0.130.0>@basho_bench_worker:handle_info:149 Worker <0.131.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:49:27.456 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.130.0> exit with reason normal in context child_terminated +2014-07-16 20:49:27.456 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.130.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-16 20:49:27.465 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} +2014-07-16 20:49:27.466 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. diff --git a/newtests/20140716_204925/crash.log b/newtests/20140716_204925/crash.log new file mode 100644 index 000000000..811c35c6b --- /dev/null +++ b/newtests/20140716_204925/crash.log @@ -0,0 +1,60 @@ +2014-07-16 20:49:27 =ERROR REPORT==== +Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + +2014-07-16 20:49:27 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 20:49:27 =ERROR REPORT==== +Error in process <0.112.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + +2014-07-16 20:49:27 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.111.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 20:49:27 =ERROR REPORT==== +Error in process <0.117.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + +2014-07-16 20:49:27 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.116.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 20:49:27 =ERROR REPORT==== +Error in process <0.121.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + +2014-07-16 20:49:27 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.120.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 20:49:27 =ERROR REPORT==== +Error in process <0.127.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + +2014-07-16 20:49:27 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.126.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 20:49:27 =ERROR REPORT==== +Error in process <0.131.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + +2014-07-16 20:49:27 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.130.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 20:49:27 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.130.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140716_204925/error.log b/newtests/20140716_204925/error.log new file mode 100644 index 000000000..03f02e917 --- /dev/null +++ b/newtests/20140716_204925/error.log @@ -0,0 +1,31 @@ +2014-07-16 20:49:27.196 [error] emulator Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 20:49:27.196 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:49:27.197 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 20:49:27.245 [error] emulator Error in process <0.112.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 20:49:27.245 [error] <0.111.0>@basho_bench_worker:handle_info:149 Worker <0.112.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:49:27.245 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.111.0> exit with reason normal in context child_terminated +2014-07-16 20:49:27.281 [error] emulator Error in process <0.117.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 20:49:27.281 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:49:27.281 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason normal in context child_terminated +2014-07-16 20:49:27.343 [error] emulator Error in process <0.121.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 20:49:27.343 [error] <0.120.0>@basho_bench_worker:handle_info:149 Worker <0.121.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:49:27.343 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.120.0> exit with reason normal in context child_terminated +2014-07-16 20:49:27.399 [error] <0.126.0>@basho_bench_worker:handle_info:149 Worker <0.127.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:49:27.399 [error] emulator Error in process <0.127.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 20:49:27.400 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.126.0> exit with reason normal in context child_terminated +2014-07-16 20:49:27.455 [error] emulator Error in process <0.131.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... + + +2014-07-16 20:49:27.455 [error] <0.130.0>@basho_bench_worker:handle_info:149 Worker <0.131.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:49:27.456 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.130.0> exit with reason normal in context child_terminated +2014-07-16 20:49:27.456 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.130.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_204925/errors.csv b/newtests/20140716_204925/errors.csv new file mode 100644 index 000000000..29210b502 --- /dev/null +++ b/newtests/20140716_204925/errors.csv @@ -0,0 +1 @@ +"error","count" diff --git a/newtests/20140716_204925/floppstore.config b/newtests/20140716_204925/floppstore.config new file mode 100644 index 000000000..ff45d1b34 --- /dev/null +++ b/newtests/20140716_204925/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 1}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. + +{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. + +{operations, [{append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_204925/log.sasl.txt b/newtests/20140716_204925/log.sasl.txt new file mode 100644 index 000000000..22eb452a0 --- /dev/null +++ b/newtests/20140716_204925/log.sasl.txt @@ -0,0 +1,325 @@ + +=PROGRESS REPORT==== 16-Jul-2014::20:49:26 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:49:26 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:49:26 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::20:49:26 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:49:26 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::20:49:26 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:49:26 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::20:49:26 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::20:49:26 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:49:26 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:49:26 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::20:49:27 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:49:27 === + supervisor: {local,net_sup} + started: [{pid,<0.97.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:49:27 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:49:27 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:49:27 === + supervisor: {local,kernel_sup} + started: [{pid,<0.96.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::20:49:27 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 16-Jul-2014::20:49:27 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.103.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:49:27 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:49:27 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.107.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:49:27 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 16-Jul-2014::20:49:27 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::20:49:27 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.111.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::20:49:27 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.111.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::20:49:27 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.116.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::20:49:27 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.116.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::20:49:27 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.120.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::20:49:27 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.120.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::20:49:27 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.126.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::20:49:27 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.126.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::20:49:27 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.130.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::20:49:27 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.130.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 16-Jul-2014::20:49:27 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.130.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140716_204925/read_latencies.csv b/newtests/20140716_204925/read_latencies.csv new file mode 100644 index 000000000..9c4399063 --- /dev/null +++ b/newtests/20140716_204925/read_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.320309, 0.320309, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140716_204925/summary.csv b/newtests/20140716_204925/summary.csv new file mode 100644 index 000000000..539ff87ea --- /dev/null +++ b/newtests/20140716_204925/summary.csv @@ -0,0 +1,2 @@ +elapsed, window, total, successful, failed +0.320309, 0.320309, 10, 10, 0 diff --git a/newtests/20140716_205022/append_latencies.csv b/newtests/20140716_205022/append_latencies.csv new file mode 100644 index 000000000..779b683ce --- /dev/null +++ b/newtests/20140716_205022/append_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +10.000267, 10.000267, 4161, 801, 1288.3, 1154, 1551, 6815, 14415, 28462, 0 diff --git a/newtests/20140716_205022/console.log b/newtests/20140716_205022/console.log new file mode 100644 index 000000000..276fc8d18 --- /dev/null +++ b/newtests/20140716_205022/console.log @@ -0,0 +1,88 @@ +2014-07-16 20:50:23.016 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_205022/error.log"} into lager_event +2014-07-16 20:50:23.016 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_205022/console.log"} into lager_event +2014-07-16 20:50:23.016 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-16 20:50:23.049 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-16 20:50:23.049 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-16 20:50:23.050 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-16 20:50:23.050 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-16 20:50:23.489 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-16 20:50:23.842 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-16 20:50:23.844 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_205022/console.log to debug +2014-07-16 20:50:23.850 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} +2014-07-16 20:50:23.928 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-16 20:50:23.929 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-16 20:50:23.929 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-16 20:50:23.942 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-16 20:50:23.943 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-16 20:50:24.022 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-16 20:50:24.023 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-16 20:50:24.048 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-16 20:50:24.052 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-16 20:50:24.056 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-16 20:50:24.057 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-16 20:50:24.095 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-16 20:50:24.156 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> +2014-07-16 20:50:24.163 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> +2014-07-16 20:50:24.176 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-16 20:50:24.176 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> +2014-07-16 20:50:24.177 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> +2014-07-16 20:50:24.192 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> +2014-07-16 20:50:24.192 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> +2014-07-16 20:50:24.206 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 20:50:24.206 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 20:50:24.207 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-16 20:50:24.207 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.107.0> +2014-07-16 20:50:24.213 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> +2014-07-16 20:50:24.213 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-16 20:50:29.410 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gset],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:50:29.410 [error] emulator Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gset],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-'... + + +2014-07-16 20:50:29.411 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 20:50:29.440 [info] <0.4181.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 20:50:29.440 [info] <0.4181.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 20:50:29.440 [warning] <0.4180.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 20:50:29.440 [info] <0.4181.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.4181.0> +2014-07-16 20:50:29.440 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.4180.0> +2014-07-16 20:50:32.067 [error] emulator Error in process <0.4181.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,8102},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:50:32.068 [error] <0.4180.0>@basho_bench_worker:handle_info:149 Worker <0.4181.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,8102},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:50:32.068 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.4180.0> exit with reason normal in context child_terminated +2014-07-16 20:50:32.103 [info] <0.6580.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 20:50:32.103 [info] <0.6580.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 20:50:32.103 [warning] <0.6579.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 20:50:32.103 [info] <0.6580.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.6580.0> +2014-07-16 20:50:32.103 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.6579.0> +2014-07-16 20:50:32.725 [error] emulator Error in process <0.6580.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,560},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:50:32.725 [error] <0.6579.0>@basho_bench_worker:handle_info:149 Worker <0.6580.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,560},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:50:32.732 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.6579.0> exit with reason normal in context child_terminated +2014-07-16 20:50:32.763 [info] <0.7132.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 20:50:32.763 [info] <0.7132.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 20:50:32.763 [warning] <0.7131.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 20:50:32.763 [info] <0.7132.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.7132.0> +2014-07-16 20:50:32.763 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.7131.0> +2014-07-16 20:50:38.337 [error] emulator Error in process <0.7132.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gset],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-'... + + +2014-07-16 20:50:38.337 [error] <0.7131.0>@basho_bench_worker:handle_info:149 Worker <0.7132.0> exited with {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gset],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:50:38.338 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.7131.0> exit with reason normal in context child_terminated +2014-07-16 20:50:38.382 [info] <0.12038.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 20:50:38.382 [info] <0.12038.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 20:50:38.382 [warning] <0.12037.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 20:50:38.382 [info] <0.12038.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.12038.0> +2014-07-16 20:50:38.383 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.12037.0> +2014-07-16 20:50:38.430 [error] <0.12037.0>@basho_bench_worker:handle_info:149 Worker <0.12038.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,7745},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:50:38.430 [error] emulator Error in process <0.12038.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,7745},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:50:38.431 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.12037.0> exit with reason normal in context child_terminated +2014-07-16 20:50:38.463 [info] <0.12072.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 20:50:38.463 [info] <0.12072.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 20:50:38.463 [warning] <0.12071.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 20:50:38.463 [info] <0.12072.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.12072.0> +2014-07-16 20:50:38.464 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.12071.0> diff --git a/newtests/20140716_205022/crash.log b/newtests/20140716_205022/crash.log new file mode 100644 index 000000000..6c45d11f5 --- /dev/null +++ b/newtests/20140716_205022/crash.log @@ -0,0 +1,45 @@ +2014-07-16 20:50:29 =ERROR REPORT==== +Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gset],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-'... + +2014-07-16 20:50:29 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 20:50:32 =ERROR REPORT==== +Error in process <0.4181.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,8102},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + +2014-07-16 20:50:32 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.4180.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 20:50:32 =ERROR REPORT==== +Error in process <0.6580.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,560},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + +2014-07-16 20:50:32 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.6579.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 20:50:38 =ERROR REPORT==== +Error in process <0.7132.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gset],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-'... + +2014-07-16 20:50:38 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.7131.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 20:50:38 =ERROR REPORT==== +Error in process <0.12038.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,7745},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + +2014-07-16 20:50:38 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.12037.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140716_205022/error.log b/newtests/20140716_205022/error.log new file mode 100644 index 000000000..cb23e469c --- /dev/null +++ b/newtests/20140716_205022/error.log @@ -0,0 +1,25 @@ +2014-07-16 20:50:29.410 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gset],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:50:29.410 [error] emulator Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gset],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-'... + + +2014-07-16 20:50:29.411 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 20:50:32.067 [error] emulator Error in process <0.4181.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,8102},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:50:32.068 [error] <0.4180.0>@basho_bench_worker:handle_info:149 Worker <0.4181.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,8102},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:50:32.068 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.4180.0> exit with reason normal in context child_terminated +2014-07-16 20:50:32.725 [error] emulator Error in process <0.6580.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,560},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:50:32.725 [error] <0.6579.0>@basho_bench_worker:handle_info:149 Worker <0.6580.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,560},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:50:32.732 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.6579.0> exit with reason normal in context child_terminated +2014-07-16 20:50:38.337 [error] emulator Error in process <0.7132.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gset],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-'... + + +2014-07-16 20:50:38.337 [error] <0.7131.0>@basho_bench_worker:handle_info:149 Worker <0.7132.0> exited with {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gset],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:50:38.338 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.7131.0> exit with reason normal in context child_terminated +2014-07-16 20:50:38.430 [error] <0.12037.0>@basho_bench_worker:handle_info:149 Worker <0.12038.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,7745},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:50:38.430 [error] emulator Error in process <0.12038.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,7745},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:50:38.431 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.12037.0> exit with reason normal in context child_terminated diff --git a/newtests/20140716_205022/errors.csv b/newtests/20140716_205022/errors.csv new file mode 100644 index 000000000..29210b502 --- /dev/null +++ b/newtests/20140716_205022/errors.csv @@ -0,0 +1 @@ +"error","count" diff --git a/newtests/20140716_205022/floppstore.config b/newtests/20140716_205022/floppstore.config new file mode 100644 index 000000000..ff45d1b34 --- /dev/null +++ b/newtests/20140716_205022/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 1}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. + +{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. + +{operations, [{append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_205022/log.sasl.txt b/newtests/20140716_205022/log.sasl.txt new file mode 100644 index 000000000..d937a4687 --- /dev/null +++ b/newtests/20140716_205022/log.sasl.txt @@ -0,0 +1,297 @@ + +=PROGRESS REPORT==== 16-Jul-2014::20:50:23 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:50:23 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:50:23 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::20:50:23 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:50:23 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::20:50:24 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:50:24 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::20:50:24 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::20:50:24 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:50:24 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:50:24 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::20:50:24 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:50:24 === + supervisor: {local,net_sup} + started: [{pid,<0.97.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:50:24 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:50:24 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:50:24 === + supervisor: {local,kernel_sup} + started: [{pid,<0.96.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::20:50:24 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 16-Jul-2014::20:50:24 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.103.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:50:24 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:50:24 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.107.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:50:24 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 16-Jul-2014::20:50:29 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::20:50:29 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.4180.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::20:50:32 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.4180.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::20:50:32 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.6579.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::20:50:32 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.6579.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::20:50:32 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.7131.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::20:50:38 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.7131.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::20:50:38 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.12037.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::20:50:38 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.12037.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::20:50:38 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.12071.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] diff --git a/newtests/20140716_205022/read_latencies.csv b/newtests/20140716_205022/read_latencies.csv new file mode 100644 index 000000000..3aff799ae --- /dev/null +++ b/newtests/20140716_205022/read_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +10.000267, 10.000267, 4117, 707, 1059.6, 1034, 1330, 1677, 3138, 3952, 0 diff --git a/newtests/20140716_205022/summary.csv b/newtests/20140716_205022/summary.csv new file mode 100644 index 000000000..c364fe348 --- /dev/null +++ b/newtests/20140716_205022/summary.csv @@ -0,0 +1,2 @@ +elapsed, window, total, successful, failed +10.000267, 10.000267, 8278, 8278, 0 diff --git a/newtests/20140716_205202/append_latencies.csv b/newtests/20140716_205202/append_latencies.csv new file mode 100644 index 000000000..1c3e75123 --- /dev/null +++ b/newtests/20140716_205202/append_latencies.csv @@ -0,0 +1,3 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +10.00107, 10.00107, 4331, 791, 1164.8, 1141, 1454, 1797, 2700, 4647, 0 +15.376694, 5.375624, 2188, 837, 1238.1, 1206, 1570, 2015, 3089, 22541, 0 diff --git a/newtests/20140716_205202/console.log b/newtests/20140716_205202/console.log new file mode 100644 index 000000000..3fe192eb0 --- /dev/null +++ b/newtests/20140716_205202/console.log @@ -0,0 +1,105 @@ +2014-07-16 20:52:02.936 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_205202/error.log"} into lager_event +2014-07-16 20:52:02.936 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_205202/console.log"} into lager_event +2014-07-16 20:52:02.936 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-16 20:52:02.971 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-16 20:52:02.971 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-16 20:52:02.971 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-16 20:52:02.972 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-16 20:52:03.413 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-16 20:52:03.791 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-16 20:52:03.792 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_205202/console.log to debug +2014-07-16 20:52:03.799 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} +2014-07-16 20:52:03.881 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-16 20:52:03.882 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-16 20:52:03.882 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-16 20:52:03.897 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-16 20:52:03.897 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-16 20:52:03.986 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-16 20:52:03.986 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-16 20:52:04.014 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-16 20:52:04.018 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-16 20:52:04.022 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-16 20:52:04.022 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-16 20:52:04.063 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-16 20:52:04.126 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> +2014-07-16 20:52:04.134 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> +2014-07-16 20:52:04.148 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-16 20:52:04.148 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> +2014-07-16 20:52:04.149 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> +2014-07-16 20:52:04.166 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> +2014-07-16 20:52:04.167 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> +2014-07-16 20:52:04.181 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 20:52:04.181 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 20:52:04.182 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-16 20:52:04.182 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.107.0> +2014-07-16 20:52:04.189 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> +2014-07-16 20:52:04.189 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-16 20:52:08.578 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,6370},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:52:08.578 [error] emulator Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,6370},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:52:08.578 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 20:52:08.604 [info] <0.4074.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 20:52:08.604 [info] <0.4074.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 20:52:08.604 [warning] <0.4073.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 20:52:08.604 [info] <0.4074.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.4074.0> +2014-07-16 20:52:08.605 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.4073.0> +2014-07-16 20:52:10.284 [error] emulator Error in process <0.4074.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,8687},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:52:10.284 [error] <0.4073.0>@basho_bench_worker:handle_info:149 Worker <0.4074.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,8687},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:52:10.285 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.4073.0> exit with reason normal in context child_terminated +2014-07-16 20:52:10.317 [info] <0.5595.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 20:52:10.317 [info] <0.5595.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 20:52:10.317 [warning] <0.5594.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 20:52:10.317 [info] <0.5595.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.5595.0> +2014-07-16 20:52:10.318 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.5594.0> +2014-07-16 20:52:10.693 [error] emulator Error in process <0.5595.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,1946},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:52:10.693 [error] <0.5594.0>@basho_bench_worker:handle_info:149 Worker <0.5595.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,1946},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:52:10.700 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.5594.0> exit with reason normal in context child_terminated +2014-07-16 20:52:10.726 [info] <0.5941.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 20:52:10.726 [info] <0.5941.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 20:52:10.726 [warning] <0.5940.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 20:52:10.726 [info] <0.5941.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.5941.0> +2014-07-16 20:52:10.727 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.5940.0> +2014-07-16 20:52:16.958 [error] emulator Error in process <0.5941.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5820},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:52:16.958 [error] <0.5940.0>@basho_bench_worker:handle_info:149 Worker <0.5941.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5820},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:52:16.958 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.5940.0> exit with reason normal in context child_terminated +2014-07-16 20:52:16.994 [info] <0.11137.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 20:52:16.994 [info] <0.11137.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 20:52:16.994 [warning] <0.11136.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 20:52:16.994 [info] <0.11137.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.11137.0> +2014-07-16 20:52:16.994 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.11136.0> +2014-07-16 20:52:18.638 [error] emulator Error in process <0.11137.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5342},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:52:18.638 [error] <0.11136.0>@basho_bench_worker:handle_info:149 Worker <0.11137.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5342},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:52:18.644 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.11136.0> exit with reason normal in context child_terminated +2014-07-16 20:52:18.676 [info] <0.12394.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 20:52:18.676 [info] <0.12394.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 20:52:18.676 [warning] <0.12393.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 20:52:18.677 [info] <0.12394.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.12394.0> +2014-07-16 20:52:18.677 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.12393.0> +2014-07-16 20:52:19.466 [error] emulator Error in process <0.12394.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,2844},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:52:19.466 [error] <0.12393.0>@basho_bench_worker:handle_info:149 Worker <0.12394.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,2844},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:52:19.466 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.12393.0> exit with reason normal in context child_terminated +2014-07-16 20:52:19.494 [info] <0.13041.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 20:52:19.494 [info] <0.13041.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 20:52:19.494 [warning] <0.13040.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-16 20:52:19.494 [info] <0.13041.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.13041.0> +2014-07-16 20:52:19.495 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.13040.0> +2014-07-16 20:52:19.558 [error] emulator Error in process <0.13041.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,6445},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:52:19.558 [error] <0.13040.0>@basho_bench_worker:handle_info:149 Worker <0.13041.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,6445},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:52:19.559 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.13040.0> exit with reason normal in context child_terminated +2014-07-16 20:52:19.559 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.13040.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-16 20:52:19.575 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. diff --git a/newtests/20140716_205202/crash.log b/newtests/20140716_205202/crash.log new file mode 100644 index 000000000..3467e8d34 --- /dev/null +++ b/newtests/20140716_205202/crash.log @@ -0,0 +1,69 @@ +2014-07-16 20:52:08 =ERROR REPORT==== +Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,6370},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + +2014-07-16 20:52:08 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 20:52:10 =ERROR REPORT==== +Error in process <0.4074.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,8687},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + +2014-07-16 20:52:10 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.4073.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 20:52:10 =ERROR REPORT==== +Error in process <0.5595.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,1946},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + +2014-07-16 20:52:10 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.5594.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 20:52:16 =ERROR REPORT==== +Error in process <0.5941.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5820},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + +2014-07-16 20:52:16 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.5940.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 20:52:18 =ERROR REPORT==== +Error in process <0.11137.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5342},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + +2014-07-16 20:52:18 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.11136.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 20:52:19 =ERROR REPORT==== +Error in process <0.12394.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,2844},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + +2014-07-16 20:52:19 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.12393.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 20:52:19 =ERROR REPORT==== +Error in process <0.13041.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,6445},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + +2014-07-16 20:52:19 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.13040.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-16 20:52:19 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.13040.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140716_205202/error.log b/newtests/20140716_205202/error.log new file mode 100644 index 000000000..3c5cf6efc --- /dev/null +++ b/newtests/20140716_205202/error.log @@ -0,0 +1,36 @@ +2014-07-16 20:52:08.578 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,6370},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:52:08.578 [error] emulator Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,6370},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:52:08.578 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-16 20:52:10.284 [error] emulator Error in process <0.4074.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,8687},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:52:10.284 [error] <0.4073.0>@basho_bench_worker:handle_info:149 Worker <0.4074.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,8687},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:52:10.285 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.4073.0> exit with reason normal in context child_terminated +2014-07-16 20:52:10.693 [error] emulator Error in process <0.5595.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,1946},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:52:10.693 [error] <0.5594.0>@basho_bench_worker:handle_info:149 Worker <0.5595.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,1946},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:52:10.700 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.5594.0> exit with reason normal in context child_terminated +2014-07-16 20:52:16.958 [error] emulator Error in process <0.5941.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5820},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:52:16.958 [error] <0.5940.0>@basho_bench_worker:handle_info:149 Worker <0.5941.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5820},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:52:16.958 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.5940.0> exit with reason normal in context child_terminated +2014-07-16 20:52:18.638 [error] emulator Error in process <0.11137.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5342},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:52:18.638 [error] <0.11136.0>@basho_bench_worker:handle_info:149 Worker <0.11137.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5342},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:52:18.644 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.11136.0> exit with reason normal in context child_terminated +2014-07-16 20:52:19.466 [error] emulator Error in process <0.12394.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,2844},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:52:19.466 [error] <0.12393.0>@basho_bench_worker:handle_info:149 Worker <0.12394.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,2844},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:52:19.466 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.12393.0> exit with reason normal in context child_terminated +2014-07-16 20:52:19.558 [error] emulator Error in process <0.13041.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,6445},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-16 20:52:19.558 [error] <0.13040.0>@basho_bench_worker:handle_info:149 Worker <0.13041.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,6445},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-16 20:52:19.559 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.13040.0> exit with reason normal in context child_terminated +2014-07-16 20:52:19.559 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.13040.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_205202/errors.csv b/newtests/20140716_205202/errors.csv new file mode 100644 index 000000000..29210b502 --- /dev/null +++ b/newtests/20140716_205202/errors.csv @@ -0,0 +1 @@ +"error","count" diff --git a/newtests/20140716_205202/floppstore.config b/newtests/20140716_205202/floppstore.config new file mode 100644 index 000000000..ff45d1b34 --- /dev/null +++ b/newtests/20140716_205202/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 1}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. + +{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. + +{operations, [{append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_205202/log.sasl.txt b/newtests/20140716_205202/log.sasl.txt new file mode 100644 index 000000000..234bd3e22 --- /dev/null +++ b/newtests/20140716_205202/log.sasl.txt @@ -0,0 +1,350 @@ + +=PROGRESS REPORT==== 16-Jul-2014::20:52:03 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:52:03 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:52:03 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::20:52:03 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:52:03 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::20:52:03 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:52:03 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::20:52:04 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::20:52:04 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:52:04 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:52:04 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::20:52:04 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:52:04 === + supervisor: {local,net_sup} + started: [{pid,<0.97.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:52:04 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:52:04 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:52:04 === + supervisor: {local,kernel_sup} + started: [{pid,<0.96.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::20:52:04 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 16-Jul-2014::20:52:04 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.103.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:52:04 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:52:04 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.107.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:52:04 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 16-Jul-2014::20:52:08 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::20:52:08 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.4073.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::20:52:10 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.4073.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::20:52:10 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.5594.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::20:52:10 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.5594.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::20:52:10 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.5940.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::20:52:16 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.5940.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::20:52:16 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.11136.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::20:52:18 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.11136.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::20:52:18 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.12393.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::20:52:19 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.12393.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 16-Jul-2014::20:52:19 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.13040.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 16-Jul-2014::20:52:19 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.13040.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 16-Jul-2014::20:52:19 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.13040.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140716_205202/read_latencies.csv b/newtests/20140716_205202/read_latencies.csv new file mode 100644 index 000000000..a6fcbe170 --- /dev/null +++ b/newtests/20140716_205202/read_latencies.csv @@ -0,0 +1,3 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +10.00107, 10.00107, 4405, 726, 1062.1, 1033, 1345, 1642, 2964, 7026, 0 +15.376694, 5.375624, 2035, 754, 1117.2, 1088, 1438, 1762, 2964, 7026, 0 diff --git a/newtests/20140716_205202/summary.csv b/newtests/20140716_205202/summary.csv new file mode 100644 index 000000000..039dabe4e --- /dev/null +++ b/newtests/20140716_205202/summary.csv @@ -0,0 +1,3 @@ +elapsed, window, total, successful, failed +10.00107, 10.00107, 8736, 8736, 0 +15.376694, 5.375624, 4223, 4223, 0 diff --git a/newtests/20140716_205355/append_latencies.csv b/newtests/20140716_205355/append_latencies.csv new file mode 100644 index 000000000..06dfe6602 --- /dev/null +++ b/newtests/20140716_205355/append_latencies.csv @@ -0,0 +1,8 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +10.001095, 10.001095, 4279, 793, 1224.4, 1171, 1524, 2396, 6206, 31969, 0 +20.001128, 10.000033, 4176, 833, 1236.1, 1212, 1498, 1815, 3340, 5367, 0 +30.001085, 9.999957, 4183, 841, 1244.0, 1221, 1506, 1839, 3123, 4138, 0 +40.001091, 10.000006, 4149, 853, 1277.4, 1233, 1551, 2431, 4940, 29665, 0 +50.00109, 9.999999, 4071, 873, 1262.5, 1226, 1534, 2308, 4305, 6554, 0 +60.00108, 9.99999, 4033, 838, 1262.0, 1232, 1547, 1976, 3341, 5098, 0 +61.00915, 1.00807, 394, 838, 1262.6, 1233, 1551, 1940, 3176, 5098, 0 diff --git a/newtests/20140716_205355/console.log b/newtests/20140716_205355/console.log new file mode 100644 index 000000000..f03614248 --- /dev/null +++ b/newtests/20140716_205355/console.log @@ -0,0 +1,39 @@ +2014-07-16 20:53:55.247 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_205355/error.log"} into lager_event +2014-07-16 20:53:55.247 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_205355/console.log"} into lager_event +2014-07-16 20:53:55.247 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-16 20:53:55.280 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-16 20:53:55.280 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-16 20:53:55.280 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-16 20:53:55.280 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-16 20:53:55.712 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-16 20:53:56.069 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-16 20:53:56.070 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_205355/console.log to debug +2014-07-16 20:53:56.079 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} +2014-07-16 20:53:56.148 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-16 20:53:56.148 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-16 20:53:56.149 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-16 20:53:56.164 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-16 20:53:56.164 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-16 20:53:56.251 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-16 20:53:56.251 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-16 20:53:56.278 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-16 20:53:56.282 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-16 20:53:56.287 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-16 20:53:56.287 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-16 20:53:56.325 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-16 20:53:56.388 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> +2014-07-16 20:53:56.395 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> +2014-07-16 20:53:56.409 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-16 20:53:56.409 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> +2014-07-16 20:53:56.410 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> +2014-07-16 20:53:56.424 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> +2014-07-16 20:53:56.424 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> +2014-07-16 20:53:56.440 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' +2014-07-16 20:53:56.440 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-16 20:53:56.441 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-16 20:53:56.441 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.107.0> +2014-07-16 20:53:56.449 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> +2014-07-16 20:53:56.449 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-16 20:54:57.465 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. diff --git a/newtests/20140716_205355/crash.log b/newtests/20140716_205355/crash.log new file mode 100644 index 000000000..e69de29bb diff --git a/newtests/20140716_205355/error.log b/newtests/20140716_205355/error.log new file mode 100644 index 000000000..e69de29bb diff --git a/newtests/20140716_205355/errors.csv b/newtests/20140716_205355/errors.csv new file mode 100644 index 000000000..29210b502 --- /dev/null +++ b/newtests/20140716_205355/errors.csv @@ -0,0 +1 @@ +"error","count" diff --git a/newtests/20140716_205355/floppstore.config b/newtests/20140716_205355/floppstore.config new file mode 100644 index 000000000..ff45d1b34 --- /dev/null +++ b/newtests/20140716_205355/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 1}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. + +{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. + +{operations, [{append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_205355/log.sasl.txt b/newtests/20140716_205355/log.sasl.txt new file mode 100644 index 000000000..34ea5f278 --- /dev/null +++ b/newtests/20140716_205355/log.sasl.txt @@ -0,0 +1,172 @@ + +=PROGRESS REPORT==== 16-Jul-2014::20:53:56 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:53:56 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:53:56 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::20:53:56 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:53:56 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::20:53:56 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:53:56 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::20:53:56 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::20:53:56 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:53:56 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:53:56 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 16-Jul-2014::20:53:56 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:53:56 === + supervisor: {local,net_sup} + started: [{pid,<0.97.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:53:56 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:53:56 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:53:56 === + supervisor: {local,kernel_sup} + started: [{pid,<0.96.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 16-Jul-2014::20:53:56 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 16-Jul-2014::20:53:56 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.103.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:53:56 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:53:56 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.107.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 16-Jul-2014::20:53:56 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' diff --git a/newtests/20140716_205355/read_latencies.csv b/newtests/20140716_205355/read_latencies.csv new file mode 100644 index 000000000..4fc42d09e --- /dev/null +++ b/newtests/20140716_205355/read_latencies.csv @@ -0,0 +1,8 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +10.001095, 10.001095, 4169, 709, 1100.0, 1048, 1367, 2096, 5743, 23809, 0 +20.001128, 10.000033, 4195, 747, 1108.0, 1084, 1353, 1634, 3283, 4770, 0 +30.001085, 9.999957, 4080, 752, 1125.0, 1097, 1384, 1735, 3202, 9588, 0 +40.001091, 10.000006, 3946, 790, 1143.0, 1113, 1395, 2031, 3426, 3938, 0 +50.00109, 9.999999, 4090, 778, 1143.3, 1104, 1397, 2040, 4583, 8703, 0 +60.00108, 9.99999, 4140, 782, 1137.6, 1115, 1394, 1683, 3519, 5522, 0 +61.00915, 1.00807, 433, 782, 1137.3, 1114, 1392, 1688, 3519, 5522, 0 diff --git a/newtests/20140716_205355/summary.csv b/newtests/20140716_205355/summary.csv new file mode 100644 index 000000000..34c119329 --- /dev/null +++ b/newtests/20140716_205355/summary.csv @@ -0,0 +1,8 @@ +elapsed, window, total, successful, failed +10.001095, 10.001095, 8448, 8448, 0 +20.001128, 10.000033, 8371, 8371, 0 +30.001085, 9.999957, 8263, 8263, 0 +40.001091, 10.000006, 8095, 8095, 0 +50.00109, 9.999999, 8161, 8161, 0 +60.00108, 9.99999, 8173, 8173, 0 +61.00915, 1.00807, 827, 827, 0 diff --git a/newtests/20140717_145625/append_latencies.csv b/newtests/20140717_145625/append_latencies.csv new file mode 100644 index 000000000..39e08695e --- /dev/null +++ b/newtests/20140717_145625/append_latencies.csv @@ -0,0 +1,3 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +10.000489, 10.000489, 4297, 798, 1244.3, 1221, 1571, 1864, 3184, 17861, 0 +20.001412, 10.000923, 4083, 799, 1319.1, 1295, 1650, 2073, 4354, 5140, 0 diff --git a/newtests/20140717_145625/console.log b/newtests/20140717_145625/console.log new file mode 100644 index 000000000..462d5db8b --- /dev/null +++ b/newtests/20140717_145625/console.log @@ -0,0 +1,39 @@ +2014-07-17 14:56:25.668 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_145625/error.log"} into lager_event +2014-07-17 14:56:25.668 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_145625/console.log"} into lager_event +2014-07-17 14:56:25.668 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-17 14:56:25.703 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-17 14:56:25.703 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-17 14:56:25.703 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-17 14:56:25.703 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-17 14:56:26.142 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-17 14:56:26.538 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-17 14:56:26.540 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_145625/console.log to debug +2014-07-17 14:56:26.547 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} +2014-07-17 14:56:26.630 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-17 14:56:26.631 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-17 14:56:26.631 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-17 14:56:26.646 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-17 14:56:26.646 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-17 14:56:26.729 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-17 14:56:26.730 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-17 14:56:26.757 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-17 14:56:26.761 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-17 14:56:26.766 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-17 14:56:26.766 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-17 14:56:26.804 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-17 14:56:26.816 [debug] <0.94.0>@basho_bench_valgen:init_source:85 random source +2014-07-17 14:56:26.953 [debug] <0.97.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.98.0> +2014-07-17 14:56:26.961 [debug] <0.97.0> Supervisor net_sup started auth:start_link() at pid <0.99.0> +2014-07-17 14:56:26.978 [info] <0.96.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-17 14:56:26.979 [debug] <0.97.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.100.0> +2014-07-17 14:56:26.979 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.97.0> +2014-07-17 14:56:26.996 [debug] <0.104.0> Supervisor inet_gethost_native_sup started undefined at pid <0.105.0> +2014-07-17 14:56:26.996 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.104.0> +2014-07-17 14:56:27.014 [info] <0.96.0>@basho_bench_driver_floppystore:ping_each:129 Finished pinging 'floppy@127.0.0.1' +2014-07-17 14:56:27.014 [info] <0.96.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-17 14:56:27.015 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-17 14:56:27.015 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.108.0> +2014-07-17 14:56:27.021 [info] <0.96.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.96.0> +2014-07-17 14:56:27.022 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' diff --git a/newtests/20140717_145625/crash.log b/newtests/20140717_145625/crash.log new file mode 100644 index 000000000..e69de29bb diff --git a/newtests/20140717_145625/error.log b/newtests/20140717_145625/error.log new file mode 100644 index 000000000..e69de29bb diff --git a/newtests/20140717_145625/errors.csv b/newtests/20140717_145625/errors.csv new file mode 100644 index 000000000..29210b502 --- /dev/null +++ b/newtests/20140717_145625/errors.csv @@ -0,0 +1 @@ +"error","count" diff --git a/newtests/20140717_145625/floppstore.config b/newtests/20140717_145625/floppstore.config new file mode 100644 index 000000000..7c3f34ccc --- /dev/null +++ b/newtests/20140717_145625/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 1}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. + +{value_generator, {fixed_bin, 100}}. + +{operations, [{append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140717_145625/log.sasl.txt b/newtests/20140717_145625/log.sasl.txt new file mode 100644 index 000000000..6b717c6e0 --- /dev/null +++ b/newtests/20140717_145625/log.sasl.txt @@ -0,0 +1,172 @@ + +=PROGRESS REPORT==== 17-Jul-2014::14:56:26 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::14:56:26 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::14:56:26 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 17-Jul-2014::14:56:26 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::14:56:26 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 17-Jul-2014::14:56:26 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::14:56:26 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 17-Jul-2014::14:56:26 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 17-Jul-2014::14:56:26 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::14:56:26 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::14:56:26 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 17-Jul-2014::14:56:26 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::14:56:26 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::14:56:26 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::14:56:26 === + supervisor: {local,net_sup} + started: [{pid,<0.100.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::14:56:26 === + supervisor: {local,kernel_sup} + started: [{pid,<0.97.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 17-Jul-2014::14:56:26 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.105.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 17-Jul-2014::14:56:26 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.104.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::14:56:27 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::14:56:27 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.108.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::14:56:27 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' diff --git a/newtests/20140717_145625/read_latencies.csv b/newtests/20140717_145625/read_latencies.csv new file mode 100644 index 000000000..14f727ca3 --- /dev/null +++ b/newtests/20140717_145625/read_latencies.csv @@ -0,0 +1,3 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +10.000489, 10.000489, 4346, 726, 1030.4, 1006, 1290, 1525, 2383, 5158, 0 +20.001412, 10.000923, 4020, 733, 1096.4, 1076, 1350, 1609, 2492, 3624, 0 diff --git a/newtests/20140717_145625/summary.csv b/newtests/20140717_145625/summary.csv new file mode 100644 index 000000000..b0482d816 --- /dev/null +++ b/newtests/20140717_145625/summary.csv @@ -0,0 +1,3 @@ +elapsed, window, total, successful, failed +10.000489, 10.000489, 8643, 8643, 0 +20.001412, 10.000923, 8103, 8103, 0 diff --git a/newtests/20140717_145733/append_latencies.csv b/newtests/20140717_145733/append_latencies.csv new file mode 100644 index 000000000..2cee6f0d8 --- /dev/null +++ b/newtests/20140717_145733/append_latencies.csv @@ -0,0 +1 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors diff --git a/newtests/20140717_145733/console.log b/newtests/20140717_145733/console.log new file mode 100644 index 000000000..ebca30a20 --- /dev/null +++ b/newtests/20140717_145733/console.log @@ -0,0 +1,36 @@ +2014-07-17 14:57:33.811 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_145733/error.log"} into lager_event +2014-07-17 14:57:33.811 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_145733/console.log"} into lager_event +2014-07-17 14:57:33.811 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-17 14:57:33.845 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-17 14:57:33.845 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-17 14:57:33.846 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-17 14:57:33.846 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-17 14:57:34.287 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-17 14:57:34.643 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-17 14:57:34.644 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_145733/console.log to debug +2014-07-17 14:57:34.651 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} +2014-07-17 14:57:34.733 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-17 14:57:34.734 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-17 14:57:34.734 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-17 14:57:34.748 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-17 14:57:34.749 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-17 14:57:34.834 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-17 14:57:34.835 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-17 14:57:34.865 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-17 14:57:34.872 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-17 14:57:34.878 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-17 14:57:34.878 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-17 14:57:34.909 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-17 14:57:34.920 [debug] <0.94.0>@basho_bench_valgen:init_source:85 random source +2014-07-17 14:57:35.054 [debug] <0.97.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.98.0> +2014-07-17 14:57:35.061 [debug] <0.97.0> Supervisor net_sup started auth:start_link() at pid <0.99.0> +2014-07-17 14:57:35.074 [info] <0.96.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-17 14:57:35.074 [debug] <0.97.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.100.0> +2014-07-17 14:57:35.075 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.97.0> +2014-07-17 14:57:35.089 [debug] <0.104.0> Supervisor inet_gethost_native_sup started undefined at pid <0.105.0> +2014-07-17 14:57:35.089 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.104.0> +2014-07-17 14:57:35.104 [error] <0.96.0>@basho_bench_driver_floppystore:ping_each:132 Failed to ping node 'floppy@127.0.0.1' +2014-07-17 14:57:35.104 [info] <0.96.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-17 14:57:35.153 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> diff --git a/newtests/20140717_145733/crash.log b/newtests/20140717_145733/crash.log new file mode 100644 index 000000000..e69de29bb diff --git a/newtests/20140717_145733/error.log b/newtests/20140717_145733/error.log new file mode 100644 index 000000000..1dcc03bd5 --- /dev/null +++ b/newtests/20140717_145733/error.log @@ -0,0 +1 @@ +2014-07-17 14:57:35.104 [error] <0.96.0>@basho_bench_driver_floppystore:ping_each:132 Failed to ping node 'floppy@127.0.0.1' diff --git a/newtests/20140717_145733/errors.csv b/newtests/20140717_145733/errors.csv new file mode 100644 index 000000000..29210b502 --- /dev/null +++ b/newtests/20140717_145733/errors.csv @@ -0,0 +1 @@ +"error","count" diff --git a/newtests/20140717_145733/floppstore.config b/newtests/20140717_145733/floppstore.config new file mode 100644 index 000000000..43b12a499 --- /dev/null +++ b/newtests/20140717_145733/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. + +{value_generator, {fixed_bin, 100}}. + +{operations, [{append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140717_145733/log.sasl.txt b/newtests/20140717_145733/log.sasl.txt new file mode 100644 index 000000000..3a743a59e --- /dev/null +++ b/newtests/20140717_145733/log.sasl.txt @@ -0,0 +1,159 @@ + +=PROGRESS REPORT==== 17-Jul-2014::14:57:34 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::14:57:34 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::14:57:34 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 17-Jul-2014::14:57:34 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::14:57:34 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 17-Jul-2014::14:57:34 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::14:57:34 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 17-Jul-2014::14:57:34 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 17-Jul-2014::14:57:34 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::14:57:34 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::14:57:34 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 17-Jul-2014::14:57:34 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::14:57:35 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::14:57:35 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::14:57:35 === + supervisor: {local,net_sup} + started: [{pid,<0.100.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::14:57:35 === + supervisor: {local,kernel_sup} + started: [{pid,<0.97.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 17-Jul-2014::14:57:35 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.105.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 17-Jul-2014::14:57:35 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.104.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::14:57:35 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] diff --git a/newtests/20140717_145733/read_latencies.csv b/newtests/20140717_145733/read_latencies.csv new file mode 100644 index 000000000..2cee6f0d8 --- /dev/null +++ b/newtests/20140717_145733/read_latencies.csv @@ -0,0 +1 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors diff --git a/newtests/20140717_145733/summary.csv b/newtests/20140717_145733/summary.csv new file mode 100644 index 000000000..fa9e41e5d --- /dev/null +++ b/newtests/20140717_145733/summary.csv @@ -0,0 +1 @@ +elapsed, window, total, successful, failed diff --git a/newtests/20140717_145743/append_latencies.csv b/newtests/20140717_145743/append_latencies.csv new file mode 100644 index 000000000..a966ea155 --- /dev/null +++ b/newtests/20140717_145743/append_latencies.csv @@ -0,0 +1,5 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +10.000371, 10.000371, 5028, 997, 2101.1, 1902, 3043, 5024, 14654, 31112, 0 +20.001459, 10.001088, 5127, 1050, 2018.4, 1843, 2959, 3726, 7104, 18862, 0 +30.001361, 9.999902, 4951, 1014, 2045.6, 1843, 2981, 4080, 10047, 52558, 0 +31.77629, 1.774929, 907, 1076, 2021.0, 1830, 2960, 3807, 8992, 52558, 0 diff --git a/newtests/20140717_145743/console.log b/newtests/20140717_145743/console.log new file mode 100644 index 000000000..b5ce6976b --- /dev/null +++ b/newtests/20140717_145743/console.log @@ -0,0 +1,103 @@ +2014-07-17 14:57:43.574 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_145743/error.log"} into lager_event +2014-07-17 14:57:43.574 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_145743/console.log"} into lager_event +2014-07-17 14:57:43.574 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-17 14:57:43.617 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-17 14:57:43.617 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-17 14:57:43.617 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-17 14:57:43.617 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-17 14:57:44.044 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-17 14:57:44.449 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-17 14:57:44.450 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_145743/console.log to debug +2014-07-17 14:57:44.456 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} +2014-07-17 14:57:44.531 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-17 14:57:44.532 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-17 14:57:44.532 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-17 14:57:44.547 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-17 14:57:44.547 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-17 14:57:44.634 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-17 14:57:44.634 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-17 14:57:44.677 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-17 14:57:44.682 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-17 14:57:44.689 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-17 14:57:44.689 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-17 14:57:44.723 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-17 14:57:44.735 [debug] <0.94.0>@basho_bench_valgen:init_source:85 random source +2014-07-17 14:57:44.869 [debug] <0.97.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.98.0> +2014-07-17 14:57:44.877 [debug] <0.97.0> Supervisor net_sup started auth:start_link() at pid <0.99.0> +2014-07-17 14:57:44.890 [info] <0.96.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-17 14:57:44.890 [debug] <0.97.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.100.0> +2014-07-17 14:57:44.891 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.97.0> +2014-07-17 14:57:44.907 [debug] <0.104.0> Supervisor inet_gethost_native_sup started undefined at pid <0.105.0> +2014-07-17 14:57:44.907 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.104.0> +2014-07-17 14:57:44.923 [info] <0.96.0>@basho_bench_driver_floppystore:ping_each:129 Finished pinging 'floppy@127.0.0.1' +2014-07-17 14:57:44.923 [info] <0.96.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-17 14:57:44.924 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-17 14:57:45.006 [info] <0.109.0>@basho_bench_driver_floppystore:ping_each:129 Finished pinging 'floppy@127.0.0.1' +2014-07-17 14:57:45.006 [info] <0.109.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-17 14:57:45.007 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.108.0> +2014-07-17 14:57:45.007 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.110.0> +2014-07-17 14:57:45.012 [info] <0.109.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.109.0> +2014-07-17 14:57:45.012 [info] <0.96.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.96.0> +2014-07-17 14:57:45.013 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-17 14:58:09.728 [error] emulator Error in process <0.96.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<100 bytes>>},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-17 14:58:09.728 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<108,51,81,123,192,193,145,96,71,122,152,182,197,197,186,4,207,156,17,120,18,118,35,122,99,10,159,210,231,6,154,77,71,177,83,209,149,55,216,183,115,222,86,244,38,118,121,2,135,79,50,209,167,255,14,149,238,170,188,217,247,231,13,244,114,180,43,231,93,225,115,242,203,185,131,29,179,219,46,45,103,255,83,184,213,247,41,122,88,4,85,168,133,61,49,19,231,234,26,63>>},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-17 14:58:09.729 [debug] <0.25275.0>@basho_bench_valgen:init_source:85 random source +2014-07-17 14:58:09.729 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-17 14:58:09.838 [info] <0.25276.0>@basho_bench_driver_floppystore:ping_each:129 Finished pinging 'floppy@127.0.0.1' +2014-07-17 14:58:09.838 [info] <0.25276.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-17 14:58:09.838 [warning] <0.25275.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-17 14:58:09.838 [info] <0.25276.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.25276.0> +2014-07-17 14:58:09.839 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.25275.0> +2014-07-17 14:58:10.975 [error] emulator Error in process <0.25276.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<100 bytes>>},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-17 14:58:10.975 [error] <0.25275.0>@basho_bench_worker:handle_info:149 Worker <0.25276.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<53,204,234,191,233,98,32,250,105,234,186,65,9,144,217,208,88,50,215,230,255,175,196,18,205,106,254,230,104,69,7,39,81,136,140,112,185,199,222,120,97,192,156,36,72,89,245,68,95,112,182,52,94,4,24,17,30,205,104,37,127,135,223,11,39,202,67,162,231,19,25,170,42,207,4,243,81,46,238,21,36,67,47,52,72,79,237,84,117,62,221,67,32,232,86,160,73,64,94,201>>},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-17 14:58:10.975 [debug] <0.26513.0>@basho_bench_valgen:init_source:85 random source +2014-07-17 14:58:10.976 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.25275.0> exit with reason normal in context child_terminated +2014-07-17 14:58:11.091 [info] <0.26567.0>@basho_bench_driver_floppystore:ping_each:129 Finished pinging 'floppy@127.0.0.1' +2014-07-17 14:58:11.091 [info] <0.26567.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-17 14:58:11.091 [warning] <0.26513.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-17 14:58:11.091 [info] <0.26567.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.26567.0> +2014-07-17 14:58:11.092 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.26513.0> +2014-07-17 14:58:12.866 [error] emulator Error in process <0.26567.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<100 bytes>>},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-17 14:58:12.866 [error] <0.26513.0>@basho_bench_worker:handle_info:149 Worker <0.26567.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<82,249,164,225,43,95,222,186,105,151,30,106,244,98,132,249,194,101,7,196,76,225,130,221,150,108,9,2,140,80,156,152,253,7,33,173,168,166,115,74,168,131,74,52,35,221,236,129,245,98,91,15,153,140,250,75,196,25,164,8,8,184,144,2,234,120,123,104,255,255,151,62,228,52,166,68,145,69,176,115,42,72,196,116,9,203,247,134,10,109,5,148,164,54,18,188,88,145,167,50>>},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-17 14:58:12.866 [debug] <0.28437.0>@basho_bench_valgen:init_source:85 random source +2014-07-17 14:58:12.867 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.26513.0> exit with reason normal in context child_terminated +2014-07-17 14:58:12.985 [info] <0.28491.0>@basho_bench_driver_floppystore:ping_each:129 Finished pinging 'floppy@127.0.0.1' +2014-07-17 14:58:12.985 [info] <0.28491.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-17 14:58:12.985 [warning] <0.28437.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-17 14:58:12.985 [info] <0.28491.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.28491.0> +2014-07-17 14:58:12.985 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.28437.0> +2014-07-17 14:58:14.202 [error] emulator Error in process <0.109.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<100 bytes>>},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-17 14:58:14.202 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<216,154,192,206,109,106,23,2,144,239,219,20,109,83,92,170,1,49,240,18,115,237,46,14,90,98,26,79,210,230,114,250,235,214,181,100,212,144,200,252,4,216,30,85,47,123,32,108,182,24,117,221,159,154,233,3,205,128,29,122,240,251,41,254,134,26,19,161,11,181,138,205,127,101,82,24,208,80,148,198,29,40,200,165,240,68,203,57,68,149,73,147,132,72,195,210,22,184,21,181>>},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-17 14:58:14.203 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated +2014-07-17 14:58:14.325 [info] <0.29808.0>@basho_bench_driver_floppystore:ping_each:129 Finished pinging 'floppy@127.0.0.1' +2014-07-17 14:58:14.325 [info] <0.29808.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-17 14:58:14.325 [warning] <0.29752.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-17 14:58:14.325 [info] <0.29808.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.29808.0> +2014-07-17 14:58:14.326 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.29752.0> +2014-07-17 14:58:16.534 [error] emulator Error in process <0.29808.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<100 bytes>>},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-17 14:58:16.535 [error] <0.29752.0>@basho_bench_worker:handle_info:149 Worker <0.29808.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<60,129,207,233,157,110,188,78,88,11,162,3,42,141,147,20,147,24,199,180,3,172,193,203,176,165,214,34,199,115,195,181,30,185,166,190,149,227,29,195,49,155,222,87,102,166,54,226,18,164,67,10,42,51,112,195,47,200,241,98,131,146,8,35,135,120,3,20,90,121,84,119,45,120,6,43,207,160,47,158,82,207,242,86,46,57,49,231,168,184,236,39,238,17,169,180,250,2,190,91>>},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-17 14:58:16.535 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.29752.0> exit with reason normal in context child_terminated +2014-07-17 14:58:16.652 [info] <0.32200.0>@basho_bench_driver_floppystore:ping_each:129 Finished pinging 'floppy@127.0.0.1' +2014-07-17 14:58:16.652 [info] <0.32200.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-17 14:58:16.652 [warning] <0.32148.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-17 14:58:16.652 [info] <0.32200.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.32200.0> +2014-07-17 14:58:16.652 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.32148.0> +2014-07-17 14:58:16.782 [error] emulator Error in process <0.32200.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<100 bytes>>},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-17 14:58:16.782 [error] <0.32148.0>@basho_bench_worker:handle_info:149 Worker <0.32200.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<133,61,3,52,10,237,229,42,120,88,78,226,44,60,99,210,186,254,54,192,119,212,205,123,6,86,125,8,146,245,199,174,99,212,174,142,181,91,87,97,118,249,226,193,163,107,95,206,169,237,57,201,173,189,35,74,103,221,232,213,17,108,64,198,6,237,44,31,211,112,79,207,119,34,152,199,57,118,195,70,29,182,197,110,158,150,195,219,162,223,233,56,144,172,210,163,249,183,40,63>>},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-17 14:58:16.783 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.32148.0> exit with reason normal in context child_terminated +2014-07-17 14:58:16.784 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.32148.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-17 14:58:16.807 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. diff --git a/newtests/20140717_145743/crash.log b/newtests/20140717_145743/crash.log new file mode 100644 index 000000000..ef3094d6e --- /dev/null +++ b/newtests/20140717_145743/crash.log @@ -0,0 +1,60 @@ +2014-07-17 14:58:09 =ERROR REPORT==== +Error in process <0.96.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<100 bytes>>},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + +2014-07-17 14:58:09 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-17 14:58:10 =ERROR REPORT==== +Error in process <0.25276.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<100 bytes>>},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + +2014-07-17 14:58:10 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.25275.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-17 14:58:12 =ERROR REPORT==== +Error in process <0.26567.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<100 bytes>>},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + +2014-07-17 14:58:12 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.26513.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-17 14:58:14 =ERROR REPORT==== +Error in process <0.109.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<100 bytes>>},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + +2014-07-17 14:58:14 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.108.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-17 14:58:16 =ERROR REPORT==== +Error in process <0.29808.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<100 bytes>>},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + +2014-07-17 14:58:16 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.29752.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-17 14:58:16 =ERROR REPORT==== +Error in process <0.32200.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<100 bytes>>},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + +2014-07-17 14:58:16 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.32148.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-17 14:58:16 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.32148.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140717_145743/error.log b/newtests/20140717_145743/error.log new file mode 100644 index 000000000..d3f8679d0 --- /dev/null +++ b/newtests/20140717_145743/error.log @@ -0,0 +1,31 @@ +2014-07-17 14:58:09.728 [error] emulator Error in process <0.96.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<100 bytes>>},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-17 14:58:09.728 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<108,51,81,123,192,193,145,96,71,122,152,182,197,197,186,4,207,156,17,120,18,118,35,122,99,10,159,210,231,6,154,77,71,177,83,209,149,55,216,183,115,222,86,244,38,118,121,2,135,79,50,209,167,255,14,149,238,170,188,217,247,231,13,244,114,180,43,231,93,225,115,242,203,185,131,29,179,219,46,45,103,255,83,184,213,247,41,122,88,4,85,168,133,61,49,19,231,234,26,63>>},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-17 14:58:09.729 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-17 14:58:10.975 [error] emulator Error in process <0.25276.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<100 bytes>>},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-17 14:58:10.975 [error] <0.25275.0>@basho_bench_worker:handle_info:149 Worker <0.25276.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<53,204,234,191,233,98,32,250,105,234,186,65,9,144,217,208,88,50,215,230,255,175,196,18,205,106,254,230,104,69,7,39,81,136,140,112,185,199,222,120,97,192,156,36,72,89,245,68,95,112,182,52,94,4,24,17,30,205,104,37,127,135,223,11,39,202,67,162,231,19,25,170,42,207,4,243,81,46,238,21,36,67,47,52,72,79,237,84,117,62,221,67,32,232,86,160,73,64,94,201>>},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-17 14:58:10.976 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.25275.0> exit with reason normal in context child_terminated +2014-07-17 14:58:12.866 [error] emulator Error in process <0.26567.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<100 bytes>>},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-17 14:58:12.866 [error] <0.26513.0>@basho_bench_worker:handle_info:149 Worker <0.26567.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<82,249,164,225,43,95,222,186,105,151,30,106,244,98,132,249,194,101,7,196,76,225,130,221,150,108,9,2,140,80,156,152,253,7,33,173,168,166,115,74,168,131,74,52,35,221,236,129,245,98,91,15,153,140,250,75,196,25,164,8,8,184,144,2,234,120,123,104,255,255,151,62,228,52,166,68,145,69,176,115,42,72,196,116,9,203,247,134,10,109,5,148,164,54,18,188,88,145,167,50>>},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-17 14:58:12.867 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.26513.0> exit with reason normal in context child_terminated +2014-07-17 14:58:14.202 [error] emulator Error in process <0.109.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<100 bytes>>},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-17 14:58:14.202 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<216,154,192,206,109,106,23,2,144,239,219,20,109,83,92,170,1,49,240,18,115,237,46,14,90,98,26,79,210,230,114,250,235,214,181,100,212,144,200,252,4,216,30,85,47,123,32,108,182,24,117,221,159,154,233,3,205,128,29,122,240,251,41,254,134,26,19,161,11,181,138,205,127,101,82,24,208,80,148,198,29,40,200,165,240,68,203,57,68,149,73,147,132,72,195,210,22,184,21,181>>},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-17 14:58:14.203 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated +2014-07-17 14:58:16.534 [error] emulator Error in process <0.29808.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<100 bytes>>},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-17 14:58:16.535 [error] <0.29752.0>@basho_bench_worker:handle_info:149 Worker <0.29808.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<60,129,207,233,157,110,188,78,88,11,162,3,42,141,147,20,147,24,199,180,3,172,193,203,176,165,214,34,199,115,195,181,30,185,166,190,149,227,29,195,49,155,222,87,102,166,54,226,18,164,67,10,42,51,112,195,47,200,241,98,131,146,8,35,135,120,3,20,90,121,84,119,45,120,6,43,207,160,47,158,82,207,242,86,46,57,49,231,168,184,236,39,238,17,169,180,250,2,190,91>>},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-17 14:58:16.535 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.29752.0> exit with reason normal in context child_terminated +2014-07-17 14:58:16.782 [error] emulator Error in process <0.32200.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<100 bytes>>},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... + + +2014-07-17 14:58:16.782 [error] <0.32148.0>@basho_bench_worker:handle_info:149 Worker <0.32200.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<133,61,3,52,10,237,229,42,120,88,78,226,44,60,99,210,186,254,54,192,119,212,205,123,6,86,125,8,146,245,199,174,99,212,174,142,181,91,87,97,118,249,226,193,163,107,95,206,169,237,57,201,173,189,35,74,103,221,232,213,17,108,64,198,6,237,44,31,211,112,79,207,119,34,152,199,57,118,195,70,29,182,197,110,158,150,195,219,162,223,233,56,144,172,210,163,249,183,40,63>>},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-17 14:58:16.783 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.32148.0> exit with reason normal in context child_terminated +2014-07-17 14:58:16.784 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.32148.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140717_145743/errors.csv b/newtests/20140717_145743/errors.csv new file mode 100644 index 000000000..29210b502 --- /dev/null +++ b/newtests/20140717_145743/errors.csv @@ -0,0 +1 @@ +"error","count" diff --git a/newtests/20140717_145743/floppstore.config b/newtests/20140717_145743/floppstore.config new file mode 100644 index 000000000..43b12a499 --- /dev/null +++ b/newtests/20140717_145743/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. + +{value_generator, {fixed_bin, 100}}. + +{operations, [{append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140717_145743/log.sasl.txt b/newtests/20140717_145743/log.sasl.txt new file mode 100644 index 000000000..eac6bf1af --- /dev/null +++ b/newtests/20140717_145743/log.sasl.txt @@ -0,0 +1,336 @@ + +=PROGRESS REPORT==== 17-Jul-2014::14:57:44 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::14:57:44 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::14:57:44 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 17-Jul-2014::14:57:44 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::14:57:44 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 17-Jul-2014::14:57:44 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::14:57:44 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 17-Jul-2014::14:57:44 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 17-Jul-2014::14:57:44 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::14:57:44 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::14:57:44 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 17-Jul-2014::14:57:44 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::14:57:44 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::14:57:44 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::14:57:44 === + supervisor: {local,net_sup} + started: [{pid,<0.100.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::14:57:44 === + supervisor: {local,kernel_sup} + started: [{pid,<0.97.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 17-Jul-2014::14:57:44 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.105.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 17-Jul-2014::14:57:44 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.104.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::14:57:44 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::14:57:45 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.108.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::14:57:45 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.110.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::14:57:45 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 17-Jul-2014::14:58:09 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 17-Jul-2014::14:58:09 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.25275.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 17-Jul-2014::14:58:10 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.25275.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 17-Jul-2014::14:58:11 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.26513.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 17-Jul-2014::14:58:12 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.26513.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 17-Jul-2014::14:58:12 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.28437.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 17-Jul-2014::14:58:14 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.108.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 17-Jul-2014::14:58:14 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.29752.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 17-Jul-2014::14:58:16 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.29752.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 17-Jul-2014::14:58:16 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.32148.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 17-Jul-2014::14:58:16 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.32148.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 17-Jul-2014::14:58:16 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.32148.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140717_145743/read_latencies.csv b/newtests/20140717_145743/read_latencies.csv new file mode 100644 index 000000000..e6a75620b --- /dev/null +++ b/newtests/20140717_145743/read_latencies.csv @@ -0,0 +1,5 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +10.000371, 10.000371, 5039, 807, 1834.2, 1602, 2747, 4195, 10483, 19562, 0 +20.001459, 10.001088, 5206, 939, 1808.9, 1566, 2676, 3350, 10060, 27986, 0 +30.001361, 9.999902, 5092, 924, 1799.0, 1561, 2685, 3561, 8732, 24277, 0 +31.77629, 1.774929, 887, 924, 1783.9, 1555, 2674, 3268, 6952, 9469, 0 diff --git a/newtests/20140717_145743/summary.csv b/newtests/20140717_145743/summary.csv new file mode 100644 index 000000000..a1eeb6264 --- /dev/null +++ b/newtests/20140717_145743/summary.csv @@ -0,0 +1,5 @@ +elapsed, window, total, successful, failed +10.000371, 10.000371, 10067, 10067, 0 +20.001459, 10.001088, 10333, 10333, 0 +30.001361, 9.999902, 10043, 10043, 0 +31.77629, 1.774929, 1794, 1794, 0 diff --git a/newtests/20140717_151128/append_latencies.csv b/newtests/20140717_151128/append_latencies.csv new file mode 100644 index 000000000..eb16445e9 --- /dev/null +++ b/newtests/20140717_151128/append_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.383697, 0.383697, 0, 0, 0, 0, 0, 0, 0, 0, 7 diff --git a/newtests/20140717_151128/console.log b/newtests/20140717_151128/console.log new file mode 100644 index 000000000..0e3dfa4e6 --- /dev/null +++ b/newtests/20140717_151128/console.log @@ -0,0 +1,96 @@ +2014-07-17 15:11:28.664 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_151128/error.log"} into lager_event +2014-07-17 15:11:28.664 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_151128/console.log"} into lager_event +2014-07-17 15:11:28.664 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-17 15:11:28.698 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-17 15:11:28.698 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-17 15:11:28.698 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-17 15:11:28.698 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-17 15:11:29.141 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-17 15:11:29.656 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-17 15:11:29.657 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_151128/console.log to debug +2014-07-17 15:11:29.666 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} +2014-07-17 15:11:29.757 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-17 15:11:29.757 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-17 15:11:29.758 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-17 15:11:29.773 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-17 15:11:29.773 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-17 15:11:29.861 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-17 15:11:29.861 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-17 15:11:29.889 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-17 15:11:29.893 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-17 15:11:29.899 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-17 15:11:29.899 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-17 15:11:29.937 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-17 15:11:29.949 [debug] <0.94.0>@basho_bench_valgen:init_source:85 random source +2014-07-17 15:11:30.089 [debug] <0.97.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.98.0> +2014-07-17 15:11:30.096 [debug] <0.97.0> Supervisor net_sup started auth:start_link() at pid <0.99.0> +2014-07-17 15:11:30.109 [info] <0.96.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-17 15:11:30.109 [debug] <0.97.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.100.0> +2014-07-17 15:11:30.110 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.97.0> +2014-07-17 15:11:30.123 [debug] <0.104.0> Supervisor inet_gethost_native_sup started undefined at pid <0.105.0> +2014-07-17 15:11:30.124 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.104.0> +2014-07-17 15:11:30.144 [info] <0.96.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' +2014-07-17 15:11:30.144 [info] <0.96.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-17 15:11:30.144 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-17 15:11:30.223 [info] <0.109.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' +2014-07-17 15:11:30.223 [info] <0.109.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-17 15:11:30.224 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.108.0> +2014-07-17 15:11:30.224 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.110.0> +2014-07-17 15:11:30.231 [info] <0.96.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.96.0> +2014-07-17 15:11:30.231 [info] <0.109.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.109.0> +2014-07-17 15:11:30.232 [debug] <0.96.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarith,[{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-17 15:11:30.232 [debug] <0.109.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarith,[{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-17 15:11:30.232 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with crash +2014-07-17 15:11:30.232 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with crash +2014-07-17 15:11:30.232 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-17 15:11:30.232 [debug] <0.111.0>@basho_bench_valgen:init_source:85 random source +2014-07-17 15:11:30.232 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-17 15:11:30.310 [info] <0.112.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' +2014-07-17 15:11:30.310 [info] <0.112.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-17 15:11:30.310 [warning] <0.111.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-17 15:11:30.310 [info] <0.112.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.112.0> +2014-07-17 15:11:30.310 [debug] <0.112.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarith,[{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-17 15:11:30.310 [error] <0.111.0>@basho_bench_worker:handle_info:149 Worker <0.112.0> exited with crash +2014-07-17 15:11:30.311 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.111.0> +2014-07-17 15:11:30.311 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated +2014-07-17 15:11:30.383 [info] <0.114.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' +2014-07-17 15:11:30.383 [info] <0.114.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-17 15:11:30.383 [warning] <0.113.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-17 15:11:30.383 [info] <0.114.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.114.0> +2014-07-17 15:11:30.383 [debug] <0.115.0>@basho_bench_valgen:init_source:85 random source +2014-07-17 15:11:30.384 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.113.0> +2014-07-17 15:11:30.384 [debug] <0.114.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarith,[{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-17 15:11:30.384 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.111.0> exit with reason normal in context child_terminated +2014-07-17 15:11:30.385 [error] <0.113.0>@basho_bench_worker:handle_info:149 Worker <0.114.0> exited with crash +2014-07-17 15:11:30.459 [info] <0.116.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' +2014-07-17 15:11:30.459 [info] <0.116.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-17 15:11:30.459 [warning] <0.115.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-17 15:11:30.459 [info] <0.116.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.116.0> +2014-07-17 15:11:30.459 [debug] <0.116.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarith,[{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-17 15:11:30.459 [error] <0.115.0>@basho_bench_worker:handle_info:149 Worker <0.116.0> exited with crash +2014-07-17 15:11:30.460 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.115.0> +2014-07-17 15:11:30.460 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.113.0> exit with reason normal in context child_terminated +2014-07-17 15:11:30.533 [info] <0.118.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' +2014-07-17 15:11:30.533 [info] <0.118.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-17 15:11:30.533 [warning] <0.117.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-17 15:11:30.533 [info] <0.118.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.118.0> +2014-07-17 15:11:30.533 [debug] <0.118.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarith,[{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-17 15:11:30.533 [error] <0.117.0>@basho_bench_worker:handle_info:149 Worker <0.118.0> exited with crash +2014-07-17 15:11:30.533 [debug] <0.119.0>@basho_bench_valgen:init_source:85 random source +2014-07-17 15:11:30.533 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.117.0> +2014-07-17 15:11:30.534 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.115.0> exit with reason normal in context child_terminated +2014-07-17 15:11:30.607 [info] <0.120.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' +2014-07-17 15:11:30.607 [info] <0.120.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-17 15:11:30.607 [warning] <0.119.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-17 15:11:30.607 [info] <0.120.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.120.0> +2014-07-17 15:11:30.607 [debug] <0.120.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarith,[{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-17 15:11:30.608 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.119.0> +2014-07-17 15:11:30.608 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.117.0> exit with reason normal in context child_terminated +2014-07-17 15:11:30.608 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.117.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-17 15:11:30.619 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {append,append} +2014-07-17 15:11:30.619 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} +2014-07-17 15:11:30.619 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{append,append},7},{{{append,append},crash},7}] +2014-07-17 15:11:30.619 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: +2014-07-17 15:11:30.619 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{append,append},crash}: 7 diff --git a/newtests/20140717_151128/crash.log b/newtests/20140717_151128/crash.log new file mode 100644 index 000000000..b28ec55e6 --- /dev/null +++ b/newtests/20140717_151128/crash.log @@ -0,0 +1,42 @@ +2014-07-17 15:11:30 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-17 15:11:30 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.108.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-17 15:11:30 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.111.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-17 15:11:30 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.113.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-17 15:11:30 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.115.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-17 15:11:30 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.117.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-17 15:11:30 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.117.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140717_151128/error.log b/newtests/20140717_151128/error.log new file mode 100644 index 000000000..3f08a014c --- /dev/null +++ b/newtests/20140717_151128/error.log @@ -0,0 +1,13 @@ +2014-07-17 15:11:30.232 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with crash +2014-07-17 15:11:30.232 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with crash +2014-07-17 15:11:30.232 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-17 15:11:30.310 [error] <0.111.0>@basho_bench_worker:handle_info:149 Worker <0.112.0> exited with crash +2014-07-17 15:11:30.311 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated +2014-07-17 15:11:30.384 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.111.0> exit with reason normal in context child_terminated +2014-07-17 15:11:30.385 [error] <0.113.0>@basho_bench_worker:handle_info:149 Worker <0.114.0> exited with crash +2014-07-17 15:11:30.459 [error] <0.115.0>@basho_bench_worker:handle_info:149 Worker <0.116.0> exited with crash +2014-07-17 15:11:30.460 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.113.0> exit with reason normal in context child_terminated +2014-07-17 15:11:30.533 [error] <0.117.0>@basho_bench_worker:handle_info:149 Worker <0.118.0> exited with crash +2014-07-17 15:11:30.534 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.115.0> exit with reason normal in context child_terminated +2014-07-17 15:11:30.608 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.117.0> exit with reason normal in context child_terminated +2014-07-17 15:11:30.608 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.117.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140717_151128/errors.csv b/newtests/20140717_151128/errors.csv new file mode 100644 index 000000000..a31ba014e --- /dev/null +++ b/newtests/20140717_151128/errors.csv @@ -0,0 +1,2 @@ +"error","count" +"{{append,append},crash}","7" diff --git a/newtests/20140717_151128/floppstore.config b/newtests/20140717_151128/floppstore.config new file mode 100644 index 000000000..43b12a499 --- /dev/null +++ b/newtests/20140717_151128/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. + +{value_generator, {fixed_bin, 100}}. + +{operations, [{append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140717_151128/log.sasl.txt b/newtests/20140717_151128/log.sasl.txt new file mode 100644 index 000000000..62f6c8707 --- /dev/null +++ b/newtests/20140717_151128/log.sasl.txt @@ -0,0 +1,336 @@ + +=PROGRESS REPORT==== 17-Jul-2014::15:11:29 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:11:29 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:11:29 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 17-Jul-2014::15:11:29 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:11:29 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 17-Jul-2014::15:11:29 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:11:29 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 17-Jul-2014::15:11:29 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 17-Jul-2014::15:11:29 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:11:29 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:11:29 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 17-Jul-2014::15:11:29 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:11:30 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:11:30 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:11:30 === + supervisor: {local,net_sup} + started: [{pid,<0.100.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:11:30 === + supervisor: {local,kernel_sup} + started: [{pid,<0.97.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 17-Jul-2014::15:11:30 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.105.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 17-Jul-2014::15:11:30 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.104.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:11:30 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:11:30 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.108.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:11:30 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.110.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:11:30 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 17-Jul-2014::15:11:30 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 17-Jul-2014::15:11:30 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.111.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 17-Jul-2014::15:11:30 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.108.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 17-Jul-2014::15:11:30 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.113.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 17-Jul-2014::15:11:30 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.111.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 17-Jul-2014::15:11:30 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.115.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 17-Jul-2014::15:11:30 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.113.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 17-Jul-2014::15:11:30 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.117.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 17-Jul-2014::15:11:30 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.115.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 17-Jul-2014::15:11:30 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.119.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 17-Jul-2014::15:11:30 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.117.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 17-Jul-2014::15:11:30 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.117.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140717_151128/read_latencies.csv b/newtests/20140717_151128/read_latencies.csv new file mode 100644 index 000000000..110cbd0b2 --- /dev/null +++ b/newtests/20140717_151128/read_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.383697, 0.383697, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140717_151128/summary.csv b/newtests/20140717_151128/summary.csv new file mode 100644 index 000000000..8baac6712 --- /dev/null +++ b/newtests/20140717_151128/summary.csv @@ -0,0 +1,2 @@ +elapsed, window, total, successful, failed +0.383697, 0.383697, 7, 0, 7 diff --git a/newtests/20140717_151250/append_latencies.csv b/newtests/20140717_151250/append_latencies.csv new file mode 100644 index 000000000..cdae4a7c6 --- /dev/null +++ b/newtests/20140717_151250/append_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.422422, 0.422422, 0, 0, 0, 0, 0, 0, 0, 0, 6 diff --git a/newtests/20140717_151250/console.log b/newtests/20140717_151250/console.log new file mode 100644 index 000000000..9a04d6387 --- /dev/null +++ b/newtests/20140717_151250/console.log @@ -0,0 +1,94 @@ +2014-07-17 15:12:50.983 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_151250/error.log"} into lager_event +2014-07-17 15:12:50.983 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_151250/console.log"} into lager_event +2014-07-17 15:12:50.983 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-17 15:12:51.018 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-17 15:12:51.018 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-17 15:12:51.018 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-17 15:12:51.018 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-17 15:12:51.458 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-17 15:12:51.818 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-17 15:12:51.819 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_151250/console.log to debug +2014-07-17 15:12:51.825 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} +2014-07-17 15:12:51.909 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-17 15:12:51.909 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-17 15:12:51.910 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-17 15:12:51.925 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-17 15:12:51.925 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-17 15:12:52.016 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-17 15:12:52.016 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-17 15:12:52.045 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-17 15:12:52.050 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-17 15:12:52.054 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-17 15:12:52.055 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-17 15:12:52.089 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-17 15:12:52.101 [debug] <0.94.0>@basho_bench_valgen:init_source:85 random source +2014-07-17 15:12:52.232 [debug] <0.97.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.98.0> +2014-07-17 15:12:52.240 [debug] <0.97.0> Supervisor net_sup started auth:start_link() at pid <0.99.0> +2014-07-17 15:12:52.256 [info] <0.96.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-17 15:12:52.256 [debug] <0.97.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.100.0> +2014-07-17 15:12:52.257 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.97.0> +2014-07-17 15:12:52.272 [debug] <0.104.0> Supervisor inet_gethost_native_sup started undefined at pid <0.105.0> +2014-07-17 15:12:52.272 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.104.0> +2014-07-17 15:12:52.289 [info] <0.96.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' +2014-07-17 15:12:52.289 [info] <0.96.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-17 15:12:52.290 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-17 15:12:52.364 [info] <0.109.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' +2014-07-17 15:12:52.365 [info] <0.109.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-17 15:12:52.365 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.108.0> +2014-07-17 15:12:52.366 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.110.0> +2014-07-17 15:12:52.373 [info] <0.109.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.109.0> +2014-07-17 15:12:52.373 [info] <0.96.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.96.0> +2014-07-17 15:12:52.373 [debug] <0.109.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,list_to_integer,[<<0,11,65,114>>],[]},{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-17 15:12:52.373 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with crash +2014-07-17 15:12:52.373 [debug] <0.96.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,list_to_integer,[<<0,19,63,68>>],[]},{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-17 15:12:52.373 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-17 15:12:52.373 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with crash +2014-07-17 15:12:52.374 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated +2014-07-17 15:12:52.458 [info] <0.112.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' +2014-07-17 15:12:52.458 [info] <0.112.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-17 15:12:52.458 [warning] <0.111.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-17 15:12:52.458 [info] <0.112.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.112.0> +2014-07-17 15:12:52.458 [debug] <0.113.0>@basho_bench_valgen:init_source:85 random source +2014-07-17 15:12:52.459 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.111.0> +2014-07-17 15:12:52.459 [debug] <0.112.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,list_to_integer,[<<0,11,65,114>>],[]},{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-17 15:12:52.459 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-17 15:12:52.460 [error] <0.111.0>@basho_bench_worker:handle_info:149 Worker <0.112.0> exited with crash +2014-07-17 15:12:52.540 [info] <0.114.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' +2014-07-17 15:12:52.540 [info] <0.114.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-17 15:12:52.540 [warning] <0.113.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-17 15:12:52.540 [info] <0.114.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.114.0> +2014-07-17 15:12:52.541 [debug] <0.114.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,list_to_integer,[<<0,19,63,68>>],[]},{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-17 15:12:52.541 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.113.0> +2014-07-17 15:12:52.541 [error] <0.113.0>@basho_bench_worker:handle_info:149 Worker <0.114.0> exited with crash +2014-07-17 15:12:52.542 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.111.0> exit with reason normal in context child_terminated +2014-07-17 15:12:52.623 [info] <0.116.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' +2014-07-17 15:12:52.623 [info] <0.116.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-17 15:12:52.623 [warning] <0.115.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-17 15:12:52.623 [info] <0.116.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.116.0> +2014-07-17 15:12:52.623 [debug] <0.117.0>@basho_bench_valgen:init_source:85 random source +2014-07-17 15:12:52.623 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.115.0> +2014-07-17 15:12:52.623 [debug] <0.116.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,list_to_integer,[<<0,11,65,114>>],[]},{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-17 15:12:52.623 [error] <0.115.0>@basho_bench_worker:handle_info:149 Worker <0.116.0> exited with crash +2014-07-17 15:12:52.624 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.113.0> exit with reason normal in context child_terminated +2014-07-17 15:12:52.706 [info] <0.118.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' +2014-07-17 15:12:52.706 [info] <0.118.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-17 15:12:52.706 [warning] <0.117.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-17 15:12:52.706 [info] <0.118.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.118.0> +2014-07-17 15:12:52.706 [debug] <0.118.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,list_to_integer,[<<0,19,63,68>>],[]},{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-17 15:12:52.706 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.117.0> +2014-07-17 15:12:52.706 [error] <0.117.0>@basho_bench_worker:handle_info:149 Worker <0.118.0> exited with crash +2014-07-17 15:12:52.707 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.115.0> exit with reason normal in context child_terminated +2014-07-17 15:12:52.787 [info] <0.120.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' +2014-07-17 15:12:52.787 [info] <0.120.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-17 15:12:52.787 [warning] <0.119.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-17 15:12:52.787 [info] <0.120.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.120.0> +2014-07-17 15:12:52.788 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.119.0> +2014-07-17 15:12:52.788 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.117.0> exit with reason normal in context child_terminated +2014-07-17 15:12:52.788 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.117.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-17 15:12:52.802 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {append,append} +2014-07-17 15:12:52.803 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} +2014-07-17 15:12:52.803 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{append,append},6},{{{append,append},crash},6}] +2014-07-17 15:12:52.803 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: +2014-07-17 15:12:52.803 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{append,append},crash}: 6 diff --git a/newtests/20140717_151250/crash.log b/newtests/20140717_151250/crash.log new file mode 100644 index 000000000..5c5b28baa --- /dev/null +++ b/newtests/20140717_151250/crash.log @@ -0,0 +1,42 @@ +2014-07-17 15:12:52 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.108.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-17 15:12:52 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-17 15:12:52 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.111.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-17 15:12:52 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.113.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-17 15:12:52 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.115.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-17 15:12:52 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.117.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-17 15:12:52 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.117.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140717_151250/error.log b/newtests/20140717_151250/error.log new file mode 100644 index 000000000..c3b448c24 --- /dev/null +++ b/newtests/20140717_151250/error.log @@ -0,0 +1,13 @@ +2014-07-17 15:12:52.373 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with crash +2014-07-17 15:12:52.373 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with crash +2014-07-17 15:12:52.374 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated +2014-07-17 15:12:52.459 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-17 15:12:52.460 [error] <0.111.0>@basho_bench_worker:handle_info:149 Worker <0.112.0> exited with crash +2014-07-17 15:12:52.541 [error] <0.113.0>@basho_bench_worker:handle_info:149 Worker <0.114.0> exited with crash +2014-07-17 15:12:52.542 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.111.0> exit with reason normal in context child_terminated +2014-07-17 15:12:52.623 [error] <0.115.0>@basho_bench_worker:handle_info:149 Worker <0.116.0> exited with crash +2014-07-17 15:12:52.624 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.113.0> exit with reason normal in context child_terminated +2014-07-17 15:12:52.706 [error] <0.117.0>@basho_bench_worker:handle_info:149 Worker <0.118.0> exited with crash +2014-07-17 15:12:52.707 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.115.0> exit with reason normal in context child_terminated +2014-07-17 15:12:52.788 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.117.0> exit with reason normal in context child_terminated +2014-07-17 15:12:52.788 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.117.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140717_151250/errors.csv b/newtests/20140717_151250/errors.csv new file mode 100644 index 000000000..dc786eb57 --- /dev/null +++ b/newtests/20140717_151250/errors.csv @@ -0,0 +1,2 @@ +"error","count" +"{{append,append},crash}","6" diff --git a/newtests/20140717_151250/floppstore.config b/newtests/20140717_151250/floppstore.config new file mode 100644 index 000000000..43b12a499 --- /dev/null +++ b/newtests/20140717_151250/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. + +{value_generator, {fixed_bin, 100}}. + +{operations, [{append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140717_151250/log.sasl.txt b/newtests/20140717_151250/log.sasl.txt new file mode 100644 index 000000000..c18ea4c15 --- /dev/null +++ b/newtests/20140717_151250/log.sasl.txt @@ -0,0 +1,336 @@ + +=PROGRESS REPORT==== 17-Jul-2014::15:12:51 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:12:51 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:12:51 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 17-Jul-2014::15:12:51 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:12:51 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 17-Jul-2014::15:12:52 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:12:52 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 17-Jul-2014::15:12:52 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 17-Jul-2014::15:12:52 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:12:52 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:12:52 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 17-Jul-2014::15:12:52 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:12:52 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:12:52 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:12:52 === + supervisor: {local,net_sup} + started: [{pid,<0.100.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:12:52 === + supervisor: {local,kernel_sup} + started: [{pid,<0.97.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 17-Jul-2014::15:12:52 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.105.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 17-Jul-2014::15:12:52 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.104.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:12:52 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:12:52 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.108.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:12:52 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.110.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:12:52 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 17-Jul-2014::15:12:52 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.108.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 17-Jul-2014::15:12:52 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.111.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 17-Jul-2014::15:12:52 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 17-Jul-2014::15:12:52 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.113.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 17-Jul-2014::15:12:52 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.111.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 17-Jul-2014::15:12:52 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.115.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 17-Jul-2014::15:12:52 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.113.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 17-Jul-2014::15:12:52 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.117.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 17-Jul-2014::15:12:52 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.115.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 17-Jul-2014::15:12:52 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.119.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 17-Jul-2014::15:12:52 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.117.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 17-Jul-2014::15:12:52 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.117.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140717_151250/read_latencies.csv b/newtests/20140717_151250/read_latencies.csv new file mode 100644 index 000000000..5737f34c0 --- /dev/null +++ b/newtests/20140717_151250/read_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.422422, 0.422422, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140717_151250/summary.csv b/newtests/20140717_151250/summary.csv new file mode 100644 index 000000000..6d54d174e --- /dev/null +++ b/newtests/20140717_151250/summary.csv @@ -0,0 +1,2 @@ +elapsed, window, total, successful, failed +0.422422, 0.422422, 6, 0, 6 diff --git a/newtests/20140717_151444/append_latencies.csv b/newtests/20140717_151444/append_latencies.csv new file mode 100644 index 000000000..874e34c5f --- /dev/null +++ b/newtests/20140717_151444/append_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.39581, 0.39581, 0, 0, 0, 0, 0, 0, 0, 0, 6 diff --git a/newtests/20140717_151444/console.log b/newtests/20140717_151444/console.log new file mode 100644 index 000000000..f4db670c0 --- /dev/null +++ b/newtests/20140717_151444/console.log @@ -0,0 +1,94 @@ +2014-07-17 15:14:44.460 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_151444/error.log"} into lager_event +2014-07-17 15:14:44.460 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_151444/console.log"} into lager_event +2014-07-17 15:14:44.460 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-17 15:14:44.492 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-17 15:14:44.493 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-17 15:14:44.493 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-17 15:14:44.493 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-17 15:14:44.937 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-17 15:14:45.296 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-17 15:14:45.297 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_151444/console.log to debug +2014-07-17 15:14:45.304 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} +2014-07-17 15:14:45.384 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-17 15:14:45.384 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-17 15:14:45.385 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-17 15:14:45.399 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-17 15:14:45.400 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-17 15:14:45.485 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-17 15:14:45.485 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-17 15:14:45.513 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-17 15:14:45.518 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-17 15:14:45.524 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-17 15:14:45.524 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-17 15:14:45.560 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-17 15:14:45.571 [debug] <0.94.0>@basho_bench_valgen:init_source:85 random source +2014-07-17 15:14:45.697 [debug] <0.97.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.98.0> +2014-07-17 15:14:45.704 [debug] <0.97.0> Supervisor net_sup started auth:start_link() at pid <0.99.0> +2014-07-17 15:14:45.717 [info] <0.96.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-17 15:14:45.717 [debug] <0.97.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.100.0> +2014-07-17 15:14:45.717 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.97.0> +2014-07-17 15:14:45.731 [debug] <0.104.0> Supervisor inet_gethost_native_sup started undefined at pid <0.105.0> +2014-07-17 15:14:45.731 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.104.0> +2014-07-17 15:14:45.747 [info] <0.96.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' +2014-07-17 15:14:45.747 [info] <0.96.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-17 15:14:45.748 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-17 15:14:45.829 [info] <0.109.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' +2014-07-17 15:14:45.829 [info] <0.109.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-17 15:14:45.830 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.108.0> +2014-07-17 15:14:45.830 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.110.0> +2014-07-17 15:14:45.837 [info] <0.109.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.109.0> +2014-07-17 15:14:45.837 [info] <0.96.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.96.0> +2014-07-17 15:14:45.837 [debug] <0.109.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,list_to_integer,[[0,11,65,114]],[]},{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-17 15:14:45.837 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with crash +2014-07-17 15:14:45.837 [debug] <0.96.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,list_to_integer,[[0,19,63,68]],[]},{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-17 15:14:45.837 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with crash +2014-07-17 15:14:45.837 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-17 15:14:45.838 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated +2014-07-17 15:14:45.913 [info] <0.112.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' +2014-07-17 15:14:45.913 [info] <0.112.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-17 15:14:45.913 [warning] <0.111.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-17 15:14:45.913 [info] <0.112.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.112.0> +2014-07-17 15:14:45.913 [debug] <0.113.0>@basho_bench_valgen:init_source:85 random source +2014-07-17 15:14:45.914 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.111.0> +2014-07-17 15:14:45.915 [debug] <0.112.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,list_to_integer,[[0,11,65,114]],[]},{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-17 15:14:45.915 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-17 15:14:45.915 [error] <0.111.0>@basho_bench_worker:handle_info:149 Worker <0.112.0> exited with crash +2014-07-17 15:14:45.991 [info] <0.114.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' +2014-07-17 15:14:45.991 [info] <0.114.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-17 15:14:45.991 [warning] <0.113.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-17 15:14:45.991 [info] <0.114.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.114.0> +2014-07-17 15:14:45.992 [debug] <0.114.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,list_to_integer,[[0,19,63,68]],[]},{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-17 15:14:45.992 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.113.0> +2014-07-17 15:14:45.992 [error] <0.113.0>@basho_bench_worker:handle_info:149 Worker <0.114.0> exited with crash +2014-07-17 15:14:45.992 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.111.0> exit with reason normal in context child_terminated +2014-07-17 15:14:46.073 [info] <0.116.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' +2014-07-17 15:14:46.074 [info] <0.116.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-17 15:14:46.074 [warning] <0.115.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-17 15:14:46.074 [info] <0.116.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.116.0> +2014-07-17 15:14:46.074 [debug] <0.117.0>@basho_bench_valgen:init_source:85 random source +2014-07-17 15:14:46.074 [debug] <0.116.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,list_to_integer,[[0,11,65,114]],[]},{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-17 15:14:46.074 [error] <0.115.0>@basho_bench_worker:handle_info:149 Worker <0.116.0> exited with crash +2014-07-17 15:14:46.074 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.115.0> +2014-07-17 15:14:46.075 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.113.0> exit with reason normal in context child_terminated +2014-07-17 15:14:46.148 [info] <0.118.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' +2014-07-17 15:14:46.148 [info] <0.118.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-17 15:14:46.148 [warning] <0.117.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-17 15:14:46.148 [info] <0.118.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.118.0> +2014-07-17 15:14:46.149 [debug] <0.118.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,list_to_integer,[[0,19,63,68]],[]},{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-17 15:14:46.149 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.117.0> +2014-07-17 15:14:46.149 [error] <0.117.0>@basho_bench_worker:handle_info:149 Worker <0.118.0> exited with crash +2014-07-17 15:14:46.149 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.115.0> exit with reason normal in context child_terminated +2014-07-17 15:14:46.225 [info] <0.120.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' +2014-07-17 15:14:46.225 [info] <0.120.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-17 15:14:46.225 [warning] <0.119.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-17 15:14:46.225 [info] <0.120.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.120.0> +2014-07-17 15:14:46.226 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.119.0> +2014-07-17 15:14:46.226 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.117.0> exit with reason normal in context child_terminated +2014-07-17 15:14:46.227 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.117.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-17 15:14:46.239 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {append,append} +2014-07-17 15:14:46.239 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} +2014-07-17 15:14:46.239 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{append,append},6},{{{append,append},crash},6}] +2014-07-17 15:14:46.239 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: +2014-07-17 15:14:46.239 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{append,append},crash}: 6 diff --git a/newtests/20140717_151444/crash.log b/newtests/20140717_151444/crash.log new file mode 100644 index 000000000..82765d5fa --- /dev/null +++ b/newtests/20140717_151444/crash.log @@ -0,0 +1,42 @@ +2014-07-17 15:14:45 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.108.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-17 15:14:45 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-17 15:14:45 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.111.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-17 15:14:46 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.113.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-17 15:14:46 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.115.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-17 15:14:46 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.117.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-17 15:14:46 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.117.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140717_151444/error.log b/newtests/20140717_151444/error.log new file mode 100644 index 000000000..8e939f763 --- /dev/null +++ b/newtests/20140717_151444/error.log @@ -0,0 +1,13 @@ +2014-07-17 15:14:45.837 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with crash +2014-07-17 15:14:45.837 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with crash +2014-07-17 15:14:45.838 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated +2014-07-17 15:14:45.915 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-17 15:14:45.915 [error] <0.111.0>@basho_bench_worker:handle_info:149 Worker <0.112.0> exited with crash +2014-07-17 15:14:45.992 [error] <0.113.0>@basho_bench_worker:handle_info:149 Worker <0.114.0> exited with crash +2014-07-17 15:14:45.992 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.111.0> exit with reason normal in context child_terminated +2014-07-17 15:14:46.074 [error] <0.115.0>@basho_bench_worker:handle_info:149 Worker <0.116.0> exited with crash +2014-07-17 15:14:46.075 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.113.0> exit with reason normal in context child_terminated +2014-07-17 15:14:46.149 [error] <0.117.0>@basho_bench_worker:handle_info:149 Worker <0.118.0> exited with crash +2014-07-17 15:14:46.149 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.115.0> exit with reason normal in context child_terminated +2014-07-17 15:14:46.226 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.117.0> exit with reason normal in context child_terminated +2014-07-17 15:14:46.227 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.117.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140717_151444/errors.csv b/newtests/20140717_151444/errors.csv new file mode 100644 index 000000000..dc786eb57 --- /dev/null +++ b/newtests/20140717_151444/errors.csv @@ -0,0 +1,2 @@ +"error","count" +"{{append,append},crash}","6" diff --git a/newtests/20140717_151444/floppstore.config b/newtests/20140717_151444/floppstore.config new file mode 100644 index 000000000..43b12a499 --- /dev/null +++ b/newtests/20140717_151444/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. + +{value_generator, {fixed_bin, 100}}. + +{operations, [{append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140717_151444/log.sasl.txt b/newtests/20140717_151444/log.sasl.txt new file mode 100644 index 000000000..55f0b5e8d --- /dev/null +++ b/newtests/20140717_151444/log.sasl.txt @@ -0,0 +1,336 @@ + +=PROGRESS REPORT==== 17-Jul-2014::15:14:45 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:14:45 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:14:45 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 17-Jul-2014::15:14:45 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:14:45 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 17-Jul-2014::15:14:45 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:14:45 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 17-Jul-2014::15:14:45 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 17-Jul-2014::15:14:45 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:14:45 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:14:45 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 17-Jul-2014::15:14:45 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:14:45 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:14:45 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:14:45 === + supervisor: {local,net_sup} + started: [{pid,<0.100.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:14:45 === + supervisor: {local,kernel_sup} + started: [{pid,<0.97.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 17-Jul-2014::15:14:45 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.105.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 17-Jul-2014::15:14:45 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.104.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:14:45 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:14:45 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.108.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:14:45 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.110.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:14:45 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 17-Jul-2014::15:14:45 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.108.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 17-Jul-2014::15:14:45 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.111.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 17-Jul-2014::15:14:45 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 17-Jul-2014::15:14:45 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.113.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 17-Jul-2014::15:14:45 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.111.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 17-Jul-2014::15:14:46 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.115.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 17-Jul-2014::15:14:46 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.113.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 17-Jul-2014::15:14:46 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.117.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 17-Jul-2014::15:14:46 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.115.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 17-Jul-2014::15:14:46 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.119.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 17-Jul-2014::15:14:46 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.117.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 17-Jul-2014::15:14:46 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.117.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140717_151444/read_latencies.csv b/newtests/20140717_151444/read_latencies.csv new file mode 100644 index 000000000..7bc01c622 --- /dev/null +++ b/newtests/20140717_151444/read_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.39581, 0.39581, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140717_151444/summary.csv b/newtests/20140717_151444/summary.csv new file mode 100644 index 000000000..6960faa3f --- /dev/null +++ b/newtests/20140717_151444/summary.csv @@ -0,0 +1,2 @@ +elapsed, window, total, successful, failed +0.39581, 0.39581, 6, 0, 6 diff --git a/newtests/20140717_151946/append_latencies.csv b/newtests/20140717_151946/append_latencies.csv new file mode 100644 index 000000000..665d73181 --- /dev/null +++ b/newtests/20140717_151946/append_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.400549, 0.400549, 0, 0, 0, 0, 0, 0, 0, 0, 6 diff --git a/newtests/20140717_151946/console.log b/newtests/20140717_151946/console.log new file mode 100644 index 000000000..2f607421e --- /dev/null +++ b/newtests/20140717_151946/console.log @@ -0,0 +1,94 @@ +2014-07-17 15:19:46.848 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_151946/error.log"} into lager_event +2014-07-17 15:19:46.848 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_151946/console.log"} into lager_event +2014-07-17 15:19:46.848 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-17 15:19:46.884 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-17 15:19:46.884 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-17 15:19:46.884 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-17 15:19:46.885 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-17 15:19:47.324 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-17 15:19:47.668 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-17 15:19:47.669 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_151946/console.log to debug +2014-07-17 15:19:47.677 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} +2014-07-17 15:19:47.756 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-17 15:19:47.756 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-17 15:19:47.756 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-17 15:19:47.770 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-17 15:19:47.770 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-17 15:19:47.853 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-17 15:19:47.853 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-17 15:19:47.878 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-17 15:19:47.882 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-17 15:19:47.886 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-17 15:19:47.887 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-17 15:19:47.920 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-17 15:19:47.930 [debug] <0.94.0>@basho_bench_valgen:init_source:85 random source +2014-07-17 15:19:48.050 [debug] <0.97.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.98.0> +2014-07-17 15:19:48.057 [debug] <0.97.0> Supervisor net_sup started auth:start_link() at pid <0.99.0> +2014-07-17 15:19:48.069 [info] <0.96.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-17 15:19:48.069 [debug] <0.97.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.100.0> +2014-07-17 15:19:48.069 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.97.0> +2014-07-17 15:19:48.083 [debug] <0.104.0> Supervisor inet_gethost_native_sup started undefined at pid <0.105.0> +2014-07-17 15:19:48.084 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.104.0> +2014-07-17 15:19:48.098 [info] <0.96.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' +2014-07-17 15:19:48.098 [info] <0.96.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-17 15:19:48.098 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-17 15:19:48.176 [info] <0.109.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' +2014-07-17 15:19:48.176 [info] <0.109.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-17 15:19:48.177 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.108.0> +2014-07-17 15:19:48.177 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.110.0> +2014-07-17 15:19:48.184 [info] <0.109.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.109.0> +2014-07-17 15:19:48.184 [info] <0.96.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.96.0> +2014-07-17 15:19:48.184 [debug] <0.109.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,list_to_integer,[[0,11,65,114]],[]},{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-17 15:19:48.185 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-17 15:19:48.185 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with crash +2014-07-17 15:19:48.185 [debug] <0.96.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,list_to_integer,[[0,19,63,68]],[]},{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-17 15:19:48.185 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with crash +2014-07-17 15:19:48.191 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated +2014-07-17 15:19:48.268 [info] <0.112.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' +2014-07-17 15:19:48.268 [info] <0.112.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-17 15:19:48.268 [warning] <0.111.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-17 15:19:48.268 [info] <0.112.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.112.0> +2014-07-17 15:19:48.268 [debug] <0.113.0>@basho_bench_valgen:init_source:85 random source +2014-07-17 15:19:48.269 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.111.0> +2014-07-17 15:19:48.269 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-17 15:19:48.270 [debug] <0.112.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,list_to_integer,[[0,11,65,114]],[]},{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-17 15:19:48.270 [error] <0.111.0>@basho_bench_worker:handle_info:149 Worker <0.112.0> exited with crash +2014-07-17 15:19:48.345 [info] <0.114.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' +2014-07-17 15:19:48.345 [info] <0.114.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-17 15:19:48.345 [warning] <0.113.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-17 15:19:48.345 [info] <0.114.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.114.0> +2014-07-17 15:19:48.345 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.113.0> +2014-07-17 15:19:48.346 [debug] <0.114.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,list_to_integer,[[0,19,63,68]],[]},{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-17 15:19:48.346 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.111.0> exit with reason normal in context child_terminated +2014-07-17 15:19:48.346 [error] <0.113.0>@basho_bench_worker:handle_info:149 Worker <0.114.0> exited with crash +2014-07-17 15:19:48.422 [info] <0.116.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' +2014-07-17 15:19:48.422 [info] <0.116.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-17 15:19:48.422 [warning] <0.115.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-17 15:19:48.422 [info] <0.116.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.116.0> +2014-07-17 15:19:48.422 [debug] <0.117.0>@basho_bench_valgen:init_source:85 random source +2014-07-17 15:19:48.423 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.115.0> +2014-07-17 15:19:48.423 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.113.0> exit with reason normal in context child_terminated +2014-07-17 15:19:48.424 [debug] <0.116.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,list_to_integer,[[0,11,65,114]],[]},{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-17 15:19:48.424 [error] <0.115.0>@basho_bench_worker:handle_info:149 Worker <0.116.0> exited with crash +2014-07-17 15:19:48.500 [info] <0.118.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' +2014-07-17 15:19:48.500 [info] <0.118.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-17 15:19:48.500 [warning] <0.117.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-17 15:19:48.500 [info] <0.118.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.118.0> +2014-07-17 15:19:48.500 [debug] <0.118.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,list_to_integer,[[0,19,63,68]],[]},{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-17 15:19:48.500 [error] <0.117.0>@basho_bench_worker:handle_info:149 Worker <0.118.0> exited with crash +2014-07-17 15:19:48.500 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.117.0> +2014-07-17 15:19:48.501 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.115.0> exit with reason normal in context child_terminated +2014-07-17 15:19:48.577 [info] <0.120.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' +2014-07-17 15:19:48.577 [info] <0.120.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-17 15:19:48.577 [warning] <0.119.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-17 15:19:48.577 [info] <0.120.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.120.0> +2014-07-17 15:19:48.577 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.119.0> +2014-07-17 15:19:48.578 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.117.0> exit with reason normal in context child_terminated +2014-07-17 15:19:48.578 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.117.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-17 15:19:48.589 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {append,append} +2014-07-17 15:19:48.589 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} +2014-07-17 15:19:48.589 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{append,append},6},{{{append,append},crash},6}] +2014-07-17 15:19:48.589 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: +2014-07-17 15:19:48.589 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{append,append},crash}: 6 diff --git a/newtests/20140717_151946/crash.log b/newtests/20140717_151946/crash.log new file mode 100644 index 000000000..1ec8e0bcb --- /dev/null +++ b/newtests/20140717_151946/crash.log @@ -0,0 +1,42 @@ +2014-07-17 15:19:48 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.108.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-17 15:19:48 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-17 15:19:48 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.111.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-17 15:19:48 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.113.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-17 15:19:48 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.115.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-17 15:19:48 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.117.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-17 15:19:48 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.117.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140717_151946/error.log b/newtests/20140717_151946/error.log new file mode 100644 index 000000000..1b7a80134 --- /dev/null +++ b/newtests/20140717_151946/error.log @@ -0,0 +1,13 @@ +2014-07-17 15:19:48.185 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with crash +2014-07-17 15:19:48.185 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with crash +2014-07-17 15:19:48.191 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated +2014-07-17 15:19:48.269 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-17 15:19:48.270 [error] <0.111.0>@basho_bench_worker:handle_info:149 Worker <0.112.0> exited with crash +2014-07-17 15:19:48.346 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.111.0> exit with reason normal in context child_terminated +2014-07-17 15:19:48.346 [error] <0.113.0>@basho_bench_worker:handle_info:149 Worker <0.114.0> exited with crash +2014-07-17 15:19:48.423 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.113.0> exit with reason normal in context child_terminated +2014-07-17 15:19:48.424 [error] <0.115.0>@basho_bench_worker:handle_info:149 Worker <0.116.0> exited with crash +2014-07-17 15:19:48.500 [error] <0.117.0>@basho_bench_worker:handle_info:149 Worker <0.118.0> exited with crash +2014-07-17 15:19:48.501 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.115.0> exit with reason normal in context child_terminated +2014-07-17 15:19:48.578 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.117.0> exit with reason normal in context child_terminated +2014-07-17 15:19:48.578 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.117.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140717_151946/errors.csv b/newtests/20140717_151946/errors.csv new file mode 100644 index 000000000..dc786eb57 --- /dev/null +++ b/newtests/20140717_151946/errors.csv @@ -0,0 +1,2 @@ +"error","count" +"{{append,append},crash}","6" diff --git a/newtests/20140717_151946/floppstore.config b/newtests/20140717_151946/floppstore.config new file mode 100644 index 000000000..43b12a499 --- /dev/null +++ b/newtests/20140717_151946/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. + +{value_generator, {fixed_bin, 100}}. + +{operations, [{append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140717_151946/log.sasl.txt b/newtests/20140717_151946/log.sasl.txt new file mode 100644 index 000000000..f42a71afa --- /dev/null +++ b/newtests/20140717_151946/log.sasl.txt @@ -0,0 +1,336 @@ + +=PROGRESS REPORT==== 17-Jul-2014::15:19:47 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:19:47 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:19:47 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 17-Jul-2014::15:19:47 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:19:47 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 17-Jul-2014::15:19:47 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:19:47 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 17-Jul-2014::15:19:47 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 17-Jul-2014::15:19:47 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:19:47 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:19:47 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 17-Jul-2014::15:19:47 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:19:48 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:19:48 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:19:48 === + supervisor: {local,net_sup} + started: [{pid,<0.100.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:19:48 === + supervisor: {local,kernel_sup} + started: [{pid,<0.97.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 17-Jul-2014::15:19:48 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.105.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 17-Jul-2014::15:19:48 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.104.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:19:48 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:19:48 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.108.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:19:48 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.110.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:19:48 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 17-Jul-2014::15:19:48 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.108.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 17-Jul-2014::15:19:48 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.111.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 17-Jul-2014::15:19:48 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 17-Jul-2014::15:19:48 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.113.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 17-Jul-2014::15:19:48 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.111.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 17-Jul-2014::15:19:48 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.115.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 17-Jul-2014::15:19:48 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.113.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 17-Jul-2014::15:19:48 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.117.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 17-Jul-2014::15:19:48 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.115.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 17-Jul-2014::15:19:48 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.119.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 17-Jul-2014::15:19:48 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.117.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 17-Jul-2014::15:19:48 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.117.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140717_151946/read_latencies.csv b/newtests/20140717_151946/read_latencies.csv new file mode 100644 index 000000000..5f3009e57 --- /dev/null +++ b/newtests/20140717_151946/read_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.400549, 0.400549, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140717_151946/summary.csv b/newtests/20140717_151946/summary.csv new file mode 100644 index 000000000..6bfe1daa1 --- /dev/null +++ b/newtests/20140717_151946/summary.csv @@ -0,0 +1,2 @@ +elapsed, window, total, successful, failed +0.400549, 0.400549, 6, 0, 6 diff --git a/newtests/20140717_152313/append_latencies.csv b/newtests/20140717_152313/append_latencies.csv new file mode 100644 index 000000000..2d93da351 --- /dev/null +++ b/newtests/20140717_152313/append_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.391637, 0.391637, 0, 0, 0, 0, 0, 0, 0, 0, 7 diff --git a/newtests/20140717_152313/console.log b/newtests/20140717_152313/console.log new file mode 100644 index 000000000..8e03a3fec --- /dev/null +++ b/newtests/20140717_152313/console.log @@ -0,0 +1,95 @@ +2014-07-17 15:23:13.624 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_152313/error.log"} into lager_event +2014-07-17 15:23:13.624 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_152313/console.log"} into lager_event +2014-07-17 15:23:13.624 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-17 15:23:13.662 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-17 15:23:13.662 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-17 15:23:13.662 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-17 15:23:13.662 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-17 15:23:14.100 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-17 15:23:14.414 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-17 15:23:14.415 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_152313/console.log to debug +2014-07-17 15:23:14.422 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} +2014-07-17 15:23:14.498 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-17 15:23:14.498 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-17 15:23:14.499 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-17 15:23:14.516 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-17 15:23:14.516 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-17 15:23:14.606 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-17 15:23:14.606 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-17 15:23:14.634 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-17 15:23:14.638 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-17 15:23:14.644 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-17 15:23:14.644 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-17 15:23:14.686 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-17 15:23:14.696 [debug] <0.94.0>@basho_bench_valgen:init_source:85 random source +2014-07-17 15:23:14.820 [debug] <0.97.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.98.0> +2014-07-17 15:23:14.827 [debug] <0.97.0> Supervisor net_sup started auth:start_link() at pid <0.99.0> +2014-07-17 15:23:14.840 [info] <0.96.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-17 15:23:14.841 [debug] <0.97.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.100.0> +2014-07-17 15:23:14.841 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.97.0> +2014-07-17 15:23:14.858 [debug] <0.104.0> Supervisor inet_gethost_native_sup started undefined at pid <0.105.0> +2014-07-17 15:23:14.858 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.104.0> +2014-07-17 15:23:14.875 [info] <0.96.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' +2014-07-17 15:23:14.875 [info] <0.96.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-17 15:23:14.876 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-17 15:23:14.954 [info] <0.109.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' +2014-07-17 15:23:14.954 [info] <0.109.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-17 15:23:14.954 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.108.0> +2014-07-17 15:23:14.955 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.110.0> +2014-07-17 15:23:14.963 [info] <0.109.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.109.0> +2014-07-17 15:23:14.963 [info] <0.96.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.96.0> +2014-07-17 15:23:14.963 [debug] <0.109.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarith,[{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-17 15:23:14.963 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with crash +2014-07-17 15:23:14.963 [debug] <0.96.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarith,[{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-17 15:23:14.963 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with crash +2014-07-17 15:23:14.963 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-17 15:23:14.964 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated +2014-07-17 15:23:15.039 [info] <0.112.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' +2014-07-17 15:23:15.039 [info] <0.112.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-17 15:23:15.039 [warning] <0.111.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-17 15:23:15.039 [info] <0.112.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.112.0> +2014-07-17 15:23:15.040 [debug] <0.113.0>@basho_bench_valgen:init_source:85 random source +2014-07-17 15:23:15.040 [debug] <0.112.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarith,[{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-17 15:23:15.040 [error] <0.111.0>@basho_bench_worker:handle_info:149 Worker <0.112.0> exited with crash +2014-07-17 15:23:15.040 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.111.0> +2014-07-17 15:23:15.041 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-17 15:23:15.115 [info] <0.114.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' +2014-07-17 15:23:15.115 [info] <0.114.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-17 15:23:15.115 [warning] <0.113.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-17 15:23:15.115 [info] <0.114.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.114.0> +2014-07-17 15:23:15.116 [debug] <0.114.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarith,[{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-17 15:23:15.116 [error] <0.113.0>@basho_bench_worker:handle_info:149 Worker <0.114.0> exited with crash +2014-07-17 15:23:15.116 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.113.0> +2014-07-17 15:23:15.117 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.111.0> exit with reason normal in context child_terminated +2014-07-17 15:23:15.200 [info] <0.116.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' +2014-07-17 15:23:15.200 [info] <0.116.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-17 15:23:15.200 [warning] <0.115.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-17 15:23:15.200 [info] <0.116.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.116.0> +2014-07-17 15:23:15.200 [debug] <0.117.0>@basho_bench_valgen:init_source:85 random source +2014-07-17 15:23:15.200 [debug] <0.116.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarith,[{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-17 15:23:15.201 [error] <0.115.0>@basho_bench_worker:handle_info:149 Worker <0.116.0> exited with crash +2014-07-17 15:23:15.201 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.115.0> +2014-07-17 15:23:15.201 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.113.0> exit with reason normal in context child_terminated +2014-07-17 15:23:15.274 [info] <0.118.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' +2014-07-17 15:23:15.274 [info] <0.118.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-17 15:23:15.274 [warning] <0.117.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-17 15:23:15.274 [info] <0.118.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.118.0> +2014-07-17 15:23:15.274 [debug] <0.118.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarith,[{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-17 15:23:15.274 [error] <0.117.0>@basho_bench_worker:handle_info:149 Worker <0.118.0> exited with crash +2014-07-17 15:23:15.274 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.117.0> +2014-07-17 15:23:15.275 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.115.0> exit with reason normal in context child_terminated +2014-07-17 15:23:15.345 [info] <0.120.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' +2014-07-17 15:23:15.345 [info] <0.120.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-17 15:23:15.345 [warning] <0.119.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-17 15:23:15.345 [info] <0.120.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.120.0> +2014-07-17 15:23:15.346 [debug] <0.120.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarith,[{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-17 15:23:15.346 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.119.0> +2014-07-17 15:23:15.346 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.117.0> exit with reason normal in context child_terminated +2014-07-17 15:23:15.347 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.117.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-17 15:23:15.358 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {append,append} +2014-07-17 15:23:15.358 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} +2014-07-17 15:23:15.358 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{append,append},7},{{{append,append},crash},7}] +2014-07-17 15:23:15.359 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: +2014-07-17 15:23:15.359 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{append,append},crash}: 7 diff --git a/newtests/20140717_152313/crash.log b/newtests/20140717_152313/crash.log new file mode 100644 index 000000000..ddee12c93 --- /dev/null +++ b/newtests/20140717_152313/crash.log @@ -0,0 +1,42 @@ +2014-07-17 15:23:14 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.108.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-17 15:23:15 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-17 15:23:15 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.111.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-17 15:23:15 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.113.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-17 15:23:15 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.115.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-17 15:23:15 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.117.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-17 15:23:15 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.117.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140717_152313/error.log b/newtests/20140717_152313/error.log new file mode 100644 index 000000000..d59c3e58d --- /dev/null +++ b/newtests/20140717_152313/error.log @@ -0,0 +1,13 @@ +2014-07-17 15:23:14.963 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with crash +2014-07-17 15:23:14.963 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with crash +2014-07-17 15:23:14.964 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated +2014-07-17 15:23:15.040 [error] <0.111.0>@basho_bench_worker:handle_info:149 Worker <0.112.0> exited with crash +2014-07-17 15:23:15.041 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-17 15:23:15.116 [error] <0.113.0>@basho_bench_worker:handle_info:149 Worker <0.114.0> exited with crash +2014-07-17 15:23:15.117 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.111.0> exit with reason normal in context child_terminated +2014-07-17 15:23:15.201 [error] <0.115.0>@basho_bench_worker:handle_info:149 Worker <0.116.0> exited with crash +2014-07-17 15:23:15.201 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.113.0> exit with reason normal in context child_terminated +2014-07-17 15:23:15.274 [error] <0.117.0>@basho_bench_worker:handle_info:149 Worker <0.118.0> exited with crash +2014-07-17 15:23:15.275 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.115.0> exit with reason normal in context child_terminated +2014-07-17 15:23:15.346 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.117.0> exit with reason normal in context child_terminated +2014-07-17 15:23:15.347 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.117.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140717_152313/errors.csv b/newtests/20140717_152313/errors.csv new file mode 100644 index 000000000..a31ba014e --- /dev/null +++ b/newtests/20140717_152313/errors.csv @@ -0,0 +1,2 @@ +"error","count" +"{{append,append},crash}","7" diff --git a/newtests/20140717_152313/floppstore.config b/newtests/20140717_152313/floppstore.config new file mode 100644 index 000000000..43b12a499 --- /dev/null +++ b/newtests/20140717_152313/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. + +{value_generator, {fixed_bin, 100}}. + +{operations, [{append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140717_152313/log.sasl.txt b/newtests/20140717_152313/log.sasl.txt new file mode 100644 index 000000000..fbb561998 --- /dev/null +++ b/newtests/20140717_152313/log.sasl.txt @@ -0,0 +1,336 @@ + +=PROGRESS REPORT==== 17-Jul-2014::15:23:14 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:23:14 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:23:14 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 17-Jul-2014::15:23:14 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:23:14 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 17-Jul-2014::15:23:14 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:23:14 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 17-Jul-2014::15:23:14 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 17-Jul-2014::15:23:14 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:23:14 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:23:14 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 17-Jul-2014::15:23:14 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:23:14 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:23:14 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:23:14 === + supervisor: {local,net_sup} + started: [{pid,<0.100.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:23:14 === + supervisor: {local,kernel_sup} + started: [{pid,<0.97.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 17-Jul-2014::15:23:14 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.105.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 17-Jul-2014::15:23:14 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.104.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:23:14 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:23:14 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.108.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:23:14 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.110.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:23:14 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 17-Jul-2014::15:23:14 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.108.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 17-Jul-2014::15:23:15 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.111.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 17-Jul-2014::15:23:15 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 17-Jul-2014::15:23:15 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.113.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 17-Jul-2014::15:23:15 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.111.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 17-Jul-2014::15:23:15 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.115.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 17-Jul-2014::15:23:15 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.113.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 17-Jul-2014::15:23:15 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.117.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 17-Jul-2014::15:23:15 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.115.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 17-Jul-2014::15:23:15 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.119.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 17-Jul-2014::15:23:15 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.117.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 17-Jul-2014::15:23:15 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.117.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140717_152313/read_latencies.csv b/newtests/20140717_152313/read_latencies.csv new file mode 100644 index 000000000..1bea7fbc7 --- /dev/null +++ b/newtests/20140717_152313/read_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.391637, 0.391637, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140717_152313/summary.csv b/newtests/20140717_152313/summary.csv new file mode 100644 index 000000000..0b78216cd --- /dev/null +++ b/newtests/20140717_152313/summary.csv @@ -0,0 +1,2 @@ +elapsed, window, total, successful, failed +0.391637, 0.391637, 7, 0, 7 diff --git a/newtests/20140717_152423/append_latencies.csv b/newtests/20140717_152423/append_latencies.csv new file mode 100644 index 000000000..9166399c8 --- /dev/null +++ b/newtests/20140717_152423/append_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.410836, 0.410836, 0, 0, 0, 0, 0, 0, 0, 0, 6 diff --git a/newtests/20140717_152423/console.log b/newtests/20140717_152423/console.log new file mode 100644 index 000000000..64fd35cfd --- /dev/null +++ b/newtests/20140717_152423/console.log @@ -0,0 +1,95 @@ +2014-07-17 15:24:23.871 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_152423/error.log"} into lager_event +2014-07-17 15:24:23.871 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_152423/console.log"} into lager_event +2014-07-17 15:24:23.871 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-17 15:24:23.905 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-17 15:24:23.905 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-17 15:24:23.905 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-17 15:24:23.905 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-17 15:24:24.347 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-17 15:24:24.742 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-17 15:24:24.744 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_152423/console.log to debug +2014-07-17 15:24:24.751 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} +2014-07-17 15:24:24.837 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-17 15:24:24.838 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-17 15:24:24.838 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-17 15:24:24.853 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-17 15:24:24.853 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-17 15:24:24.948 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-17 15:24:24.948 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-17 15:24:24.979 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-17 15:24:24.984 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-17 15:24:24.989 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-17 15:24:24.989 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-17 15:24:25.022 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-17 15:24:25.034 [debug] <0.94.0>@basho_bench_valgen:init_source:85 random source +2014-07-17 15:24:25.167 [debug] <0.97.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.98.0> +2014-07-17 15:24:25.174 [debug] <0.97.0> Supervisor net_sup started auth:start_link() at pid <0.99.0> +2014-07-17 15:24:25.188 [info] <0.96.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-17 15:24:25.189 [debug] <0.97.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.100.0> +2014-07-17 15:24:25.189 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.97.0> +2014-07-17 15:24:25.204 [debug] <0.104.0> Supervisor inet_gethost_native_sup started undefined at pid <0.105.0> +2014-07-17 15:24:25.204 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.104.0> +2014-07-17 15:24:25.219 [info] <0.96.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' +2014-07-17 15:24:25.219 [info] <0.96.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-17 15:24:25.220 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-17 15:24:25.308 [info] <0.109.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' +2014-07-17 15:24:25.308 [info] <0.109.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-17 15:24:25.309 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.108.0> +2014-07-17 15:24:25.309 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.110.0> +2014-07-17 15:24:25.315 [info] <0.96.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.96.0> +2014-07-17 15:24:25.315 [info] <0.109.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.109.0> +2014-07-17 15:24:25.315 [debug] <0.96.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarith,[{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,125}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-17 15:24:25.315 [debug] <0.109.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarith,[{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,125}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-17 15:24:25.315 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with crash +2014-07-17 15:24:25.315 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-17 15:24:25.315 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with crash +2014-07-17 15:24:25.316 [debug] <0.111.0>@basho_bench_valgen:init_source:85 random source +2014-07-17 15:24:25.316 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-17 15:24:25.400 [info] <0.112.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' +2014-07-17 15:24:25.400 [info] <0.112.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-17 15:24:25.400 [warning] <0.111.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-17 15:24:25.401 [info] <0.112.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.112.0> +2014-07-17 15:24:25.401 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.111.0> +2014-07-17 15:24:25.401 [debug] <0.112.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarith,[{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,125}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-17 15:24:25.401 [error] <0.111.0>@basho_bench_worker:handle_info:149 Worker <0.112.0> exited with crash +2014-07-17 15:24:25.402 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated +2014-07-17 15:24:25.478 [info] <0.114.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' +2014-07-17 15:24:25.478 [info] <0.114.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-17 15:24:25.478 [warning] <0.113.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-17 15:24:25.478 [info] <0.114.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.114.0> +2014-07-17 15:24:25.478 [debug] <0.115.0>@basho_bench_valgen:init_source:85 random source +2014-07-17 15:24:25.478 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.113.0> +2014-07-17 15:24:25.479 [debug] <0.114.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarith,[{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,125}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-17 15:24:25.479 [error] <0.113.0>@basho_bench_worker:handle_info:149 Worker <0.114.0> exited with crash +2014-07-17 15:24:25.479 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.111.0> exit with reason normal in context child_terminated +2014-07-17 15:24:25.558 [info] <0.116.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' +2014-07-17 15:24:25.558 [info] <0.116.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-17 15:24:25.558 [warning] <0.115.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-17 15:24:25.558 [info] <0.116.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.116.0> +2014-07-17 15:24:25.558 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.115.0> +2014-07-17 15:24:25.559 [debug] <0.116.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarith,[{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,125}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-17 15:24:25.559 [error] <0.115.0>@basho_bench_worker:handle_info:149 Worker <0.116.0> exited with crash +2014-07-17 15:24:25.559 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.113.0> exit with reason normal in context child_terminated +2014-07-17 15:24:25.642 [info] <0.118.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' +2014-07-17 15:24:25.642 [info] <0.118.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-17 15:24:25.642 [warning] <0.117.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-17 15:24:25.642 [info] <0.118.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.118.0> +2014-07-17 15:24:25.642 [debug] <0.119.0>@basho_bench_valgen:init_source:85 random source +2014-07-17 15:24:25.642 [debug] <0.118.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarith,[{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,125}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-17 15:24:25.642 [error] <0.117.0>@basho_bench_worker:handle_info:149 Worker <0.118.0> exited with crash +2014-07-17 15:24:25.642 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.117.0> +2014-07-17 15:24:25.643 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.115.0> exit with reason normal in context child_terminated +2014-07-17 15:24:25.719 [info] <0.120.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' +2014-07-17 15:24:25.719 [info] <0.120.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-17 15:24:25.719 [warning] <0.119.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-17 15:24:25.719 [info] <0.120.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.120.0> +2014-07-17 15:24:25.720 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.119.0> +2014-07-17 15:24:25.720 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.117.0> exit with reason normal in context child_terminated +2014-07-17 15:24:25.721 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.117.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-17 15:24:25.733 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {append,append} +2014-07-17 15:24:25.734 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} +2014-07-17 15:24:25.734 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{append,append},6},{{{append,append},crash},6}] +2014-07-17 15:24:25.734 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: +2014-07-17 15:24:25.734 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{append,append},crash}: 6 diff --git a/newtests/20140717_152423/crash.log b/newtests/20140717_152423/crash.log new file mode 100644 index 000000000..5411c4299 --- /dev/null +++ b/newtests/20140717_152423/crash.log @@ -0,0 +1,42 @@ +2014-07-17 15:24:25 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-17 15:24:25 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.108.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-17 15:24:25 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.111.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-17 15:24:25 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.113.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-17 15:24:25 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.115.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-17 15:24:25 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.117.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-17 15:24:25 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.117.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140717_152423/error.log b/newtests/20140717_152423/error.log new file mode 100644 index 000000000..ecf968a89 --- /dev/null +++ b/newtests/20140717_152423/error.log @@ -0,0 +1,13 @@ +2014-07-17 15:24:25.315 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with crash +2014-07-17 15:24:25.315 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with crash +2014-07-17 15:24:25.316 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-17 15:24:25.401 [error] <0.111.0>@basho_bench_worker:handle_info:149 Worker <0.112.0> exited with crash +2014-07-17 15:24:25.402 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated +2014-07-17 15:24:25.479 [error] <0.113.0>@basho_bench_worker:handle_info:149 Worker <0.114.0> exited with crash +2014-07-17 15:24:25.479 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.111.0> exit with reason normal in context child_terminated +2014-07-17 15:24:25.559 [error] <0.115.0>@basho_bench_worker:handle_info:149 Worker <0.116.0> exited with crash +2014-07-17 15:24:25.559 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.113.0> exit with reason normal in context child_terminated +2014-07-17 15:24:25.642 [error] <0.117.0>@basho_bench_worker:handle_info:149 Worker <0.118.0> exited with crash +2014-07-17 15:24:25.643 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.115.0> exit with reason normal in context child_terminated +2014-07-17 15:24:25.720 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.117.0> exit with reason normal in context child_terminated +2014-07-17 15:24:25.721 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.117.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140717_152423/errors.csv b/newtests/20140717_152423/errors.csv new file mode 100644 index 000000000..dc786eb57 --- /dev/null +++ b/newtests/20140717_152423/errors.csv @@ -0,0 +1,2 @@ +"error","count" +"{{append,append},crash}","6" diff --git a/newtests/20140717_152423/floppstore.config b/newtests/20140717_152423/floppstore.config new file mode 100644 index 000000000..43b12a499 --- /dev/null +++ b/newtests/20140717_152423/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. + +{value_generator, {fixed_bin, 100}}. + +{operations, [{append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140717_152423/log.sasl.txt b/newtests/20140717_152423/log.sasl.txt new file mode 100644 index 000000000..d365dffd1 --- /dev/null +++ b/newtests/20140717_152423/log.sasl.txt @@ -0,0 +1,336 @@ + +=PROGRESS REPORT==== 17-Jul-2014::15:24:24 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:24:24 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:24:24 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 17-Jul-2014::15:24:24 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:24:24 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 17-Jul-2014::15:24:24 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:24:24 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 17-Jul-2014::15:24:24 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 17-Jul-2014::15:24:24 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:24:24 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:24:24 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 17-Jul-2014::15:24:25 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:24:25 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:24:25 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:24:25 === + supervisor: {local,net_sup} + started: [{pid,<0.100.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:24:25 === + supervisor: {local,kernel_sup} + started: [{pid,<0.97.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 17-Jul-2014::15:24:25 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.105.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 17-Jul-2014::15:24:25 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.104.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:24:25 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:24:25 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.108.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:24:25 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.110.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:24:25 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 17-Jul-2014::15:24:25 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 17-Jul-2014::15:24:25 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.111.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 17-Jul-2014::15:24:25 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.108.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 17-Jul-2014::15:24:25 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.113.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 17-Jul-2014::15:24:25 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.111.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 17-Jul-2014::15:24:25 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.115.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 17-Jul-2014::15:24:25 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.113.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 17-Jul-2014::15:24:25 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.117.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 17-Jul-2014::15:24:25 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.115.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 17-Jul-2014::15:24:25 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.119.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 17-Jul-2014::15:24:25 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.117.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 17-Jul-2014::15:24:25 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.117.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140717_152423/read_latencies.csv b/newtests/20140717_152423/read_latencies.csv new file mode 100644 index 000000000..3fcafe1a1 --- /dev/null +++ b/newtests/20140717_152423/read_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.410836, 0.410836, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140717_152423/summary.csv b/newtests/20140717_152423/summary.csv new file mode 100644 index 000000000..fa4aa4b25 --- /dev/null +++ b/newtests/20140717_152423/summary.csv @@ -0,0 +1,2 @@ +elapsed, window, total, successful, failed +0.410836, 0.410836, 6, 0, 6 diff --git a/newtests/20140717_153010/append_latencies.csv b/newtests/20140717_153010/append_latencies.csv new file mode 100644 index 000000000..2b74d1edd --- /dev/null +++ b/newtests/20140717_153010/append_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.397305, 0.397305, 0, 0, 0, 0, 0, 0, 0, 0, 7 diff --git a/newtests/20140717_153010/console.log b/newtests/20140717_153010/console.log new file mode 100644 index 000000000..894267bbe --- /dev/null +++ b/newtests/20140717_153010/console.log @@ -0,0 +1,96 @@ +2014-07-17 15:30:10.995 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_153010/error.log"} into lager_event +2014-07-17 15:30:10.995 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_153010/console.log"} into lager_event +2014-07-17 15:30:10.995 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-17 15:30:11.029 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-17 15:30:11.029 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-17 15:30:11.030 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-17 15:30:11.030 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-17 15:30:11.472 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-17 15:30:11.870 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-17 15:30:11.871 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_153010/console.log to debug +2014-07-17 15:30:11.878 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} +2014-07-17 15:30:11.960 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-17 15:30:11.960 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-17 15:30:11.960 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-17 15:30:11.975 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-17 15:30:11.975 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-17 15:30:12.061 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-17 15:30:12.061 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-17 15:30:12.089 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-17 15:30:12.093 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-17 15:30:12.099 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-17 15:30:12.099 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-17 15:30:12.137 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-17 15:30:12.148 [debug] <0.94.0>@basho_bench_valgen:init_source:85 random source +2014-07-17 15:30:12.271 [debug] <0.97.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.98.0> +2014-07-17 15:30:12.277 [debug] <0.97.0> Supervisor net_sup started auth:start_link() at pid <0.99.0> +2014-07-17 15:30:12.290 [info] <0.96.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-17 15:30:12.290 [debug] <0.97.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.100.0> +2014-07-17 15:30:12.290 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.97.0> +2014-07-17 15:30:12.304 [debug] <0.104.0> Supervisor inet_gethost_native_sup started undefined at pid <0.105.0> +2014-07-17 15:30:12.304 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.104.0> +2014-07-17 15:30:12.319 [info] <0.96.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' +2014-07-17 15:30:12.319 [info] <0.96.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-17 15:30:12.319 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-17 15:30:12.396 [info] <0.109.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' +2014-07-17 15:30:12.396 [info] <0.109.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-17 15:30:12.397 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.108.0> +2014-07-17 15:30:12.397 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.110.0> +2014-07-17 15:30:12.404 [info] <0.109.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.109.0> +2014-07-17 15:30:12.404 [info] <0.96.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.96.0> +2014-07-17 15:30:12.404 [debug] <0.96.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,list_to_integer,[[0,19,63,68]],[]},{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-17 15:30:12.404 [debug] <0.109.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,list_to_integer,[[0,11,65,114]],[]},{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-17 15:30:12.404 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with crash +2014-07-17 15:30:12.404 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-17 15:30:12.404 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with crash +2014-07-17 15:30:12.404 [debug] <0.111.0>@basho_bench_valgen:init_source:85 random source +2014-07-17 15:30:12.411 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-17 15:30:12.486 [info] <0.112.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' +2014-07-17 15:30:12.486 [info] <0.112.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-17 15:30:12.486 [warning] <0.111.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-17 15:30:12.486 [info] <0.112.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.112.0> +2014-07-17 15:30:12.486 [debug] <0.112.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,list_to_integer,[[0,19,63,68]],[]},{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-17 15:30:12.486 [error] <0.111.0>@basho_bench_worker:handle_info:149 Worker <0.112.0> exited with crash +2014-07-17 15:30:12.486 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.111.0> +2014-07-17 15:30:12.487 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated +2014-07-17 15:30:12.569 [info] <0.114.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' +2014-07-17 15:30:12.569 [info] <0.114.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-17 15:30:12.569 [warning] <0.113.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-17 15:30:12.569 [info] <0.114.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.114.0> +2014-07-17 15:30:12.569 [debug] <0.114.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,list_to_integer,[[0,11,65,114]],[]},{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-17 15:30:12.570 [error] <0.113.0>@basho_bench_worker:handle_info:149 Worker <0.114.0> exited with crash +2014-07-17 15:30:12.570 [debug] <0.115.0>@basho_bench_valgen:init_source:85 random source +2014-07-17 15:30:12.570 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.113.0> +2014-07-17 15:30:12.571 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.111.0> exit with reason normal in context child_terminated +2014-07-17 15:30:12.645 [info] <0.116.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' +2014-07-17 15:30:12.645 [info] <0.116.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-17 15:30:12.645 [warning] <0.115.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-17 15:30:12.645 [info] <0.116.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.116.0> +2014-07-17 15:30:12.645 [debug] <0.116.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,list_to_integer,[[0,19,63,68]],[]},{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-17 15:30:12.645 [error] <0.115.0>@basho_bench_worker:handle_info:149 Worker <0.116.0> exited with crash +2014-07-17 15:30:12.645 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.115.0> +2014-07-17 15:30:12.646 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.113.0> exit with reason normal in context child_terminated +2014-07-17 15:30:12.722 [info] <0.118.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' +2014-07-17 15:30:12.722 [info] <0.118.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-17 15:30:12.722 [warning] <0.117.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-17 15:30:12.722 [info] <0.118.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.118.0> +2014-07-17 15:30:12.722 [debug] <0.119.0>@basho_bench_valgen:init_source:85 random source +2014-07-17 15:30:12.722 [debug] <0.118.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,list_to_integer,[[0,11,65,114]],[]},{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-17 15:30:12.722 [error] <0.117.0>@basho_bench_worker:handle_info:149 Worker <0.118.0> exited with crash +2014-07-17 15:30:12.723 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.117.0> +2014-07-17 15:30:12.723 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.115.0> exit with reason normal in context child_terminated +2014-07-17 15:30:12.794 [info] <0.120.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' +2014-07-17 15:30:12.794 [info] <0.120.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-17 15:30:12.794 [warning] <0.119.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-17 15:30:12.794 [info] <0.120.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.120.0> +2014-07-17 15:30:12.794 [debug] <0.120.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,list_to_integer,[[0,19,63,68]],[]},{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-17 15:30:12.794 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.119.0> +2014-07-17 15:30:12.795 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.117.0> exit with reason normal in context child_terminated +2014-07-17 15:30:12.795 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.117.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-17 15:30:12.808 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {append,append} +2014-07-17 15:30:12.809 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} +2014-07-17 15:30:12.809 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{append,append},7},{{{append,append},crash},7}] +2014-07-17 15:30:12.809 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: +2014-07-17 15:30:12.809 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{append,append},crash}: 7 diff --git a/newtests/20140717_153010/crash.log b/newtests/20140717_153010/crash.log new file mode 100644 index 000000000..256edd629 --- /dev/null +++ b/newtests/20140717_153010/crash.log @@ -0,0 +1,42 @@ +2014-07-17 15:30:12 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-17 15:30:12 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.108.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-17 15:30:12 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.111.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-17 15:30:12 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.113.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-17 15:30:12 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.115.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-17 15:30:12 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.117.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-17 15:30:12 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.117.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140717_153010/error.log b/newtests/20140717_153010/error.log new file mode 100644 index 000000000..c4977a2b1 --- /dev/null +++ b/newtests/20140717_153010/error.log @@ -0,0 +1,13 @@ +2014-07-17 15:30:12.404 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with crash +2014-07-17 15:30:12.404 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with crash +2014-07-17 15:30:12.411 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-17 15:30:12.486 [error] <0.111.0>@basho_bench_worker:handle_info:149 Worker <0.112.0> exited with crash +2014-07-17 15:30:12.487 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated +2014-07-17 15:30:12.570 [error] <0.113.0>@basho_bench_worker:handle_info:149 Worker <0.114.0> exited with crash +2014-07-17 15:30:12.571 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.111.0> exit with reason normal in context child_terminated +2014-07-17 15:30:12.645 [error] <0.115.0>@basho_bench_worker:handle_info:149 Worker <0.116.0> exited with crash +2014-07-17 15:30:12.646 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.113.0> exit with reason normal in context child_terminated +2014-07-17 15:30:12.722 [error] <0.117.0>@basho_bench_worker:handle_info:149 Worker <0.118.0> exited with crash +2014-07-17 15:30:12.723 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.115.0> exit with reason normal in context child_terminated +2014-07-17 15:30:12.795 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.117.0> exit with reason normal in context child_terminated +2014-07-17 15:30:12.795 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.117.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140717_153010/errors.csv b/newtests/20140717_153010/errors.csv new file mode 100644 index 000000000..a31ba014e --- /dev/null +++ b/newtests/20140717_153010/errors.csv @@ -0,0 +1,2 @@ +"error","count" +"{{append,append},crash}","7" diff --git a/newtests/20140717_153010/floppstore.config b/newtests/20140717_153010/floppstore.config new file mode 100644 index 000000000..43b12a499 --- /dev/null +++ b/newtests/20140717_153010/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. + +{value_generator, {fixed_bin, 100}}. + +{operations, [{append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140717_153010/log.sasl.txt b/newtests/20140717_153010/log.sasl.txt new file mode 100644 index 000000000..9b7264088 --- /dev/null +++ b/newtests/20140717_153010/log.sasl.txt @@ -0,0 +1,336 @@ + +=PROGRESS REPORT==== 17-Jul-2014::15:30:11 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:30:11 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:30:11 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 17-Jul-2014::15:30:11 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:30:11 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 17-Jul-2014::15:30:12 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:30:12 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 17-Jul-2014::15:30:12 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 17-Jul-2014::15:30:12 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:30:12 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:30:12 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 17-Jul-2014::15:30:12 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:30:12 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:30:12 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:30:12 === + supervisor: {local,net_sup} + started: [{pid,<0.100.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:30:12 === + supervisor: {local,kernel_sup} + started: [{pid,<0.97.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 17-Jul-2014::15:30:12 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.105.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 17-Jul-2014::15:30:12 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.104.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:30:12 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:30:12 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.108.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:30:12 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.110.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:30:12 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 17-Jul-2014::15:30:12 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 17-Jul-2014::15:30:12 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.111.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 17-Jul-2014::15:30:12 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.108.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 17-Jul-2014::15:30:12 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.113.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 17-Jul-2014::15:30:12 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.111.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 17-Jul-2014::15:30:12 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.115.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 17-Jul-2014::15:30:12 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.113.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 17-Jul-2014::15:30:12 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.117.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 17-Jul-2014::15:30:12 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.115.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 17-Jul-2014::15:30:12 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.119.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 17-Jul-2014::15:30:12 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.117.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 17-Jul-2014::15:30:12 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.117.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140717_153010/read_latencies.csv b/newtests/20140717_153010/read_latencies.csv new file mode 100644 index 000000000..b102d3c74 --- /dev/null +++ b/newtests/20140717_153010/read_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.397305, 0.397305, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140717_153010/summary.csv b/newtests/20140717_153010/summary.csv new file mode 100644 index 000000000..07446be0f --- /dev/null +++ b/newtests/20140717_153010/summary.csv @@ -0,0 +1,2 @@ +elapsed, window, total, successful, failed +0.397305, 0.397305, 7, 0, 7 diff --git a/newtests/20140717_154723/console.log b/newtests/20140717_154723/console.log new file mode 100644 index 000000000..2af6edd7f --- /dev/null +++ b/newtests/20140717_154723/console.log @@ -0,0 +1,12 @@ +2014-07-17 15:47:23.719 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_154723/error.log"} into lager_event +2014-07-17 15:47:23.719 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_154723/console.log"} into lager_event +2014-07-17 15:47:23.719 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-17 15:47:23.754 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-17 15:47:23.754 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-17 15:47:23.754 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-17 15:47:23.754 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-17 15:47:24.196 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-17 15:47:24.567 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-17 15:47:24.568 [error] <0.2.0>@basho_bench_config:load:41 Failed to parse config file examples/floppstore.config: {9,erl_parse,["syntax error before: ","'}'"]} diff --git a/newtests/20140717_154723/crash.log b/newtests/20140717_154723/crash.log new file mode 100644 index 000000000..e69de29bb diff --git a/newtests/20140717_154723/error.log b/newtests/20140717_154723/error.log new file mode 100644 index 000000000..93888474d --- /dev/null +++ b/newtests/20140717_154723/error.log @@ -0,0 +1 @@ +2014-07-17 15:47:24.568 [error] <0.2.0>@basho_bench_config:load:41 Failed to parse config file examples/floppstore.config: {9,erl_parse,["syntax error before: ","'}'"]} diff --git a/newtests/20140717_154801/append_latencies.csv b/newtests/20140717_154801/append_latencies.csv new file mode 100644 index 000000000..f22e53cb1 --- /dev/null +++ b/newtests/20140717_154801/append_latencies.csv @@ -0,0 +1,8 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +10.001, 10.001, 5008, 985, 2169.6, 1844, 3041, 8001, 16303, 87498, 0 +20.002017, 10.001017, 4955, 1075, 2120.5, 1941, 3090, 4113, 11596, 35047, 0 +30.001994, 9.999977, 5039, 1082, 2126.9, 1943, 3069, 3814, 9642, 21954, 0 +40.002015, 10.000021, 4789, 1189, 2208.3, 2018, 3238, 4374, 9134, 21954, 0 +50.002017, 10.000002, 4576, 1006, 2238.7, 2048, 3277, 4139, 8732, 14235, 0 +60.002009, 9.999992, 4612, 1117, 2264.1, 2074, 3298, 4041, 9211, 25590, 0 +61.007114, 1.005105, 451, 1117, 2250.8, 2067, 3283, 3955, 7069, 25590, 0 diff --git a/newtests/20140717_154801/console.log b/newtests/20140717_154801/console.log new file mode 100644 index 000000000..8fad5edb8 --- /dev/null +++ b/newtests/20140717_154801/console.log @@ -0,0 +1,44 @@ +2014-07-17 15:48:01.340 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_154801/error.log"} into lager_event +2014-07-17 15:48:01.340 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_154801/console.log"} into lager_event +2014-07-17 15:48:01.340 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-17 15:48:01.378 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-17 15:48:01.378 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-17 15:48:01.378 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-17 15:48:01.378 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-17 15:48:01.816 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-17 15:48:02.244 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-17 15:48:02.247 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_154801/console.log to debug +2014-07-17 15:48:02.261 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 476.84 MB +2014-07-17 15:48:02.345 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-17 15:48:02.345 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-17 15:48:02.345 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-17 15:48:02.364 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-17 15:48:02.364 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-17 15:48:02.453 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-17 15:48:02.453 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-17 15:48:02.482 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-17 15:48:02.486 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-17 15:48:02.492 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-17 15:48:02.492 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-17 15:48:02.531 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-17 15:48:02.536 [debug] <0.94.0>@basho_bench_valgen:init_source:85 random source +2014-07-17 15:48:02.670 [debug] <0.97.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.98.0> +2014-07-17 15:48:02.678 [debug] <0.97.0> Supervisor net_sup started auth:start_link() at pid <0.99.0> +2014-07-17 15:48:02.691 [info] <0.96.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-17 15:48:02.692 [debug] <0.97.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.100.0> +2014-07-17 15:48:02.692 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.97.0> +2014-07-17 15:48:02.706 [debug] <0.104.0> Supervisor inet_gethost_native_sup started undefined at pid <0.105.0> +2014-07-17 15:48:02.707 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.104.0> +2014-07-17 15:48:02.723 [info] <0.96.0>@basho_bench_driver_floppystore:ping_each:119 Finished pinging 'floppy@127.0.0.1' +2014-07-17 15:48:02.723 [info] <0.96.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-17 15:48:02.724 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-17 15:48:02.802 [info] <0.109.0>@basho_bench_driver_floppystore:ping_each:119 Finished pinging 'floppy@127.0.0.1' +2014-07-17 15:48:02.802 [info] <0.109.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-17 15:48:02.803 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.108.0> +2014-07-17 15:48:02.803 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.110.0> +2014-07-17 15:48:02.809 [info] <0.109.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.109.0> +2014-07-17 15:48:02.809 [info] <0.96.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.96.0> +2014-07-17 15:48:02.809 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-17 15:49:03.838 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. diff --git a/newtests/20140717_154801/crash.log b/newtests/20140717_154801/crash.log new file mode 100644 index 000000000..e69de29bb diff --git a/newtests/20140717_154801/error.log b/newtests/20140717_154801/error.log new file mode 100644 index 000000000..e69de29bb diff --git a/newtests/20140717_154801/errors.csv b/newtests/20140717_154801/errors.csv new file mode 100644 index 000000000..29210b502 --- /dev/null +++ b/newtests/20140717_154801/errors.csv @@ -0,0 +1 @@ +"error","count" diff --git a/newtests/20140717_154801/floppstore.config b/newtests/20140717_154801/floppstore.config new file mode 100644 index 000000000..df5fa1a99 --- /dev/null +++ b/newtests/20140717_154801/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {uniform_int, 5000000}}. + +{value_generator, {fixed_bin, 100}}. + +{operations, [{append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140717_154801/log.sasl.txt b/newtests/20140717_154801/log.sasl.txt new file mode 100644 index 000000000..394bd50dc --- /dev/null +++ b/newtests/20140717_154801/log.sasl.txt @@ -0,0 +1,183 @@ + +=PROGRESS REPORT==== 17-Jul-2014::15:48:02 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:48:02 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:48:02 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 17-Jul-2014::15:48:02 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:48:02 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 17-Jul-2014::15:48:02 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:48:02 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 17-Jul-2014::15:48:02 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 17-Jul-2014::15:48:02 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:48:02 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:48:02 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 17-Jul-2014::15:48:02 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:48:02 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:48:02 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:48:02 === + supervisor: {local,net_sup} + started: [{pid,<0.100.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:48:02 === + supervisor: {local,kernel_sup} + started: [{pid,<0.97.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 17-Jul-2014::15:48:02 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.105.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 17-Jul-2014::15:48:02 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.104.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:48:02 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:48:02 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.108.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:48:02 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.110.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 17-Jul-2014::15:48:02 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' diff --git a/newtests/20140717_154801/read_latencies.csv b/newtests/20140717_154801/read_latencies.csv new file mode 100644 index 000000000..e45c3487f --- /dev/null +++ b/newtests/20140717_154801/read_latencies.csv @@ -0,0 +1,8 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +10.001, 10.001, 4878, 878, 1836.0, 1572, 2771, 4696, 9080, 23776, 0 +20.002017, 10.001017, 4898, 896, 1873.1, 1656, 2797, 3914, 9755, 32728, 0 +30.001994, 9.999977, 4857, 939, 1873.8, 1661, 2838, 3449, 7916, 16125, 0 +40.002015, 10.000021, 4751, 1009, 1955.9, 1736, 2949, 4165, 6732, 13273, 0 +50.002017, 10.000002, 4703, 830, 2011.3, 1770, 3007, 3840, 6655, 89102, 0 +60.002009, 9.999992, 4721, 1057, 2008.8, 1785, 2999, 4088, 8210, 12119, 0 +61.007114, 1.005105, 459, 1057, 1990.5, 1781, 2968, 3718, 7218, 9947, 0 diff --git a/newtests/20140717_154801/summary.csv b/newtests/20140717_154801/summary.csv new file mode 100644 index 000000000..0599039f1 --- /dev/null +++ b/newtests/20140717_154801/summary.csv @@ -0,0 +1,8 @@ +elapsed, window, total, successful, failed +10.001, 10.001, 9886, 9886, 0 +20.002017, 10.001017, 9853, 9853, 0 +30.001994, 9.999977, 9896, 9896, 0 +40.002015, 10.000021, 9540, 9540, 0 +50.002017, 10.000002, 9279, 9279, 0 +60.002009, 9.999992, 9333, 9333, 0 +61.007114, 1.005105, 910, 910, 0 diff --git a/newtests/20140717_154801/summary.png b/newtests/20140717_154801/summary.png new file mode 100644 index 0000000000000000000000000000000000000000..da3d3f27686157535b3681cc243479677acb159f GIT binary patch literal 169499 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≈&R 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:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_105906/error.log"} into lager_event +2014-07-22 10:59:06.797 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_105906/console.log"} into lager_event +2014-07-22 10:59:06.797 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-22 10:59:06.832 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-22 10:59:06.832 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-22 10:59:06.832 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-22 10:59:06.832 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-22 10:59:07.268 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-22 10:59:07.704 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-22 10:59:07.712 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_105906/console.log to debug +2014-07-22 10:59:07.726 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 476.84 MB +2014-07-22 10:59:07.819 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-22 10:59:07.819 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-22 10:59:07.819 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-22 10:59:07.838 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-22 10:59:07.838 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-22 10:59:07.928 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-22 10:59:07.928 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-22 10:59:07.958 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-22 10:59:07.963 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-22 10:59:07.969 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-22 10:59:07.969 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-22 10:59:08.003 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-22 10:59:08.009 [debug] <0.96.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 10:59:08.135 [debug] <0.99.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.100.0> +2014-07-22 10:59:08.143 [debug] <0.99.0> Supervisor net_sup started auth:start_link() at pid <0.101.0> +2014-07-22 10:59:08.161 [info] <0.98.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-22 10:59:08.162 [debug] <0.99.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.102.0> +2014-07-22 10:59:08.162 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> +2014-07-22 10:59:08.177 [debug] <0.106.0> Supervisor inet_gethost_native_sup started undefined at pid <0.107.0> +2014-07-22 10:59:08.177 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.106.0> +2014-07-22 10:59:08.197 [info] <0.98.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 10:59:08.197 [info] <0.98.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 10:59:08.197 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.96.0> +2014-07-22 10:59:08.273 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 10:59:08.273 [info] <0.111.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 10:59:08.273 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.110.0> +2014-07-22 10:59:08.274 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.112.0> +2014-07-22 10:59:08.279 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> +2014-07-22 10:59:08.279 [info] <0.98.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.98.0> +2014-07-22 10:59:08.279 [debug] <0.111.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{random,uniform,[1,10],[]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,133}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 10:59:08.279 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash +2014-07-22 10:59:08.279 [debug] <0.98.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{random,uniform,[1,10],[]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,133}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 10:59:08.279 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-22 10:59:08.279 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with crash +2014-07-22 10:59:08.280 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated +2014-07-22 10:59:08.352 [info] <0.114.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 10:59:08.352 [info] <0.114.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 10:59:08.352 [warning] <0.113.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 10:59:08.352 [info] <0.114.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.114.0> +2014-07-22 10:59:08.353 [debug] <0.114.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{random,uniform,[1,10],[]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,133}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 10:59:08.353 [error] <0.113.0>@basho_bench_worker:handle_info:149 Worker <0.114.0> exited with crash +2014-07-22 10:59:08.353 [debug] <0.115.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 10:59:08.353 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.113.0> +2014-07-22 10:59:08.353 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated +2014-07-22 10:59:08.427 [info] <0.116.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 10:59:08.427 [info] <0.116.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 10:59:08.428 [warning] <0.115.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 10:59:08.428 [info] <0.116.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.116.0> +2014-07-22 10:59:08.428 [debug] <0.116.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{random,uniform,[1,10],[]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,133}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 10:59:08.428 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.115.0> +2014-07-22 10:59:08.429 [error] <0.115.0>@basho_bench_worker:handle_info:149 Worker <0.116.0> exited with crash +2014-07-22 10:59:08.429 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.113.0> exit with reason normal in context child_terminated +2014-07-22 10:59:08.505 [info] <0.118.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 10:59:08.505 [info] <0.118.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 10:59:08.505 [warning] <0.117.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 10:59:08.506 [info] <0.118.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.118.0> +2014-07-22 10:59:08.506 [debug] <0.118.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{random,uniform,[1,10],[]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,133}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 10:59:08.506 [error] <0.117.0>@basho_bench_worker:handle_info:149 Worker <0.118.0> exited with crash +2014-07-22 10:59:08.506 [debug] <0.119.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 10:59:08.506 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.117.0> +2014-07-22 10:59:08.506 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.115.0> exit with reason normal in context child_terminated +2014-07-22 10:59:08.580 [info] <0.120.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 10:59:08.580 [info] <0.120.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 10:59:08.580 [warning] <0.119.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 10:59:08.580 [info] <0.120.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.120.0> +2014-07-22 10:59:08.581 [debug] <0.120.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{random,uniform,[1,10],[]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,133}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 10:59:08.581 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.119.0> +2014-07-22 10:59:08.581 [error] <0.119.0>@basho_bench_worker:handle_info:149 Worker <0.120.0> exited with crash +2014-07-22 10:59:08.581 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.117.0> exit with reason normal in context child_terminated +2014-07-22 10:59:08.655 [info] <0.122.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 10:59:08.655 [info] <0.122.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 10:59:08.655 [warning] <0.121.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 10:59:08.655 [info] <0.122.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.122.0> +2014-07-22 10:59:08.655 [debug] <0.122.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{random,uniform,[1,10],[]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,133}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 10:59:08.655 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.121.0> +2014-07-22 10:59:08.655 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.119.0> exit with reason normal in context child_terminated +2014-07-22 10:59:08.656 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.119.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-22 10:59:08.667 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {static_tx,static_tx} +2014-07-22 10:59:08.667 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {interactive_tx,interactive_tx} +2014-07-22 10:59:08.667 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {append,append} +2014-07-22 10:59:08.667 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} +2014-07-22 10:59:08.668 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{interactive_tx,interactive_tx},7},{{{interactive_tx,interactive_tx},crash},7}] +2014-07-22 10:59:08.668 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: +2014-07-22 10:59:08.668 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{interactive_tx,interactive_tx},crash}: 7 +2014-07-22 10:59:08.668 [info] <0.2.0>@basho_bench:wait_for_stop:191 Test stopped: shutdown diff --git a/newtests/20140722_105906/crash.log b/newtests/20140722_105906/crash.log new file mode 100644 index 000000000..2388e25db --- /dev/null +++ b/newtests/20140722_105906/crash.log @@ -0,0 +1,42 @@ +2014-07-22 10:59:08 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 10:59:08 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.96.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 10:59:08 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.113.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 10:59:08 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.115.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 10:59:08 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.117.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 10:59:08 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.119.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 10:59:08 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.119.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140722_105906/error.log b/newtests/20140722_105906/error.log new file mode 100644 index 000000000..8e5475306 --- /dev/null +++ b/newtests/20140722_105906/error.log @@ -0,0 +1,13 @@ +2014-07-22 10:59:08.279 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash +2014-07-22 10:59:08.279 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with crash +2014-07-22 10:59:08.280 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated +2014-07-22 10:59:08.353 [error] <0.113.0>@basho_bench_worker:handle_info:149 Worker <0.114.0> exited with crash +2014-07-22 10:59:08.353 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated +2014-07-22 10:59:08.429 [error] <0.115.0>@basho_bench_worker:handle_info:149 Worker <0.116.0> exited with crash +2014-07-22 10:59:08.429 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.113.0> exit with reason normal in context child_terminated +2014-07-22 10:59:08.506 [error] <0.117.0>@basho_bench_worker:handle_info:149 Worker <0.118.0> exited with crash +2014-07-22 10:59:08.506 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.115.0> exit with reason normal in context child_terminated +2014-07-22 10:59:08.581 [error] <0.119.0>@basho_bench_worker:handle_info:149 Worker <0.120.0> exited with crash +2014-07-22 10:59:08.581 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.117.0> exit with reason normal in context child_terminated +2014-07-22 10:59:08.655 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.119.0> exit with reason normal in context child_terminated +2014-07-22 10:59:08.656 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.119.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140722_105906/errors.csv b/newtests/20140722_105906/errors.csv new file mode 100644 index 000000000..7b9911cf3 --- /dev/null +++ b/newtests/20140722_105906/errors.csv @@ -0,0 +1,2 @@ +"error","count" +"{{interactive_tx,interactive_tx},crash}","7" diff --git a/newtests/20140722_105906/floppstore.config b/newtests/20140722_105906/floppstore.config new file mode 100644 index 000000000..ddb4dd78e --- /dev/null +++ b/newtests/20140722_105906/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {uniform_int, 5000000}}. + +{value_generator, {fixed_bin, 100}}. + +{operations, [{static_tx, 1}, {interactive_tx,1}, {append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140722_105906/interactive-tx_latencies.csv b/newtests/20140722_105906/interactive-tx_latencies.csv new file mode 100644 index 000000000..2ce750073 --- /dev/null +++ b/newtests/20140722_105906/interactive-tx_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.381858, 0.381858, 0, 0, 0, 0, 0, 0, 0, 0, 7 diff --git a/newtests/20140722_105906/log.sasl.txt b/newtests/20140722_105906/log.sasl.txt new file mode 100644 index 000000000..750d9466c --- /dev/null +++ b/newtests/20140722_105906/log.sasl.txt @@ -0,0 +1,336 @@ + +=PROGRESS REPORT==== 22-Jul-2014::10:59:07 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::10:59:07 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::10:59:07 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::10:59:07 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::10:59:07 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::10:59:07 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::10:59:07 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::10:59:07 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::10:59:07 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::10:59:07 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::10:59:07 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::10:59:08 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::10:59:08 === + supervisor: {local,net_sup} + started: [{pid,<0.100.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::10:59:08 === + supervisor: {local,net_sup} + started: [{pid,<0.101.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::10:59:08 === + supervisor: {local,net_sup} + started: [{pid,<0.102.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::10:59:08 === + supervisor: {local,kernel_sup} + started: [{pid,<0.99.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::10:59:08 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.107.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 22-Jul-2014::10:59:08 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.106.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::10:59:08 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.96.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::10:59:08 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.110.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::10:59:08 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.112.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::10:59:08 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 22-Jul-2014::10:59:08 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::10:59:08 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.113.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::10:59:08 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.96.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::10:59:08 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.115.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::10:59:08 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.113.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::10:59:08 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.117.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::10:59:08 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.115.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::10:59:08 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.119.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::10:59:08 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.117.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::10:59:08 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.121.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::10:59:08 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.119.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 22-Jul-2014::10:59:08 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.119.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140722_105906/read_latencies.csv b/newtests/20140722_105906/read_latencies.csv new file mode 100644 index 000000000..562a54a98 --- /dev/null +++ b/newtests/20140722_105906/read_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.381858, 0.381858, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140722_105906/static-tx_latencies.csv b/newtests/20140722_105906/static-tx_latencies.csv new file mode 100644 index 000000000..562a54a98 --- /dev/null +++ b/newtests/20140722_105906/static-tx_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.381858, 0.381858, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140722_105906/summary.csv b/newtests/20140722_105906/summary.csv new file mode 100644 index 000000000..e0806ebbe --- /dev/null +++ b/newtests/20140722_105906/summary.csv @@ -0,0 +1,2 @@ +elapsed, window, total, successful, failed +0.381858, 0.381858, 7, 0, 7 diff --git a/newtests/20140722_110309/append_latencies.csv b/newtests/20140722_110309/append_latencies.csv new file mode 100644 index 000000000..9caab989b --- /dev/null +++ b/newtests/20140722_110309/append_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +1.907921, 1.907921, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140722_110309/console.log b/newtests/20140722_110309/console.log new file mode 100644 index 000000000..fb7c6abad --- /dev/null +++ b/newtests/20140722_110309/console.log @@ -0,0 +1,104 @@ +2014-07-22 11:03:09.467 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_110309/error.log"} into lager_event +2014-07-22 11:03:09.467 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_110309/console.log"} into lager_event +2014-07-22 11:03:09.467 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-22 11:03:09.502 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-22 11:03:09.502 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-22 11:03:09.502 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-22 11:03:09.502 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-22 11:03:09.936 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-22 11:03:10.353 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-22 11:03:10.354 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_110309/console.log to debug +2014-07-22 11:03:10.367 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 476.84 MB +2014-07-22 11:03:10.451 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-22 11:03:10.451 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-22 11:03:10.452 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-22 11:03:10.466 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-22 11:03:10.467 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-22 11:03:10.554 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-22 11:03:10.554 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-22 11:03:10.584 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-22 11:03:10.590 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-22 11:03:10.596 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-22 11:03:10.596 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-22 11:03:10.627 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-22 11:03:10.632 [debug] <0.96.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 11:03:10.762 [debug] <0.99.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.100.0> +2014-07-22 11:03:10.770 [debug] <0.99.0> Supervisor net_sup started auth:start_link() at pid <0.101.0> +2014-07-22 11:03:10.786 [info] <0.98.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-22 11:03:10.786 [debug] <0.99.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.102.0> +2014-07-22 11:03:10.787 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> +2014-07-22 11:03:10.803 [debug] <0.106.0> Supervisor inet_gethost_native_sup started undefined at pid <0.107.0> +2014-07-22 11:03:10.803 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.106.0> +2014-07-22 11:03:10.822 [info] <0.98.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 11:03:10.822 [info] <0.98.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 11:03:10.822 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.96.0> +2014-07-22 11:03:10.899 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 11:03:10.899 [info] <0.111.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 11:03:10.899 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.110.0> +2014-07-22 11:03:10.899 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.112.0> +2014-07-22 11:03:10.904 [info] <0.98.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.98.0> +2014-07-22 11:03:10.904 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> +2014-07-22 11:03:10.904 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-22 11:03:11.534 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 11:03:11.534 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 11:03:11.535 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated +2014-07-22 11:03:11.624 [info] <0.126.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 11:03:11.624 [info] <0.126.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 11:03:11.624 [warning] <0.125.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 11:03:11.624 [info] <0.126.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.126.0> +2014-07-22 11:03:11.624 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.125.0> +2014-07-22 11:03:12.272 [error] emulator Error in process <0.126.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 11:03:12.272 [error] <0.125.0>@basho_bench_worker:handle_info:149 Worker <0.126.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 11:03:12.273 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.125.0> exit with reason normal in context child_terminated +2014-07-22 11:03:12.384 [info] <0.139.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 11:03:12.384 [info] <0.139.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 11:03:12.384 [warning] <0.137.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 11:03:12.384 [info] <0.139.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.139.0> +2014-07-22 11:03:12.384 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.137.0> +2014-07-22 11:03:12.425 [error] emulator Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 11:03:12.426 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 11:03:12.426 [debug] <0.142.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 11:03:12.426 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated +2014-07-22 11:03:12.512 [info] <0.143.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 11:03:12.512 [info] <0.143.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 11:03:12.512 [warning] <0.142.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 11:03:12.512 [info] <0.143.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.143.0> +2014-07-22 11:03:12.512 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.142.0> +2014-07-22 11:03:12.564 [error] emulator Error in process <0.139.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 11:03:12.564 [error] <0.137.0>@basho_bench_worker:handle_info:149 Worker <0.139.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 11:03:12.565 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.137.0> exit with reason normal in context child_terminated +2014-07-22 11:03:12.642 [error] emulator Error in process <0.143.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 11:03:12.642 [error] <0.142.0>@basho_bench_worker:handle_info:149 Worker <0.143.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 11:03:12.664 [info] <0.147.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 11:03:12.664 [info] <0.147.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 11:03:12.664 [warning] <0.146.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 11:03:12.665 [info] <0.147.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.147.0> +2014-07-22 11:03:12.665 [debug] <0.149.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 11:03:12.666 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.146.0> +2014-07-22 11:03:12.666 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.142.0> exit with reason normal in context child_terminated +2014-07-22 11:03:12.758 [info] <0.151.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 11:03:12.758 [info] <0.151.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 11:03:12.758 [warning] <0.149.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 11:03:12.758 [info] <0.151.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.151.0> +2014-07-22 11:03:12.759 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.149.0> +2014-07-22 11:03:12.806 [error] emulator Error in process <0.147.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 11:03:12.807 [error] <0.146.0>@basho_bench_worker:handle_info:149 Worker <0.147.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 11:03:12.808 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.146.0> exit with reason normal in context child_terminated +2014-07-22 11:03:12.808 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.146.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-22 11:03:12.821 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {append,append} +2014-07-22 11:03:12.821 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} +2014-07-22 11:03:12.822 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. diff --git a/newtests/20140722_110309/crash.log b/newtests/20140722_110309/crash.log new file mode 100644 index 000000000..d67676d31 --- /dev/null +++ b/newtests/20140722_110309/crash.log @@ -0,0 +1,60 @@ +2014-07-22 11:03:11 =ERROR REPORT==== +Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-22 11:03:11 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 11:03:12 =ERROR REPORT==== +Error in process <0.126.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-22 11:03:12 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.125.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 11:03:12 =ERROR REPORT==== +Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-22 11:03:12 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.96.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 11:03:12 =ERROR REPORT==== +Error in process <0.139.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-22 11:03:12 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.137.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 11:03:12 =ERROR REPORT==== +Error in process <0.143.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-22 11:03:12 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.142.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 11:03:12 =ERROR REPORT==== +Error in process <0.147.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-22 11:03:12 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.146.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 11:03:12 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.146.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140722_110309/error.log b/newtests/20140722_110309/error.log new file mode 100644 index 000000000..fb5b391e2 --- /dev/null +++ b/newtests/20140722_110309/error.log @@ -0,0 +1,31 @@ +2014-07-22 11:03:11.534 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 11:03:11.534 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 11:03:11.535 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated +2014-07-22 11:03:12.272 [error] emulator Error in process <0.126.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 11:03:12.272 [error] <0.125.0>@basho_bench_worker:handle_info:149 Worker <0.126.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 11:03:12.273 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.125.0> exit with reason normal in context child_terminated +2014-07-22 11:03:12.425 [error] emulator Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 11:03:12.426 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 11:03:12.426 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated +2014-07-22 11:03:12.564 [error] emulator Error in process <0.139.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 11:03:12.564 [error] <0.137.0>@basho_bench_worker:handle_info:149 Worker <0.139.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 11:03:12.565 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.137.0> exit with reason normal in context child_terminated +2014-07-22 11:03:12.642 [error] emulator Error in process <0.143.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 11:03:12.642 [error] <0.142.0>@basho_bench_worker:handle_info:149 Worker <0.143.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 11:03:12.666 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.142.0> exit with reason normal in context child_terminated +2014-07-22 11:03:12.806 [error] emulator Error in process <0.147.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 11:03:12.807 [error] <0.146.0>@basho_bench_worker:handle_info:149 Worker <0.147.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 11:03:12.808 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.146.0> exit with reason normal in context child_terminated +2014-07-22 11:03:12.808 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.146.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140722_110309/errors.csv b/newtests/20140722_110309/errors.csv new file mode 100644 index 000000000..29210b502 --- /dev/null +++ b/newtests/20140722_110309/errors.csv @@ -0,0 +1 @@ +"error","count" diff --git a/newtests/20140722_110309/floppstore.config b/newtests/20140722_110309/floppstore.config new file mode 100644 index 000000000..ddb4dd78e --- /dev/null +++ b/newtests/20140722_110309/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {uniform_int, 5000000}}. + +{value_generator, {fixed_bin, 100}}. + +{operations, [{static_tx, 1}, {interactive_tx,1}, {append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140722_110309/interactive-tx_latencies.csv b/newtests/20140722_110309/interactive-tx_latencies.csv new file mode 100644 index 000000000..7ebbc32c4 --- /dev/null +++ b/newtests/20140722_110309/interactive-tx_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +1.907921, 1.907921, 13, 52178, 158885.8, 139093, 249954, 290293, 290293, 290293, 0 diff --git a/newtests/20140722_110309/log.sasl.txt b/newtests/20140722_110309/log.sasl.txt new file mode 100644 index 000000000..f723b4c8f --- /dev/null +++ b/newtests/20140722_110309/log.sasl.txt @@ -0,0 +1,336 @@ + +=PROGRESS REPORT==== 22-Jul-2014::11:03:10 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::11:03:10 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::11:03:10 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::11:03:10 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::11:03:10 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::11:03:10 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::11:03:10 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::11:03:10 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::11:03:10 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::11:03:10 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::11:03:10 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::11:03:10 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::11:03:10 === + supervisor: {local,net_sup} + started: [{pid,<0.100.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::11:03:10 === + supervisor: {local,net_sup} + started: [{pid,<0.101.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::11:03:10 === + supervisor: {local,net_sup} + started: [{pid,<0.102.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::11:03:10 === + supervisor: {local,kernel_sup} + started: [{pid,<0.99.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::11:03:10 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.107.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 22-Jul-2014::11:03:10 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.106.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::11:03:10 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.96.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::11:03:10 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.110.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::11:03:10 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.112.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::11:03:10 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 22-Jul-2014::11:03:11 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::11:03:11 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.125.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::11:03:12 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.125.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::11:03:12 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.137.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::11:03:12 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.96.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::11:03:12 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.142.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::11:03:12 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.137.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::11:03:12 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.146.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::11:03:12 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.142.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::11:03:12 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.149.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::11:03:12 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.146.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 22-Jul-2014::11:03:12 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.146.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140722_110309/read_latencies.csv b/newtests/20140722_110309/read_latencies.csv new file mode 100644 index 000000000..9caab989b --- /dev/null +++ b/newtests/20140722_110309/read_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +1.907921, 1.907921, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140722_110309/static-tx_latencies.csv b/newtests/20140722_110309/static-tx_latencies.csv new file mode 100644 index 000000000..bb69f9b93 --- /dev/null +++ b/newtests/20140722_110309/static-tx_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +1.907921, 1.907921, 8, 77395, 135692.6, 83567, 280379, 280379, 280379, 280379, 0 diff --git a/newtests/20140722_110309/summary.csv b/newtests/20140722_110309/summary.csv new file mode 100644 index 000000000..238b1de5e --- /dev/null +++ b/newtests/20140722_110309/summary.csv @@ -0,0 +1,2 @@ +elapsed, window, total, successful, failed +1.907921, 1.907921, 24, 24, 0 diff --git a/newtests/20140722_110442/append_latencies.csv b/newtests/20140722_110442/append_latencies.csv new file mode 100644 index 000000000..75af0785a --- /dev/null +++ b/newtests/20140722_110442/append_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +1.80309, 1.80309, 9, 1126, 5545.2, 1974, 15569, 15569, 15569, 15569, 0 diff --git a/newtests/20140722_110442/console.log b/newtests/20140722_110442/console.log new file mode 100644 index 000000000..717fca797 --- /dev/null +++ b/newtests/20140722_110442/console.log @@ -0,0 +1,105 @@ +2014-07-22 11:04:42.301 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_110442/error.log"} into lager_event +2014-07-22 11:04:42.301 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_110442/console.log"} into lager_event +2014-07-22 11:04:42.301 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-22 11:04:42.334 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-22 11:04:42.334 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-22 11:04:42.334 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-22 11:04:42.334 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-22 11:04:42.777 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-22 11:04:43.162 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-22 11:04:43.163 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_110442/console.log to debug +2014-07-22 11:04:43.174 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB +2014-07-22 11:04:43.252 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-22 11:04:43.252 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-22 11:04:43.253 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-22 11:04:43.266 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-22 11:04:43.266 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-22 11:04:43.351 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-22 11:04:43.351 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-22 11:04:43.379 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-22 11:04:43.383 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-22 11:04:43.389 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-22 11:04:43.389 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-22 11:04:43.422 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-22 11:04:43.428 [debug] <0.96.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 11:04:43.549 [debug] <0.99.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.100.0> +2014-07-22 11:04:43.557 [debug] <0.99.0> Supervisor net_sup started auth:start_link() at pid <0.101.0> +2014-07-22 11:04:43.572 [info] <0.98.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-22 11:04:43.572 [debug] <0.99.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.102.0> +2014-07-22 11:04:43.573 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> +2014-07-22 11:04:43.587 [debug] <0.106.0> Supervisor inet_gethost_native_sup started undefined at pid <0.107.0> +2014-07-22 11:04:43.587 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.106.0> +2014-07-22 11:04:43.603 [info] <0.98.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 11:04:43.603 [info] <0.98.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 11:04:43.603 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.96.0> +2014-07-22 11:04:43.684 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 11:04:43.684 [info] <0.111.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 11:04:43.685 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.110.0> +2014-07-22 11:04:43.685 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.112.0> +2014-07-22 11:04:43.692 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> +2014-07-22 11:04:43.692 [info] <0.98.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.98.0> +2014-07-22 11:04:43.692 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-22 11:04:44.036 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 11:04:44.036 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 11:04:44.037 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated +2014-07-22 11:04:44.129 [info] <0.121.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 11:04:44.129 [info] <0.121.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 11:04:44.129 [warning] <0.120.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 11:04:44.129 [info] <0.121.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.121.0> +2014-07-22 11:04:44.130 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.120.0> +2014-07-22 11:04:44.676 [error] emulator Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 11:04:44.676 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 11:04:44.677 [debug] <0.135.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 11:04:44.677 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated +2014-07-22 11:04:44.768 [info] <0.137.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 11:04:44.768 [info] <0.137.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 11:04:44.769 [warning] <0.135.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 11:04:44.769 [info] <0.137.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.137.0> +2014-07-22 11:04:44.769 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.135.0> +2014-07-22 11:04:44.862 [error] emulator Error in process <0.137.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 11:04:44.862 [error] <0.135.0>@basho_bench_worker:handle_info:149 Worker <0.137.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 11:04:44.862 [debug] <0.141.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 11:04:44.863 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.135.0> exit with reason normal in context child_terminated +2014-07-22 11:04:44.948 [info] <0.142.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 11:04:44.948 [info] <0.142.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 11:04:44.948 [warning] <0.141.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 11:04:44.948 [info] <0.142.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.142.0> +2014-07-22 11:04:44.948 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.141.0> +2014-07-22 11:04:45.183 [error] emulator Error in process <0.121.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 11:04:45.183 [error] <0.120.0>@basho_bench_worker:handle_info:149 Worker <0.121.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 11:04:45.184 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.120.0> exit with reason normal in context child_terminated +2014-07-22 11:04:45.269 [info] <0.155.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 11:04:45.269 [info] <0.155.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 11:04:45.269 [warning] <0.154.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 11:04:45.269 [info] <0.155.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.155.0> +2014-07-22 11:04:45.269 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.154.0> +2014-07-22 11:04:45.317 [error] emulator Error in process <0.142.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 11:04:45.318 [error] <0.141.0>@basho_bench_worker:handle_info:149 Worker <0.142.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 11:04:45.318 [debug] <0.159.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 11:04:45.318 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.141.0> exit with reason normal in context child_terminated +2014-07-22 11:04:45.420 [info] <0.160.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 11:04:45.420 [info] <0.160.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 11:04:45.420 [warning] <0.159.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 11:04:45.420 [info] <0.160.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.160.0> +2014-07-22 11:04:45.420 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.159.0> +2014-07-22 11:04:45.487 [error] emulator Error in process <0.155.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 11:04:45.487 [error] <0.154.0>@basho_bench_worker:handle_info:149 Worker <0.155.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 11:04:45.488 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.154.0> exit with reason normal in context child_terminated +2014-07-22 11:04:45.488 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.154.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-22 11:04:45.499 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} +2014-07-22 11:04:45.499 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. +2014-07-22 11:04:45.500 [info] <0.2.0>@basho_bench:wait_for_stop:191 Test stopped: shutdown diff --git a/newtests/20140722_110442/crash.log b/newtests/20140722_110442/crash.log new file mode 100644 index 000000000..ef4484490 --- /dev/null +++ b/newtests/20140722_110442/crash.log @@ -0,0 +1,60 @@ +2014-07-22 11:04:44 =ERROR REPORT==== +Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-22 11:04:44 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 11:04:44 =ERROR REPORT==== +Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-22 11:04:44 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.96.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 11:04:44 =ERROR REPORT==== +Error in process <0.137.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-22 11:04:44 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.135.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 11:04:45 =ERROR REPORT==== +Error in process <0.121.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-22 11:04:45 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.120.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 11:04:45 =ERROR REPORT==== +Error in process <0.142.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-22 11:04:45 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.141.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 11:04:45 =ERROR REPORT==== +Error in process <0.155.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-22 11:04:45 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.154.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 11:04:45 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.154.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140722_110442/error.log b/newtests/20140722_110442/error.log new file mode 100644 index 000000000..43d080b0e --- /dev/null +++ b/newtests/20140722_110442/error.log @@ -0,0 +1,31 @@ +2014-07-22 11:04:44.036 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 11:04:44.036 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 11:04:44.037 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated +2014-07-22 11:04:44.676 [error] emulator Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 11:04:44.676 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 11:04:44.677 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated +2014-07-22 11:04:44.862 [error] emulator Error in process <0.137.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 11:04:44.862 [error] <0.135.0>@basho_bench_worker:handle_info:149 Worker <0.137.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 11:04:44.863 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.135.0> exit with reason normal in context child_terminated +2014-07-22 11:04:45.183 [error] emulator Error in process <0.121.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 11:04:45.183 [error] <0.120.0>@basho_bench_worker:handle_info:149 Worker <0.121.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 11:04:45.184 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.120.0> exit with reason normal in context child_terminated +2014-07-22 11:04:45.317 [error] emulator Error in process <0.142.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 11:04:45.318 [error] <0.141.0>@basho_bench_worker:handle_info:149 Worker <0.142.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 11:04:45.318 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.141.0> exit with reason normal in context child_terminated +2014-07-22 11:04:45.487 [error] emulator Error in process <0.155.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 11:04:45.487 [error] <0.154.0>@basho_bench_worker:handle_info:149 Worker <0.155.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 11:04:45.488 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.154.0> exit with reason normal in context child_terminated +2014-07-22 11:04:45.488 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.154.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140722_110442/errors.csv b/newtests/20140722_110442/errors.csv new file mode 100644 index 000000000..29210b502 --- /dev/null +++ b/newtests/20140722_110442/errors.csv @@ -0,0 +1 @@ +"error","count" diff --git a/newtests/20140722_110442/floppstore.config b/newtests/20140722_110442/floppstore.config new file mode 100644 index 000000000..bb59890f3 --- /dev/null +++ b/newtests/20140722_110442/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {uniform_int, 5000000}}. + +{value_generator, {fixed_bin, 10}}. + +{operations, [{static_tx, 1}, {interactive_tx,1}, {append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140722_110442/interactive-tx_latencies.csv b/newtests/20140722_110442/interactive-tx_latencies.csv new file mode 100644 index 000000000..ab9f51c2a --- /dev/null +++ b/newtests/20140722_110442/interactive-tx_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +1.80309, 1.80309, 13, 12752, 129510.5, 144881, 200755, 254982, 254982, 254982, 0 diff --git a/newtests/20140722_110442/log.sasl.txt b/newtests/20140722_110442/log.sasl.txt new file mode 100644 index 000000000..d117b11a9 --- /dev/null +++ b/newtests/20140722_110442/log.sasl.txt @@ -0,0 +1,336 @@ + +=PROGRESS REPORT==== 22-Jul-2014::11:04:43 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::11:04:43 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::11:04:43 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::11:04:43 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::11:04:43 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::11:04:43 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::11:04:43 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::11:04:43 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::11:04:43 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::11:04:43 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::11:04:43 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::11:04:43 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::11:04:43 === + supervisor: {local,net_sup} + started: [{pid,<0.100.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::11:04:43 === + supervisor: {local,net_sup} + started: [{pid,<0.101.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::11:04:43 === + supervisor: {local,net_sup} + started: [{pid,<0.102.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::11:04:43 === + supervisor: {local,kernel_sup} + started: [{pid,<0.99.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::11:04:43 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.107.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 22-Jul-2014::11:04:43 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.106.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::11:04:43 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.96.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::11:04:43 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.110.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::11:04:43 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.112.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::11:04:43 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 22-Jul-2014::11:04:44 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::11:04:44 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.120.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::11:04:44 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.96.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::11:04:44 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.135.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::11:04:44 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.135.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::11:04:44 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.141.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::11:04:45 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.120.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::11:04:45 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.154.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::11:04:45 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.141.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::11:04:45 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.159.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::11:04:45 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.154.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 22-Jul-2014::11:04:45 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.154.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140722_110442/read_latencies.csv b/newtests/20140722_110442/read_latencies.csv new file mode 100644 index 000000000..fca52a451 --- /dev/null +++ b/newtests/20140722_110442/read_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +1.80309, 1.80309, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140722_110442/static-tx_latencies.csv b/newtests/20140722_110442/static-tx_latencies.csv new file mode 100644 index 000000000..6cd6cbfd0 --- /dev/null +++ b/newtests/20140722_110442/static-tx_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +1.80309, 1.80309, 11, 31409, 113942.5, 107379, 162759, 201086, 201086, 201086, 0 diff --git a/newtests/20140722_110442/summary.csv b/newtests/20140722_110442/summary.csv new file mode 100644 index 000000000..f3bb4d64d --- /dev/null +++ b/newtests/20140722_110442/summary.csv @@ -0,0 +1,2 @@ +elapsed, window, total, successful, failed +1.80309, 1.80309, 36, 36, 0 diff --git a/newtests/20140722_124623/append_latencies.csv b/newtests/20140722_124623/append_latencies.csv new file mode 100644 index 000000000..4d2e36459 --- /dev/null +++ b/newtests/20140722_124623/append_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +1.688138, 1.688138, 6, 1377, 4222.8, 3962, 6054, 6054, 6054, 6054, 0 diff --git a/newtests/20140722_124623/console.log b/newtests/20140722_124623/console.log new file mode 100644 index 000000000..113c66788 --- /dev/null +++ b/newtests/20140722_124623/console.log @@ -0,0 +1,102 @@ +2014-07-22 12:46:23.573 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_124623/error.log"} into lager_event +2014-07-22 12:46:23.573 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_124623/console.log"} into lager_event +2014-07-22 12:46:23.573 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-22 12:46:23.608 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-22 12:46:23.608 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-22 12:46:23.608 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-22 12:46:23.609 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-22 12:46:24.049 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-22 12:46:24.494 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-22 12:46:24.495 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_124623/console.log to debug +2014-07-22 12:46:24.507 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB +2014-07-22 12:46:24.594 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-22 12:46:24.595 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-22 12:46:24.595 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-22 12:46:24.611 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-22 12:46:24.611 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-22 12:46:24.703 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-22 12:46:24.703 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-22 12:46:24.732 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-22 12:46:24.737 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-22 12:46:24.743 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-22 12:46:24.744 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-22 12:46:24.778 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-22 12:46:24.784 [debug] <0.96.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 12:46:24.913 [debug] <0.99.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.100.0> +2014-07-22 12:46:24.921 [debug] <0.99.0> Supervisor net_sup started auth:start_link() at pid <0.101.0> +2014-07-22 12:46:24.936 [info] <0.98.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-22 12:46:24.936 [debug] <0.99.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.102.0> +2014-07-22 12:46:24.937 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> +2014-07-22 12:46:24.958 [debug] <0.106.0> Supervisor inet_gethost_native_sup started undefined at pid <0.107.0> +2014-07-22 12:46:24.959 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.106.0> +2014-07-22 12:46:24.980 [info] <0.98.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 12:46:24.980 [info] <0.98.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 12:46:24.981 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.96.0> +2014-07-22 12:46:25.063 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 12:46:25.063 [info] <0.111.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 12:46:25.064 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.110.0> +2014-07-22 12:46:25.064 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.112.0> +2014-07-22 12:46:25.069 [info] <0.98.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.98.0> +2014-07-22 12:46:25.069 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> +2014-07-22 12:46:25.069 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-22 12:46:25.546 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 12:46:25.546 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 12:46:25.547 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated +2014-07-22 12:46:25.661 [info] <0.123.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 12:46:25.661 [info] <0.123.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 12:46:25.661 [warning] <0.122.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 12:46:25.661 [info] <0.123.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.123.0> +2014-07-22 12:46:25.662 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.122.0> +2014-07-22 12:46:25.808 [error] emulator Error in process <0.123.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 12:46:25.808 [error] <0.122.0>@basho_bench_worker:handle_info:149 Worker <0.123.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 12:46:25.809 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.122.0> exit with reason normal in context child_terminated +2014-07-22 12:46:25.911 [info] <0.136.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 12:46:25.911 [info] <0.136.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 12:46:25.911 [warning] <0.135.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 12:46:25.911 [info] <0.136.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.136.0> +2014-07-22 12:46:25.912 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.135.0> +2014-07-22 12:46:26.086 [error] emulator Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 12:46:26.086 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 12:46:26.086 [debug] <0.142.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 12:46:26.087 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated +2014-07-22 12:46:26.189 [info] <0.144.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 12:46:26.189 [info] <0.144.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 12:46:26.189 [warning] <0.142.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 12:46:26.189 [info] <0.144.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.144.0> +2014-07-22 12:46:26.190 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.142.0> +2014-07-22 12:46:26.536 [error] emulator Error in process <0.144.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 12:46:26.536 [error] <0.142.0>@basho_bench_worker:handle_info:149 Worker <0.144.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 12:46:26.536 [debug] <0.152.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 12:46:26.537 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.142.0> exit with reason normal in context child_terminated +2014-07-22 12:46:26.593 [error] emulator Error in process <0.136.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 12:46:26.593 [error] <0.135.0>@basho_bench_worker:handle_info:149 Worker <0.136.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 12:46:26.617 [info] <0.153.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 12:46:26.617 [info] <0.153.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 12:46:26.617 [warning] <0.152.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 12:46:26.618 [info] <0.153.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.153.0> +2014-07-22 12:46:26.618 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.152.0> +2014-07-22 12:46:26.619 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.135.0> exit with reason normal in context child_terminated +2014-07-22 12:46:26.708 [info] <0.158.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 12:46:26.708 [info] <0.158.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 12:46:26.708 [warning] <0.156.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 12:46:26.708 [info] <0.158.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.158.0> +2014-07-22 12:46:26.708 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.156.0> +2014-07-22 12:46:26.751 [error] emulator Error in process <0.153.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 12:46:26.751 [error] <0.152.0>@basho_bench_worker:handle_info:149 Worker <0.153.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 12:46:26.752 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.152.0> exit with reason normal in context child_terminated +2014-07-22 12:46:26.753 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.152.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-22 12:46:26.762 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. diff --git a/newtests/20140722_124623/crash.log b/newtests/20140722_124623/crash.log new file mode 100644 index 000000000..a530c598e --- /dev/null +++ b/newtests/20140722_124623/crash.log @@ -0,0 +1,60 @@ +2014-07-22 12:46:25 =ERROR REPORT==== +Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-22 12:46:25 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 12:46:25 =ERROR REPORT==== +Error in process <0.123.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-22 12:46:25 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.122.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 12:46:26 =ERROR REPORT==== +Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-22 12:46:26 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.96.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 12:46:26 =ERROR REPORT==== +Error in process <0.144.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-22 12:46:26 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.142.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 12:46:26 =ERROR REPORT==== +Error in process <0.136.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-22 12:46:26 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.135.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 12:46:26 =ERROR REPORT==== +Error in process <0.153.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-22 12:46:26 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.152.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 12:46:26 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.152.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140722_124623/error.log b/newtests/20140722_124623/error.log new file mode 100644 index 000000000..921381b18 --- /dev/null +++ b/newtests/20140722_124623/error.log @@ -0,0 +1,31 @@ +2014-07-22 12:46:25.546 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 12:46:25.546 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 12:46:25.547 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated +2014-07-22 12:46:25.808 [error] emulator Error in process <0.123.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 12:46:25.808 [error] <0.122.0>@basho_bench_worker:handle_info:149 Worker <0.123.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 12:46:25.809 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.122.0> exit with reason normal in context child_terminated +2014-07-22 12:46:26.086 [error] emulator Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 12:46:26.086 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 12:46:26.087 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated +2014-07-22 12:46:26.536 [error] emulator Error in process <0.144.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 12:46:26.536 [error] <0.142.0>@basho_bench_worker:handle_info:149 Worker <0.144.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 12:46:26.537 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.142.0> exit with reason normal in context child_terminated +2014-07-22 12:46:26.593 [error] emulator Error in process <0.136.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 12:46:26.593 [error] <0.135.0>@basho_bench_worker:handle_info:149 Worker <0.136.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 12:46:26.619 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.135.0> exit with reason normal in context child_terminated +2014-07-22 12:46:26.751 [error] emulator Error in process <0.153.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 12:46:26.751 [error] <0.152.0>@basho_bench_worker:handle_info:149 Worker <0.153.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 12:46:26.752 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.152.0> exit with reason normal in context child_terminated +2014-07-22 12:46:26.753 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.152.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140722_124623/errors.csv b/newtests/20140722_124623/errors.csv new file mode 100644 index 000000000..29210b502 --- /dev/null +++ b/newtests/20140722_124623/errors.csv @@ -0,0 +1 @@ +"error","count" diff --git a/newtests/20140722_124623/floppstore.config b/newtests/20140722_124623/floppstore.config new file mode 100644 index 000000000..bb59890f3 --- /dev/null +++ b/newtests/20140722_124623/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {uniform_int, 5000000}}. + +{value_generator, {fixed_bin, 10}}. + +{operations, [{static_tx, 1}, {interactive_tx,1}, {append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140722_124623/interactive-tx_latencies.csv b/newtests/20140722_124623/interactive-tx_latencies.csv new file mode 100644 index 000000000..d575d771c --- /dev/null +++ b/newtests/20140722_124623/interactive-tx_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +1.688138, 1.688138, 11, 76741, 134044.4, 132863, 184345, 204546, 204546, 204546, 0 diff --git a/newtests/20140722_124623/log.sasl.txt b/newtests/20140722_124623/log.sasl.txt new file mode 100644 index 000000000..df24cdddf --- /dev/null +++ b/newtests/20140722_124623/log.sasl.txt @@ -0,0 +1,336 @@ + +=PROGRESS REPORT==== 22-Jul-2014::12:46:24 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::12:46:24 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::12:46:24 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::12:46:24 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::12:46:24 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::12:46:24 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::12:46:24 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::12:46:24 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::12:46:24 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::12:46:24 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::12:46:24 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::12:46:24 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::12:46:24 === + supervisor: {local,net_sup} + started: [{pid,<0.100.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::12:46:24 === + supervisor: {local,net_sup} + started: [{pid,<0.101.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::12:46:24 === + supervisor: {local,net_sup} + started: [{pid,<0.102.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::12:46:24 === + supervisor: {local,kernel_sup} + started: [{pid,<0.99.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::12:46:24 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.107.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 22-Jul-2014::12:46:24 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.106.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::12:46:24 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.96.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::12:46:25 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.110.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::12:46:25 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.112.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::12:46:25 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 22-Jul-2014::12:46:25 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::12:46:25 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.122.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::12:46:25 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.122.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::12:46:25 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.135.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::12:46:26 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.96.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::12:46:26 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.142.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::12:46:26 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.142.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::12:46:26 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.152.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::12:46:26 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.135.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::12:46:26 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.156.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::12:46:26 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.152.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 22-Jul-2014::12:46:26 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.152.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140722_124623/read_latencies.csv b/newtests/20140722_124623/read_latencies.csv new file mode 100644 index 000000000..1fe746d28 --- /dev/null +++ b/newtests/20140722_124623/read_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +1.688138, 1.688138, 5, 2655, 5093.6, 3171, 10280, 10280, 10280, 10280, 0 diff --git a/newtests/20140722_124623/static-tx_latencies.csv b/newtests/20140722_124623/static-tx_latencies.csv new file mode 100644 index 000000000..4c20553ab --- /dev/null +++ b/newtests/20140722_124623/static-tx_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +1.688138, 1.688138, 9, 71998, 137952.6, 123001, 283443, 283443, 283443, 283443, 0 diff --git a/newtests/20140722_124623/summary.csv b/newtests/20140722_124623/summary.csv new file mode 100644 index 000000000..049f53d0a --- /dev/null +++ b/newtests/20140722_124623/summary.csv @@ -0,0 +1,2 @@ +elapsed, window, total, successful, failed +1.688138, 1.688138, 31, 31, 0 diff --git a/newtests/20140722_124824/append_latencies.csv b/newtests/20140722_124824/append_latencies.csv new file mode 100644 index 000000000..206bb01ca --- /dev/null +++ b/newtests/20140722_124824/append_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +1.039608, 1.039608, 21, 1132, 2497.7, 1655, 5687, 5922, 5922, 5922, 0 diff --git a/newtests/20140722_124824/console.log b/newtests/20140722_124824/console.log new file mode 100644 index 000000000..4df2ff4e4 --- /dev/null +++ b/newtests/20140722_124824/console.log @@ -0,0 +1,104 @@ +2014-07-22 12:48:24.500 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_124824/error.log"} into lager_event +2014-07-22 12:48:24.500 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_124824/console.log"} into lager_event +2014-07-22 12:48:24.500 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-22 12:48:24.533 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-22 12:48:24.533 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-22 12:48:24.534 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-22 12:48:24.534 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-22 12:48:24.975 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-22 12:48:25.328 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-22 12:48:25.329 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_124824/console.log to debug +2014-07-22 12:48:25.340 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB +2014-07-22 12:48:25.414 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-22 12:48:25.415 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-22 12:48:25.415 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-22 12:48:25.430 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-22 12:48:25.430 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-22 12:48:25.515 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-22 12:48:25.516 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-22 12:48:25.551 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-22 12:48:25.557 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-22 12:48:25.563 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-22 12:48:25.564 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-22 12:48:25.597 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-22 12:48:25.602 [debug] <0.96.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 12:48:25.726 [debug] <0.99.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.100.0> +2014-07-22 12:48:25.733 [debug] <0.99.0> Supervisor net_sup started auth:start_link() at pid <0.101.0> +2014-07-22 12:48:25.745 [info] <0.98.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-22 12:48:25.746 [debug] <0.99.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.102.0> +2014-07-22 12:48:25.746 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> +2014-07-22 12:48:25.766 [debug] <0.106.0> Supervisor inet_gethost_native_sup started undefined at pid <0.107.0> +2014-07-22 12:48:25.766 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.106.0> +2014-07-22 12:48:25.785 [info] <0.98.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 12:48:25.785 [info] <0.98.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 12:48:25.786 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.96.0> +2014-07-22 12:48:25.867 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 12:48:25.867 [info] <0.111.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 12:48:25.868 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.110.0> +2014-07-22 12:48:25.868 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.112.0> +2014-07-22 12:48:25.876 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> +2014-07-22 12:48:25.876 [info] <0.98.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.98.0> +2014-07-22 12:48:25.877 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-22 12:48:26.343 [error] emulator Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + + +2014-07-22 12:48:26.343 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,15,96,27>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 12:48:26.343 [debug] <0.165.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 12:48:26.344 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated +2014-07-22 12:48:26.434 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 12:48:26.434 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 12:48:26.440 [info] <0.166.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 12:48:26.440 [info] <0.166.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 12:48:26.440 [warning] <0.165.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 12:48:26.440 [info] <0.166.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.166.0> +2014-07-22 12:48:26.441 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.165.0> +2014-07-22 12:48:26.441 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated +2014-07-22 12:48:26.495 [error] emulator Error in process <0.166.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 12:48:26.495 [error] <0.165.0>@basho_bench_worker:handle_info:149 Worker <0.166.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 12:48:26.532 [info] <0.179.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 12:48:26.532 [info] <0.179.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 12:48:26.532 [warning] <0.170.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 12:48:26.532 [info] <0.179.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.179.0> +2014-07-22 12:48:26.532 [debug] <0.180.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 12:48:26.532 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.170.0> +2014-07-22 12:48:26.533 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.165.0> exit with reason normal in context child_terminated +2014-07-22 12:48:26.558 [error] emulator Error in process <0.179.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + + +2014-07-22 12:48:26.558 [error] <0.170.0>@basho_bench_worker:handle_info:149 Worker <0.179.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,15,96,27>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 12:48:26.636 [info] <0.183.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 12:48:26.636 [info] <0.183.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 12:48:26.636 [warning] <0.180.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 12:48:26.636 [info] <0.183.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.183.0> +2014-07-22 12:48:26.637 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.180.0> +2014-07-22 12:48:26.637 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.170.0> exit with reason normal in context child_terminated +2014-07-22 12:48:26.696 [error] emulator Error in process <0.183.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 12:48:26.696 [error] <0.180.0>@basho_bench_worker:handle_info:149 Worker <0.183.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 12:48:26.722 [info] <0.188.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 12:48:26.722 [info] <0.188.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 12:48:26.722 [warning] <0.184.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 12:48:26.722 [info] <0.188.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.188.0> +2014-07-22 12:48:26.722 [debug] <0.190.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 12:48:26.722 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.184.0> +2014-07-22 12:48:26.723 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.180.0> exit with reason normal in context child_terminated +2014-07-22 12:48:26.825 [info] <0.197.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 12:48:26.825 [info] <0.197.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 12:48:26.825 [warning] <0.190.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 12:48:26.825 [info] <0.197.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.197.0> +2014-07-22 12:48:26.825 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.190.0> +2014-07-22 12:48:26.907 [error] emulator Error in process <0.188.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 12:48:26.907 [error] <0.184.0>@basho_bench_worker:handle_info:149 Worker <0.188.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 12:48:26.908 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.184.0> exit with reason normal in context child_terminated +2014-07-22 12:48:26.909 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.184.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-22 12:48:26.919 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. +2014-07-22 12:48:26.919 [info] <0.2.0>@basho_bench:wait_for_stop:191 Test stopped: shutdown diff --git a/newtests/20140722_124824/crash.log b/newtests/20140722_124824/crash.log new file mode 100644 index 000000000..9937d3dc4 --- /dev/null +++ b/newtests/20140722_124824/crash.log @@ -0,0 +1,60 @@ +2014-07-22 12:48:26 =ERROR REPORT==== +Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + +2014-07-22 12:48:26 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.96.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 12:48:26 =ERROR REPORT==== +Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-22 12:48:26 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 12:48:26 =ERROR REPORT==== +Error in process <0.166.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-22 12:48:26 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.165.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 12:48:26 =ERROR REPORT==== +Error in process <0.179.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + +2014-07-22 12:48:26 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.170.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 12:48:26 =ERROR REPORT==== +Error in process <0.183.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-22 12:48:26 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.180.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 12:48:26 =ERROR REPORT==== +Error in process <0.188.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-22 12:48:26 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.184.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 12:48:26 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.184.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140722_124824/error.log b/newtests/20140722_124824/error.log new file mode 100644 index 000000000..983008d83 --- /dev/null +++ b/newtests/20140722_124824/error.log @@ -0,0 +1,31 @@ +2014-07-22 12:48:26.343 [error] emulator Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + + +2014-07-22 12:48:26.343 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,15,96,27>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 12:48:26.344 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated +2014-07-22 12:48:26.434 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 12:48:26.434 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 12:48:26.441 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated +2014-07-22 12:48:26.495 [error] emulator Error in process <0.166.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 12:48:26.495 [error] <0.165.0>@basho_bench_worker:handle_info:149 Worker <0.166.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 12:48:26.533 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.165.0> exit with reason normal in context child_terminated +2014-07-22 12:48:26.558 [error] emulator Error in process <0.179.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + + +2014-07-22 12:48:26.558 [error] <0.170.0>@basho_bench_worker:handle_info:149 Worker <0.179.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,15,96,27>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 12:48:26.637 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.170.0> exit with reason normal in context child_terminated +2014-07-22 12:48:26.696 [error] emulator Error in process <0.183.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 12:48:26.696 [error] <0.180.0>@basho_bench_worker:handle_info:149 Worker <0.183.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 12:48:26.723 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.180.0> exit with reason normal in context child_terminated +2014-07-22 12:48:26.907 [error] emulator Error in process <0.188.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 12:48:26.907 [error] <0.184.0>@basho_bench_worker:handle_info:149 Worker <0.188.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 12:48:26.908 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.184.0> exit with reason normal in context child_terminated +2014-07-22 12:48:26.909 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.184.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140722_124824/errors.csv b/newtests/20140722_124824/errors.csv new file mode 100644 index 000000000..29210b502 --- /dev/null +++ b/newtests/20140722_124824/errors.csv @@ -0,0 +1 @@ +"error","count" diff --git a/newtests/20140722_124824/floppstore.config b/newtests/20140722_124824/floppstore.config new file mode 100644 index 000000000..bb59890f3 --- /dev/null +++ b/newtests/20140722_124824/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {uniform_int, 5000000}}. + +{value_generator, {fixed_bin, 10}}. + +{operations, [{static_tx, 1}, {interactive_tx,1}, {append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140722_124824/interactive-tx_latencies.csv b/newtests/20140722_124824/interactive-tx_latencies.csv new file mode 100644 index 000000000..1793ee444 --- /dev/null +++ b/newtests/20140722_124824/interactive-tx_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +1.039608, 1.039608, 26, 17825, 27682.7, 20684, 79662, 80058, 80058, 80058, 0 diff --git a/newtests/20140722_124824/log.sasl.txt b/newtests/20140722_124824/log.sasl.txt new file mode 100644 index 000000000..b9a768cdf --- /dev/null +++ b/newtests/20140722_124824/log.sasl.txt @@ -0,0 +1,336 @@ + +=PROGRESS REPORT==== 22-Jul-2014::12:48:25 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::12:48:25 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::12:48:25 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::12:48:25 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::12:48:25 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::12:48:25 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::12:48:25 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::12:48:25 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::12:48:25 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::12:48:25 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::12:48:25 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::12:48:25 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::12:48:25 === + supervisor: {local,net_sup} + started: [{pid,<0.100.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::12:48:25 === + supervisor: {local,net_sup} + started: [{pid,<0.101.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::12:48:25 === + supervisor: {local,net_sup} + started: [{pid,<0.102.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::12:48:25 === + supervisor: {local,kernel_sup} + started: [{pid,<0.99.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::12:48:25 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.107.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 22-Jul-2014::12:48:25 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.106.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::12:48:25 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.96.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::12:48:25 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.110.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::12:48:25 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.112.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::12:48:25 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 22-Jul-2014::12:48:26 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.96.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::12:48:26 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.165.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::12:48:26 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::12:48:26 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.170.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::12:48:26 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.165.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::12:48:26 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.180.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::12:48:26 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.170.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::12:48:26 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.184.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::12:48:26 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.180.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::12:48:26 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.190.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::12:48:26 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.184.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 22-Jul-2014::12:48:26 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.184.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140722_124824/read_latencies.csv b/newtests/20140722_124824/read_latencies.csv new file mode 100644 index 000000000..9e5538aac --- /dev/null +++ b/newtests/20140722_124824/read_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +1.039608, 1.039608, 13, 1193, 4895.0, 3256, 12880, 12987, 12987, 12987, 0 diff --git a/newtests/20140722_124824/static-tx_latencies.csv b/newtests/20140722_124824/static-tx_latencies.csv new file mode 100644 index 000000000..6a8cee085 --- /dev/null +++ b/newtests/20140722_124824/static-tx_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +1.039608, 1.039608, 24, 7823, 23532.2, 20007, 33132, 62361, 62361, 62361, 0 diff --git a/newtests/20140722_124824/summary.csv b/newtests/20140722_124824/summary.csv new file mode 100644 index 000000000..4a4706da3 --- /dev/null +++ b/newtests/20140722_124824/summary.csv @@ -0,0 +1,2 @@ +elapsed, window, total, successful, failed +1.039608, 1.039608, 84, 84, 0 diff --git a/newtests/20140722_140229/append_latencies.csv b/newtests/20140722_140229/append_latencies.csv new file mode 100644 index 000000000..ded9d8304 --- /dev/null +++ b/newtests/20140722_140229/append_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.71267, 0.71267, 11, 1244, 8402.7, 6095, 12342, 30807, 30807, 30807, 0 diff --git a/newtests/20140722_140229/console.log b/newtests/20140722_140229/console.log new file mode 100644 index 000000000..9da37594f --- /dev/null +++ b/newtests/20140722_140229/console.log @@ -0,0 +1,103 @@ +2014-07-22 14:02:29.783 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_140229/error.log"} into lager_event +2014-07-22 14:02:29.783 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_140229/console.log"} into lager_event +2014-07-22 14:02:29.783 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-22 14:02:29.820 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-22 14:02:29.820 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-22 14:02:29.820 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-22 14:02:29.820 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-22 14:02:30.259 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-22 14:02:30.703 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-22 14:02:30.704 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_140229/console.log to debug +2014-07-22 14:02:30.717 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB +2014-07-22 14:02:30.802 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-22 14:02:30.802 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-22 14:02:30.803 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-22 14:02:30.819 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-22 14:02:30.819 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-22 14:02:30.916 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-22 14:02:30.917 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-22 14:02:30.945 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-22 14:02:30.950 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-22 14:02:30.956 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-22 14:02:30.956 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-22 14:02:30.993 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-22 14:02:30.999 [debug] <0.96.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 14:02:31.134 [debug] <0.99.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.100.0> +2014-07-22 14:02:31.141 [debug] <0.99.0> Supervisor net_sup started auth:start_link() at pid <0.101.0> +2014-07-22 14:02:31.153 [info] <0.98.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-22 14:02:31.153 [debug] <0.99.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.102.0> +2014-07-22 14:02:31.154 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> +2014-07-22 14:02:31.168 [debug] <0.106.0> Supervisor inet_gethost_native_sup started undefined at pid <0.107.0> +2014-07-22 14:02:31.168 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.106.0> +2014-07-22 14:02:31.188 [info] <0.98.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:02:31.188 [info] <0.98.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 14:02:31.237 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.96.0> +2014-07-22 14:02:31.265 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:02:31.265 [info] <0.111.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 14:02:31.265 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.110.0> +2014-07-22 14:02:31.266 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.112.0> +2014-07-22 14:02:31.272 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> +2014-07-22 14:02:31.272 [info] <0.98.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.98.0> +2014-07-22 14:02:31.273 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-22 14:02:31.481 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:02:31.481 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:02:31.482 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated +2014-07-22 14:02:31.581 [info] <0.130.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:02:31.581 [info] <0.130.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 14:02:31.581 [warning] <0.127.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 14:02:31.582 [info] <0.130.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.130.0> +2014-07-22 14:02:31.582 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.127.0> +2014-07-22 14:02:31.608 [error] emulator Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:02:31.608 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:02:31.608 [debug] <0.137.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 14:02:31.608 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated +2014-07-22 14:02:31.671 [error] emulator Error in process <0.130.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:02:31.671 [error] <0.127.0>@basho_bench_worker:handle_info:149 Worker <0.130.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:02:31.702 [info] <0.142.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:02:31.702 [info] <0.142.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 14:02:31.702 [warning] <0.137.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 14:02:31.702 [info] <0.142.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.142.0> +2014-07-22 14:02:31.703 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.137.0> +2014-07-22 14:02:31.703 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.127.0> exit with reason normal in context child_terminated +2014-07-22 14:02:31.785 [error] emulator Error in process <0.142.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + + +2014-07-22 14:02:31.785 [error] <0.137.0>@basho_bench_worker:handle_info:149 Worker <0.142.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,13,206,47>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:02:31.800 [info] <0.149.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:02:31.800 [info] <0.149.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 14:02:31.800 [warning] <0.144.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 14:02:31.800 [info] <0.149.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.149.0> +2014-07-22 14:02:31.800 [debug] <0.151.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 14:02:31.801 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.144.0> +2014-07-22 14:02:31.801 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.137.0> exit with reason normal in context child_terminated +2014-07-22 14:02:31.827 [error] emulator Error in process <0.149.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:02:31.827 [error] <0.144.0>@basho_bench_worker:handle_info:149 Worker <0.149.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:02:31.881 [info] <0.154.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:02:31.881 [info] <0.154.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 14:02:31.881 [warning] <0.151.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 14:02:31.881 [info] <0.154.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.154.0> +2014-07-22 14:02:31.881 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.151.0> +2014-07-22 14:02:31.882 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.144.0> exit with reason normal in context child_terminated +2014-07-22 14:02:31.975 [error] emulator Error in process <0.154.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + + +2014-07-22 14:02:31.975 [error] <0.151.0>@basho_bench_worker:handle_info:149 Worker <0.154.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,44,89,164>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:02:31.978 [info] <0.161.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:02:31.978 [info] <0.161.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 14:02:31.978 [warning] <0.155.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 14:02:31.978 [info] <0.161.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.161.0> +2014-07-22 14:02:31.978 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.155.0> +2014-07-22 14:02:31.979 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.151.0> exit with reason normal in context child_terminated +2014-07-22 14:02:31.980 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.151.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-22 14:02:31.989 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} +2014-07-22 14:02:31.989 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. diff --git a/newtests/20140722_140229/crash.log b/newtests/20140722_140229/crash.log new file mode 100644 index 000000000..e96a4b6dc --- /dev/null +++ b/newtests/20140722_140229/crash.log @@ -0,0 +1,60 @@ +2014-07-22 14:02:31 =ERROR REPORT==== +Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-22 14:02:31 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 14:02:31 =ERROR REPORT==== +Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-22 14:02:31 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.96.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 14:02:31 =ERROR REPORT==== +Error in process <0.130.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-22 14:02:31 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.127.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 14:02:31 =ERROR REPORT==== +Error in process <0.142.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + +2014-07-22 14:02:31 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.137.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 14:02:31 =ERROR REPORT==== +Error in process <0.149.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-22 14:02:31 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.144.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 14:02:31 =ERROR REPORT==== +Error in process <0.154.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + +2014-07-22 14:02:31 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.151.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 14:02:31 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.151.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140722_140229/error.log b/newtests/20140722_140229/error.log new file mode 100644 index 000000000..813620ec4 --- /dev/null +++ b/newtests/20140722_140229/error.log @@ -0,0 +1,31 @@ +2014-07-22 14:02:31.481 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:02:31.481 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:02:31.482 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated +2014-07-22 14:02:31.608 [error] emulator Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:02:31.608 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:02:31.608 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated +2014-07-22 14:02:31.671 [error] emulator Error in process <0.130.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:02:31.671 [error] <0.127.0>@basho_bench_worker:handle_info:149 Worker <0.130.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:02:31.703 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.127.0> exit with reason normal in context child_terminated +2014-07-22 14:02:31.785 [error] emulator Error in process <0.142.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + + +2014-07-22 14:02:31.785 [error] <0.137.0>@basho_bench_worker:handle_info:149 Worker <0.142.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,13,206,47>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:02:31.801 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.137.0> exit with reason normal in context child_terminated +2014-07-22 14:02:31.827 [error] emulator Error in process <0.149.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:02:31.827 [error] <0.144.0>@basho_bench_worker:handle_info:149 Worker <0.149.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:02:31.882 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.144.0> exit with reason normal in context child_terminated +2014-07-22 14:02:31.975 [error] emulator Error in process <0.154.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + + +2014-07-22 14:02:31.975 [error] <0.151.0>@basho_bench_worker:handle_info:149 Worker <0.154.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,44,89,164>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:02:31.979 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.151.0> exit with reason normal in context child_terminated +2014-07-22 14:02:31.980 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.151.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140722_140229/errors.csv b/newtests/20140722_140229/errors.csv new file mode 100644 index 000000000..29210b502 --- /dev/null +++ b/newtests/20140722_140229/errors.csv @@ -0,0 +1 @@ +"error","count" diff --git a/newtests/20140722_140229/floppstore.config b/newtests/20140722_140229/floppstore.config new file mode 100644 index 000000000..bb59890f3 --- /dev/null +++ b/newtests/20140722_140229/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {uniform_int, 5000000}}. + +{value_generator, {fixed_bin, 10}}. + +{operations, [{static_tx, 1}, {interactive_tx,1}, {append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140722_140229/interactive-tx_latencies.csv b/newtests/20140722_140229/interactive-tx_latencies.csv new file mode 100644 index 000000000..ea3cbf8f9 --- /dev/null +++ b/newtests/20140722_140229/interactive-tx_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.71267, 0.71267, 16, 18551, 31571.1, 25001, 77220, 77690, 77690, 77690, 0 diff --git a/newtests/20140722_140229/log.sasl.txt b/newtests/20140722_140229/log.sasl.txt new file mode 100644 index 000000000..2c62d3b09 --- /dev/null +++ b/newtests/20140722_140229/log.sasl.txt @@ -0,0 +1,336 @@ + +=PROGRESS REPORT==== 22-Jul-2014::14:02:30 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:02:30 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:02:30 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::14:02:30 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:02:30 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::14:02:30 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:02:30 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::14:02:30 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::14:02:30 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:02:30 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:02:30 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::14:02:30 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:02:31 === + supervisor: {local,net_sup} + started: [{pid,<0.100.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:02:31 === + supervisor: {local,net_sup} + started: [{pid,<0.101.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:02:31 === + supervisor: {local,net_sup} + started: [{pid,<0.102.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:02:31 === + supervisor: {local,kernel_sup} + started: [{pid,<0.99.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::14:02:31 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.107.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 22-Jul-2014::14:02:31 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.106.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:02:31 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.96.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:02:31 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.110.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:02:31 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.112.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:02:31 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 22-Jul-2014::14:02:31 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::14:02:31 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.127.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::14:02:31 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.96.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::14:02:31 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.137.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::14:02:31 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.127.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::14:02:31 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.144.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::14:02:31 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.137.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::14:02:31 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.151.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::14:02:31 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.144.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::14:02:31 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.155.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::14:02:31 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.151.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 22-Jul-2014::14:02:31 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.151.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140722_140229/read_latencies.csv b/newtests/20140722_140229/read_latencies.csv new file mode 100644 index 000000000..2be0c353f --- /dev/null +++ b/newtests/20140722_140229/read_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.71267, 0.71267, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140722_140229/static-tx_latencies.csv b/newtests/20140722_140229/static-tx_latencies.csv new file mode 100644 index 000000000..3164b8d96 --- /dev/null +++ b/newtests/20140722_140229/static-tx_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.71267, 0.71267, 6, 18054, 30249.2, 26574, 44231, 44231, 44231, 44231, 0 diff --git a/newtests/20140722_140229/summary.csv b/newtests/20140722_140229/summary.csv new file mode 100644 index 000000000..7df7d9dae --- /dev/null +++ b/newtests/20140722_140229/summary.csv @@ -0,0 +1,2 @@ +elapsed, window, total, successful, failed +0.71267, 0.71267, 36, 36, 0 diff --git a/newtests/20140722_140845/append_latencies.csv b/newtests/20140722_140845/append_latencies.csv new file mode 100644 index 000000000..8d3125339 --- /dev/null +++ b/newtests/20140722_140845/append_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +1.129398, 1.129398, 14, 1001, 2071.1, 1580, 4048, 4890, 4890, 4890, 0 diff --git a/newtests/20140722_140845/console.log b/newtests/20140722_140845/console.log new file mode 100644 index 000000000..7d3035d96 --- /dev/null +++ b/newtests/20140722_140845/console.log @@ -0,0 +1,103 @@ +2014-07-22 14:08:45.597 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_140845/error.log"} into lager_event +2014-07-22 14:08:45.597 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_140845/console.log"} into lager_event +2014-07-22 14:08:45.597 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-22 14:08:45.636 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-22 14:08:45.636 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-22 14:08:45.636 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-22 14:08:45.637 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-22 14:08:46.072 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-22 14:08:46.442 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-22 14:08:46.443 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_140845/console.log to debug +2014-07-22 14:08:46.455 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB +2014-07-22 14:08:46.548 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-22 14:08:46.548 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-22 14:08:46.548 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-22 14:08:46.568 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-22 14:08:46.568 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-22 14:08:46.663 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-22 14:08:46.663 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-22 14:08:46.694 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-22 14:08:46.700 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-22 14:08:46.707 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-22 14:08:46.707 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-22 14:08:46.742 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-22 14:08:46.747 [debug] <0.96.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 14:08:46.877 [debug] <0.99.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.100.0> +2014-07-22 14:08:46.885 [debug] <0.99.0> Supervisor net_sup started auth:start_link() at pid <0.101.0> +2014-07-22 14:08:46.899 [info] <0.98.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-22 14:08:46.900 [debug] <0.99.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.102.0> +2014-07-22 14:08:46.900 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> +2014-07-22 14:08:46.918 [debug] <0.106.0> Supervisor inet_gethost_native_sup started undefined at pid <0.107.0> +2014-07-22 14:08:46.918 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.106.0> +2014-07-22 14:08:46.935 [info] <0.98.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:08:46.935 [info] <0.98.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 14:08:46.936 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.96.0> +2014-07-22 14:08:47.018 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:08:47.018 [info] <0.111.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 14:08:47.018 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.110.0> +2014-07-22 14:08:47.019 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.112.0> +2014-07-22 14:08:47.024 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> +2014-07-22 14:08:47.024 [info] <0.98.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.98.0> +2014-07-22 14:08:47.025 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-22 14:08:47.368 [error] emulator Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:08:47.368 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:08:47.369 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated +2014-07-22 14:08:47.370 [debug] <0.138.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 14:08:47.467 [info] <0.139.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:08:47.467 [info] <0.139.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 14:08:47.467 [warning] <0.138.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 14:08:47.467 [info] <0.139.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.139.0> +2014-07-22 14:08:47.468 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.138.0> +2014-07-22 14:08:47.543 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:08:47.543 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:08:47.544 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated +2014-07-22 14:08:47.639 [info] <0.165.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:08:47.639 [info] <0.165.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 14:08:47.639 [warning] <0.158.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 14:08:47.639 [info] <0.165.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.165.0> +2014-07-22 14:08:47.639 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.158.0> +2014-07-22 14:08:47.738 [error] emulator Error in process <0.165.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + + +2014-07-22 14:08:47.738 [error] <0.158.0>@basho_bench_worker:handle_info:149 Worker <0.165.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,70,117,150>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:08:47.739 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.158.0> exit with reason normal in context child_terminated +2014-07-22 14:08:47.752 [error] emulator Error in process <0.139.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + + +2014-07-22 14:08:47.753 [error] <0.138.0>@basho_bench_worker:handle_info:149 Worker <0.139.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,70,117,150>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:08:47.822 [info] <0.180.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:08:47.822 [info] <0.180.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 14:08:47.822 [warning] <0.177.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 14:08:47.822 [info] <0.180.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.180.0> +2014-07-22 14:08:47.822 [debug] <0.181.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 14:08:47.822 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.177.0> +2014-07-22 14:08:47.823 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.138.0> exit with reason normal in context child_terminated +2014-07-22 14:08:47.917 [info] <0.185.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:08:47.917 [info] <0.185.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 14:08:47.917 [warning] <0.181.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 14:08:47.917 [info] <0.185.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.185.0> +2014-07-22 14:08:47.918 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.181.0> +2014-07-22 14:08:48.012 [error] <0.181.0>@basho_bench_worker:handle_info:149 Worker <0.185.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,70,117,150>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:08:48.012 [error] emulator Error in process <0.185.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + + +2014-07-22 14:08:48.012 [debug] <0.204.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 14:08:48.013 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.181.0> exit with reason normal in context child_terminated +2014-07-22 14:08:48.103 [info] <0.205.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:08:48.103 [info] <0.205.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 14:08:48.103 [warning] <0.204.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 14:08:48.103 [info] <0.205.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.205.0> +2014-07-22 14:08:48.104 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.204.0> +2014-07-22 14:08:48.147 [error] emulator Error in process <0.180.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + + +2014-07-22 14:08:48.147 [error] <0.177.0>@basho_bench_worker:handle_info:149 Worker <0.180.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,19,199,253>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:08:48.148 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.177.0> exit with reason normal in context child_terminated +2014-07-22 14:08:48.148 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.177.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-22 14:08:48.158 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. diff --git a/newtests/20140722_140845/crash.log b/newtests/20140722_140845/crash.log new file mode 100644 index 000000000..b2a07837a --- /dev/null +++ b/newtests/20140722_140845/crash.log @@ -0,0 +1,60 @@ +2014-07-22 14:08:47 =ERROR REPORT==== +Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-22 14:08:47 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.96.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 14:08:47 =ERROR REPORT==== +Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-22 14:08:47 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 14:08:47 =ERROR REPORT==== +Error in process <0.165.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + +2014-07-22 14:08:47 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.158.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 14:08:47 =ERROR REPORT==== +Error in process <0.139.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + +2014-07-22 14:08:47 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.138.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 14:08:48 =ERROR REPORT==== +Error in process <0.185.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + +2014-07-22 14:08:48 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.181.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 14:08:48 =ERROR REPORT==== +Error in process <0.180.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + +2014-07-22 14:08:48 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.177.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 14:08:48 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.177.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140722_140845/error.log b/newtests/20140722_140845/error.log new file mode 100644 index 000000000..85991972c --- /dev/null +++ b/newtests/20140722_140845/error.log @@ -0,0 +1,31 @@ +2014-07-22 14:08:47.368 [error] emulator Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:08:47.368 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:08:47.369 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated +2014-07-22 14:08:47.543 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:08:47.543 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:08:47.544 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated +2014-07-22 14:08:47.738 [error] emulator Error in process <0.165.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + + +2014-07-22 14:08:47.738 [error] <0.158.0>@basho_bench_worker:handle_info:149 Worker <0.165.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,70,117,150>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:08:47.739 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.158.0> exit with reason normal in context child_terminated +2014-07-22 14:08:47.752 [error] emulator Error in process <0.139.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + + +2014-07-22 14:08:47.753 [error] <0.138.0>@basho_bench_worker:handle_info:149 Worker <0.139.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,70,117,150>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:08:47.823 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.138.0> exit with reason normal in context child_terminated +2014-07-22 14:08:48.012 [error] <0.181.0>@basho_bench_worker:handle_info:149 Worker <0.185.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,70,117,150>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:08:48.012 [error] emulator Error in process <0.185.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + + +2014-07-22 14:08:48.013 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.181.0> exit with reason normal in context child_terminated +2014-07-22 14:08:48.147 [error] emulator Error in process <0.180.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + + +2014-07-22 14:08:48.147 [error] <0.177.0>@basho_bench_worker:handle_info:149 Worker <0.180.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,19,199,253>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:08:48.148 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.177.0> exit with reason normal in context child_terminated +2014-07-22 14:08:48.148 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.177.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140722_140845/errors.csv b/newtests/20140722_140845/errors.csv new file mode 100644 index 000000000..29210b502 --- /dev/null +++ b/newtests/20140722_140845/errors.csv @@ -0,0 +1 @@ +"error","count" diff --git a/newtests/20140722_140845/floppstore.config b/newtests/20140722_140845/floppstore.config new file mode 100644 index 000000000..bb59890f3 --- /dev/null +++ b/newtests/20140722_140845/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {uniform_int, 5000000}}. + +{value_generator, {fixed_bin, 10}}. + +{operations, [{static_tx, 1}, {interactive_tx,1}, {append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140722_140845/interactive-tx_latencies.csv b/newtests/20140722_140845/interactive-tx_latencies.csv new file mode 100644 index 000000000..69fa03e2c --- /dev/null +++ b/newtests/20140722_140845/interactive-tx_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +1.129398, 1.129398, 32, 5676, 24959.6, 20628, 34411, 76105, 76105, 76105, 0 diff --git a/newtests/20140722_140845/log.sasl.txt b/newtests/20140722_140845/log.sasl.txt new file mode 100644 index 000000000..2cd75a4e7 --- /dev/null +++ b/newtests/20140722_140845/log.sasl.txt @@ -0,0 +1,336 @@ + +=PROGRESS REPORT==== 22-Jul-2014::14:08:46 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:08:46 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:08:46 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::14:08:46 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:08:46 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::14:08:46 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:08:46 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::14:08:46 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::14:08:46 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:08:46 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:08:46 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::14:08:46 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:08:46 === + supervisor: {local,net_sup} + started: [{pid,<0.100.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:08:46 === + supervisor: {local,net_sup} + started: [{pid,<0.101.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:08:46 === + supervisor: {local,net_sup} + started: [{pid,<0.102.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:08:46 === + supervisor: {local,kernel_sup} + started: [{pid,<0.99.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::14:08:46 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.107.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 22-Jul-2014::14:08:46 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.106.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:08:46 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.96.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:08:47 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.110.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:08:47 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.112.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:08:47 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 22-Jul-2014::14:08:47 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.96.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::14:08:47 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.138.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::14:08:47 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::14:08:47 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.158.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::14:08:47 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.158.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::14:08:47 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.177.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::14:08:47 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.138.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::14:08:47 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.181.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::14:08:48 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.181.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::14:08:48 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.204.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::14:08:48 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.177.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 22-Jul-2014::14:08:48 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.177.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140722_140845/read_latencies.csv b/newtests/20140722_140845/read_latencies.csv new file mode 100644 index 000000000..fd2b6bc1a --- /dev/null +++ b/newtests/20140722_140845/read_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +1.129398, 1.129398, 14, 1815, 5570.5, 3461, 11324, 12319, 12319, 12319, 0 diff --git a/newtests/20140722_140845/static-tx_latencies.csv b/newtests/20140722_140845/static-tx_latencies.csv new file mode 100644 index 000000000..e1a8a0457 --- /dev/null +++ b/newtests/20140722_140845/static-tx_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +1.129398, 1.129398, 25, 16560, 30916.1, 21652, 59688, 88471, 88471, 88471, 0 diff --git a/newtests/20140722_140845/summary.csv b/newtests/20140722_140845/summary.csv new file mode 100644 index 000000000..5eb0bbdc1 --- /dev/null +++ b/newtests/20140722_140845/summary.csv @@ -0,0 +1,2 @@ +elapsed, window, total, successful, failed +1.129398, 1.129398, 85, 85, 0 diff --git a/newtests/20140722_141942/append_latencies.csv b/newtests/20140722_141942/append_latencies.csv new file mode 100644 index 000000000..71dd49f0b --- /dev/null +++ b/newtests/20140722_141942/append_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.741695, 0.741695, 6, 1191, 4008.5, 3465, 6536, 6536, 6536, 6536, 0 diff --git a/newtests/20140722_141942/console.log b/newtests/20140722_141942/console.log new file mode 100644 index 000000000..e19f44b5f --- /dev/null +++ b/newtests/20140722_141942/console.log @@ -0,0 +1,105 @@ +2014-07-22 14:19:42.995 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_141942/error.log"} into lager_event +2014-07-22 14:19:42.995 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_141942/console.log"} into lager_event +2014-07-22 14:19:42.995 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-22 14:19:43.032 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-22 14:19:43.032 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-22 14:19:43.032 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-22 14:19:43.032 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-22 14:19:43.469 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-22 14:19:43.919 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-22 14:19:43.920 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_141942/console.log to debug +2014-07-22 14:19:43.934 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB +2014-07-22 14:19:44.021 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-22 14:19:44.022 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-22 14:19:44.022 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-22 14:19:44.038 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-22 14:19:44.038 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-22 14:19:44.128 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-22 14:19:44.128 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-22 14:19:44.160 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-22 14:19:44.165 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-22 14:19:44.170 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-22 14:19:44.170 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-22 14:19:44.205 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-22 14:19:44.211 [debug] <0.96.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 14:19:44.345 [debug] <0.99.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.100.0> +2014-07-22 14:19:44.354 [debug] <0.99.0> Supervisor net_sup started auth:start_link() at pid <0.101.0> +2014-07-22 14:19:44.381 [info] <0.98.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-22 14:19:44.381 [debug] <0.99.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.102.0> +2014-07-22 14:19:44.382 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> +2014-07-22 14:19:44.403 [debug] <0.106.0> Supervisor inet_gethost_native_sup started undefined at pid <0.107.0> +2014-07-22 14:19:44.403 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.106.0> +2014-07-22 14:19:44.421 [info] <0.98.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:19:44.421 [info] <0.98.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 14:19:44.422 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.96.0> +2014-07-22 14:19:44.500 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:19:44.500 [info] <0.111.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 14:19:44.500 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.110.0> +2014-07-22 14:19:44.501 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.112.0> +2014-07-22 14:19:44.507 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> +2014-07-22 14:19:44.507 [info] <0.98.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.98.0> +2014-07-22 14:19:44.507 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-22 14:19:44.672 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:19:44.672 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:19:44.672 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated +2014-07-22 14:19:44.766 [info] <0.118.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:19:44.766 [info] <0.118.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 14:19:44.767 [warning] <0.117.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 14:19:44.767 [info] <0.118.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.118.0> +2014-07-22 14:19:44.767 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.117.0> +2014-07-22 14:19:44.854 [error] emulator Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:19:44.854 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:19:44.854 [debug] <0.128.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 14:19:44.855 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated +2014-07-22 14:19:44.901 [error] emulator Error in process <0.118.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:19:44.901 [error] <0.117.0>@basho_bench_worker:handle_info:149 Worker <0.118.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:19:44.934 [info] <0.130.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:19:44.934 [info] <0.130.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 14:19:44.934 [warning] <0.128.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 14:19:44.934 [info] <0.130.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.130.0> +2014-07-22 14:19:44.934 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.128.0> +2014-07-22 14:19:44.935 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.117.0> exit with reason normal in context child_terminated +2014-07-22 14:19:45.000 [error] emulator Error in process <0.130.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:19:45.000 [error] <0.128.0>@basho_bench_worker:handle_info:149 Worker <0.130.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:19:45.026 [info] <0.137.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:19:45.026 [info] <0.137.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 14:19:45.026 [warning] <0.131.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 14:19:45.026 [info] <0.137.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.137.0> +2014-07-22 14:19:45.026 [debug] <0.140.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 14:19:45.027 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.131.0> +2014-07-22 14:19:45.027 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.128.0> exit with reason normal in context child_terminated +2014-07-22 14:19:45.116 [info] <0.144.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:19:45.116 [info] <0.144.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 14:19:45.116 [warning] <0.140.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 14:19:45.116 [info] <0.144.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.144.0> +2014-07-22 14:19:45.117 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.140.0> +2014-07-22 14:19:45.148 [error] emulator Error in process <0.144.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + + +2014-07-22 14:19:45.148 [error] <0.140.0>@basho_bench_worker:handle_info:149 Worker <0.144.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,14,76,225>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:19:45.149 [debug] <0.151.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 14:19:45.149 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.140.0> exit with reason normal in context child_terminated +2014-07-22 14:19:45.233 [error] emulator Error in process <0.137.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:19:45.233 [error] <0.131.0>@basho_bench_worker:handle_info:149 Worker <0.137.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:19:45.241 [info] <0.155.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:19:45.242 [info] <0.155.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 14:19:45.242 [warning] <0.151.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 14:19:45.242 [info] <0.155.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.155.0> +2014-07-22 14:19:45.242 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.151.0> +2014-07-22 14:19:45.243 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.131.0> exit with reason normal in context child_terminated +2014-07-22 14:19:45.243 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.131.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-22 14:19:45.252 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} +2014-07-22 14:19:45.252 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. +2014-07-22 14:19:45.253 [info] <0.2.0>@basho_bench:wait_for_stop:191 Test stopped: shutdown diff --git a/newtests/20140722_141942/crash.log b/newtests/20140722_141942/crash.log new file mode 100644 index 000000000..7f3b79904 --- /dev/null +++ b/newtests/20140722_141942/crash.log @@ -0,0 +1,60 @@ +2014-07-22 14:19:44 =ERROR REPORT==== +Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-22 14:19:44 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 14:19:44 =ERROR REPORT==== +Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-22 14:19:44 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.96.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 14:19:44 =ERROR REPORT==== +Error in process <0.118.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-22 14:19:44 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.117.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 14:19:45 =ERROR REPORT==== +Error in process <0.130.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-22 14:19:45 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.128.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 14:19:45 =ERROR REPORT==== +Error in process <0.144.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + +2014-07-22 14:19:45 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.140.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 14:19:45 =ERROR REPORT==== +Error in process <0.137.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-22 14:19:45 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.131.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 14:19:45 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.131.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140722_141942/error.log b/newtests/20140722_141942/error.log new file mode 100644 index 000000000..225e38ef8 --- /dev/null +++ b/newtests/20140722_141942/error.log @@ -0,0 +1,31 @@ +2014-07-22 14:19:44.672 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:19:44.672 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:19:44.672 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated +2014-07-22 14:19:44.854 [error] emulator Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:19:44.854 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:19:44.855 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated +2014-07-22 14:19:44.901 [error] emulator Error in process <0.118.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:19:44.901 [error] <0.117.0>@basho_bench_worker:handle_info:149 Worker <0.118.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:19:44.935 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.117.0> exit with reason normal in context child_terminated +2014-07-22 14:19:45.000 [error] emulator Error in process <0.130.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:19:45.000 [error] <0.128.0>@basho_bench_worker:handle_info:149 Worker <0.130.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:19:45.027 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.128.0> exit with reason normal in context child_terminated +2014-07-22 14:19:45.148 [error] emulator Error in process <0.144.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + + +2014-07-22 14:19:45.148 [error] <0.140.0>@basho_bench_worker:handle_info:149 Worker <0.144.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,14,76,225>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:19:45.149 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.140.0> exit with reason normal in context child_terminated +2014-07-22 14:19:45.233 [error] emulator Error in process <0.137.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:19:45.233 [error] <0.131.0>@basho_bench_worker:handle_info:149 Worker <0.137.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:19:45.243 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.131.0> exit with reason normal in context child_terminated +2014-07-22 14:19:45.243 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.131.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140722_141942/errors.csv b/newtests/20140722_141942/errors.csv new file mode 100644 index 000000000..29210b502 --- /dev/null +++ b/newtests/20140722_141942/errors.csv @@ -0,0 +1 @@ +"error","count" diff --git a/newtests/20140722_141942/floppstore.config b/newtests/20140722_141942/floppstore.config new file mode 100644 index 000000000..bb59890f3 --- /dev/null +++ b/newtests/20140722_141942/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {uniform_int, 5000000}}. + +{value_generator, {fixed_bin, 10}}. + +{operations, [{static_tx, 1}, {interactive_tx,1}, {append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140722_141942/interactive-tx_latencies.csv b/newtests/20140722_141942/interactive-tx_latencies.csv new file mode 100644 index 000000000..49720dccf --- /dev/null +++ b/newtests/20140722_141942/interactive-tx_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.741695, 0.741695, 13, 18043, 51736.2, 26765, 149430, 149967, 149967, 149967, 0 diff --git a/newtests/20140722_141942/log.sasl.txt b/newtests/20140722_141942/log.sasl.txt new file mode 100644 index 000000000..68cdd232c --- /dev/null +++ b/newtests/20140722_141942/log.sasl.txt @@ -0,0 +1,336 @@ + +=PROGRESS REPORT==== 22-Jul-2014::14:19:43 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:19:44 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:19:44 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::14:19:44 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:19:44 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::14:19:44 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:19:44 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::14:19:44 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::14:19:44 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:19:44 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:19:44 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::14:19:44 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:19:44 === + supervisor: {local,net_sup} + started: [{pid,<0.100.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:19:44 === + supervisor: {local,net_sup} + started: [{pid,<0.101.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:19:44 === + supervisor: {local,net_sup} + started: [{pid,<0.102.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:19:44 === + supervisor: {local,kernel_sup} + started: [{pid,<0.99.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::14:19:44 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.107.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 22-Jul-2014::14:19:44 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.106.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:19:44 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.96.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:19:44 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.110.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:19:44 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.112.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:19:44 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 22-Jul-2014::14:19:44 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::14:19:44 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.117.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::14:19:44 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.96.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::14:19:44 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.128.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::14:19:44 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.117.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::14:19:45 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.131.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::14:19:45 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.128.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::14:19:45 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.140.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::14:19:45 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.140.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::14:19:45 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.151.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::14:19:45 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.131.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 22-Jul-2014::14:19:45 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.131.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140722_141942/read_latencies.csv b/newtests/20140722_141942/read_latencies.csv new file mode 100644 index 000000000..b407dc340 --- /dev/null +++ b/newtests/20140722_141942/read_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.741695, 0.741695, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140722_141942/static-tx_latencies.csv b/newtests/20140722_141942/static-tx_latencies.csv new file mode 100644 index 000000000..037a1f02b --- /dev/null +++ b/newtests/20140722_141942/static-tx_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.741695, 0.741695, 7, 18585, 28431.9, 24780, 62633, 62633, 62633, 62633, 0 diff --git a/newtests/20140722_141942/summary.csv b/newtests/20140722_141942/summary.csv new file mode 100644 index 000000000..f1cb38e20 --- /dev/null +++ b/newtests/20140722_141942/summary.csv @@ -0,0 +1,2 @@ +elapsed, window, total, successful, failed +0.741695, 0.741695, 29, 29, 0 diff --git a/newtests/20140722_142103/append_latencies.csv b/newtests/20140722_142103/append_latencies.csv new file mode 100644 index 000000000..240084c6a --- /dev/null +++ b/newtests/20140722_142103/append_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +1.010334, 1.010334, 25, 1023, 4201.7, 2001, 13310, 29447, 29447, 29447, 0 diff --git a/newtests/20140722_142103/console.log b/newtests/20140722_142103/console.log new file mode 100644 index 000000000..a5259b515 --- /dev/null +++ b/newtests/20140722_142103/console.log @@ -0,0 +1,103 @@ +2014-07-22 14:21:03.502 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_142103/error.log"} into lager_event +2014-07-22 14:21:03.502 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_142103/console.log"} into lager_event +2014-07-22 14:21:03.502 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-22 14:21:03.535 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-22 14:21:03.535 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-22 14:21:03.536 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-22 14:21:03.536 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-22 14:21:03.976 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-22 14:21:04.419 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-22 14:21:04.420 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_142103/console.log to debug +2014-07-22 14:21:04.434 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB +2014-07-22 14:21:04.519 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-22 14:21:04.519 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-22 14:21:04.520 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-22 14:21:04.535 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-22 14:21:04.535 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-22 14:21:04.624 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-22 14:21:04.624 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-22 14:21:04.653 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-22 14:21:04.658 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-22 14:21:04.664 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-22 14:21:04.664 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-22 14:21:04.701 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-22 14:21:04.708 [debug] <0.96.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 14:21:04.834 [debug] <0.99.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.100.0> +2014-07-22 14:21:04.841 [debug] <0.99.0> Supervisor net_sup started auth:start_link() at pid <0.101.0> +2014-07-22 14:21:04.854 [info] <0.98.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-22 14:21:04.854 [debug] <0.99.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.102.0> +2014-07-22 14:21:04.854 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> +2014-07-22 14:21:04.868 [debug] <0.106.0> Supervisor inet_gethost_native_sup started undefined at pid <0.107.0> +2014-07-22 14:21:04.869 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.106.0> +2014-07-22 14:21:04.891 [info] <0.98.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:21:04.891 [info] <0.98.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 14:21:04.891 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.96.0> +2014-07-22 14:21:04.967 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:21:04.967 [info] <0.111.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 14:21:04.968 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.110.0> +2014-07-22 14:21:04.968 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.112.0> +2014-07-22 14:21:04.975 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> +2014-07-22 14:21:04.975 [info] <0.98.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.98.0> +2014-07-22 14:21:04.976 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-22 14:21:05.287 [error] emulator Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:21:05.287 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:21:05.287 [debug] <0.140.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 14:21:05.288 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated +2014-07-22 14:21:05.394 [info] <0.147.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:21:05.394 [info] <0.147.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 14:21:05.394 [warning] <0.140.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 14:21:05.394 [info] <0.147.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.147.0> +2014-07-22 14:21:05.394 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.140.0> +2014-07-22 14:21:05.577 [error] emulator Error in process <0.147.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:21:05.577 [error] <0.140.0>@basho_bench_worker:handle_info:149 Worker <0.147.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:21:05.577 [debug] <0.179.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 14:21:05.578 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.140.0> exit with reason normal in context child_terminated +2014-07-22 14:21:05.643 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:21:05.643 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:21:05.676 [info] <0.187.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:21:05.676 [info] <0.187.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 14:21:05.676 [warning] <0.179.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 14:21:05.676 [info] <0.187.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.187.0> +2014-07-22 14:21:05.676 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.179.0> +2014-07-22 14:21:05.677 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated +2014-07-22 14:21:05.696 [error] emulator Error in process <0.187.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:21:05.696 [error] <0.179.0>@basho_bench_worker:handle_info:149 Worker <0.187.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:21:05.802 [info] <0.192.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:21:05.802 [info] <0.192.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 14:21:05.802 [warning] <0.189.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 14:21:05.802 [info] <0.192.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.192.0> +2014-07-22 14:21:05.802 [debug] <0.193.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 14:21:05.803 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.189.0> +2014-07-22 14:21:05.803 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.179.0> exit with reason normal in context child_terminated +2014-07-22 14:21:05.845 [error] emulator Error in process <0.192.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + + +2014-07-22 14:21:05.846 [error] <0.189.0>@basho_bench_worker:handle_info:149 Worker <0.192.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,41,254,27>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:21:05.887 [info] <0.199.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:21:05.887 [info] <0.199.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 14:21:05.887 [warning] <0.193.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 14:21:05.887 [info] <0.199.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.199.0> +2014-07-22 14:21:05.887 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.193.0> +2014-07-22 14:21:05.888 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.189.0> exit with reason normal in context child_terminated +2014-07-22 14:21:05.951 [error] emulator Error in process <0.199.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:21:05.951 [error] <0.193.0>@basho_bench_worker:handle_info:149 Worker <0.199.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:21:05.977 [info] <0.206.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:21:05.977 [info] <0.206.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 14:21:05.977 [warning] <0.200.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 14:21:05.977 [info] <0.206.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.206.0> +2014-07-22 14:21:05.978 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.200.0> +2014-07-22 14:21:05.978 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.193.0> exit with reason normal in context child_terminated +2014-07-22 14:21:05.979 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.193.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-22 14:21:05.988 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. diff --git a/newtests/20140722_142103/crash.log b/newtests/20140722_142103/crash.log new file mode 100644 index 000000000..d04d90310 --- /dev/null +++ b/newtests/20140722_142103/crash.log @@ -0,0 +1,60 @@ +2014-07-22 14:21:05 =ERROR REPORT==== +Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-22 14:21:05 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.96.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 14:21:05 =ERROR REPORT==== +Error in process <0.147.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-22 14:21:05 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.140.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 14:21:05 =ERROR REPORT==== +Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-22 14:21:05 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 14:21:05 =ERROR REPORT==== +Error in process <0.187.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-22 14:21:05 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.179.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 14:21:05 =ERROR REPORT==== +Error in process <0.192.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + +2014-07-22 14:21:05 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.189.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 14:21:05 =ERROR REPORT==== +Error in process <0.199.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-22 14:21:05 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.193.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 14:21:05 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.193.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140722_142103/error.log b/newtests/20140722_142103/error.log new file mode 100644 index 000000000..cdaad4bf9 --- /dev/null +++ b/newtests/20140722_142103/error.log @@ -0,0 +1,31 @@ +2014-07-22 14:21:05.287 [error] emulator Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:21:05.287 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:21:05.288 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated +2014-07-22 14:21:05.577 [error] emulator Error in process <0.147.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:21:05.577 [error] <0.140.0>@basho_bench_worker:handle_info:149 Worker <0.147.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:21:05.578 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.140.0> exit with reason normal in context child_terminated +2014-07-22 14:21:05.643 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:21:05.643 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:21:05.677 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated +2014-07-22 14:21:05.696 [error] emulator Error in process <0.187.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:21:05.696 [error] <0.179.0>@basho_bench_worker:handle_info:149 Worker <0.187.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:21:05.803 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.179.0> exit with reason normal in context child_terminated +2014-07-22 14:21:05.845 [error] emulator Error in process <0.192.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + + +2014-07-22 14:21:05.846 [error] <0.189.0>@basho_bench_worker:handle_info:149 Worker <0.192.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,41,254,27>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:21:05.888 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.189.0> exit with reason normal in context child_terminated +2014-07-22 14:21:05.951 [error] emulator Error in process <0.199.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:21:05.951 [error] <0.193.0>@basho_bench_worker:handle_info:149 Worker <0.199.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:21:05.978 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.193.0> exit with reason normal in context child_terminated +2014-07-22 14:21:05.979 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.193.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140722_142103/errors.csv b/newtests/20140722_142103/errors.csv new file mode 100644 index 000000000..29210b502 --- /dev/null +++ b/newtests/20140722_142103/errors.csv @@ -0,0 +1 @@ +"error","count" diff --git a/newtests/20140722_142103/floppstore.config b/newtests/20140722_142103/floppstore.config new file mode 100644 index 000000000..bb59890f3 --- /dev/null +++ b/newtests/20140722_142103/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {uniform_int, 5000000}}. + +{value_generator, {fixed_bin, 10}}. + +{operations, [{static_tx, 1}, {interactive_tx,1}, {append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140722_142103/interactive-tx_latencies.csv b/newtests/20140722_142103/interactive-tx_latencies.csv new file mode 100644 index 000000000..7ff3f10af --- /dev/null +++ b/newtests/20140722_142103/interactive-tx_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +1.010334, 1.010334, 21, 17921, 28580.1, 20839, 80585, 81015, 81015, 81015, 0 diff --git a/newtests/20140722_142103/log.sasl.txt b/newtests/20140722_142103/log.sasl.txt new file mode 100644 index 000000000..c24288202 --- /dev/null +++ b/newtests/20140722_142103/log.sasl.txt @@ -0,0 +1,336 @@ + +=PROGRESS REPORT==== 22-Jul-2014::14:21:04 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:21:04 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:21:04 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::14:21:04 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:21:04 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::14:21:04 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:21:04 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::14:21:04 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::14:21:04 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:21:04 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:21:04 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::14:21:04 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:21:04 === + supervisor: {local,net_sup} + started: [{pid,<0.100.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:21:04 === + supervisor: {local,net_sup} + started: [{pid,<0.101.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:21:04 === + supervisor: {local,net_sup} + started: [{pid,<0.102.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:21:04 === + supervisor: {local,kernel_sup} + started: [{pid,<0.99.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::14:21:04 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.107.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 22-Jul-2014::14:21:04 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.106.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:21:04 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.96.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:21:04 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.110.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:21:04 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.112.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:21:04 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 22-Jul-2014::14:21:05 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.96.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::14:21:05 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.140.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::14:21:05 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.140.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::14:21:05 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.179.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::14:21:05 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::14:21:05 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.189.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::14:21:05 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.179.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::14:21:05 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.193.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::14:21:05 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.189.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::14:21:05 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.200.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::14:21:05 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.193.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 22-Jul-2014::14:21:05 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.193.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140722_142103/read_latencies.csv b/newtests/20140722_142103/read_latencies.csv new file mode 100644 index 000000000..bf0d2969e --- /dev/null +++ b/newtests/20140722_142103/read_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +1.010334, 1.010334, 16, 970, 4007.8, 1508, 8792, 22987, 22987, 22987, 0 diff --git a/newtests/20140722_142103/static-tx_latencies.csv b/newtests/20140722_142103/static-tx_latencies.csv new file mode 100644 index 000000000..79192f7ac --- /dev/null +++ b/newtests/20140722_142103/static-tx_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +1.010334, 1.010334, 20, 17476, 24435.0, 20224, 37762, 71334, 71334, 71334, 0 diff --git a/newtests/20140722_142103/summary.csv b/newtests/20140722_142103/summary.csv new file mode 100644 index 000000000..045281d82 --- /dev/null +++ b/newtests/20140722_142103/summary.csv @@ -0,0 +1,2 @@ +elapsed, window, total, successful, failed +1.010334, 1.010334, 82, 82, 0 diff --git a/newtests/20140722_142202/append_latencies.csv b/newtests/20140722_142202/append_latencies.csv new file mode 100644 index 000000000..8df778916 --- /dev/null +++ b/newtests/20140722_142202/append_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.915128, 0.915128, 10, 994, 1600.3, 1434, 2443, 2443, 2443, 2443, 0 diff --git a/newtests/20140722_142202/console.log b/newtests/20140722_142202/console.log new file mode 100644 index 000000000..1bf00610b --- /dev/null +++ b/newtests/20140722_142202/console.log @@ -0,0 +1,103 @@ +2014-07-22 14:22:02.801 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_142202/error.log"} into lager_event +2014-07-22 14:22:02.801 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_142202/console.log"} into lager_event +2014-07-22 14:22:02.801 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-22 14:22:02.834 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-22 14:22:02.834 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-22 14:22:02.834 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-22 14:22:02.834 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-22 14:22:03.277 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-22 14:22:03.692 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-22 14:22:03.693 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_142202/console.log to debug +2014-07-22 14:22:03.708 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB +2014-07-22 14:22:03.795 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-22 14:22:03.795 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-22 14:22:03.796 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-22 14:22:03.810 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-22 14:22:03.811 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-22 14:22:03.907 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-22 14:22:03.908 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-22 14:22:03.937 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-22 14:22:03.942 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-22 14:22:03.947 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-22 14:22:03.948 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-22 14:22:03.983 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-22 14:22:03.988 [debug] <0.96.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 14:22:04.116 [debug] <0.99.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.100.0> +2014-07-22 14:22:04.123 [debug] <0.99.0> Supervisor net_sup started auth:start_link() at pid <0.101.0> +2014-07-22 14:22:04.135 [info] <0.98.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-22 14:22:04.136 [debug] <0.99.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.102.0> +2014-07-22 14:22:04.136 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> +2014-07-22 14:22:04.151 [debug] <0.106.0> Supervisor inet_gethost_native_sup started undefined at pid <0.107.0> +2014-07-22 14:22:04.152 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.106.0> +2014-07-22 14:22:04.171 [info] <0.98.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:22:04.171 [info] <0.98.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 14:22:04.172 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.96.0> +2014-07-22 14:22:04.249 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:22:04.249 [info] <0.111.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 14:22:04.250 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.110.0> +2014-07-22 14:22:04.250 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.112.0> +2014-07-22 14:22:04.255 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> +2014-07-22 14:22:04.255 [info] <0.98.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.98.0> +2014-07-22 14:22:04.255 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-22 14:22:04.422 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:22:04.422 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:22:04.423 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated +2014-07-22 14:22:04.513 [info] <0.143.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:22:04.513 [info] <0.143.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 14:22:04.513 [warning] <0.142.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 14:22:04.513 [info] <0.143.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.143.0> +2014-07-22 14:22:04.513 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.142.0> +2014-07-22 14:22:04.673 [error] emulator Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + + +2014-07-22 14:22:04.673 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,47,228,7>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:22:04.673 [debug] <0.157.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 14:22:04.674 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated +2014-07-22 14:22:04.774 [error] emulator Error in process <0.143.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:22:04.774 [error] <0.142.0>@basho_bench_worker:handle_info:149 Worker <0.143.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:22:04.795 [info] <0.164.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:22:04.795 [info] <0.164.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 14:22:04.795 [warning] <0.157.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 14:22:04.795 [info] <0.164.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.164.0> +2014-07-22 14:22:04.795 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.157.0> +2014-07-22 14:22:04.795 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.142.0> exit with reason normal in context child_terminated +2014-07-22 14:22:04.853 [error] emulator Error in process <0.164.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:22:04.853 [error] <0.157.0>@basho_bench_worker:handle_info:149 Worker <0.164.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:22:04.884 [info] <0.174.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:22:04.884 [info] <0.174.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 14:22:04.884 [warning] <0.169.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 14:22:04.884 [info] <0.174.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.174.0> +2014-07-22 14:22:04.884 [debug] <0.177.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 14:22:04.884 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.169.0> +2014-07-22 14:22:04.885 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.157.0> exit with reason normal in context child_terminated +2014-07-22 14:22:04.975 [info] <0.182.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:22:04.975 [info] <0.182.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 14:22:04.975 [warning] <0.177.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 14:22:04.975 [info] <0.182.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.182.0> +2014-07-22 14:22:04.976 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.177.0> +2014-07-22 14:22:05.053 [error] emulator Error in process <0.182.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:22:05.053 [error] <0.177.0>@basho_bench_worker:handle_info:149 Worker <0.182.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:22:05.054 [debug] <0.191.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 14:22:05.054 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.177.0> exit with reason normal in context child_terminated +2014-07-22 14:22:05.135 [info] <0.192.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:22:05.135 [info] <0.192.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 14:22:05.135 [warning] <0.191.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 14:22:05.135 [info] <0.192.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.192.0> +2014-07-22 14:22:05.136 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.191.0> +2014-07-22 14:22:05.164 [error] emulator Error in process <0.174.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:22:05.164 [error] <0.169.0>@basho_bench_worker:handle_info:149 Worker <0.174.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:22:05.165 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.169.0> exit with reason normal in context child_terminated +2014-07-22 14:22:05.165 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.169.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-22 14:22:05.175 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. diff --git a/newtests/20140722_142202/crash.log b/newtests/20140722_142202/crash.log new file mode 100644 index 000000000..41d22fc37 --- /dev/null +++ b/newtests/20140722_142202/crash.log @@ -0,0 +1,60 @@ +2014-07-22 14:22:04 =ERROR REPORT==== +Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-22 14:22:04 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 14:22:04 =ERROR REPORT==== +Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + +2014-07-22 14:22:04 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.96.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 14:22:04 =ERROR REPORT==== +Error in process <0.143.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-22 14:22:04 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.142.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 14:22:04 =ERROR REPORT==== +Error in process <0.164.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-22 14:22:04 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.157.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 14:22:05 =ERROR REPORT==== +Error in process <0.182.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-22 14:22:05 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.177.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 14:22:05 =ERROR REPORT==== +Error in process <0.174.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-22 14:22:05 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.169.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 14:22:05 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.169.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140722_142202/error.log b/newtests/20140722_142202/error.log new file mode 100644 index 000000000..1ff3b8195 --- /dev/null +++ b/newtests/20140722_142202/error.log @@ -0,0 +1,31 @@ +2014-07-22 14:22:04.422 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:22:04.422 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:22:04.423 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated +2014-07-22 14:22:04.673 [error] emulator Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + + +2014-07-22 14:22:04.673 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,47,228,7>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:22:04.674 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated +2014-07-22 14:22:04.774 [error] emulator Error in process <0.143.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:22:04.774 [error] <0.142.0>@basho_bench_worker:handle_info:149 Worker <0.143.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:22:04.795 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.142.0> exit with reason normal in context child_terminated +2014-07-22 14:22:04.853 [error] emulator Error in process <0.164.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:22:04.853 [error] <0.157.0>@basho_bench_worker:handle_info:149 Worker <0.164.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:22:04.885 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.157.0> exit with reason normal in context child_terminated +2014-07-22 14:22:05.053 [error] emulator Error in process <0.182.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:22:05.053 [error] <0.177.0>@basho_bench_worker:handle_info:149 Worker <0.182.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:22:05.054 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.177.0> exit with reason normal in context child_terminated +2014-07-22 14:22:05.164 [error] emulator Error in process <0.174.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:22:05.164 [error] <0.169.0>@basho_bench_worker:handle_info:149 Worker <0.174.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:22:05.165 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.169.0> exit with reason normal in context child_terminated +2014-07-22 14:22:05.165 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.169.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140722_142202/errors.csv b/newtests/20140722_142202/errors.csv new file mode 100644 index 000000000..29210b502 --- /dev/null +++ b/newtests/20140722_142202/errors.csv @@ -0,0 +1 @@ +"error","count" diff --git a/newtests/20140722_142202/floppstore.config b/newtests/20140722_142202/floppstore.config new file mode 100644 index 000000000..bb59890f3 --- /dev/null +++ b/newtests/20140722_142202/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {uniform_int, 5000000}}. + +{value_generator, {fixed_bin, 10}}. + +{operations, [{static_tx, 1}, {interactive_tx,1}, {append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140722_142202/interactive-tx_latencies.csv b/newtests/20140722_142202/interactive-tx_latencies.csv new file mode 100644 index 000000000..192ee2648 --- /dev/null +++ b/newtests/20140722_142202/interactive-tx_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.915128, 0.915128, 26, 16930, 22733.7, 18900, 50335, 59736, 59736, 59736, 0 diff --git a/newtests/20140722_142202/log.sasl.txt b/newtests/20140722_142202/log.sasl.txt new file mode 100644 index 000000000..933bbfef6 --- /dev/null +++ b/newtests/20140722_142202/log.sasl.txt @@ -0,0 +1,336 @@ + +=PROGRESS REPORT==== 22-Jul-2014::14:22:03 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:22:03 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:22:03 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::14:22:03 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:22:03 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::14:22:03 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:22:03 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::14:22:03 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::14:22:03 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:22:03 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:22:03 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::14:22:03 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:22:04 === + supervisor: {local,net_sup} + started: [{pid,<0.100.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:22:04 === + supervisor: {local,net_sup} + started: [{pid,<0.101.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:22:04 === + supervisor: {local,net_sup} + started: [{pid,<0.102.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:22:04 === + supervisor: {local,kernel_sup} + started: [{pid,<0.99.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::14:22:04 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.107.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 22-Jul-2014::14:22:04 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.106.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:22:04 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.96.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:22:04 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.110.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:22:04 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.112.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:22:04 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 22-Jul-2014::14:22:04 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::14:22:04 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.142.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::14:22:04 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.96.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::14:22:04 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.157.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::14:22:04 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.142.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::14:22:04 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.169.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::14:22:04 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.157.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::14:22:04 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.177.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::14:22:05 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.177.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::14:22:05 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.191.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::14:22:05 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.169.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 22-Jul-2014::14:22:05 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.169.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140722_142202/read_latencies.csv b/newtests/20140722_142202/read_latencies.csv new file mode 100644 index 000000000..f1484f16e --- /dev/null +++ b/newtests/20140722_142202/read_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.915128, 0.915128, 17, 851, 1589.1, 1302, 2830, 4332, 4332, 4332, 0 diff --git a/newtests/20140722_142202/static-tx_latencies.csv b/newtests/20140722_142202/static-tx_latencies.csv new file mode 100644 index 000000000..c26a28356 --- /dev/null +++ b/newtests/20140722_142202/static-tx_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.915128, 0.915128, 18, 6504, 34476.0, 17928, 122869, 124827, 124827, 124827, 0 diff --git a/newtests/20140722_142202/summary.csv b/newtests/20140722_142202/summary.csv new file mode 100644 index 000000000..04f284dd5 --- /dev/null +++ b/newtests/20140722_142202/summary.csv @@ -0,0 +1,2 @@ +elapsed, window, total, successful, failed +0.915128, 0.915128, 71, 71, 0 diff --git a/newtests/20140722_142341/append_latencies.csv b/newtests/20140722_142341/append_latencies.csv new file mode 100644 index 000000000..cfe1ef03e --- /dev/null +++ b/newtests/20140722_142341/append_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +1.216081, 1.216081, 23, 1099, 2897.3, 1651, 8492, 10168, 10168, 10168, 0 diff --git a/newtests/20140722_142341/console.log b/newtests/20140722_142341/console.log new file mode 100644 index 000000000..b603a3a56 --- /dev/null +++ b/newtests/20140722_142341/console.log @@ -0,0 +1,105 @@ +2014-07-22 14:23:41.442 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_142341/error.log"} into lager_event +2014-07-22 14:23:41.442 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_142341/console.log"} into lager_event +2014-07-22 14:23:41.442 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-22 14:23:41.478 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-22 14:23:41.478 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-22 14:23:41.478 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-22 14:23:41.478 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-22 14:23:41.915 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-22 14:23:42.250 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-22 14:23:42.251 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_142341/console.log to debug +2014-07-22 14:23:42.263 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB +2014-07-22 14:23:42.467 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-22 14:23:42.468 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-22 14:23:42.468 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-22 14:23:42.484 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-22 14:23:42.484 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-22 14:23:42.707 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-22 14:23:42.707 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-22 14:23:42.787 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-22 14:23:42.798 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-22 14:23:42.806 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-22 14:23:42.807 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-22 14:23:42.904 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-22 14:23:42.911 [debug] <0.96.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 14:23:43.104 [debug] <0.99.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.100.0> +2014-07-22 14:23:43.117 [debug] <0.99.0> Supervisor net_sup started auth:start_link() at pid <0.101.0> +2014-07-22 14:23:43.150 [info] <0.98.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-22 14:23:43.151 [debug] <0.99.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.102.0> +2014-07-22 14:23:43.151 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> +2014-07-22 14:23:43.189 [debug] <0.106.0> Supervisor inet_gethost_native_sup started undefined at pid <0.107.0> +2014-07-22 14:23:43.190 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.106.0> +2014-07-22 14:23:43.221 [info] <0.98.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:23:43.221 [info] <0.98.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 14:23:43.222 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.96.0> +2014-07-22 14:23:43.362 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:23:43.362 [info] <0.111.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 14:23:43.363 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.110.0> +2014-07-22 14:23:43.363 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.112.0> +2014-07-22 14:23:43.371 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> +2014-07-22 14:23:43.371 [info] <0.98.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.98.0> +2014-07-22 14:23:43.372 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-22 14:23:43.887 [error] emulator Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + + +2014-07-22 14:23:43.887 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,4,136,249>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:23:43.888 [debug] <0.161.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 14:23:43.888 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated +2014-07-22 14:23:43.983 [info] <0.166.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:23:43.983 [info] <0.166.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 14:23:43.984 [warning] <0.161.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 14:23:43.984 [info] <0.166.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.166.0> +2014-07-22 14:23:43.984 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.161.0> +2014-07-22 14:23:44.029 [error] emulator Error in process <0.166.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:23:44.029 [error] <0.161.0>@basho_bench_worker:handle_info:149 Worker <0.166.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:23:44.029 [debug] <0.178.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 14:23:44.030 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.161.0> exit with reason normal in context child_terminated +2014-07-22 14:23:44.179 [info] <0.179.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:23:44.179 [info] <0.179.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 14:23:44.179 [warning] <0.178.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 14:23:44.179 [info] <0.179.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.179.0> +2014-07-22 14:23:44.180 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.178.0> +2014-07-22 14:23:44.223 [error] emulator Error in process <0.179.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:23:44.224 [error] <0.178.0>@basho_bench_worker:handle_info:149 Worker <0.179.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:23:44.224 [debug] <0.192.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 14:23:44.225 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.178.0> exit with reason normal in context child_terminated +2014-07-22 14:23:44.317 [info] <0.193.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:23:44.317 [info] <0.193.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 14:23:44.317 [warning] <0.192.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 14:23:44.317 [info] <0.193.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.193.0> +2014-07-22 14:23:44.317 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.192.0> +2014-07-22 14:23:44.417 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:23:44.417 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:23:44.418 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated +2014-07-22 14:23:44.425 [error] emulator Error in process <0.193.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:23:44.425 [error] <0.192.0>@basho_bench_worker:handle_info:149 Worker <0.193.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:23:44.498 [info] <0.215.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:23:44.498 [info] <0.215.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 14:23:44.498 [warning] <0.212.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 14:23:44.498 [info] <0.215.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.215.0> +2014-07-22 14:23:44.498 [debug] <0.216.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 14:23:44.499 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.212.0> +2014-07-22 14:23:44.499 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.192.0> exit with reason normal in context child_terminated +2014-07-22 14:23:44.554 [error] emulator Error in process <0.215.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:23:44.554 [error] <0.212.0>@basho_bench_worker:handle_info:149 Worker <0.215.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:23:44.578 [info] <0.218.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:23:44.578 [info] <0.218.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 14:23:44.578 [warning] <0.216.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 14:23:44.578 [info] <0.218.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.218.0> +2014-07-22 14:23:44.579 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.216.0> +2014-07-22 14:23:44.579 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.212.0> exit with reason normal in context child_terminated +2014-07-22 14:23:44.580 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.212.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-22 14:23:44.588 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. +2014-07-22 14:23:44.589 [info] <0.2.0>@basho_bench:wait_for_stop:191 Test stopped: shutdown diff --git a/newtests/20140722_142341/crash.log b/newtests/20140722_142341/crash.log new file mode 100644 index 000000000..2162e3b8a --- /dev/null +++ b/newtests/20140722_142341/crash.log @@ -0,0 +1,60 @@ +2014-07-22 14:23:43 =ERROR REPORT==== +Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + +2014-07-22 14:23:43 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.96.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 14:23:44 =ERROR REPORT==== +Error in process <0.166.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-22 14:23:44 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.161.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 14:23:44 =ERROR REPORT==== +Error in process <0.179.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-22 14:23:44 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.178.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 14:23:44 =ERROR REPORT==== +Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-22 14:23:44 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 14:23:44 =ERROR REPORT==== +Error in process <0.193.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-22 14:23:44 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.192.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 14:23:44 =ERROR REPORT==== +Error in process <0.215.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-22 14:23:44 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.212.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 14:23:44 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.212.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140722_142341/error.log b/newtests/20140722_142341/error.log new file mode 100644 index 000000000..1e6215841 --- /dev/null +++ b/newtests/20140722_142341/error.log @@ -0,0 +1,31 @@ +2014-07-22 14:23:43.887 [error] emulator Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + + +2014-07-22 14:23:43.887 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,4,136,249>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:23:43.888 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated +2014-07-22 14:23:44.029 [error] emulator Error in process <0.166.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:23:44.029 [error] <0.161.0>@basho_bench_worker:handle_info:149 Worker <0.166.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:23:44.030 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.161.0> exit with reason normal in context child_terminated +2014-07-22 14:23:44.223 [error] emulator Error in process <0.179.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:23:44.224 [error] <0.178.0>@basho_bench_worker:handle_info:149 Worker <0.179.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:23:44.225 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.178.0> exit with reason normal in context child_terminated +2014-07-22 14:23:44.417 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:23:44.417 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:23:44.418 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated +2014-07-22 14:23:44.425 [error] emulator Error in process <0.193.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:23:44.425 [error] <0.192.0>@basho_bench_worker:handle_info:149 Worker <0.193.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:23:44.499 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.192.0> exit with reason normal in context child_terminated +2014-07-22 14:23:44.554 [error] emulator Error in process <0.215.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:23:44.554 [error] <0.212.0>@basho_bench_worker:handle_info:149 Worker <0.215.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:23:44.579 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.212.0> exit with reason normal in context child_terminated +2014-07-22 14:23:44.580 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.212.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140722_142341/errors.csv b/newtests/20140722_142341/errors.csv new file mode 100644 index 000000000..29210b502 --- /dev/null +++ b/newtests/20140722_142341/errors.csv @@ -0,0 +1 @@ +"error","count" diff --git a/newtests/20140722_142341/floppstore.config b/newtests/20140722_142341/floppstore.config new file mode 100644 index 000000000..bb59890f3 --- /dev/null +++ b/newtests/20140722_142341/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {uniform_int, 5000000}}. + +{value_generator, {fixed_bin, 10}}. + +{operations, [{static_tx, 1}, {interactive_tx,1}, {append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140722_142341/interactive-tx_latencies.csv b/newtests/20140722_142341/interactive-tx_latencies.csv new file mode 100644 index 000000000..94e03bfd3 --- /dev/null +++ b/newtests/20140722_142341/interactive-tx_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +1.216081, 1.216081, 30, 18234, 33846.4, 21586, 139603, 139716, 139716, 139716, 0 diff --git a/newtests/20140722_142341/log.sasl.txt b/newtests/20140722_142341/log.sasl.txt new file mode 100644 index 000000000..c01067cdf --- /dev/null +++ b/newtests/20140722_142341/log.sasl.txt @@ -0,0 +1,336 @@ + +=PROGRESS REPORT==== 22-Jul-2014::14:23:42 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:23:42 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:23:42 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::14:23:42 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:23:42 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::14:23:42 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:23:42 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::14:23:42 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::14:23:42 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:23:42 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:23:42 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::14:23:42 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:23:43 === + supervisor: {local,net_sup} + started: [{pid,<0.100.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:23:43 === + supervisor: {local,net_sup} + started: [{pid,<0.101.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:23:43 === + supervisor: {local,net_sup} + started: [{pid,<0.102.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:23:43 === + supervisor: {local,kernel_sup} + started: [{pid,<0.99.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::14:23:43 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.107.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 22-Jul-2014::14:23:43 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.106.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:23:43 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.96.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:23:43 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.110.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:23:43 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.112.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:23:43 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 22-Jul-2014::14:23:43 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.96.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::14:23:43 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.161.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::14:23:44 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.161.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::14:23:44 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.178.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::14:23:44 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.178.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::14:23:44 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.192.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::14:23:44 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::14:23:44 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.212.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::14:23:44 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.192.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::14:23:44 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.216.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::14:23:44 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.212.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 22-Jul-2014::14:23:44 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.212.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140722_142341/read_latencies.csv b/newtests/20140722_142341/read_latencies.csv new file mode 100644 index 000000000..90db8f983 --- /dev/null +++ b/newtests/20140722_142341/read_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +1.216081, 1.216081, 17, 1132, 5261.7, 4673, 10903, 11018, 11018, 11018, 0 diff --git a/newtests/20140722_142341/static-tx_latencies.csv b/newtests/20140722_142341/static-tx_latencies.csv new file mode 100644 index 000000000..a95fd0e0b --- /dev/null +++ b/newtests/20140722_142341/static-tx_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +1.216081, 1.216081, 22, 18108, 27061.8, 23470, 36347, 67367, 67367, 67367, 0 diff --git a/newtests/20140722_142341/summary.csv b/newtests/20140722_142341/summary.csv new file mode 100644 index 000000000..e3da4e088 --- /dev/null +++ b/newtests/20140722_142341/summary.csv @@ -0,0 +1,2 @@ +elapsed, window, total, successful, failed +1.216081, 1.216081, 92, 92, 0 diff --git a/newtests/20140722_142917/append_latencies.csv b/newtests/20140722_142917/append_latencies.csv new file mode 100644 index 000000000..329a253b1 --- /dev/null +++ b/newtests/20140722_142917/append_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.902586, 0.902586, 9, 1045, 18409.9, 14488, 66066, 66066, 66066, 66066, 0 diff --git a/newtests/20140722_142917/console.log b/newtests/20140722_142917/console.log new file mode 100644 index 000000000..9fe5c8140 --- /dev/null +++ b/newtests/20140722_142917/console.log @@ -0,0 +1,105 @@ +2014-07-22 14:29:17.773 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_142917/error.log"} into lager_event +2014-07-22 14:29:17.773 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_142917/console.log"} into lager_event +2014-07-22 14:29:17.773 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-22 14:29:17.806 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-22 14:29:17.806 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-22 14:29:17.806 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-22 14:29:17.806 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-22 14:29:18.247 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-22 14:29:18.648 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-22 14:29:18.649 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_142917/console.log to debug +2014-07-22 14:29:18.662 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB +2014-07-22 14:29:18.746 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-22 14:29:18.746 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-22 14:29:18.747 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-22 14:29:18.761 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-22 14:29:18.761 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-22 14:29:18.849 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-22 14:29:18.849 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-22 14:29:18.880 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-22 14:29:18.886 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-22 14:29:18.892 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-22 14:29:18.892 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-22 14:29:18.925 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-22 14:29:18.932 [debug] <0.96.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 14:29:19.056 [debug] <0.99.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.100.0> +2014-07-22 14:29:19.064 [debug] <0.99.0> Supervisor net_sup started auth:start_link() at pid <0.101.0> +2014-07-22 14:29:19.080 [info] <0.98.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-22 14:29:19.081 [debug] <0.99.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.102.0> +2014-07-22 14:29:19.081 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> +2014-07-22 14:29:19.096 [debug] <0.106.0> Supervisor inet_gethost_native_sup started undefined at pid <0.107.0> +2014-07-22 14:29:19.097 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.106.0> +2014-07-22 14:29:19.112 [info] <0.98.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:29:19.112 [info] <0.98.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 14:29:19.113 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.96.0> +2014-07-22 14:29:19.187 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:29:19.187 [info] <0.111.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 14:29:19.187 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.110.0> +2014-07-22 14:29:19.188 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.112.0> +2014-07-22 14:29:19.194 [info] <0.98.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.98.0> +2014-07-22 14:29:19.194 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> +2014-07-22 14:29:19.194 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-22 14:29:19.326 [error] emulator Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + + +2014-07-22 14:29:19.326 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,17,112,56>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:29:19.326 [debug] <0.117.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 14:29:19.327 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated +2014-07-22 14:29:19.405 [info] <0.118.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:29:19.405 [info] <0.118.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 14:29:19.405 [warning] <0.117.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 14:29:19.405 [info] <0.118.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.118.0> +2014-07-22 14:29:19.405 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.117.0> +2014-07-22 14:29:19.632 [error] emulator Error in process <0.118.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:29:19.632 [error] <0.117.0>@basho_bench_worker:handle_info:149 Worker <0.118.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:29:19.633 [debug] <0.130.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 14:29:19.633 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.117.0> exit with reason normal in context child_terminated +2014-07-22 14:29:19.706 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:29:19.706 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:29:19.730 [info] <0.132.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:29:19.730 [info] <0.132.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 14:29:19.730 [warning] <0.130.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 14:29:19.730 [info] <0.132.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.132.0> +2014-07-22 14:29:19.731 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.130.0> +2014-07-22 14:29:19.732 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated +2014-07-22 14:29:19.817 [info] <0.138.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:29:19.818 [info] <0.138.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 14:29:19.818 [warning] <0.134.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 14:29:19.818 [info] <0.138.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.138.0> +2014-07-22 14:29:19.818 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.134.0> +2014-07-22 14:29:19.923 [error] emulator Error in process <0.138.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:29:19.923 [error] <0.134.0>@basho_bench_worker:handle_info:149 Worker <0.138.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:29:19.924 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.134.0> exit with reason normal in context child_terminated +2014-07-22 14:29:19.924 [error] <0.130.0>@basho_bench_worker:handle_info:149 Worker <0.132.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,71,180,12>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:29:19.924 [error] emulator Error in process <0.132.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + + +2014-07-22 14:29:19.999 [info] <0.148.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:29:19.999 [info] <0.148.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 14:29:19.999 [warning] <0.147.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 14:29:19.999 [info] <0.148.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.148.0> +2014-07-22 14:29:20.000 [debug] <0.149.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 14:29:20.000 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.147.0> +2014-07-22 14:29:20.001 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.130.0> exit with reason normal in context child_terminated +2014-07-22 14:29:20.040 [error] emulator Error in process <0.148.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + + +2014-07-22 14:29:20.040 [error] <0.147.0>@basho_bench_worker:handle_info:149 Worker <0.148.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,10,244,17>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:29:20.089 [info] <0.155.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:29:20.089 [info] <0.155.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 14:29:20.090 [warning] <0.149.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 14:29:20.090 [info] <0.155.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.155.0> +2014-07-22 14:29:20.090 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.149.0> +2014-07-22 14:29:20.091 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.147.0> exit with reason normal in context child_terminated +2014-07-22 14:29:20.091 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.147.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-22 14:29:20.099 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} +2014-07-22 14:29:20.099 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. +2014-07-22 14:29:20.100 [info] <0.2.0>@basho_bench:wait_for_stop:191 Test stopped: shutdown diff --git a/newtests/20140722_142917/crash.log b/newtests/20140722_142917/crash.log new file mode 100644 index 000000000..b4c86c0d1 --- /dev/null +++ b/newtests/20140722_142917/crash.log @@ -0,0 +1,60 @@ +2014-07-22 14:29:19 =ERROR REPORT==== +Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + +2014-07-22 14:29:19 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.96.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 14:29:19 =ERROR REPORT==== +Error in process <0.118.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-22 14:29:19 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.117.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 14:29:19 =ERROR REPORT==== +Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-22 14:29:19 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 14:29:19 =ERROR REPORT==== +Error in process <0.138.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-22 14:29:19 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.134.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 14:29:19 =ERROR REPORT==== +Error in process <0.132.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + +2014-07-22 14:29:20 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.130.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 14:29:20 =ERROR REPORT==== +Error in process <0.148.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + +2014-07-22 14:29:20 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.147.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 14:29:20 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.147.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140722_142917/error.log b/newtests/20140722_142917/error.log new file mode 100644 index 000000000..be6878689 --- /dev/null +++ b/newtests/20140722_142917/error.log @@ -0,0 +1,31 @@ +2014-07-22 14:29:19.326 [error] emulator Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + + +2014-07-22 14:29:19.326 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,17,112,56>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:29:19.327 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated +2014-07-22 14:29:19.632 [error] emulator Error in process <0.118.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:29:19.632 [error] <0.117.0>@basho_bench_worker:handle_info:149 Worker <0.118.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:29:19.633 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.117.0> exit with reason normal in context child_terminated +2014-07-22 14:29:19.706 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:29:19.706 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:29:19.732 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated +2014-07-22 14:29:19.923 [error] emulator Error in process <0.138.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:29:19.923 [error] <0.134.0>@basho_bench_worker:handle_info:149 Worker <0.138.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:29:19.924 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.134.0> exit with reason normal in context child_terminated +2014-07-22 14:29:19.924 [error] <0.130.0>@basho_bench_worker:handle_info:149 Worker <0.132.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,71,180,12>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:29:19.924 [error] emulator Error in process <0.132.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + + +2014-07-22 14:29:20.001 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.130.0> exit with reason normal in context child_terminated +2014-07-22 14:29:20.040 [error] emulator Error in process <0.148.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + + +2014-07-22 14:29:20.040 [error] <0.147.0>@basho_bench_worker:handle_info:149 Worker <0.148.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,10,244,17>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:29:20.091 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.147.0> exit with reason normal in context child_terminated +2014-07-22 14:29:20.091 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.147.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140722_142917/errors.csv b/newtests/20140722_142917/errors.csv new file mode 100644 index 000000000..29210b502 --- /dev/null +++ b/newtests/20140722_142917/errors.csv @@ -0,0 +1 @@ +"error","count" diff --git a/newtests/20140722_142917/floppstore.config b/newtests/20140722_142917/floppstore.config new file mode 100644 index 000000000..bb59890f3 --- /dev/null +++ b/newtests/20140722_142917/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {uniform_int, 5000000}}. + +{value_generator, {fixed_bin, 10}}. + +{operations, [{static_tx, 1}, {interactive_tx,1}, {append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140722_142917/interactive-tx_latencies.csv b/newtests/20140722_142917/interactive-tx_latencies.csv new file mode 100644 index 000000000..e539751a8 --- /dev/null +++ b/newtests/20140722_142917/interactive-tx_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.902586, 0.902586, 11, 17108, 56495.6, 47700, 109308, 109975, 109975, 109975, 0 diff --git a/newtests/20140722_142917/log.sasl.txt b/newtests/20140722_142917/log.sasl.txt new file mode 100644 index 000000000..260f0f497 --- /dev/null +++ b/newtests/20140722_142917/log.sasl.txt @@ -0,0 +1,336 @@ + +=PROGRESS REPORT==== 22-Jul-2014::14:29:18 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:29:18 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:29:18 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::14:29:18 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:29:18 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::14:29:18 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:29:18 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::14:29:18 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::14:29:18 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:29:18 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:29:18 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::14:29:18 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:29:19 === + supervisor: {local,net_sup} + started: [{pid,<0.100.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:29:19 === + supervisor: {local,net_sup} + started: [{pid,<0.101.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:29:19 === + supervisor: {local,net_sup} + started: [{pid,<0.102.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:29:19 === + supervisor: {local,kernel_sup} + started: [{pid,<0.99.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::14:29:19 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.107.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 22-Jul-2014::14:29:19 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.106.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:29:19 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.96.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:29:19 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.110.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:29:19 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.112.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:29:19 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 22-Jul-2014::14:29:19 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.96.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::14:29:19 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.117.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::14:29:19 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.117.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::14:29:19 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.130.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::14:29:19 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::14:29:19 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.134.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::14:29:19 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.134.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::14:29:19 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.147.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::14:29:20 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.130.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::14:29:20 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.149.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::14:29:20 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.147.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 22-Jul-2014::14:29:20 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.147.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140722_142917/read_latencies.csv b/newtests/20140722_142917/read_latencies.csv new file mode 100644 index 000000000..ccfcef949 --- /dev/null +++ b/newtests/20140722_142917/read_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.902586, 0.902586, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140722_142917/static-tx_latencies.csv b/newtests/20140722_142917/static-tx_latencies.csv new file mode 100644 index 000000000..e85635847 --- /dev/null +++ b/newtests/20140722_142917/static-tx_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.902586, 0.902586, 7, 20257, 53053.9, 57188, 79137, 79137, 79137, 79137, 0 diff --git a/newtests/20140722_142917/summary.csv b/newtests/20140722_142917/summary.csv new file mode 100644 index 000000000..9f1b7c9b1 --- /dev/null +++ b/newtests/20140722_142917/summary.csv @@ -0,0 +1,2 @@ +elapsed, window, total, successful, failed +0.902586, 0.902586, 27, 27, 0 diff --git a/newtests/20140722_143932/console.log b/newtests/20140722_143932/console.log new file mode 100644 index 000000000..a1edf7689 --- /dev/null +++ b/newtests/20140722_143932/console.log @@ -0,0 +1,12 @@ +2014-07-22 14:39:32.764 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_143932/error.log"} into lager_event +2014-07-22 14:39:32.764 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_143932/console.log"} into lager_event +2014-07-22 14:39:32.764 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-22 14:39:32.797 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-22 14:39:32.797 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-22 14:39:32.797 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-22 14:39:32.797 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-22 14:39:33.240 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-22 14:39:33.613 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-22 14:39:33.614 [error] <0.2.0>@basho_bench_config:load:41 Failed to parse config file examples/floppstore.config: {13,erl_parse,["syntax error before: ","'.'"]} diff --git a/newtests/20140722_143932/crash.log b/newtests/20140722_143932/crash.log new file mode 100644 index 000000000..e69de29bb diff --git a/newtests/20140722_143932/error.log b/newtests/20140722_143932/error.log new file mode 100644 index 000000000..7b14418fa --- /dev/null +++ b/newtests/20140722_143932/error.log @@ -0,0 +1 @@ +2014-07-22 14:39:33.614 [error] <0.2.0>@basho_bench_config:load:41 Failed to parse config file examples/floppstore.config: {13,erl_parse,["syntax error before: ","'.'"]} diff --git a/newtests/20140722_143955/console.log b/newtests/20140722_143955/console.log new file mode 100644 index 000000000..f3248c4a2 --- /dev/null +++ b/newtests/20140722_143955/console.log @@ -0,0 +1,75 @@ +2014-07-22 14:39:55.261 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_143955/error.log"} into lager_event +2014-07-22 14:39:55.261 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_143955/console.log"} into lager_event +2014-07-22 14:39:55.261 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-22 14:39:55.301 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-22 14:39:55.301 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-22 14:39:55.301 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-22 14:39:55.302 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-22 14:39:55.735 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-22 14:39:56.147 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-22 14:39:56.148 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_143955/console.log to debug +2014-07-22 14:39:56.161 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB +2014-07-22 14:39:56.242 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-22 14:39:56.242 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-22 14:39:56.242 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-22 14:39:56.260 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-22 14:39:56.260 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-22 14:39:56.347 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-22 14:39:56.347 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-22 14:39:56.375 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-22 14:39:56.379 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-22 14:39:56.387 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-22 14:39:56.387 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-22 14:39:56.419 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-22 14:39:56.424 [debug] <0.93.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 14:39:56.550 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> +2014-07-22 14:39:56.557 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> +2014-07-22 14:39:56.570 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-22 14:39:56.571 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> +2014-07-22 14:39:56.571 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> +2014-07-22 14:39:56.586 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> +2014-07-22 14:39:56.587 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> +2014-07-22 14:39:56.606 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:39:56.606 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 14:39:56.607 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.93.0> +2014-07-22 14:39:56.680 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:39:56.680 [info] <0.108.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 14:39:56.680 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> +2014-07-22 14:39:56.680 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> +2014-07-22 14:39:56.685 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> +2014-07-22 14:39:56.685 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> +2014-07-22 14:39:56.686 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-22 14:40:40.268 [error] emulator Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-22 14:40:40.268 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:40:40.269 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-22 14:40:40.346 [info] <0.4012.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:40:40.346 [info] <0.4012.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 14:40:40.346 [warning] <0.4011.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 14:40:40.347 [info] <0.4012.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.4012.0> +2014-07-22 14:40:40.347 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.4011.0> +2014-07-22 14:40:40.745 [error] <0.93.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:40:40.745 [error] emulator Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-22 14:40:40.745 [debug] <0.4031.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 14:40:40.747 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.93.0> exit with reason normal in context child_terminated +2014-07-22 14:40:40.856 [info] <0.4035.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:40:40.856 [info] <0.4035.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 14:40:40.856 [warning] <0.4031.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 14:40:40.856 [info] <0.4035.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.4035.0> +2014-07-22 14:40:40.857 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.4031.0> +2014-07-22 14:40:45.163 [error] emulator Error in process <0.4035.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-22 14:40:45.163 [error] <0.4031.0>@basho_bench_worker:handle_info:149 Worker <0.4035.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:40:45.163 [debug] <0.4357.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 14:40:45.164 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.4031.0> exit with reason normal in context child_terminated +2014-07-22 14:40:45.254 [info] <0.4358.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:40:45.254 [info] <0.4358.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 14:40:45.254 [warning] <0.4357.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 14:40:45.254 [info] <0.4358.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.4358.0> +2014-07-22 14:40:45.255 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.4357.0> diff --git a/newtests/20140722_143955/crash.log b/newtests/20140722_143955/crash.log new file mode 100644 index 000000000..a1fabdb12 --- /dev/null +++ b/newtests/20140722_143955/crash.log @@ -0,0 +1,27 @@ +2014-07-22 14:40:40 =ERROR REPORT==== +Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + +2014-07-22 14:40:40 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 14:40:40 =ERROR REPORT==== +Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + +2014-07-22 14:40:40 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.93.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 14:40:45 =ERROR REPORT==== +Error in process <0.4035.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + +2014-07-22 14:40:45 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.4031.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140722_143955/error.log b/newtests/20140722_143955/error.log new file mode 100644 index 000000000..22bfa1667 --- /dev/null +++ b/newtests/20140722_143955/error.log @@ -0,0 +1,15 @@ +2014-07-22 14:40:40.268 [error] emulator Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-22 14:40:40.268 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:40:40.269 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated +2014-07-22 14:40:40.745 [error] <0.93.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:40:40.745 [error] emulator Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-22 14:40:40.747 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.93.0> exit with reason normal in context child_terminated +2014-07-22 14:40:45.163 [error] emulator Error in process <0.4035.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-22 14:40:45.163 [error] <0.4031.0>@basho_bench_worker:handle_info:149 Worker <0.4035.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:40:45.164 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.4031.0> exit with reason normal in context child_terminated diff --git a/newtests/20140722_143955/errors.csv b/newtests/20140722_143955/errors.csv new file mode 100644 index 000000000..29210b502 --- /dev/null +++ b/newtests/20140722_143955/errors.csv @@ -0,0 +1 @@ +"error","count" diff --git a/newtests/20140722_143955/floppstore.config b/newtests/20140722_143955/floppstore.config new file mode 100644 index 000000000..7d342dacb --- /dev/null +++ b/newtests/20140722_143955/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {uniform_int, 5000000}}. + +{value_generator, {fixed_bin, 10}}. + +{operations, [{static_tx, 1}]}. %%, {interactive_tx,1}, {append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140722_143955/log.sasl.txt b/newtests/20140722_143955/log.sasl.txt new file mode 100644 index 000000000..88937d4e1 --- /dev/null +++ b/newtests/20140722_143955/log.sasl.txt @@ -0,0 +1,258 @@ + +=PROGRESS REPORT==== 22-Jul-2014::14:39:56 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:39:56 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:39:56 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::14:39:56 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:39:56 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::14:39:56 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:39:56 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::14:39:56 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::14:39:56 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:39:56 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:39:56 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::14:39:56 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:39:56 === + supervisor: {local,net_sup} + started: [{pid,<0.97.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:39:56 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:39:56 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:39:56 === + supervisor: {local,kernel_sup} + started: [{pid,<0.96.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::14:39:56 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 22-Jul-2014::14:39:56 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.103.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:39:56 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.93.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:39:56 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:39:56 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.109.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:39:56 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 22-Jul-2014::14:40:40 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.107.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::14:40:40 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.4011.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::14:40:40 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.93.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::14:40:40 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.4031.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::14:40:45 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.4031.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::14:40:45 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.4357.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] diff --git a/newtests/20140722_143955/static-tx_latencies.csv b/newtests/20140722_143955/static-tx_latencies.csv new file mode 100644 index 000000000..441c30dee --- /dev/null +++ b/newtests/20140722_143955/static-tx_latencies.csv @@ -0,0 +1,6 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +10.002009, 10.002009, 998, 5680, 19994.0, 19108, 24557, 31551, 126233, 129429, 0 +20.002514, 10.000505, 938, 6813, 21126.6, 20496, 25617, 35413, 119117, 128775, 0 +30.001379, 9.998865, 872, 8810, 22763.8, 21618, 26740, 36549, 131853, 138186, 0 +40.000976, 9.999597, 868, 9868, 23350.3, 22875, 28058, 31661, 122229, 138186, 0 +50.001953, 10.000977, 662, 10017, 25089.7, 24142, 30233, 48381, 124304, 134351, 0 diff --git a/newtests/20140722_143955/summary.csv b/newtests/20140722_143955/summary.csv new file mode 100644 index 000000000..3d5b882af --- /dev/null +++ b/newtests/20140722_143955/summary.csv @@ -0,0 +1,6 @@ +elapsed, window, total, successful, failed +10.002009, 10.002009, 998, 998, 0 +20.002514, 10.000505, 938, 938, 0 +30.001379, 9.998865, 872, 872, 0 +40.000976, 9.999597, 868, 868, 0 +50.001953, 10.000977, 662, 662, 0 diff --git a/newtests/20140722_144135/console.log b/newtests/20140722_144135/console.log new file mode 100644 index 000000000..71d640610 --- /dev/null +++ b/newtests/20140722_144135/console.log @@ -0,0 +1,36 @@ +2014-07-22 14:41:35.458 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_144135/error.log"} into lager_event +2014-07-22 14:41:35.458 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_144135/console.log"} into lager_event +2014-07-22 14:41:35.458 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-22 14:41:35.494 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-22 14:41:35.494 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-22 14:41:35.494 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-22 14:41:35.495 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-22 14:41:35.934 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-22 14:41:36.326 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-22 14:41:36.327 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_144135/console.log to debug +2014-07-22 14:41:36.341 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB +2014-07-22 14:41:36.426 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-22 14:41:36.427 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-22 14:41:36.427 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-22 14:41:36.442 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-22 14:41:36.442 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-22 14:41:36.530 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-22 14:41:36.530 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-22 14:41:36.561 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-22 14:41:36.566 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-22 14:41:36.571 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-22 14:41:36.571 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-22 14:41:36.605 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-22 14:41:36.610 [debug] <0.93.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 14:41:36.740 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> +2014-07-22 14:41:36.747 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> +2014-07-22 14:41:36.760 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-22 14:41:36.761 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> +2014-07-22 14:41:36.761 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> +2014-07-22 14:41:36.774 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> +2014-07-22 14:41:36.775 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> +2014-07-22 14:41:36.791 [error] <0.95.0>@basho_bench_driver_floppystore:ping_each:162 Failed to ping node 'floppy@127.0.0.1' +2014-07-22 14:41:36.791 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 14:41:36.839 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.93.0> diff --git a/newtests/20140722_144135/crash.log b/newtests/20140722_144135/crash.log new file mode 100644 index 000000000..e69de29bb diff --git a/newtests/20140722_144135/error.log b/newtests/20140722_144135/error.log new file mode 100644 index 000000000..f2c2c5bb2 --- /dev/null +++ b/newtests/20140722_144135/error.log @@ -0,0 +1 @@ +2014-07-22 14:41:36.791 [error] <0.95.0>@basho_bench_driver_floppystore:ping_each:162 Failed to ping node 'floppy@127.0.0.1' diff --git a/newtests/20140722_144135/errors.csv b/newtests/20140722_144135/errors.csv new file mode 100644 index 000000000..29210b502 --- /dev/null +++ b/newtests/20140722_144135/errors.csv @@ -0,0 +1 @@ +"error","count" diff --git a/newtests/20140722_144135/floppstore.config b/newtests/20140722_144135/floppstore.config new file mode 100644 index 000000000..7d342dacb --- /dev/null +++ b/newtests/20140722_144135/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {uniform_int, 5000000}}. + +{value_generator, {fixed_bin, 10}}. + +{operations, [{static_tx, 1}]}. %%, {interactive_tx,1}, {append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140722_144135/log.sasl.txt b/newtests/20140722_144135/log.sasl.txt new file mode 100644 index 000000000..df8acd8f6 --- /dev/null +++ b/newtests/20140722_144135/log.sasl.txt @@ -0,0 +1,159 @@ + +=PROGRESS REPORT==== 22-Jul-2014::14:41:36 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:41:36 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:41:36 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::14:41:36 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:41:36 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::14:41:36 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:41:36 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::14:41:36 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::14:41:36 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:41:36 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:41:36 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::14:41:36 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:41:36 === + supervisor: {local,net_sup} + started: [{pid,<0.97.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:41:36 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:41:36 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:41:36 === + supervisor: {local,kernel_sup} + started: [{pid,<0.96.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::14:41:36 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 22-Jul-2014::14:41:36 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.103.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:41:36 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.93.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] diff --git a/newtests/20140722_144135/static-tx_latencies.csv b/newtests/20140722_144135/static-tx_latencies.csv new file mode 100644 index 000000000..2cee6f0d8 --- /dev/null +++ b/newtests/20140722_144135/static-tx_latencies.csv @@ -0,0 +1 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors diff --git a/newtests/20140722_144135/summary.csv b/newtests/20140722_144135/summary.csv new file mode 100644 index 000000000..fa9e41e5d --- /dev/null +++ b/newtests/20140722_144135/summary.csv @@ -0,0 +1 @@ +elapsed, window, total, successful, failed diff --git a/newtests/20140722_144554/append_latencies.csv b/newtests/20140722_144554/append_latencies.csv new file mode 100644 index 000000000..a9a1e5b08 --- /dev/null +++ b/newtests/20140722_144554/append_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.869977, 0.869977, 20, 1053, 4423.9, 2263, 13689, 16607, 16607, 16607, 0 diff --git a/newtests/20140722_144554/console.log b/newtests/20140722_144554/console.log new file mode 100644 index 000000000..7e0e58428 --- /dev/null +++ b/newtests/20140722_144554/console.log @@ -0,0 +1,102 @@ +2014-07-22 14:45:55.111 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_144554/error.log"} into lager_event +2014-07-22 14:45:55.111 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_144554/console.log"} into lager_event +2014-07-22 14:45:55.111 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-22 14:45:55.146 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-22 14:45:55.146 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-22 14:45:55.146 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-22 14:45:55.147 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-22 14:45:55.586 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-22 14:45:56.025 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-22 14:45:56.026 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_144554/console.log to debug +2014-07-22 14:45:56.038 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB +2014-07-22 14:45:56.121 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-22 14:45:56.121 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-22 14:45:56.122 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-22 14:45:56.136 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-22 14:45:56.137 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-22 14:45:56.227 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-22 14:45:56.227 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-22 14:45:56.256 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-22 14:45:56.261 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-22 14:45:56.267 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-22 14:45:56.267 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-22 14:45:56.302 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-22 14:45:56.309 [debug] <0.96.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 14:45:56.441 [debug] <0.99.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.100.0> +2014-07-22 14:45:56.448 [debug] <0.99.0> Supervisor net_sup started auth:start_link() at pid <0.101.0> +2014-07-22 14:45:56.462 [info] <0.98.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-22 14:45:56.462 [debug] <0.99.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.102.0> +2014-07-22 14:45:56.463 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> +2014-07-22 14:45:56.477 [debug] <0.106.0> Supervisor inet_gethost_native_sup started undefined at pid <0.107.0> +2014-07-22 14:45:56.477 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.106.0> +2014-07-22 14:45:56.497 [info] <0.98.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:45:56.497 [info] <0.98.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 14:45:56.498 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.96.0> +2014-07-22 14:45:56.575 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:45:56.575 [info] <0.111.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 14:45:56.575 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.110.0> +2014-07-22 14:45:56.576 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.112.0> +2014-07-22 14:45:56.581 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> +2014-07-22 14:45:56.581 [info] <0.98.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.98.0> +2014-07-22 14:45:56.581 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-22 14:45:56.824 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,41962},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + + +2014-07-22 14:45:56.824 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,41962},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:45:56.825 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated +2014-07-22 14:45:56.923 [error] emulator Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,486344},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + + +2014-07-22 14:45:56.923 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,486344},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:45:56.963 [info] <0.143.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:45:56.963 [info] <0.143.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 14:45:56.963 [warning] <0.134.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 14:45:56.963 [info] <0.143.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.143.0> +2014-07-22 14:45:56.963 [debug] <0.145.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 14:45:56.964 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.134.0> +2014-07-22 14:45:56.964 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated +2014-07-22 14:45:57.055 [info] <0.147.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:45:57.055 [info] <0.147.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 14:45:57.055 [warning] <0.145.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 14:45:57.055 [info] <0.147.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.147.0> +2014-07-22 14:45:57.056 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.145.0> +2014-07-22 14:45:57.086 [error] emulator Error in process <0.143.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,41962},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + + +2014-07-22 14:45:57.086 [error] <0.134.0>@basho_bench_worker:handle_info:149 Worker <0.143.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,41962},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:45:57.087 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.134.0> exit with reason normal in context child_terminated +2014-07-22 14:45:57.136 [error] emulator Error in process <0.147.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,486344},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + + +2014-07-22 14:45:57.136 [error] <0.145.0>@basho_bench_worker:handle_info:149 Worker <0.147.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,486344},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:45:57.161 [info] <0.157.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:45:57.161 [info] <0.157.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 14:45:57.161 [warning] <0.156.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 14:45:57.161 [info] <0.157.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.157.0> +2014-07-22 14:45:57.162 [debug] <0.159.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 14:45:57.162 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.156.0> +2014-07-22 14:45:57.163 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.145.0> exit with reason normal in context child_terminated +2014-07-22 14:45:57.258 [info] <0.164.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:45:57.259 [info] <0.164.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 14:45:57.259 [warning] <0.159.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 14:45:57.259 [info] <0.164.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.164.0> +2014-07-22 14:45:57.259 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.159.0> +2014-07-22 14:45:57.297 [error] emulator Error in process <0.157.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,3809279},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + + +2014-07-22 14:45:57.297 [error] <0.156.0>@basho_bench_worker:handle_info:149 Worker <0.157.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,3809279},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:45:57.298 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.156.0> exit with reason normal in context child_terminated +2014-07-22 14:45:57.357 [error] emulator Error in process <0.164.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:45:57.357 [error] <0.159.0>@basho_bench_worker:handle_info:149 Worker <0.164.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:45:57.445 [info] <0.182.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:45:57.445 [info] <0.182.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 14:45:57.445 [warning] <0.172.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 14:45:57.445 [info] <0.182.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.182.0> +2014-07-22 14:45:57.445 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.172.0> +2014-07-22 14:45:57.447 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.159.0> exit with reason normal in context child_terminated +2014-07-22 14:45:57.448 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.159.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-22 14:45:57.457 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. diff --git a/newtests/20140722_144554/crash.log b/newtests/20140722_144554/crash.log new file mode 100644 index 000000000..7d6f17940 --- /dev/null +++ b/newtests/20140722_144554/crash.log @@ -0,0 +1,60 @@ +2014-07-22 14:45:56 =ERROR REPORT==== +Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,41962},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + +2014-07-22 14:45:56 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 14:45:56 =ERROR REPORT==== +Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,486344},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + +2014-07-22 14:45:56 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.96.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 14:45:57 =ERROR REPORT==== +Error in process <0.143.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,41962},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + +2014-07-22 14:45:57 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.134.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 14:45:57 =ERROR REPORT==== +Error in process <0.147.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,486344},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + +2014-07-22 14:45:57 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.145.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 14:45:57 =ERROR REPORT==== +Error in process <0.157.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,3809279},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + +2014-07-22 14:45:57 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.156.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 14:45:57 =ERROR REPORT==== +Error in process <0.164.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-22 14:45:57 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.159.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 14:45:57 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.159.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140722_144554/error.log b/newtests/20140722_144554/error.log new file mode 100644 index 000000000..2fb6cc09f --- /dev/null +++ b/newtests/20140722_144554/error.log @@ -0,0 +1,31 @@ +2014-07-22 14:45:56.824 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,41962},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + + +2014-07-22 14:45:56.824 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,41962},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:45:56.825 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated +2014-07-22 14:45:56.923 [error] emulator Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,486344},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + + +2014-07-22 14:45:56.923 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,486344},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:45:56.964 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated +2014-07-22 14:45:57.086 [error] emulator Error in process <0.143.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,41962},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + + +2014-07-22 14:45:57.086 [error] <0.134.0>@basho_bench_worker:handle_info:149 Worker <0.143.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,41962},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:45:57.087 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.134.0> exit with reason normal in context child_terminated +2014-07-22 14:45:57.136 [error] emulator Error in process <0.147.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,486344},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + + +2014-07-22 14:45:57.136 [error] <0.145.0>@basho_bench_worker:handle_info:149 Worker <0.147.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,486344},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:45:57.163 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.145.0> exit with reason normal in context child_terminated +2014-07-22 14:45:57.297 [error] emulator Error in process <0.157.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,3809279},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + + +2014-07-22 14:45:57.297 [error] <0.156.0>@basho_bench_worker:handle_info:149 Worker <0.157.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,3809279},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:45:57.298 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.156.0> exit with reason normal in context child_terminated +2014-07-22 14:45:57.357 [error] emulator Error in process <0.164.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:45:57.357 [error] <0.159.0>@basho_bench_worker:handle_info:149 Worker <0.164.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:45:57.447 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.159.0> exit with reason normal in context child_terminated +2014-07-22 14:45:57.448 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.159.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140722_144554/errors.csv b/newtests/20140722_144554/errors.csv new file mode 100644 index 000000000..29210b502 --- /dev/null +++ b/newtests/20140722_144554/errors.csv @@ -0,0 +1 @@ +"error","count" diff --git a/newtests/20140722_144554/floppstore.config b/newtests/20140722_144554/floppstore.config new file mode 100644 index 000000000..bb59890f3 --- /dev/null +++ b/newtests/20140722_144554/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {uniform_int, 5000000}}. + +{value_generator, {fixed_bin, 10}}. + +{operations, [{static_tx, 1}, {interactive_tx,1}, {append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140722_144554/interactive-tx_latencies.csv b/newtests/20140722_144554/interactive-tx_latencies.csv new file mode 100644 index 000000000..9bd175b49 --- /dev/null +++ b/newtests/20140722_144554/interactive-tx_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.869977, 0.869977, 15, 17982, 36356.5, 26192, 83437, 83877, 83877, 83877, 0 diff --git a/newtests/20140722_144554/log.sasl.txt b/newtests/20140722_144554/log.sasl.txt new file mode 100644 index 000000000..9655461ad --- /dev/null +++ b/newtests/20140722_144554/log.sasl.txt @@ -0,0 +1,336 @@ + +=PROGRESS REPORT==== 22-Jul-2014::14:45:56 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:45:56 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:45:56 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::14:45:56 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:45:56 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::14:45:56 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:45:56 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::14:45:56 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::14:45:56 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:45:56 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:45:56 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::14:45:56 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:45:56 === + supervisor: {local,net_sup} + started: [{pid,<0.100.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:45:56 === + supervisor: {local,net_sup} + started: [{pid,<0.101.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:45:56 === + supervisor: {local,net_sup} + started: [{pid,<0.102.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:45:56 === + supervisor: {local,kernel_sup} + started: [{pid,<0.99.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::14:45:56 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.107.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 22-Jul-2014::14:45:56 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.106.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:45:56 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.96.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:45:56 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.110.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:45:56 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.112.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:45:56 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 22-Jul-2014::14:45:56 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::14:45:56 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.134.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::14:45:56 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.96.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::14:45:57 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.145.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::14:45:57 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.134.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::14:45:57 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.156.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::14:45:57 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.145.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::14:45:57 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.159.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::14:45:57 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.156.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::14:45:57 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.172.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::14:45:57 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.159.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 22-Jul-2014::14:45:57 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.159.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140722_144554/read_latencies.csv b/newtests/20140722_144554/read_latencies.csv new file mode 100644 index 000000000..fcbcb0edd --- /dev/null +++ b/newtests/20140722_144554/read_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.869977, 0.869977, 6, 1873, 6045.3, 3640, 13595, 13595, 13595, 13595, 0 diff --git a/newtests/20140722_144554/static-tx_latencies.csv b/newtests/20140722_144554/static-tx_latencies.csv new file mode 100644 index 000000000..4542c4608 --- /dev/null +++ b/newtests/20140722_144554/static-tx_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.869977, 0.869977, 13, 18121, 23661.8, 20696, 30823, 34987, 34987, 34987, 0 diff --git a/newtests/20140722_144554/summary.csv b/newtests/20140722_144554/summary.csv new file mode 100644 index 000000000..9d91de0cd --- /dev/null +++ b/newtests/20140722_144554/summary.csv @@ -0,0 +1,2 @@ +elapsed, window, total, successful, failed +0.869977, 0.869977, 54, 54, 0 diff --git a/newtests/20140722_144834/append_latencies.csv b/newtests/20140722_144834/append_latencies.csv new file mode 100644 index 000000000..d03b510ac --- /dev/null +++ b/newtests/20140722_144834/append_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +1.092345, 1.092345, 6, 1207, 17413.8, 16602, 42194, 42194, 42194, 42194, 0 diff --git a/newtests/20140722_144834/console.log b/newtests/20140722_144834/console.log new file mode 100644 index 000000000..2b9681530 --- /dev/null +++ b/newtests/20140722_144834/console.log @@ -0,0 +1,103 @@ +2014-07-22 14:48:34.657 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_144834/error.log"} into lager_event +2014-07-22 14:48:34.657 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_144834/console.log"} into lager_event +2014-07-22 14:48:34.657 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-22 14:48:34.697 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-22 14:48:34.697 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-22 14:48:34.697 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-22 14:48:34.697 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-22 14:48:35.133 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-22 14:48:35.495 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-22 14:48:35.496 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_144834/console.log to debug +2014-07-22 14:48:35.509 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB +2014-07-22 14:48:35.586 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-22 14:48:35.587 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-22 14:48:35.587 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-22 14:48:35.602 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-22 14:48:35.602 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-22 14:48:35.692 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-22 14:48:35.692 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-22 14:48:35.726 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-22 14:48:35.736 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-22 14:48:35.746 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-22 14:48:35.747 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-22 14:48:35.793 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-22 14:48:35.799 [debug] <0.96.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 14:48:35.935 [debug] <0.99.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.100.0> +2014-07-22 14:48:35.942 [debug] <0.99.0> Supervisor net_sup started auth:start_link() at pid <0.101.0> +2014-07-22 14:48:35.955 [info] <0.98.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-22 14:48:35.955 [debug] <0.99.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.102.0> +2014-07-22 14:48:35.956 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> +2014-07-22 14:48:35.973 [debug] <0.106.0> Supervisor inet_gethost_native_sup started undefined at pid <0.107.0> +2014-07-22 14:48:35.974 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.106.0> +2014-07-22 14:48:35.994 [info] <0.98.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:48:35.994 [info] <0.98.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 14:48:35.995 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.96.0> +2014-07-22 14:48:36.073 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:48:36.073 [info] <0.111.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 14:48:36.073 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.110.0> +2014-07-22 14:48:36.074 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.112.0> +2014-07-22 14:48:36.080 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> +2014-07-22 14:48:36.080 [info] <0.98.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.98.0> +2014-07-22 14:48:36.080 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-22 14:48:36.418 [error] emulator Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,475125},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + + +2014-07-22 14:48:36.418 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,475125},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:48:36.418 [debug] <0.121.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 14:48:36.418 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated +2014-07-22 14:48:36.504 [info] <0.122.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:48:36.504 [info] <0.122.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 14:48:36.504 [warning] <0.121.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 14:48:36.504 [info] <0.122.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.122.0> +2014-07-22 14:48:36.504 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.121.0> +2014-07-22 14:48:36.717 [error] emulator Error in process <0.122.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:48:36.717 [error] <0.121.0>@basho_bench_worker:handle_info:149 Worker <0.122.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:48:36.717 [debug] <0.134.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 14:48:36.718 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.121.0> exit with reason normal in context child_terminated +2014-07-22 14:48:36.734 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,652713},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + + +2014-07-22 14:48:36.735 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,652713},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:48:36.794 [info] <0.135.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:48:36.794 [info] <0.135.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 14:48:36.794 [warning] <0.134.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 14:48:36.794 [info] <0.135.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.135.0> +2014-07-22 14:48:36.794 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.134.0> +2014-07-22 14:48:36.795 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated +2014-07-22 14:48:36.887 [info] <0.138.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:48:36.887 [info] <0.138.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 14:48:36.887 [warning] <0.136.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 14:48:36.887 [info] <0.138.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.138.0> +2014-07-22 14:48:36.888 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.136.0> +2014-07-22 14:48:36.992 [error] emulator Error in process <0.138.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,3809279},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + + +2014-07-22 14:48:36.992 [error] <0.136.0>@basho_bench_worker:handle_info:149 Worker <0.138.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,3809279},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:48:36.993 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.136.0> exit with reason normal in context child_terminated +2014-07-22 14:48:37.069 [error] emulator Error in process <0.135.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,309625},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + + +2014-07-22 14:48:37.069 [error] <0.134.0>@basho_bench_worker:handle_info:149 Worker <0.135.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,309625},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:48:37.078 [info] <0.146.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:48:37.078 [info] <0.146.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 14:48:37.078 [warning] <0.145.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 14:48:37.078 [info] <0.146.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.146.0> +2014-07-22 14:48:37.078 [debug] <0.150.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 14:48:37.079 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.145.0> +2014-07-22 14:48:37.079 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.134.0> exit with reason normal in context child_terminated +2014-07-22 14:48:37.147 [error] emulator Error in process <0.146.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,309625},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + + +2014-07-22 14:48:37.147 [error] <0.145.0>@basho_bench_worker:handle_info:149 Worker <0.146.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,309625},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:48:37.165 [info] <0.156.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 14:48:37.165 [info] <0.156.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 14:48:37.165 [warning] <0.150.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 14:48:37.165 [info] <0.156.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.156.0> +2014-07-22 14:48:37.166 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.150.0> +2014-07-22 14:48:37.166 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.145.0> exit with reason normal in context child_terminated +2014-07-22 14:48:37.167 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.145.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-22 14:48:37.175 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. diff --git a/newtests/20140722_144834/crash.log b/newtests/20140722_144834/crash.log new file mode 100644 index 000000000..ef1ae1b0a --- /dev/null +++ b/newtests/20140722_144834/crash.log @@ -0,0 +1,60 @@ +2014-07-22 14:48:36 =ERROR REPORT==== +Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,475125},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + +2014-07-22 14:48:36 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.96.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 14:48:36 =ERROR REPORT==== +Error in process <0.122.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-22 14:48:36 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.121.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 14:48:36 =ERROR REPORT==== +Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,652713},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + +2014-07-22 14:48:36 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 14:48:37 =ERROR REPORT==== +Error in process <0.138.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,3809279},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + +2014-07-22 14:48:37 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.136.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 14:48:37 =ERROR REPORT==== +Error in process <0.135.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,309625},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + +2014-07-22 14:48:37 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.134.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 14:48:37 =ERROR REPORT==== +Error in process <0.146.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,309625},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + +2014-07-22 14:48:37 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.145.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 14:48:37 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.145.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140722_144834/error.log b/newtests/20140722_144834/error.log new file mode 100644 index 000000000..da7ec1b23 --- /dev/null +++ b/newtests/20140722_144834/error.log @@ -0,0 +1,31 @@ +2014-07-22 14:48:36.418 [error] emulator Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,475125},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + + +2014-07-22 14:48:36.418 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,475125},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:48:36.418 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated +2014-07-22 14:48:36.717 [error] emulator Error in process <0.122.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-22 14:48:36.717 [error] <0.121.0>@basho_bench_worker:handle_info:149 Worker <0.122.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:48:36.718 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.121.0> exit with reason normal in context child_terminated +2014-07-22 14:48:36.734 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,652713},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + + +2014-07-22 14:48:36.735 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,652713},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:48:36.795 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated +2014-07-22 14:48:36.992 [error] emulator Error in process <0.138.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,3809279},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + + +2014-07-22 14:48:36.992 [error] <0.136.0>@basho_bench_worker:handle_info:149 Worker <0.138.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,3809279},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:48:36.993 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.136.0> exit with reason normal in context child_terminated +2014-07-22 14:48:37.069 [error] emulator Error in process <0.135.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,309625},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + + +2014-07-22 14:48:37.069 [error] <0.134.0>@basho_bench_worker:handle_info:149 Worker <0.135.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,309625},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:48:37.079 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.134.0> exit with reason normal in context child_terminated +2014-07-22 14:48:37.147 [error] emulator Error in process <0.146.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,309625},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... + + +2014-07-22 14:48:37.147 [error] <0.145.0>@basho_bench_worker:handle_info:149 Worker <0.146.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,309625},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 14:48:37.166 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.145.0> exit with reason normal in context child_terminated +2014-07-22 14:48:37.167 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.145.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140722_144834/errors.csv b/newtests/20140722_144834/errors.csv new file mode 100644 index 000000000..29210b502 --- /dev/null +++ b/newtests/20140722_144834/errors.csv @@ -0,0 +1 @@ +"error","count" diff --git a/newtests/20140722_144834/floppstore.config b/newtests/20140722_144834/floppstore.config new file mode 100644 index 000000000..bb59890f3 --- /dev/null +++ b/newtests/20140722_144834/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {uniform_int, 5000000}}. + +{value_generator, {fixed_bin, 10}}. + +{operations, [{static_tx, 1}, {interactive_tx,1}, {append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140722_144834/interactive-tx_latencies.csv b/newtests/20140722_144834/interactive-tx_latencies.csv new file mode 100644 index 000000000..2f48b1593 --- /dev/null +++ b/newtests/20140722_144834/interactive-tx_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +1.092345, 1.092345, 12, 41984, 91192.5, 85340, 152896, 153295, 153295, 153295, 0 diff --git a/newtests/20140722_144834/log.sasl.txt b/newtests/20140722_144834/log.sasl.txt new file mode 100644 index 000000000..84529fd6e --- /dev/null +++ b/newtests/20140722_144834/log.sasl.txt @@ -0,0 +1,336 @@ + +=PROGRESS REPORT==== 22-Jul-2014::14:48:35 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:48:35 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:48:35 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::14:48:35 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:48:35 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::14:48:35 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:48:35 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::14:48:35 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::14:48:35 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:48:35 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:48:35 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::14:48:35 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:48:35 === + supervisor: {local,net_sup} + started: [{pid,<0.100.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:48:35 === + supervisor: {local,net_sup} + started: [{pid,<0.101.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:48:35 === + supervisor: {local,net_sup} + started: [{pid,<0.102.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:48:35 === + supervisor: {local,kernel_sup} + started: [{pid,<0.99.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::14:48:35 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.107.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 22-Jul-2014::14:48:35 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.106.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:48:35 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.96.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:48:36 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.110.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:48:36 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.112.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::14:48:36 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 22-Jul-2014::14:48:36 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.96.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::14:48:36 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.121.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::14:48:36 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.121.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::14:48:36 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.134.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::14:48:36 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::14:48:36 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.136.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::14:48:36 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.136.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::14:48:37 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.145.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::14:48:37 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.134.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::14:48:37 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.150.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::14:48:37 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.145.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 22-Jul-2014::14:48:37 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.145.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140722_144834/read_latencies.csv b/newtests/20140722_144834/read_latencies.csv new file mode 100644 index 000000000..90a56e013 --- /dev/null +++ b/newtests/20140722_144834/read_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +1.092345, 1.092345, 6, 1452, 20919.3, 17999, 42787, 42787, 42787, 42787, 0 diff --git a/newtests/20140722_144834/static-tx_latencies.csv b/newtests/20140722_144834/static-tx_latencies.csv new file mode 100644 index 000000000..4089028c5 --- /dev/null +++ b/newtests/20140722_144834/static-tx_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +1.092345, 1.092345, 5, 19926, 45680.8, 42995, 75381, 75381, 75381, 75381, 0 diff --git a/newtests/20140722_144834/summary.csv b/newtests/20140722_144834/summary.csv new file mode 100644 index 000000000..8a89997d2 --- /dev/null +++ b/newtests/20140722_144834/summary.csv @@ -0,0 +1,2 @@ +elapsed, window, total, successful, failed +1.092345, 1.092345, 29, 29, 0 diff --git a/newtests/20140722_150342/console.log b/newtests/20140722_150342/console.log new file mode 100644 index 000000000..3ca8778d8 --- /dev/null +++ b/newtests/20140722_150342/console.log @@ -0,0 +1,18 @@ +2014-07-22 15:03:42.243 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_150342/error.log"} into lager_event +2014-07-22 15:03:42.243 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_150342/console.log"} into lager_event +2014-07-22 15:03:42.243 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-22 15:03:42.277 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-22 15:03:42.277 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-22 15:03:42.277 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-22 15:03:42.277 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-22 15:03:42.714 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-22 15:03:43.094 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-22 15:03:43.095 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_150342/console.log to debug +2014-07-22 15:03:43.110 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB +2014-07-22 15:03:43.182 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-22 15:03:43.182 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-22 15:03:43.182 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-22 15:03:43.198 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-22 15:03:43.199 [info] <0.7.0> Application sasl started on node nonode@nohost diff --git a/newtests/20140722_150342/crash.log b/newtests/20140722_150342/crash.log new file mode 100644 index 000000000..e69de29bb diff --git a/newtests/20140722_150342/error.log b/newtests/20140722_150342/error.log new file mode 100644 index 000000000..e69de29bb diff --git a/newtests/20140722_150342/errors.csv b/newtests/20140722_150342/errors.csv new file mode 100644 index 000000000..29210b502 --- /dev/null +++ b/newtests/20140722_150342/errors.csv @@ -0,0 +1 @@ +"error","count" diff --git a/newtests/20140722_150342/floppstore.config b/newtests/20140722_150342/floppstore.config new file mode 100644 index 000000000..a222d5344 --- /dev/null +++ b/newtests/20140722_150342/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {uniform_int, 5000000}}. + +{value_generator, {fixed_bin, 10}}. + +{operations, [{static_tx, 1}, {interactive_tx,1}]}. %%, {append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140722_150342/interactive-tx_latencies.csv b/newtests/20140722_150342/interactive-tx_latencies.csv new file mode 100644 index 000000000..2cee6f0d8 --- /dev/null +++ b/newtests/20140722_150342/interactive-tx_latencies.csv @@ -0,0 +1 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors diff --git a/newtests/20140722_150342/log.sasl.txt b/newtests/20140722_150342/log.sasl.txt new file mode 100644 index 000000000..977ce2ad1 --- /dev/null +++ b/newtests/20140722_150342/log.sasl.txt @@ -0,0 +1,113 @@ + +=PROGRESS REPORT==== 22-Jul-2014::15:03:43 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:03:43 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:03:43 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::15:03:43 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:03:43 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::15:03:43 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:03:43 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::15:03:43 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::15:03:43 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:03:43 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:03:43 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::15:03:43 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:03:43 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:03:43 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] diff --git a/newtests/20140722_150342/static-tx_latencies.csv b/newtests/20140722_150342/static-tx_latencies.csv new file mode 100644 index 000000000..2cee6f0d8 --- /dev/null +++ b/newtests/20140722_150342/static-tx_latencies.csv @@ -0,0 +1 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors diff --git a/newtests/20140722_150342/summary.csv b/newtests/20140722_150342/summary.csv new file mode 100644 index 000000000..fa9e41e5d --- /dev/null +++ b/newtests/20140722_150342/summary.csv @@ -0,0 +1 @@ +elapsed, window, total, successful, failed diff --git a/newtests/20140722_150549/console.log b/newtests/20140722_150549/console.log new file mode 100644 index 000000000..a931ee53b --- /dev/null +++ b/newtests/20140722_150549/console.log @@ -0,0 +1,43 @@ +2014-07-22 15:05:50.005 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_150549/error.log"} into lager_event +2014-07-22 15:05:50.005 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_150549/console.log"} into lager_event +2014-07-22 15:05:50.005 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-22 15:05:50.045 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-22 15:05:50.045 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-22 15:05:50.045 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-22 15:05:50.045 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-22 15:05:50.480 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-22 15:05:50.840 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-22 15:05:50.841 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_150549/console.log to debug +2014-07-22 15:05:50.855 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB +2014-07-22 15:05:50.931 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-22 15:05:50.931 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-22 15:05:50.932 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-22 15:05:50.948 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-22 15:05:50.948 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-22 15:05:51.038 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-22 15:05:51.038 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-22 15:05:51.067 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-22 15:05:51.071 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-22 15:05:51.077 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-22 15:05:51.077 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-22 15:05:51.113 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-22 15:05:51.119 [debug] <0.94.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 15:05:51.258 [debug] <0.97.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.98.0> +2014-07-22 15:05:51.266 [debug] <0.97.0> Supervisor net_sup started auth:start_link() at pid <0.99.0> +2014-07-22 15:05:51.279 [info] <0.96.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-22 15:05:51.280 [debug] <0.97.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.100.0> +2014-07-22 15:05:51.280 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.97.0> +2014-07-22 15:05:51.297 [debug] <0.104.0> Supervisor inet_gethost_native_sup started undefined at pid <0.105.0> +2014-07-22 15:05:51.298 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.104.0> +2014-07-22 15:05:51.315 [info] <0.96.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 15:05:51.315 [info] <0.96.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 15:05:51.316 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-22 15:05:51.391 [info] <0.109.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 15:05:51.391 [info] <0.109.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 15:05:51.392 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.108.0> +2014-07-22 15:05:51.392 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.110.0> +2014-07-22 15:05:51.397 [info] <0.109.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.109.0> +2014-07-22 15:05:51.398 [info] <0.96.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.96.0> +2014-07-22 15:05:51.398 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' diff --git a/newtests/20140722_150549/crash.log b/newtests/20140722_150549/crash.log new file mode 100644 index 000000000..e69de29bb diff --git a/newtests/20140722_150549/error.log b/newtests/20140722_150549/error.log new file mode 100644 index 000000000..e69de29bb diff --git a/newtests/20140722_150549/errors.csv b/newtests/20140722_150549/errors.csv new file mode 100644 index 000000000..29210b502 --- /dev/null +++ b/newtests/20140722_150549/errors.csv @@ -0,0 +1 @@ +"error","count" diff --git a/newtests/20140722_150549/floppstore.config b/newtests/20140722_150549/floppstore.config new file mode 100644 index 000000000..a222d5344 --- /dev/null +++ b/newtests/20140722_150549/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {uniform_int, 5000000}}. + +{value_generator, {fixed_bin, 10}}. + +{operations, [{static_tx, 1}, {interactive_tx,1}]}. %%, {append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140722_150549/interactive-tx_latencies.csv b/newtests/20140722_150549/interactive-tx_latencies.csv new file mode 100644 index 000000000..2cee6f0d8 --- /dev/null +++ b/newtests/20140722_150549/interactive-tx_latencies.csv @@ -0,0 +1 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors diff --git a/newtests/20140722_150549/log.sasl.txt b/newtests/20140722_150549/log.sasl.txt new file mode 100644 index 000000000..edfd82682 --- /dev/null +++ b/newtests/20140722_150549/log.sasl.txt @@ -0,0 +1,183 @@ + +=PROGRESS REPORT==== 22-Jul-2014::15:05:50 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:05:50 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:05:50 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::15:05:50 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:05:50 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::15:05:51 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:05:51 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::15:05:51 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::15:05:51 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:05:51 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:05:51 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::15:05:51 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:05:51 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:05:51 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:05:51 === + supervisor: {local,net_sup} + started: [{pid,<0.100.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:05:51 === + supervisor: {local,kernel_sup} + started: [{pid,<0.97.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::15:05:51 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.105.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 22-Jul-2014::15:05:51 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.104.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:05:51 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:05:51 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.108.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:05:51 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.110.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:05:51 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' diff --git a/newtests/20140722_150549/static-tx_latencies.csv b/newtests/20140722_150549/static-tx_latencies.csv new file mode 100644 index 000000000..2cee6f0d8 --- /dev/null +++ b/newtests/20140722_150549/static-tx_latencies.csv @@ -0,0 +1 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors diff --git a/newtests/20140722_150549/summary.csv b/newtests/20140722_150549/summary.csv new file mode 100644 index 000000000..fa9e41e5d --- /dev/null +++ b/newtests/20140722_150549/summary.csv @@ -0,0 +1 @@ +elapsed, window, total, successful, failed diff --git a/newtests/20140722_150633/console.log b/newtests/20140722_150633/console.log new file mode 100644 index 000000000..5036d1bcd --- /dev/null +++ b/newtests/20140722_150633/console.log @@ -0,0 +1,43 @@ +2014-07-22 15:06:33.326 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_150633/error.log"} into lager_event +2014-07-22 15:06:33.326 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_150633/console.log"} into lager_event +2014-07-22 15:06:33.326 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-22 15:06:33.363 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-22 15:06:33.363 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-22 15:06:33.363 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-22 15:06:33.363 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-22 15:06:33.800 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-22 15:06:34.244 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-22 15:06:34.245 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_150633/console.log to debug +2014-07-22 15:06:34.257 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB +2014-07-22 15:06:34.337 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-22 15:06:34.337 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-22 15:06:34.338 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-22 15:06:34.353 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-22 15:06:34.353 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-22 15:06:34.445 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-22 15:06:34.445 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-22 15:06:34.475 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-22 15:06:34.480 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-22 15:06:34.484 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-22 15:06:34.484 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-22 15:06:34.520 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-22 15:06:34.526 [debug] <0.94.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 15:06:34.655 [debug] <0.97.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.98.0> +2014-07-22 15:06:34.665 [debug] <0.97.0> Supervisor net_sup started auth:start_link() at pid <0.99.0> +2014-07-22 15:06:34.680 [info] <0.96.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-22 15:06:34.680 [debug] <0.97.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.100.0> +2014-07-22 15:06:34.681 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.97.0> +2014-07-22 15:06:34.698 [debug] <0.104.0> Supervisor inet_gethost_native_sup started undefined at pid <0.105.0> +2014-07-22 15:06:34.698 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.104.0> +2014-07-22 15:06:34.716 [info] <0.96.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 15:06:34.716 [info] <0.96.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 15:06:34.768 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-22 15:06:34.795 [info] <0.109.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' +2014-07-22 15:06:34.795 [info] <0.109.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 15:06:34.795 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.108.0> +2014-07-22 15:06:34.796 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.110.0> +2014-07-22 15:06:34.801 [info] <0.96.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.96.0> +2014-07-22 15:06:34.801 [info] <0.109.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.109.0> +2014-07-22 15:06:34.802 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' diff --git a/newtests/20140722_150633/crash.log b/newtests/20140722_150633/crash.log new file mode 100644 index 000000000..e69de29bb diff --git a/newtests/20140722_150633/error.log b/newtests/20140722_150633/error.log new file mode 100644 index 000000000..e69de29bb diff --git a/newtests/20140722_150633/errors.csv b/newtests/20140722_150633/errors.csv new file mode 100644 index 000000000..29210b502 --- /dev/null +++ b/newtests/20140722_150633/errors.csv @@ -0,0 +1 @@ +"error","count" diff --git a/newtests/20140722_150633/floppstore.config b/newtests/20140722_150633/floppstore.config new file mode 100644 index 000000000..a222d5344 --- /dev/null +++ b/newtests/20140722_150633/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {uniform_int, 5000000}}. + +{value_generator, {fixed_bin, 10}}. + +{operations, [{static_tx, 1}, {interactive_tx,1}]}. %%, {append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140722_150633/interactive-tx_latencies.csv b/newtests/20140722_150633/interactive-tx_latencies.csv new file mode 100644 index 000000000..2cee6f0d8 --- /dev/null +++ b/newtests/20140722_150633/interactive-tx_latencies.csv @@ -0,0 +1 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors diff --git a/newtests/20140722_150633/log.sasl.txt b/newtests/20140722_150633/log.sasl.txt new file mode 100644 index 000000000..7d34ca500 --- /dev/null +++ b/newtests/20140722_150633/log.sasl.txt @@ -0,0 +1,183 @@ + +=PROGRESS REPORT==== 22-Jul-2014::15:06:34 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:06:34 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:06:34 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::15:06:34 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:06:34 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::15:06:34 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:06:34 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::15:06:34 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::15:06:34 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:06:34 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:06:34 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::15:06:34 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:06:34 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:06:34 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:06:34 === + supervisor: {local,net_sup} + started: [{pid,<0.100.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:06:34 === + supervisor: {local,kernel_sup} + started: [{pid,<0.97.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::15:06:34 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.105.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 22-Jul-2014::15:06:34 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.104.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:06:34 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:06:34 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.108.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:06:34 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.110.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:06:34 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' diff --git a/newtests/20140722_150633/static-tx_latencies.csv b/newtests/20140722_150633/static-tx_latencies.csv new file mode 100644 index 000000000..2cee6f0d8 --- /dev/null +++ b/newtests/20140722_150633/static-tx_latencies.csv @@ -0,0 +1 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors diff --git a/newtests/20140722_150633/summary.csv b/newtests/20140722_150633/summary.csv new file mode 100644 index 000000000..fa9e41e5d --- /dev/null +++ b/newtests/20140722_150633/summary.csv @@ -0,0 +1 @@ +elapsed, window, total, successful, failed diff --git a/newtests/20140722_150647/console.log b/newtests/20140722_150647/console.log new file mode 100644 index 000000000..d3276e977 --- /dev/null +++ b/newtests/20140722_150647/console.log @@ -0,0 +1,74 @@ +2014-07-22 15:06:47.719 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_150647/error.log"} into lager_event +2014-07-22 15:06:47.719 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_150647/console.log"} into lager_event +2014-07-22 15:06:47.719 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-22 15:06:47.752 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-22 15:06:47.752 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-22 15:06:47.752 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-22 15:06:47.753 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-22 15:06:48.195 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-22 15:06:48.584 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-22 15:06:48.586 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_150647/console.log to debug +2014-07-22 15:06:48.601 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB +2014-07-22 15:06:48.689 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-22 15:06:48.689 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-22 15:06:48.689 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-22 15:06:48.704 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-22 15:06:48.704 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-22 15:06:48.794 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-22 15:06:48.794 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-22 15:06:48.823 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-22 15:06:48.827 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-22 15:06:48.833 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-22 15:06:48.833 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-22 15:06:48.871 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-22 15:06:48.877 [debug] <0.94.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 15:06:49.010 [debug] <0.97.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.98.0> +2014-07-22 15:06:49.018 [debug] <0.97.0> Supervisor net_sup started auth:start_link() at pid <0.99.0> +2014-07-22 15:06:49.031 [info] <0.96.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-22 15:06:49.031 [debug] <0.97.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.100.0> +2014-07-22 15:06:49.032 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.97.0> +2014-07-22 15:06:49.045 [debug] <0.104.0> Supervisor inet_gethost_native_sup started undefined at pid <0.105.0> +2014-07-22 15:06:49.046 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.104.0> +2014-07-22 15:06:49.065 [info] <0.96.0>@basho_bench_driver_floppystore:ping_each:157 Finished pinging 'floppy@127.0.0.1' +2014-07-22 15:06:49.065 [info] <0.96.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 15:06:49.066 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-22 15:06:49.143 [info] <0.109.0>@basho_bench_driver_floppystore:ping_each:157 Finished pinging 'floppy@127.0.0.1' +2014-07-22 15:06:49.143 [info] <0.109.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 15:06:49.144 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.108.0> +2014-07-22 15:06:49.144 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.110.0> +2014-07-22 15:06:49.149 [info] <0.96.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.96.0> +2014-07-22 15:06:49.149 [info] <0.109.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.109.0> +2014-07-22 15:06:49.149 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-22 15:07:10.529 [error] emulator Error in process <0.109.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-22 15:07:10.529 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 15:07:10.529 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated +2014-07-22 15:07:10.641 [info] <0.2118.0>@basho_bench_driver_floppystore:ping_each:157 Finished pinging 'floppy@127.0.0.1' +2014-07-22 15:07:10.641 [info] <0.2118.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 15:07:10.641 [warning] <0.2114.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 15:07:10.641 [info] <0.2118.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.2118.0> +2014-07-22 15:07:10.642 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.2114.0> +2014-07-22 15:07:20.337 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 15:07:20.337 [error] emulator Error in process <0.96.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-22 15:07:20.337 [debug] <0.2881.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 15:07:20.338 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-22 15:07:20.441 [info] <0.2882.0>@basho_bench_driver_floppystore:ping_each:157 Finished pinging 'floppy@127.0.0.1' +2014-07-22 15:07:20.441 [info] <0.2882.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 15:07:20.441 [warning] <0.2881.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 15:07:20.442 [info] <0.2882.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.2882.0> +2014-07-22 15:07:20.442 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.2881.0> +2014-07-22 15:07:25.850 [error] emulator Error in process <0.2118.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-22 15:07:25.850 [error] <0.2114.0>@basho_bench_worker:handle_info:149 Worker <0.2118.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 15:07:25.851 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.2114.0> exit with reason normal in context child_terminated +2014-07-22 15:07:25.966 [info] <0.3333.0>@basho_bench_driver_floppystore:ping_each:157 Finished pinging 'floppy@127.0.0.1' +2014-07-22 15:07:25.966 [info] <0.3333.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 15:07:25.966 [warning] <0.3332.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 15:07:25.966 [info] <0.3333.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.3333.0> +2014-07-22 15:07:25.967 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.3332.0> diff --git a/newtests/20140722_150647/crash.log b/newtests/20140722_150647/crash.log new file mode 100644 index 000000000..3ab683bd2 --- /dev/null +++ b/newtests/20140722_150647/crash.log @@ -0,0 +1,27 @@ +2014-07-22 15:07:10 =ERROR REPORT==== +Error in process <0.109.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + +2014-07-22 15:07:10 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.108.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 15:07:20 =ERROR REPORT==== +Error in process <0.96.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + +2014-07-22 15:07:20 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 15:07:25 =ERROR REPORT==== +Error in process <0.2118.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + +2014-07-22 15:07:25 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.2114.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140722_150647/error.log b/newtests/20140722_150647/error.log new file mode 100644 index 000000000..3d6db4b75 --- /dev/null +++ b/newtests/20140722_150647/error.log @@ -0,0 +1,15 @@ +2014-07-22 15:07:10.529 [error] emulator Error in process <0.109.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-22 15:07:10.529 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 15:07:10.529 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated +2014-07-22 15:07:20.337 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 15:07:20.337 [error] emulator Error in process <0.96.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-22 15:07:20.338 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-22 15:07:25.850 [error] emulator Error in process <0.2118.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-22 15:07:25.850 [error] <0.2114.0>@basho_bench_worker:handle_info:149 Worker <0.2118.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 15:07:25.851 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.2114.0> exit with reason normal in context child_terminated diff --git a/newtests/20140722_150647/errors.csv b/newtests/20140722_150647/errors.csv new file mode 100644 index 000000000..29210b502 --- /dev/null +++ b/newtests/20140722_150647/errors.csv @@ -0,0 +1 @@ +"error","count" diff --git a/newtests/20140722_150647/floppstore.config b/newtests/20140722_150647/floppstore.config new file mode 100644 index 000000000..a222d5344 --- /dev/null +++ b/newtests/20140722_150647/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {uniform_int, 5000000}}. + +{value_generator, {fixed_bin, 10}}. + +{operations, [{static_tx, 1}, {interactive_tx,1}]}. %%, {append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140722_150647/interactive-tx_latencies.csv b/newtests/20140722_150647/interactive-tx_latencies.csv new file mode 100644 index 000000000..696df18b3 --- /dev/null +++ b/newtests/20140722_150647/interactive-tx_latencies.csv @@ -0,0 +1,4 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +10.000623, 10.000623, 515, 5902, 20125.8, 19297, 25642, 42658, 49752, 53833, 0 +20.001647, 10.001024, 472, 6904, 21600.3, 20708, 26558, 54613, 127801, 127801, 0 +30.001622, 9.999975, 386, 8697, 24399.5, 21779, 31400, 87418, 130727, 130727, 0 diff --git a/newtests/20140722_150647/log.sasl.txt b/newtests/20140722_150647/log.sasl.txt new file mode 100644 index 000000000..959183048 --- /dev/null +++ b/newtests/20140722_150647/log.sasl.txt @@ -0,0 +1,258 @@ + +=PROGRESS REPORT==== 22-Jul-2014::15:06:48 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:06:48 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:06:48 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::15:06:48 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:06:48 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::15:06:48 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:06:48 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::15:06:48 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::15:06:48 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:06:48 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:06:48 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::15:06:48 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:06:49 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:06:49 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:06:49 === + supervisor: {local,net_sup} + started: [{pid,<0.100.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:06:49 === + supervisor: {local,kernel_sup} + started: [{pid,<0.97.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::15:06:49 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.105.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 22-Jul-2014::15:06:49 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.104.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:06:49 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:06:49 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.108.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:06:49 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.110.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:06:49 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 22-Jul-2014::15:07:10 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.108.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::15:07:10 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.2114.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::15:07:20 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::15:07:20 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.2881.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::15:07:25 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.2114.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::15:07:25 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.3332.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] diff --git a/newtests/20140722_150647/static-tx_latencies.csv b/newtests/20140722_150647/static-tx_latencies.csv new file mode 100644 index 000000000..8f8c6601b --- /dev/null +++ b/newtests/20140722_150647/static-tx_latencies.csv @@ -0,0 +1,4 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +10.000623, 10.000623, 464, 5807, 20673.5, 19360, 26608, 43938, 172817, 172817, 0 +20.001647, 10.001024, 466, 7448, 21010.6, 20497, 25748, 31966, 51553, 51553, 0 +30.001622, 9.999975, 398, 8557, 23941.0, 21998, 30716, 55836, 121271, 121271, 0 diff --git a/newtests/20140722_150647/summary.csv b/newtests/20140722_150647/summary.csv new file mode 100644 index 000000000..8f6ca6355 --- /dev/null +++ b/newtests/20140722_150647/summary.csv @@ -0,0 +1,4 @@ +elapsed, window, total, successful, failed +10.000623, 10.000623, 979, 979, 0 +20.001647, 10.001024, 938, 938, 0 +30.001622, 9.999975, 784, 784, 0 diff --git a/newtests/20140722_150754/console.log b/newtests/20140722_150754/console.log new file mode 100644 index 000000000..7935cbec9 --- /dev/null +++ b/newtests/20140722_150754/console.log @@ -0,0 +1,151 @@ +2014-07-22 15:07:55.133 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_150754/error.log"} into lager_event +2014-07-22 15:07:55.133 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_150754/console.log"} into lager_event +2014-07-22 15:07:55.133 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-22 15:07:55.166 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-22 15:07:55.166 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-22 15:07:55.166 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-22 15:07:55.166 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-22 15:07:55.610 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-22 15:07:55.942 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-22 15:07:55.943 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_150754/console.log to debug +2014-07-22 15:07:55.954 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB +2014-07-22 15:07:56.033 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-22 15:07:56.033 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-22 15:07:56.034 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-22 15:07:56.047 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-22 15:07:56.047 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-22 15:07:56.129 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-22 15:07:56.129 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-22 15:07:56.156 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-22 15:07:56.160 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-22 15:07:56.165 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-22 15:07:56.165 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-22 15:07:56.198 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-22 15:07:56.203 [debug] <0.94.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 15:07:56.327 [debug] <0.97.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.98.0> +2014-07-22 15:07:56.335 [debug] <0.97.0> Supervisor net_sup started auth:start_link() at pid <0.99.0> +2014-07-22 15:07:56.348 [info] <0.96.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-22 15:07:56.348 [debug] <0.97.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.100.0> +2014-07-22 15:07:56.349 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.97.0> +2014-07-22 15:07:56.366 [debug] <0.104.0> Supervisor inet_gethost_native_sup started undefined at pid <0.105.0> +2014-07-22 15:07:56.367 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.104.0> +2014-07-22 15:07:56.387 [info] <0.96.0>@basho_bench_driver_floppystore:ping_each:157 Finished pinging 'floppy@127.0.0.1' +2014-07-22 15:07:56.387 [info] <0.96.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 15:07:56.388 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-22 15:07:56.460 [info] <0.109.0>@basho_bench_driver_floppystore:ping_each:157 Finished pinging 'floppy@127.0.0.1' +2014-07-22 15:07:56.460 [info] <0.109.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 15:07:56.461 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.108.0> +2014-07-22 15:07:56.461 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.110.0> +2014-07-22 15:07:56.466 [info] <0.109.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.109.0> +2014-07-22 15:07:56.467 [info] <0.96.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.96.0> +2014-07-22 15:07:56.467 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-22 15:08:05.235 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 15:08:05.235 [error] emulator Error in process <0.109.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-22 15:08:05.235 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated +2014-07-22 15:08:05.337 [info] <0.256.0>@basho_bench_driver_floppystore:ping_each:157 Finished pinging 'floppy@127.0.0.1' +2014-07-22 15:08:05.337 [info] <0.256.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 15:08:05.337 [warning] <0.255.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 15:08:05.337 [info] <0.256.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.256.0> +2014-07-22 15:08:05.338 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.255.0> +2014-07-22 15:08:12.879 [error] emulator Error in process <0.96.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-22 15:08:12.879 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 15:08:12.879 [debug] <0.394.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 15:08:12.879 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-22 15:08:12.993 [info] <0.395.0>@basho_bench_driver_floppystore:ping_each:157 Finished pinging 'floppy@127.0.0.1' +2014-07-22 15:08:12.993 [info] <0.395.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 15:08:12.993 [warning] <0.394.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 15:08:12.993 [info] <0.395.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.395.0> +2014-07-22 15:08:12.993 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.394.0> +2014-07-22 15:08:18.179 [error] <0.394.0>@basho_bench_worker:handle_info:149 Worker <0.395.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 15:08:18.179 [error] emulator Error in process <0.395.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-22 15:08:18.179 [debug] <0.479.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 15:08:18.180 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.394.0> exit with reason normal in context child_terminated +2014-07-22 15:08:18.278 [info] <0.480.0>@basho_bench_driver_floppystore:ping_each:157 Finished pinging 'floppy@127.0.0.1' +2014-07-22 15:08:18.278 [info] <0.480.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 15:08:18.278 [warning] <0.479.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 15:08:18.278 [info] <0.480.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.480.0> +2014-07-22 15:08:18.279 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.479.0> +2014-07-22 15:08:19.279 [error] <0.479.0>@basho_bench_worker:handle_info:149 Worker <0.480.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 15:08:19.279 [error] emulator Error in process <0.480.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-22 15:08:19.279 [debug] <0.494.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 15:08:19.280 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.479.0> exit with reason normal in context child_terminated +2014-07-22 15:08:19.371 [info] <0.495.0>@basho_bench_driver_floppystore:ping_each:157 Finished pinging 'floppy@127.0.0.1' +2014-07-22 15:08:19.371 [info] <0.495.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 15:08:19.371 [warning] <0.494.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 15:08:19.371 [info] <0.495.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.495.0> +2014-07-22 15:08:19.372 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.494.0> +2014-07-22 15:08:36.703 [error] emulator Error in process <0.495.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-22 15:08:36.703 [error] <0.494.0>@basho_bench_worker:handle_info:149 Worker <0.495.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 15:08:36.703 [debug] <0.766.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 15:08:36.704 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.494.0> exit with reason normal in context child_terminated +2014-07-22 15:08:36.805 [info] <0.767.0>@basho_bench_driver_floppystore:ping_each:157 Finished pinging 'floppy@127.0.0.1' +2014-07-22 15:08:36.805 [info] <0.767.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 15:08:36.805 [warning] <0.766.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 15:08:36.805 [info] <0.767.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.767.0> +2014-07-22 15:08:36.806 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.766.0> +2014-07-22 15:08:40.847 [error] <0.766.0>@basho_bench_worker:handle_info:149 Worker <0.767.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 15:08:40.847 [error] emulator Error in process <0.767.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-22 15:08:40.848 [debug] <0.824.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 15:08:40.848 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.766.0> exit with reason normal in context child_terminated +2014-07-22 15:08:40.932 [info] <0.825.0>@basho_bench_driver_floppystore:ping_each:157 Finished pinging 'floppy@127.0.0.1' +2014-07-22 15:08:40.932 [info] <0.825.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 15:08:40.932 [warning] <0.824.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 15:08:40.932 [info] <0.825.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.825.0> +2014-07-22 15:08:40.933 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.824.0> +2014-07-22 15:08:41.028 [error] <0.255.0>@basho_bench_worker:handle_info:149 Worker <0.256.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 15:08:41.028 [error] emulator Error in process <0.256.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-22 15:08:41.029 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.255.0> exit with reason normal in context child_terminated +2014-07-22 15:08:41.158 [info] <0.829.0>@basho_bench_driver_floppystore:ping_each:157 Finished pinging 'floppy@127.0.0.1' +2014-07-22 15:08:41.158 [info] <0.829.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 15:08:41.158 [warning] <0.828.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 15:08:41.158 [info] <0.829.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.829.0> +2014-07-22 15:08:41.160 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.828.0> +2014-07-22 15:08:46.726 [error] emulator Error in process <0.825.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-22 15:08:46.726 [error] <0.824.0>@basho_bench_worker:handle_info:149 Worker <0.825.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 15:08:46.726 [debug] <0.908.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 15:08:46.727 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.824.0> exit with reason normal in context child_terminated +2014-07-22 15:08:46.848 [info] <0.909.0>@basho_bench_driver_floppystore:ping_each:157 Finished pinging 'floppy@127.0.0.1' +2014-07-22 15:08:46.848 [info] <0.909.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 15:08:46.848 [warning] <0.908.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 15:08:46.848 [info] <0.909.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.909.0> +2014-07-22 15:08:46.849 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.908.0> +2014-07-22 15:08:50.390 [error] <0.828.0>@basho_bench_worker:handle_info:149 Worker <0.829.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 15:08:50.390 [error] emulator Error in process <0.829.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-22 15:08:50.391 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.828.0> exit with reason normal in context child_terminated +2014-07-22 15:08:50.484 [info] <0.964.0>@basho_bench_driver_floppystore:ping_each:157 Finished pinging 'floppy@127.0.0.1' +2014-07-22 15:08:50.484 [info] <0.964.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 15:08:50.484 [warning] <0.963.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 15:08:50.484 [info] <0.964.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.964.0> +2014-07-22 15:08:50.484 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.963.0> +2014-07-22 15:08:57.192 [error] <0.908.0>@basho_bench_worker:handle_info:149 Worker <0.909.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 15:08:57.192 [error] emulator Error in process <0.909.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-22 15:08:57.192 [debug] <0.1065.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 15:08:57.192 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.908.0> exit with reason normal in context child_terminated +2014-07-22 15:08:57.299 [info] <0.1066.0>@basho_bench_driver_floppystore:ping_each:157 Finished pinging 'floppy@127.0.0.1' +2014-07-22 15:08:57.299 [info] <0.1066.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 15:08:57.299 [warning] <0.1065.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 15:08:57.299 [info] <0.1066.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.1066.0> +2014-07-22 15:08:57.300 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.1065.0> +2014-07-22 15:08:57.469 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. diff --git a/newtests/20140722_150754/crash.log b/newtests/20140722_150754/crash.log new file mode 100644 index 000000000..827ebd214 --- /dev/null +++ b/newtests/20140722_150754/crash.log @@ -0,0 +1,90 @@ +2014-07-22 15:08:05 =ERROR REPORT==== +Error in process <0.109.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + +2014-07-22 15:08:05 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.108.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 15:08:12 =ERROR REPORT==== +Error in process <0.96.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + +2014-07-22 15:08:12 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 15:08:18 =ERROR REPORT==== +Error in process <0.395.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + +2014-07-22 15:08:18 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.394.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 15:08:19 =ERROR REPORT==== +Error in process <0.480.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + +2014-07-22 15:08:19 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.479.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 15:08:36 =ERROR REPORT==== +Error in process <0.495.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + +2014-07-22 15:08:36 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.494.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 15:08:40 =ERROR REPORT==== +Error in process <0.767.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + +2014-07-22 15:08:40 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.766.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 15:08:41 =ERROR REPORT==== +Error in process <0.256.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + +2014-07-22 15:08:41 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.255.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 15:08:46 =ERROR REPORT==== +Error in process <0.825.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + +2014-07-22 15:08:46 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.824.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 15:08:50 =ERROR REPORT==== +Error in process <0.829.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + +2014-07-22 15:08:50 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.828.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 15:08:57 =ERROR REPORT==== +Error in process <0.909.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + +2014-07-22 15:08:57 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.908.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140722_150754/error.log b/newtests/20140722_150754/error.log new file mode 100644 index 000000000..60feea611 --- /dev/null +++ b/newtests/20140722_150754/error.log @@ -0,0 +1,50 @@ +2014-07-22 15:08:05.235 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 15:08:05.235 [error] emulator Error in process <0.109.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-22 15:08:05.235 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated +2014-07-22 15:08:12.879 [error] emulator Error in process <0.96.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-22 15:08:12.879 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 15:08:12.879 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-22 15:08:18.179 [error] <0.394.0>@basho_bench_worker:handle_info:149 Worker <0.395.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 15:08:18.179 [error] emulator Error in process <0.395.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-22 15:08:18.180 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.394.0> exit with reason normal in context child_terminated +2014-07-22 15:08:19.279 [error] <0.479.0>@basho_bench_worker:handle_info:149 Worker <0.480.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 15:08:19.279 [error] emulator Error in process <0.480.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-22 15:08:19.280 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.479.0> exit with reason normal in context child_terminated +2014-07-22 15:08:36.703 [error] emulator Error in process <0.495.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-22 15:08:36.703 [error] <0.494.0>@basho_bench_worker:handle_info:149 Worker <0.495.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 15:08:36.704 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.494.0> exit with reason normal in context child_terminated +2014-07-22 15:08:40.847 [error] <0.766.0>@basho_bench_worker:handle_info:149 Worker <0.767.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 15:08:40.847 [error] emulator Error in process <0.767.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-22 15:08:40.848 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.766.0> exit with reason normal in context child_terminated +2014-07-22 15:08:41.028 [error] <0.255.0>@basho_bench_worker:handle_info:149 Worker <0.256.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 15:08:41.028 [error] emulator Error in process <0.256.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-22 15:08:41.029 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.255.0> exit with reason normal in context child_terminated +2014-07-22 15:08:46.726 [error] emulator Error in process <0.825.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-22 15:08:46.726 [error] <0.824.0>@basho_bench_worker:handle_info:149 Worker <0.825.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 15:08:46.727 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.824.0> exit with reason normal in context child_terminated +2014-07-22 15:08:50.390 [error] <0.828.0>@basho_bench_worker:handle_info:149 Worker <0.829.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 15:08:50.390 [error] emulator Error in process <0.829.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-22 15:08:50.391 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.828.0> exit with reason normal in context child_terminated +2014-07-22 15:08:57.192 [error] <0.908.0>@basho_bench_worker:handle_info:149 Worker <0.909.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 15:08:57.192 [error] emulator Error in process <0.909.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-22 15:08:57.192 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.908.0> exit with reason normal in context child_terminated diff --git a/newtests/20140722_150754/errors.csv b/newtests/20140722_150754/errors.csv new file mode 100644 index 000000000..29210b502 --- /dev/null +++ b/newtests/20140722_150754/errors.csv @@ -0,0 +1 @@ +"error","count" diff --git a/newtests/20140722_150754/floppstore.config b/newtests/20140722_150754/floppstore.config new file mode 100644 index 000000000..a222d5344 --- /dev/null +++ b/newtests/20140722_150754/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {uniform_int, 5000000}}. + +{value_generator, {fixed_bin, 10}}. + +{operations, [{static_tx, 1}, {interactive_tx,1}]}. %%, {append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140722_150754/interactive-tx_latencies.csv b/newtests/20140722_150754/interactive-tx_latencies.csv new file mode 100644 index 000000000..f20267db7 --- /dev/null +++ b/newtests/20140722_150754/interactive-tx_latencies.csv @@ -0,0 +1,8 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +10.000388, 10.000388, 79, 28406, 121103.8, 121228, 211131, 276703, 289664, 289664, 0 +20.001388, 10.001, 81, 33095, 107827.8, 105630, 184800, 233258, 249293, 249293, 0 +30.001475, 10.000087, 77, 23282, 109694.0, 100955, 201353, 255262, 263457, 263457, 0 +40.001948, 10.000473, 66, 32141, 133116.6, 129512, 233745, 242255, 303170, 303170, 0 +50.001703, 9.999755, 63, 39560, 132329.2, 126696, 215078, 275070, 301759, 301759, 0 +60.001367, 9.999664, 77, 25436, 120504.4, 118155, 195675, 244182, 248501, 248501, 0 +61.007436, 1.006069, 6, 31723, 124188.2, 120533, 195675, 244182, 248501, 248501, 0 diff --git a/newtests/20140722_150754/log.sasl.txt b/newtests/20140722_150754/log.sasl.txt new file mode 100644 index 000000000..c016eb3f9 --- /dev/null +++ b/newtests/20140722_150754/log.sasl.txt @@ -0,0 +1,433 @@ + +=PROGRESS REPORT==== 22-Jul-2014::15:07:56 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:07:56 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:07:56 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::15:07:56 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:07:56 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::15:07:56 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:07:56 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::15:07:56 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::15:07:56 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:07:56 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:07:56 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::15:07:56 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:07:56 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:07:56 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:07:56 === + supervisor: {local,net_sup} + started: [{pid,<0.100.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:07:56 === + supervisor: {local,kernel_sup} + started: [{pid,<0.97.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::15:07:56 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.105.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 22-Jul-2014::15:07:56 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.104.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:07:56 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:07:56 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.108.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:07:56 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.110.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:07:56 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 22-Jul-2014::15:08:05 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.108.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::15:08:05 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.255.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::15:08:12 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::15:08:12 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.394.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::15:08:18 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.394.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::15:08:18 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.479.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::15:08:19 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.479.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::15:08:19 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.494.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::15:08:36 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.494.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::15:08:36 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.766.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::15:08:40 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.766.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::15:08:40 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.824.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::15:08:41 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.255.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::15:08:41 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.828.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::15:08:46 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.824.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::15:08:46 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.908.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::15:08:50 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.828.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::15:08:50 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.963.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::15:08:57 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.908.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::15:08:57 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.1065.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] diff --git a/newtests/20140722_150754/static-tx_latencies.csv b/newtests/20140722_150754/static-tx_latencies.csv new file mode 100644 index 000000000..b52a548d4 --- /dev/null +++ b/newtests/20140722_150754/static-tx_latencies.csv @@ -0,0 +1,8 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +10.000388, 10.000388, 85, 24102, 108276.9, 96439, 219283, 258545, 277150, 277150, 0 +20.001388, 10.001, 95, 24404, 106915.5, 107547, 185132, 211098, 218593, 218593, 0 +30.001475, 10.000087, 76, 26826, 118061.0, 115553, 211514, 296169, 299454, 299454, 0 +40.001948, 10.000473, 80, 40478, 132567.1, 129943, 219552, 296169, 310095, 310095, 0 +50.001703, 9.999755, 68, 21716, 123602.2, 116393, 211561, 297299, 325612, 325612, 0 +60.001367, 9.999664, 72, 33691, 124127.1, 115324, 220324, 255051, 286982, 286982, 0 +61.007436, 1.006069, 2, 33691, 124754.1, 115324, 220324, 255051, 286982, 286982, 0 diff --git a/newtests/20140722_150754/summary.csv b/newtests/20140722_150754/summary.csv new file mode 100644 index 000000000..81db11a76 --- /dev/null +++ b/newtests/20140722_150754/summary.csv @@ -0,0 +1,8 @@ +elapsed, window, total, successful, failed +10.000388, 10.000388, 164, 164, 0 +20.001388, 10.001, 176, 176, 0 +30.001475, 10.000087, 153, 153, 0 +40.001948, 10.000473, 146, 146, 0 +50.001703, 9.999755, 131, 131, 0 +60.001367, 9.999664, 149, 149, 0 +61.007436, 1.006069, 8, 8, 0 diff --git a/newtests/20140722_152913/console.log b/newtests/20140722_152913/console.log new file mode 100644 index 000000000..0af4ff8b1 --- /dev/null +++ b/newtests/20140722_152913/console.log @@ -0,0 +1,138 @@ +2014-07-22 15:29:13.862 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_152913/error.log"} into lager_event +2014-07-22 15:29:13.862 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_152913/console.log"} into lager_event +2014-07-22 15:29:13.862 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-22 15:29:13.899 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-22 15:29:13.899 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-22 15:29:13.900 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-22 15:29:13.900 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-22 15:29:14.336 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-22 15:29:14.763 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-22 15:29:14.765 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_152913/console.log to debug +2014-07-22 15:29:14.777 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB +2014-07-22 15:29:14.859 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-22 15:29:14.859 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-22 15:29:14.860 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-22 15:29:14.874 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-22 15:29:14.874 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-22 15:29:14.965 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-22 15:29:14.965 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-22 15:29:14.993 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-22 15:29:14.997 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-22 15:29:15.002 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-22 15:29:15.002 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-22 15:29:15.042 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-22 15:29:15.047 [debug] <0.94.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 15:29:15.188 [debug] <0.97.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.98.0> +2014-07-22 15:29:15.195 [debug] <0.97.0> Supervisor net_sup started auth:start_link() at pid <0.99.0> +2014-07-22 15:29:15.207 [info] <0.96.0>@basho_bench_driver_floppystore:new:58 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-22 15:29:15.208 [debug] <0.97.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.100.0> +2014-07-22 15:29:15.208 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.97.0> +2014-07-22 15:29:15.222 [debug] <0.104.0> Supervisor inet_gethost_native_sup started undefined at pid <0.105.0> +2014-07-22 15:29:15.223 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.104.0> +2014-07-22 15:29:15.244 [info] <0.96.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' +2014-07-22 15:29:15.244 [info] <0.96.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 15:29:15.244 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-22 15:29:15.326 [info] <0.109.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' +2014-07-22 15:29:15.326 [info] <0.109.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 15:29:15.327 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.108.0> +2014-07-22 15:29:15.327 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.110.0> +2014-07-22 15:29:15.333 [info] <0.109.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.109.0> +2014-07-22 15:29:15.333 [info] <0.96.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.96.0> +2014-07-22 15:29:15.333 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-22 15:29:24.421 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 15:29:24.421 [error] emulator Error in process <0.109.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-22 15:29:24.422 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated +2014-07-22 15:29:24.549 [info] <0.273.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' +2014-07-22 15:29:24.549 [info] <0.273.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 15:29:24.549 [warning] <0.271.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 15:29:24.549 [info] <0.273.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.273.0> +2014-07-22 15:29:24.549 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.271.0> +2014-07-22 15:29:27.747 [error] emulator Error in process <0.273.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-22 15:29:27.747 [error] <0.271.0>@basho_bench_worker:handle_info:149 Worker <0.273.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 15:29:27.748 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.271.0> exit with reason normal in context child_terminated +2014-07-22 15:29:27.841 [info] <0.326.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' +2014-07-22 15:29:27.841 [info] <0.326.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 15:29:27.841 [warning] <0.324.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 15:29:27.841 [info] <0.326.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.326.0> +2014-07-22 15:29:27.841 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.324.0> +2014-07-22 15:29:32.296 [error] <0.324.0>@basho_bench_worker:handle_info:149 Worker <0.326.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 15:29:32.296 [error] emulator Error in process <0.326.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-22 15:29:32.296 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.324.0> exit with reason normal in context child_terminated +2014-07-22 15:29:32.386 [info] <0.400.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' +2014-07-22 15:29:32.386 [info] <0.400.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 15:29:32.386 [warning] <0.399.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 15:29:32.386 [info] <0.400.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.400.0> +2014-07-22 15:29:32.387 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.399.0> +2014-07-22 15:29:40.924 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 15:29:40.924 [debug] <0.545.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 15:29:40.924 [error] emulator Error in process <0.96.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-22 15:29:40.925 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-22 15:29:41.029 [info] <0.546.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' +2014-07-22 15:29:41.030 [info] <0.546.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 15:29:41.030 [warning] <0.545.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 15:29:41.030 [info] <0.546.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.546.0> +2014-07-22 15:29:41.030 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.545.0> +2014-07-22 15:29:47.605 [error] <0.545.0>@basho_bench_worker:handle_info:149 Worker <0.546.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 15:29:47.605 [error] emulator Error in process <0.546.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-22 15:29:47.605 [debug] <0.645.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 15:29:47.606 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.545.0> exit with reason normal in context child_terminated +2014-07-22 15:29:47.703 [info] <0.646.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' +2014-07-22 15:29:47.703 [info] <0.646.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 15:29:47.703 [warning] <0.645.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 15:29:47.704 [info] <0.646.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.646.0> +2014-07-22 15:29:47.704 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.645.0> +2014-07-22 15:29:50.475 [error] emulator Error in process <0.646.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-22 15:29:50.475 [error] <0.645.0>@basho_bench_worker:handle_info:149 Worker <0.646.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 15:29:50.475 [debug] <0.687.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 15:29:50.475 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.645.0> exit with reason normal in context child_terminated +2014-07-22 15:29:50.588 [info] <0.688.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' +2014-07-22 15:29:50.588 [info] <0.688.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 15:29:50.588 [warning] <0.687.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 15:29:50.588 [info] <0.688.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.688.0> +2014-07-22 15:29:50.588 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.687.0> +2014-07-22 15:29:54.316 [error] <0.399.0>@basho_bench_worker:handle_info:149 Worker <0.400.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 15:29:54.316 [error] emulator Error in process <0.400.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-22 15:29:54.317 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.399.0> exit with reason normal in context child_terminated +2014-07-22 15:29:54.418 [info] <0.746.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' +2014-07-22 15:29:54.418 [info] <0.746.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 15:29:54.418 [warning] <0.745.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 15:29:54.418 [info] <0.746.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.746.0> +2014-07-22 15:29:54.418 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.745.0> +2014-07-22 15:30:10.069 [error] <0.745.0>@basho_bench_worker:handle_info:149 Worker <0.746.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 15:30:10.069 [error] emulator Error in process <0.746.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-22 15:30:10.069 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.745.0> exit with reason normal in context child_terminated +2014-07-22 15:30:10.157 [info] <0.961.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' +2014-07-22 15:30:10.157 [info] <0.961.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-22 15:30:10.157 [warning] <0.960.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 15:30:10.157 [info] <0.961.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.961.0> +2014-07-22 15:30:10.158 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.960.0> +2014-07-22 15:30:12.906 [error] <0.687.0>@basho_bench_worker:handle_info:149 Worker <0.688.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 15:30:12.906 [error] emulator Error in process <0.688.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-22 15:30:12.906 [debug] <0.999.0>@basho_bench_valgen:init_source:85 random source +2014-07-22 15:30:12.907 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.687.0> exit with reason normal in context child_terminated +2014-07-22 15:30:13.017 [info] <0.1000.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' +2014-07-22 15:30:13.017 [info] <0.1000.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-22 15:30:13.017 [warning] <0.999.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-22 15:30:13.017 [info] <0.1000.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.1000.0> +2014-07-22 15:30:13.018 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.999.0> +2014-07-22 15:30:16.335 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. diff --git a/newtests/20140722_152913/crash.log b/newtests/20140722_152913/crash.log new file mode 100644 index 000000000..8c14e5507 --- /dev/null +++ b/newtests/20140722_152913/crash.log @@ -0,0 +1,81 @@ +2014-07-22 15:29:24 =ERROR REPORT==== +Error in process <0.109.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + +2014-07-22 15:29:24 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.108.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 15:29:27 =ERROR REPORT==== +Error in process <0.273.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + +2014-07-22 15:29:27 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.271.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 15:29:32 =ERROR REPORT==== +Error in process <0.326.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + +2014-07-22 15:29:32 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.324.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 15:29:40 =ERROR REPORT==== +Error in process <0.96.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + +2014-07-22 15:29:40 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 15:29:47 =ERROR REPORT==== +Error in process <0.546.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + +2014-07-22 15:29:47 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.545.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 15:29:50 =ERROR REPORT==== +Error in process <0.646.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + +2014-07-22 15:29:50 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.645.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 15:29:54 =ERROR REPORT==== +Error in process <0.400.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + +2014-07-22 15:29:54 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.399.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 15:30:10 =ERROR REPORT==== +Error in process <0.746.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + +2014-07-22 15:30:10 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.745.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-22 15:30:12 =ERROR REPORT==== +Error in process <0.688.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + +2014-07-22 15:30:12 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.687.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140722_152913/error.log b/newtests/20140722_152913/error.log new file mode 100644 index 000000000..846c4a834 --- /dev/null +++ b/newtests/20140722_152913/error.log @@ -0,0 +1,45 @@ +2014-07-22 15:29:24.421 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 15:29:24.421 [error] emulator Error in process <0.109.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-22 15:29:24.422 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated +2014-07-22 15:29:27.747 [error] emulator Error in process <0.273.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-22 15:29:27.747 [error] <0.271.0>@basho_bench_worker:handle_info:149 Worker <0.273.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 15:29:27.748 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.271.0> exit with reason normal in context child_terminated +2014-07-22 15:29:32.296 [error] <0.324.0>@basho_bench_worker:handle_info:149 Worker <0.326.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 15:29:32.296 [error] emulator Error in process <0.326.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-22 15:29:32.296 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.324.0> exit with reason normal in context child_terminated +2014-07-22 15:29:40.924 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 15:29:40.924 [error] emulator Error in process <0.96.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-22 15:29:40.925 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-22 15:29:47.605 [error] <0.545.0>@basho_bench_worker:handle_info:149 Worker <0.546.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 15:29:47.605 [error] emulator Error in process <0.546.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-22 15:29:47.606 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.545.0> exit with reason normal in context child_terminated +2014-07-22 15:29:50.475 [error] emulator Error in process <0.646.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-22 15:29:50.475 [error] <0.645.0>@basho_bench_worker:handle_info:149 Worker <0.646.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 15:29:50.475 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.645.0> exit with reason normal in context child_terminated +2014-07-22 15:29:54.316 [error] <0.399.0>@basho_bench_worker:handle_info:149 Worker <0.400.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 15:29:54.316 [error] emulator Error in process <0.400.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-22 15:29:54.317 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.399.0> exit with reason normal in context child_terminated +2014-07-22 15:30:10.069 [error] <0.745.0>@basho_bench_worker:handle_info:149 Worker <0.746.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 15:30:10.069 [error] emulator Error in process <0.746.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-22 15:30:10.069 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.745.0> exit with reason normal in context child_terminated +2014-07-22 15:30:12.906 [error] <0.687.0>@basho_bench_worker:handle_info:149 Worker <0.688.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-22 15:30:12.906 [error] emulator Error in process <0.688.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-22 15:30:12.907 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.687.0> exit with reason normal in context child_terminated diff --git a/newtests/20140722_152913/errors.csv b/newtests/20140722_152913/errors.csv new file mode 100644 index 000000000..29210b502 --- /dev/null +++ b/newtests/20140722_152913/errors.csv @@ -0,0 +1 @@ +"error","count" diff --git a/newtests/20140722_152913/floppstore.config b/newtests/20140722_152913/floppstore.config new file mode 100644 index 000000000..a222d5344 --- /dev/null +++ b/newtests/20140722_152913/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 2}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {uniform_int, 5000000}}. + +{value_generator, {fixed_bin, 10}}. + +{operations, [{static_tx, 1}, {interactive_tx,1}]}. %%, {append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140722_152913/interactive-tx_latencies.csv b/newtests/20140722_152913/interactive-tx_latencies.csv new file mode 100644 index 000000000..83897cc9e --- /dev/null +++ b/newtests/20140722_152913/interactive-tx_latencies.csv @@ -0,0 +1,8 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +10.000191, 10.000191, 78, 25935, 109257.7, 94934, 203861, 256323, 287138, 287138, 0 +20.001236, 10.001045, 92, 24944, 113392.2, 100136, 210687, 285790, 297523, 297523, 0 +30.001166, 9.99993, 77, 25071, 121219.2, 116734, 200946, 259082, 261204, 261204, 0 +40.001191, 10.000025, 70, 25790, 118704.6, 113481, 218857, 245472, 269644, 269644, 0 +50.00176, 10.000569, 63, 44273, 143285.1, 136056, 225817, 305661, 342275, 342275, 0 +60.001215, 9.999455, 73, 24471, 137566.4, 132120, 217907, 275507, 294800, 294800, 0 +61.007872, 1.006657, 5, 24471, 136632.1, 132120, 217907, 275507, 294800, 294800, 0 diff --git a/newtests/20140722_152913/log.sasl.txt b/newtests/20140722_152913/log.sasl.txt new file mode 100644 index 000000000..d7589e388 --- /dev/null +++ b/newtests/20140722_152913/log.sasl.txt @@ -0,0 +1,408 @@ + +=PROGRESS REPORT==== 22-Jul-2014::15:29:14 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:29:14 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:29:14 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::15:29:14 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:29:14 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::15:29:14 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:29:14 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::15:29:14 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::15:29:14 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:29:15 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:29:15 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 22-Jul-2014::15:29:15 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:29:15 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:29:15 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:29:15 === + supervisor: {local,net_sup} + started: [{pid,<0.100.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:29:15 === + supervisor: {local,kernel_sup} + started: [{pid,<0.97.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 22-Jul-2014::15:29:15 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.105.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 22-Jul-2014::15:29:15 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.104.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:29:15 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:29:15 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.108.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:29:15 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.110.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 22-Jul-2014::15:29:15 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 22-Jul-2014::15:29:24 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.108.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::15:29:24 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.271.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::15:29:27 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.271.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::15:29:27 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.324.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::15:29:32 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.324.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::15:29:32 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.399.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::15:29:40 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::15:29:41 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.545.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::15:29:47 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.545.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::15:29:47 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.645.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::15:29:50 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.645.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::15:29:50 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.687.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::15:29:54 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.399.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::15:29:54 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.745.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::15:30:10 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.745.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::15:30:10 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.960.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 22-Jul-2014::15:30:12 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.687.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 22-Jul-2014::15:30:13 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.999.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] diff --git a/newtests/20140722_152913/static-tx_latencies.csv b/newtests/20140722_152913/static-tx_latencies.csv new file mode 100644 index 000000000..82d07d6f5 --- /dev/null +++ b/newtests/20140722_152913/static-tx_latencies.csv @@ -0,0 +1,8 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +10.000191, 10.000191, 95, 33810, 107408.5, 97317, 216536, 259708, 259858, 259858, 0 +20.001236, 10.001045, 67, 26304, 111395.7, 107213, 193721, 233045, 240982, 240982, 0 +30.001166, 9.99993, 79, 20325, 119785.4, 109797, 225873, 277100, 280497, 280497, 0 +40.001191, 10.000025, 70, 34778, 118721.4, 108833, 207600, 271334, 293954, 293954, 0 +50.00176, 10.000569, 77, 42160, 141539.6, 136261, 234399, 303021, 323472, 323472, 0 +60.001215, 9.999455, 54, 35513, 147641.6, 139703, 245975, 296761, 305124, 305124, 0 +61.007872, 1.006657, 7, 35513, 149499.3, 141014, 245975, 296761, 305124, 305124, 0 diff --git a/newtests/20140722_152913/summary.csv b/newtests/20140722_152913/summary.csv new file mode 100644 index 000000000..2d7a2bcd4 --- /dev/null +++ b/newtests/20140722_152913/summary.csv @@ -0,0 +1,8 @@ +elapsed, window, total, successful, failed +10.000191, 10.000191, 173, 173, 0 +20.001236, 10.001045, 159, 159, 0 +30.001166, 9.99993, 156, 156, 0 +40.001191, 10.000025, 140, 140, 0 +50.00176, 10.000569, 140, 140, 0 +60.001215, 9.999455, 127, 127, 0 +61.007872, 1.006657, 12, 12, 0 diff --git a/newtests/20140723_123916/console.log b/newtests/20140723_123916/console.log new file mode 100644 index 000000000..b36778d2b --- /dev/null +++ b/newtests/20140723_123916/console.log @@ -0,0 +1,113 @@ +2014-07-23 12:39:17.020 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_123916/error.log"} into lager_event +2014-07-23 12:39:17.020 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_123916/console.log"} into lager_event +2014-07-23 12:39:17.020 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-23 12:39:17.054 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-23 12:39:17.054 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-23 12:39:17.054 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-23 12:39:17.054 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-23 12:39:17.496 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-23 12:39:17.851 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-23 12:39:17.852 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_123916/console.log to debug +2014-07-23 12:39:17.865 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB +2014-07-23 12:39:17.955 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-23 12:39:17.956 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-23 12:39:17.956 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-23 12:39:17.971 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-23 12:39:17.971 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-23 12:39:18.050 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-23 12:39:18.050 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-23 12:39:18.076 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-23 12:39:18.080 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-23 12:39:18.084 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-23 12:39:18.084 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-23 12:39:18.119 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-23 12:39:18.124 [debug] <0.94.0>@basho_bench_valgen:init_source:85 random source +2014-07-23 12:39:18.248 [debug] <0.97.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.98.0> +2014-07-23 12:39:18.258 [debug] <0.97.0> Supervisor net_sup started auth:start_link() at pid <0.99.0> +2014-07-23 12:39:18.272 [info] <0.96.0>@basho_bench_driver_floppystore:new:58 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-23 12:39:18.273 [debug] <0.97.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.100.0> +2014-07-23 12:39:18.273 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.97.0> +2014-07-23 12:39:18.288 [debug] <0.104.0> Supervisor inet_gethost_native_sup started undefined at pid <0.105.0> +2014-07-23 12:39:18.288 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.104.0> +2014-07-23 12:39:18.308 [info] <0.96.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' +2014-07-23 12:39:18.308 [info] <0.96.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-23 12:39:18.360 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-23 12:39:18.387 [info] <0.109.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' +2014-07-23 12:39:18.387 [info] <0.109.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-23 12:39:18.435 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.108.0> +2014-07-23 12:39:18.459 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' +2014-07-23 12:39:18.459 [info] <0.111.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 3 +2014-07-23 12:39:18.514 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_3, 3) at pid <0.110.0> +2014-07-23 12:39:18.537 [info] <0.113.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' +2014-07-23 12:39:18.537 [info] <0.113.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 4 +2014-07-23 12:39:18.585 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_4, 4) at pid <0.112.0> +2014-07-23 12:39:18.611 [info] <0.115.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' +2014-07-23 12:39:18.611 [info] <0.115.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 5 +2014-07-23 12:39:18.612 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_5, 5) at pid <0.114.0> +2014-07-23 12:39:18.613 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.116.0> +2014-07-23 12:39:18.618 [info] <0.113.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.113.0> +2014-07-23 12:39:18.618 [info] <0.115.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.115.0> +2014-07-23 12:39:18.618 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> +2014-07-23 12:39:18.618 [info] <0.109.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.109.0> +2014-07-23 12:39:18.618 [info] <0.96.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.96.0> +2014-07-23 12:39:18.619 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-23 12:39:19.619 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 12:39:19.620 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-23 12:39:19.621 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.110.0> exit with reason normal in context child_terminated +2014-07-23 12:39:19.732 [info] <0.144.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' +2014-07-23 12:39:19.732 [info] <0.144.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 3 +2014-07-23 12:39:19.732 [warning] <0.142.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-23 12:39:19.732 [info] <0.144.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.144.0> +2014-07-23 12:39:19.733 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_3, 3) at pid <0.142.0> +2014-07-23 12:39:19.853 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 12:39:19.853 [error] emulator Error in process <0.115.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-23 12:39:19.854 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.114.0> exit with reason normal in context child_terminated +2014-07-23 12:39:19.973 [info] <0.151.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' +2014-07-23 12:39:19.973 [info] <0.151.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 5 +2014-07-23 12:39:19.973 [warning] <0.150.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-23 12:39:19.974 [info] <0.151.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.151.0> +2014-07-23 12:39:19.974 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_5, 5) at pid <0.150.0> +2014-07-23 12:39:20.215 [error] emulator Error in process <0.109.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-23 12:39:20.215 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 12:39:20.216 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated +2014-07-23 12:39:20.323 [info] <0.166.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' +2014-07-23 12:39:20.323 [info] <0.166.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-23 12:39:20.323 [warning] <0.165.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-23 12:39:20.323 [info] <0.166.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.166.0> +2014-07-23 12:39:20.324 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.165.0> +2014-07-23 12:39:21.151 [error] <0.142.0>@basho_bench_worker:handle_info:149 Worker <0.144.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 12:39:21.151 [error] emulator Error in process <0.144.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-23 12:39:21.152 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.142.0> exit with reason normal in context child_terminated +2014-07-23 12:39:21.272 [info] <0.193.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' +2014-07-23 12:39:21.272 [info] <0.193.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 3 +2014-07-23 12:39:21.272 [warning] <0.192.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-23 12:39:21.273 [info] <0.193.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.193.0> +2014-07-23 12:39:21.273 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_3, 3) at pid <0.192.0> +2014-07-23 12:39:22.288 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 12:39:22.288 [error] emulator Error in process <0.96.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-23 12:39:22.288 [debug] <0.220.0>@basho_bench_valgen:init_source:85 random source +2014-07-23 12:39:22.289 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-23 12:39:22.410 [info] <0.223.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' +2014-07-23 12:39:22.410 [info] <0.223.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-23 12:39:22.410 [warning] <0.220.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-23 12:39:22.410 [info] <0.223.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.223.0> +2014-07-23 12:39:22.411 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.220.0> +2014-07-23 12:39:22.435 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 12:39:22.435 [error] emulator Error in process <0.113.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-23 12:39:22.436 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.112.0> exit with reason normal in context child_terminated +2014-07-23 12:39:22.436 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.112.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-23 12:39:22.450 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. diff --git a/newtests/20140723_123916/crash.log b/newtests/20140723_123916/crash.log new file mode 100644 index 000000000..ba214d680 --- /dev/null +++ b/newtests/20140723_123916/crash.log @@ -0,0 +1,60 @@ +2014-07-23 12:39:19 =ERROR REPORT==== +Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + +2014-07-23 12:39:19 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>},{name,basho_bench_worker_3},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_3,3]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 12:39:19 =ERROR REPORT==== +Error in process <0.115.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + +2014-07-23 12:39:19 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.114.0>},{name,basho_bench_worker_5},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_5,5]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 12:39:20 =ERROR REPORT==== +Error in process <0.109.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + +2014-07-23 12:39:20 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.108.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 12:39:21 =ERROR REPORT==== +Error in process <0.144.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + +2014-07-23 12:39:21 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.142.0>},{name,basho_bench_worker_3},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_3,3]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 12:39:22 =ERROR REPORT==== +Error in process <0.96.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + +2014-07-23 12:39:22 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 12:39:22 =ERROR REPORT==== +Error in process <0.113.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + +2014-07-23 12:39:22 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.112.0>},{name,basho_bench_worker_4},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_4,4]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 12:39:22 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.112.0>},{name,basho_bench_worker_4},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_4,4]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140723_123916/error.log b/newtests/20140723_123916/error.log new file mode 100644 index 000000000..fe86f8f21 --- /dev/null +++ b/newtests/20140723_123916/error.log @@ -0,0 +1,31 @@ +2014-07-23 12:39:19.619 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 12:39:19.620 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-23 12:39:19.621 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.110.0> exit with reason normal in context child_terminated +2014-07-23 12:39:19.853 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 12:39:19.853 [error] emulator Error in process <0.115.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-23 12:39:19.854 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.114.0> exit with reason normal in context child_terminated +2014-07-23 12:39:20.215 [error] emulator Error in process <0.109.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-23 12:39:20.215 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 12:39:20.216 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated +2014-07-23 12:39:21.151 [error] <0.142.0>@basho_bench_worker:handle_info:149 Worker <0.144.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 12:39:21.151 [error] emulator Error in process <0.144.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-23 12:39:21.152 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.142.0> exit with reason normal in context child_terminated +2014-07-23 12:39:22.288 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 12:39:22.288 [error] emulator Error in process <0.96.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-23 12:39:22.289 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-23 12:39:22.435 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 12:39:22.435 [error] emulator Error in process <0.113.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-23 12:39:22.436 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.112.0> exit with reason normal in context child_terminated +2014-07-23 12:39:22.436 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.112.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140723_123916/errors.csv b/newtests/20140723_123916/errors.csv new file mode 100644 index 000000000..29210b502 --- /dev/null +++ b/newtests/20140723_123916/errors.csv @@ -0,0 +1 @@ +"error","count" diff --git a/newtests/20140723_123916/floppstore.config b/newtests/20140723_123916/floppstore.config new file mode 100644 index 000000000..b7b52339a --- /dev/null +++ b/newtests/20140723_123916/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 5}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {uniform_int, 5000000}}. + +{value_generator, {fixed_bin, 10}}. + +{operations, [{static_tx, 1}, {interactive_tx,1}]}. %%, {append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140723_123916/interactive-tx_latencies.csv b/newtests/20140723_123916/interactive-tx_latencies.csv new file mode 100644 index 000000000..87ed50cfb --- /dev/null +++ b/newtests/20140723_123916/interactive-tx_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +3.823299, 3.823299, 51, 39024, 143919.7, 139765, 250156, 286148, 288660, 288660, 0 diff --git a/newtests/20140723_123916/log.sasl.txt b/newtests/20140723_123916/log.sasl.txt new file mode 100644 index 000000000..946c4c2e8 --- /dev/null +++ b/newtests/20140723_123916/log.sasl.txt @@ -0,0 +1,369 @@ + +=PROGRESS REPORT==== 23-Jul-2014::12:39:17 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::12:39:17 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::12:39:17 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 23-Jul-2014::12:39:17 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::12:39:17 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 23-Jul-2014::12:39:18 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::12:39:18 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 23-Jul-2014::12:39:18 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 23-Jul-2014::12:39:18 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::12:39:18 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::12:39:18 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 23-Jul-2014::12:39:18 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::12:39:18 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::12:39:18 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::12:39:18 === + supervisor: {local,net_sup} + started: [{pid,<0.100.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::12:39:18 === + supervisor: {local,kernel_sup} + started: [{pid,<0.97.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 23-Jul-2014::12:39:18 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.105.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 23-Jul-2014::12:39:18 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.104.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::12:39:18 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::12:39:18 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.108.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::12:39:18 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.110.0>}, + {name,basho_bench_worker_3}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_3,3]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::12:39:18 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.112.0>}, + {name,basho_bench_worker_4}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_4,4]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::12:39:18 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.114.0>}, + {name,basho_bench_worker_5}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_5,5]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::12:39:18 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.116.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::12:39:18 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 23-Jul-2014::12:39:19 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>}, + {name,basho_bench_worker_3}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_3,3]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 23-Jul-2014::12:39:19 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.142.0>}, + {name,basho_bench_worker_3}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_3,3]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 23-Jul-2014::12:39:19 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.114.0>}, + {name,basho_bench_worker_5}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_5,5]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 23-Jul-2014::12:39:19 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.150.0>}, + {name,basho_bench_worker_5}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_5,5]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 23-Jul-2014::12:39:20 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.108.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 23-Jul-2014::12:39:20 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.165.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 23-Jul-2014::12:39:21 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.142.0>}, + {name,basho_bench_worker_3}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_3,3]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 23-Jul-2014::12:39:21 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.192.0>}, + {name,basho_bench_worker_3}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_3,3]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 23-Jul-2014::12:39:22 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 23-Jul-2014::12:39:22 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.220.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 23-Jul-2014::12:39:22 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.112.0>}, + {name,basho_bench_worker_4}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_4,4]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 23-Jul-2014::12:39:22 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.112.0>}, + {name,basho_bench_worker_4}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_4,4]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140723_123916/static-tx_latencies.csv b/newtests/20140723_123916/static-tx_latencies.csv new file mode 100644 index 000000000..209f28038 --- /dev/null +++ b/newtests/20140723_123916/static-tx_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +3.823299, 3.823299, 38, 32337, 126719.3, 112094, 258120, 338392, 338392, 338392, 0 diff --git a/newtests/20140723_123916/summary.csv b/newtests/20140723_123916/summary.csv new file mode 100644 index 000000000..8c2377f21 --- /dev/null +++ b/newtests/20140723_123916/summary.csv @@ -0,0 +1,2 @@ +elapsed, window, total, successful, failed +3.823299, 3.823299, 89, 89, 0 diff --git a/newtests/20140723_123954/console.log b/newtests/20140723_123954/console.log new file mode 100644 index 000000000..35a1982e1 --- /dev/null +++ b/newtests/20140723_123954/console.log @@ -0,0 +1,121 @@ +2014-07-23 12:39:54.929 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_123954/error.log"} into lager_event +2014-07-23 12:39:54.929 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_123954/console.log"} into lager_event +2014-07-23 12:39:54.929 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-23 12:39:54.965 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-23 12:39:54.965 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-23 12:39:54.965 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-23 12:39:54.965 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-23 12:39:55.404 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-23 12:39:55.752 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-23 12:39:55.754 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_123954/console.log to debug +2014-07-23 12:39:55.766 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB +2014-07-23 12:39:55.845 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-23 12:39:55.845 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-23 12:39:55.846 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-23 12:39:55.864 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-23 12:39:55.864 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-23 12:39:55.952 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-23 12:39:55.952 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-23 12:39:55.979 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-23 12:39:55.985 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-23 12:39:55.991 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-23 12:39:55.991 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-23 12:39:56.026 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-23 12:39:56.032 [debug] <0.94.0>@basho_bench_valgen:init_source:85 random source +2014-07-23 12:39:56.165 [debug] <0.97.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.98.0> +2014-07-23 12:39:56.173 [debug] <0.97.0> Supervisor net_sup started auth:start_link() at pid <0.99.0> +2014-07-23 12:39:56.186 [info] <0.96.0>@basho_bench_driver_floppystore:new:58 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-23 12:39:56.186 [debug] <0.97.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.100.0> +2014-07-23 12:39:56.187 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.97.0> +2014-07-23 12:39:56.201 [debug] <0.104.0> Supervisor inet_gethost_native_sup started undefined at pid <0.105.0> +2014-07-23 12:39:56.201 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.104.0> +2014-07-23 12:39:56.221 [info] <0.96.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' +2014-07-23 12:39:56.221 [info] <0.96.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-23 12:39:56.222 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-23 12:39:56.303 [info] <0.109.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' +2014-07-23 12:39:56.303 [info] <0.109.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-23 12:39:56.303 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.108.0> +2014-07-23 12:39:56.375 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' +2014-07-23 12:39:56.375 [info] <0.111.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 3 +2014-07-23 12:39:56.376 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_3, 3) at pid <0.110.0> +2014-07-23 12:39:56.452 [info] <0.113.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' +2014-07-23 12:39:56.452 [info] <0.113.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 4 +2014-07-23 12:39:56.452 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_4, 4) at pid <0.112.0> +2014-07-23 12:39:56.528 [info] <0.115.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' +2014-07-23 12:39:56.528 [info] <0.115.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 5 +2014-07-23 12:39:56.528 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_5, 5) at pid <0.114.0> +2014-07-23 12:39:56.529 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.116.0> +2014-07-23 12:39:56.535 [info] <0.115.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.115.0> +2014-07-23 12:39:56.535 [info] <0.113.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.113.0> +2014-07-23 12:39:56.535 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> +2014-07-23 12:39:56.535 [info] <0.109.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.109.0> +2014-07-23 12:39:56.535 [info] <0.96.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.96.0> +2014-07-23 12:39:56.535 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-23 12:39:59.193 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 12:39:59.193 [error] emulator Error in process <0.109.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-23 12:39:59.194 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated +2014-07-23 12:39:59.326 [info] <0.178.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' +2014-07-23 12:39:59.326 [info] <0.178.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-23 12:39:59.327 [warning] <0.177.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-23 12:39:59.327 [info] <0.178.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.178.0> +2014-07-23 12:39:59.327 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.177.0> +2014-07-23 12:40:06.188 [error] <0.177.0>@basho_bench_worker:handle_info:149 Worker <0.178.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 12:40:06.188 [error] emulator Error in process <0.178.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-23 12:40:06.188 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.177.0> exit with reason normal in context child_terminated +2014-07-23 12:40:06.291 [info] <0.369.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' +2014-07-23 12:40:06.292 [info] <0.369.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-23 12:40:06.292 [warning] <0.368.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-23 12:40:06.292 [info] <0.369.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.369.0> +2014-07-23 12:40:06.292 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.368.0> +2014-07-23 12:40:07.533 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 12:40:07.533 [error] emulator Error in process <0.113.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-23 12:40:07.533 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.112.0> exit with reason normal in context child_terminated +2014-07-23 12:40:07.779 [error] <0.368.0>@basho_bench_worker:handle_info:149 Worker <0.369.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 12:40:07.779 [error] emulator Error in process <0.369.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-23 12:40:07.821 [info] <0.402.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' +2014-07-23 12:40:07.821 [info] <0.402.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 4 +2014-07-23 12:40:07.821 [warning] <0.401.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-23 12:40:07.822 [info] <0.402.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.402.0> +2014-07-23 12:40:07.822 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_4, 4) at pid <0.401.0> +2014-07-23 12:40:07.823 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.368.0> exit with reason normal in context child_terminated +2014-07-23 12:40:08.096 [info] <0.406.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' +2014-07-23 12:40:08.096 [info] <0.406.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-23 12:40:08.096 [warning] <0.404.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-23 12:40:08.096 [info] <0.406.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.406.0> +2014-07-23 12:40:08.100 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.404.0> +2014-07-23 12:40:13.534 [error] <0.401.0>@basho_bench_worker:handle_info:149 Worker <0.402.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 12:40:13.534 [error] emulator Error in process <0.402.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-23 12:40:13.534 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.401.0> exit with reason normal in context child_terminated +2014-07-23 12:40:13.646 [info] <0.527.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' +2014-07-23 12:40:13.646 [info] <0.527.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 4 +2014-07-23 12:40:13.646 [warning] <0.526.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-23 12:40:13.646 [info] <0.527.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.527.0> +2014-07-23 12:40:13.647 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_4, 4) at pid <0.526.0> +2014-07-23 12:40:14.425 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 12:40:14.425 [error] emulator Error in process <0.115.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-23 12:40:14.426 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.114.0> exit with reason normal in context child_terminated +2014-07-23 12:40:14.547 [info] <0.547.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' +2014-07-23 12:40:14.548 [info] <0.547.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 5 +2014-07-23 12:40:14.548 [warning] <0.544.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-23 12:40:14.548 [info] <0.547.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.547.0> +2014-07-23 12:40:14.548 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_5, 5) at pid <0.544.0> +2014-07-23 12:40:14.758 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 12:40:14.758 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-23 12:40:14.759 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.110.0> exit with reason normal in context child_terminated +2014-07-23 12:40:14.759 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.110.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140723_123954/crash.log b/newtests/20140723_123954/crash.log new file mode 100644 index 000000000..1393a6963 --- /dev/null +++ b/newtests/20140723_123954/crash.log @@ -0,0 +1,69 @@ +2014-07-23 12:39:59 =ERROR REPORT==== +Error in process <0.109.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + +2014-07-23 12:39:59 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.108.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 12:40:06 =ERROR REPORT==== +Error in process <0.178.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + +2014-07-23 12:40:06 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.177.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 12:40:07 =ERROR REPORT==== +Error in process <0.113.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + +2014-07-23 12:40:07 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.112.0>},{name,basho_bench_worker_4},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_4,4]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 12:40:07 =ERROR REPORT==== +Error in process <0.369.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + +2014-07-23 12:40:07 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.368.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 12:40:13 =ERROR REPORT==== +Error in process <0.402.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + +2014-07-23 12:40:13 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.401.0>},{name,basho_bench_worker_4},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_4,4]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 12:40:14 =ERROR REPORT==== +Error in process <0.115.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + +2014-07-23 12:40:14 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.114.0>},{name,basho_bench_worker_5},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_5,5]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 12:40:14 =ERROR REPORT==== +Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + +2014-07-23 12:40:14 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>},{name,basho_bench_worker_3},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_3,3]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 12:40:14 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.110.0>},{name,basho_bench_worker_3},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_3,3]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140723_123954/error.log b/newtests/20140723_123954/error.log new file mode 100644 index 000000000..ab4b12673 --- /dev/null +++ b/newtests/20140723_123954/error.log @@ -0,0 +1,35 @@ +2014-07-23 12:39:59.193 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 12:39:59.193 [error] emulator Error in process <0.109.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-23 12:39:59.194 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated +2014-07-23 12:40:06.188 [error] <0.177.0>@basho_bench_worker:handle_info:149 Worker <0.178.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 12:40:06.188 [error] emulator Error in process <0.178.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-23 12:40:06.188 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.177.0> exit with reason normal in context child_terminated +2014-07-23 12:40:07.533 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 12:40:07.533 [error] emulator Error in process <0.113.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-23 12:40:07.533 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.112.0> exit with reason normal in context child_terminated +2014-07-23 12:40:07.779 [error] <0.368.0>@basho_bench_worker:handle_info:149 Worker <0.369.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 12:40:07.779 [error] emulator Error in process <0.369.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-23 12:40:07.823 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.368.0> exit with reason normal in context child_terminated +2014-07-23 12:40:13.534 [error] <0.401.0>@basho_bench_worker:handle_info:149 Worker <0.402.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 12:40:13.534 [error] emulator Error in process <0.402.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-23 12:40:13.534 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.401.0> exit with reason normal in context child_terminated +2014-07-23 12:40:14.425 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 12:40:14.425 [error] emulator Error in process <0.115.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-23 12:40:14.426 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.114.0> exit with reason normal in context child_terminated +2014-07-23 12:40:14.758 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 12:40:14.758 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-23 12:40:14.759 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.110.0> exit with reason normal in context child_terminated diff --git a/newtests/20140723_123954/errors.csv b/newtests/20140723_123954/errors.csv new file mode 100644 index 000000000..29210b502 --- /dev/null +++ b/newtests/20140723_123954/errors.csv @@ -0,0 +1 @@ +"error","count" diff --git a/newtests/20140723_123954/floppstore.config b/newtests/20140723_123954/floppstore.config new file mode 100644 index 000000000..b7b52339a --- /dev/null +++ b/newtests/20140723_123954/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 5}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {uniform_int, 5000000}}. + +{value_generator, {fixed_bin, 10}}. + +{operations, [{static_tx, 1}, {interactive_tx,1}]}. %%, {append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140723_123954/interactive-tx_latencies.csv b/newtests/20140723_123954/interactive-tx_latencies.csv new file mode 100644 index 000000000..f89ee72bd --- /dev/null +++ b/newtests/20140723_123954/interactive-tx_latencies.csv @@ -0,0 +1,3 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +10.0006, 10.0006, 131, 29507, 197202.4, 187874, 342961, 540616, 548044, 548044, 0 +18.230187, 8.229587, 62, 34483, 190456.4, 171641, 346888, 468233, 650382, 650382, 0 diff --git a/newtests/20140723_123954/log.sasl.txt b/newtests/20140723_123954/log.sasl.txt new file mode 100644 index 000000000..e0ddad52e --- /dev/null +++ b/newtests/20140723_123954/log.sasl.txt @@ -0,0 +1,394 @@ + +=PROGRESS REPORT==== 23-Jul-2014::12:39:55 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::12:39:55 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::12:39:55 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 23-Jul-2014::12:39:55 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::12:39:55 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 23-Jul-2014::12:39:55 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::12:39:55 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 23-Jul-2014::12:39:55 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 23-Jul-2014::12:39:55 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::12:39:55 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::12:39:55 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 23-Jul-2014::12:39:56 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::12:39:56 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::12:39:56 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::12:39:56 === + supervisor: {local,net_sup} + started: [{pid,<0.100.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::12:39:56 === + supervisor: {local,kernel_sup} + started: [{pid,<0.97.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 23-Jul-2014::12:39:56 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.105.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 23-Jul-2014::12:39:56 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.104.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::12:39:56 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::12:39:56 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.108.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::12:39:56 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.110.0>}, + {name,basho_bench_worker_3}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_3,3]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::12:39:56 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.112.0>}, + {name,basho_bench_worker_4}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_4,4]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::12:39:56 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.114.0>}, + {name,basho_bench_worker_5}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_5,5]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::12:39:56 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.116.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::12:39:56 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 23-Jul-2014::12:39:59 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.108.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 23-Jul-2014::12:39:59 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.177.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 23-Jul-2014::12:40:06 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.177.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 23-Jul-2014::12:40:06 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.368.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 23-Jul-2014::12:40:07 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.112.0>}, + {name,basho_bench_worker_4}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_4,4]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 23-Jul-2014::12:40:07 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.401.0>}, + {name,basho_bench_worker_4}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_4,4]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 23-Jul-2014::12:40:07 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.368.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 23-Jul-2014::12:40:08 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.404.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 23-Jul-2014::12:40:13 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.401.0>}, + {name,basho_bench_worker_4}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_4,4]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 23-Jul-2014::12:40:13 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.526.0>}, + {name,basho_bench_worker_4}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_4,4]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 23-Jul-2014::12:40:14 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.114.0>}, + {name,basho_bench_worker_5}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_5,5]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 23-Jul-2014::12:40:14 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.544.0>}, + {name,basho_bench_worker_5}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_5,5]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 23-Jul-2014::12:40:14 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>}, + {name,basho_bench_worker_3}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_3,3]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 23-Jul-2014::12:40:14 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.110.0>}, + {name,basho_bench_worker_3}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_3,3]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140723_123954/static-tx_latencies.csv b/newtests/20140723_123954/static-tx_latencies.csv new file mode 100644 index 000000000..1160f7f2c --- /dev/null +++ b/newtests/20140723_123954/static-tx_latencies.csv @@ -0,0 +1,3 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +10.0006, 10.0006, 120, 33726, 179097.3, 159852, 324580, 599274, 798491, 798491, 0 +18.230187, 8.229587, 101, 33726, 212603.4, 201689, 392864, 495747, 579519, 579519, 0 diff --git a/newtests/20140723_123954/summary.csv b/newtests/20140723_123954/summary.csv new file mode 100644 index 000000000..08a358b98 --- /dev/null +++ b/newtests/20140723_123954/summary.csv @@ -0,0 +1,3 @@ +elapsed, window, total, successful, failed +10.0006, 10.0006, 251, 251, 0 +18.230187, 8.229587, 163, 163, 0 diff --git a/newtests/20140723_125435/console.log b/newtests/20140723_125435/console.log new file mode 100644 index 000000000..48af50b5b --- /dev/null +++ b/newtests/20140723_125435/console.log @@ -0,0 +1,111 @@ +2014-07-23 12:54:35.372 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_125435/error.log"} into lager_event +2014-07-23 12:54:35.372 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_125435/console.log"} into lager_event +2014-07-23 12:54:35.372 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-23 12:54:35.409 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-23 12:54:35.409 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-23 12:54:35.409 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-23 12:54:35.409 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-23 12:54:35.847 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-23 12:54:36.199 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-23 12:54:36.200 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_125435/console.log to debug +2014-07-23 12:54:36.211 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB +2014-07-23 12:54:36.289 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-23 12:54:36.289 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-23 12:54:36.290 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-23 12:54:36.304 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-23 12:54:36.304 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-23 12:54:36.387 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-23 12:54:36.388 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-23 12:54:36.415 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-23 12:54:36.418 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-23 12:54:36.423 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-23 12:54:36.423 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-23 12:54:36.458 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-23 12:54:36.463 [debug] <0.94.0>@basho_bench_valgen:init_source:85 random source +2014-07-23 12:54:36.591 [debug] <0.97.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.98.0> +2014-07-23 12:54:36.598 [debug] <0.97.0> Supervisor net_sup started auth:start_link() at pid <0.99.0> +2014-07-23 12:54:36.615 [info] <0.96.0>@basho_bench_driver_floppystore:new:58 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-23 12:54:36.616 [debug] <0.97.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.100.0> +2014-07-23 12:54:36.616 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.97.0> +2014-07-23 12:54:36.633 [debug] <0.104.0> Supervisor inet_gethost_native_sup started undefined at pid <0.105.0> +2014-07-23 12:54:36.633 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.104.0> +2014-07-23 12:54:36.652 [info] <0.96.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' +2014-07-23 12:54:36.652 [info] <0.96.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-23 12:54:36.652 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-23 12:54:36.727 [info] <0.109.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' +2014-07-23 12:54:36.727 [info] <0.109.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-23 12:54:36.728 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.108.0> +2014-07-23 12:54:36.801 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' +2014-07-23 12:54:36.801 [info] <0.111.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 3 +2014-07-23 12:54:36.802 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_3, 3) at pid <0.110.0> +2014-07-23 12:54:36.876 [info] <0.113.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' +2014-07-23 12:54:36.876 [info] <0.113.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 4 +2014-07-23 12:54:36.877 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_4, 4) at pid <0.112.0> +2014-07-23 12:54:36.956 [info] <0.115.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' +2014-07-23 12:54:36.956 [info] <0.115.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 5 +2014-07-23 12:54:36.956 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_5, 5) at pid <0.114.0> +2014-07-23 12:54:36.957 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.116.0> +2014-07-23 12:54:36.962 [info] <0.113.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.113.0> +2014-07-23 12:54:36.962 [info] <0.115.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.115.0> +2014-07-23 12:54:36.963 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> +2014-07-23 12:54:36.963 [info] <0.109.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.109.0> +2014-07-23 12:54:36.963 [info] <0.96.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.96.0> +2014-07-23 12:54:36.963 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-23 12:54:40.190 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 12:54:40.190 [error] emulator Error in process <0.113.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-23 12:54:40.191 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.112.0> exit with reason normal in context child_terminated +2014-07-23 12:54:40.315 [info] <0.207.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' +2014-07-23 12:54:40.315 [info] <0.207.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 4 +2014-07-23 12:54:40.315 [warning] <0.205.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-23 12:54:40.315 [info] <0.207.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.207.0> +2014-07-23 12:54:40.316 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_4, 4) at pid <0.205.0> +2014-07-23 12:54:40.556 [error] emulator Error in process <0.96.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-23 12:54:40.556 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 12:54:40.556 [debug] <0.215.0>@basho_bench_valgen:init_source:85 random source +2014-07-23 12:54:40.557 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-23 12:54:40.677 [info] <0.218.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' +2014-07-23 12:54:40.677 [info] <0.218.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-23 12:54:40.677 [warning] <0.215.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-23 12:54:40.677 [info] <0.218.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.218.0> +2014-07-23 12:54:40.677 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.215.0> +2014-07-23 12:54:41.989 [error] emulator Error in process <0.109.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-23 12:54:41.989 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 12:54:41.990 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated +2014-07-23 12:54:42.099 [info] <0.248.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' +2014-07-23 12:54:42.099 [info] <0.248.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-23 12:54:42.099 [warning] <0.247.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-23 12:54:42.099 [info] <0.248.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.248.0> +2014-07-23 12:54:42.100 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.247.0> +2014-07-23 12:54:42.147 [error] <0.205.0>@basho_bench_worker:handle_info:149 Worker <0.207.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 12:54:42.147 [error] emulator Error in process <0.207.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-23 12:54:42.148 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.205.0> exit with reason normal in context child_terminated +2014-07-23 12:54:42.270 [info] <0.254.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' +2014-07-23 12:54:42.270 [info] <0.254.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 4 +2014-07-23 12:54:42.270 [warning] <0.253.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-23 12:54:42.270 [info] <0.254.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.254.0> +2014-07-23 12:54:42.270 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_4, 4) at pid <0.253.0> +2014-07-23 12:54:44.354 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 12:54:44.354 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-23 12:54:44.355 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.110.0> exit with reason normal in context child_terminated +2014-07-23 12:54:44.481 [info] <0.309.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' +2014-07-23 12:54:44.482 [info] <0.309.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 3 +2014-07-23 12:54:44.482 [warning] <0.308.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-23 12:54:44.482 [info] <0.309.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.309.0> +2014-07-23 12:54:44.482 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_3, 3) at pid <0.308.0> +2014-07-23 12:54:47.400 [error] <0.247.0>@basho_bench_worker:handle_info:149 Worker <0.248.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 12:54:47.400 [error] emulator Error in process <0.248.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-23 12:54:47.401 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.247.0> exit with reason normal in context child_terminated diff --git a/newtests/20140723_125435/crash.log b/newtests/20140723_125435/crash.log new file mode 100644 index 000000000..e8418634e --- /dev/null +++ b/newtests/20140723_125435/crash.log @@ -0,0 +1,60 @@ +2014-07-23 12:54:40 =ERROR REPORT==== +Error in process <0.113.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + +2014-07-23 12:54:40 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.112.0>},{name,basho_bench_worker_4},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_4,4]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 12:54:40 =ERROR REPORT==== +Error in process <0.96.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + +2014-07-23 12:54:40 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 12:54:42 =ERROR REPORT==== +Error in process <0.109.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + +2014-07-23 12:54:42 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.108.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 12:54:42 =ERROR REPORT==== +Error in process <0.207.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + +2014-07-23 12:54:42 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.205.0>},{name,basho_bench_worker_4},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_4,4]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 12:54:44 =ERROR REPORT==== +Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + +2014-07-23 12:54:44 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>},{name,basho_bench_worker_3},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_3,3]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 12:54:47 =ERROR REPORT==== +Error in process <0.248.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + +2014-07-23 12:54:47 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.247.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 12:54:47 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.247.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140723_125435/error.log b/newtests/20140723_125435/error.log new file mode 100644 index 000000000..a3b06b39c --- /dev/null +++ b/newtests/20140723_125435/error.log @@ -0,0 +1,29 @@ +2014-07-23 12:54:40.190 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 12:54:40.190 [error] emulator Error in process <0.113.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-23 12:54:40.191 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.112.0> exit with reason normal in context child_terminated +2014-07-23 12:54:40.556 [error] emulator Error in process <0.96.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-23 12:54:40.556 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 12:54:40.557 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-23 12:54:41.989 [error] emulator Error in process <0.109.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-23 12:54:41.989 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 12:54:41.990 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated +2014-07-23 12:54:42.147 [error] <0.205.0>@basho_bench_worker:handle_info:149 Worker <0.207.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 12:54:42.147 [error] emulator Error in process <0.207.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-23 12:54:42.148 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.205.0> exit with reason normal in context child_terminated +2014-07-23 12:54:44.354 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 12:54:44.354 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-23 12:54:44.355 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.110.0> exit with reason normal in context child_terminated +2014-07-23 12:54:47.400 [error] <0.247.0>@basho_bench_worker:handle_info:149 Worker <0.248.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 12:54:47.400 [error] emulator Error in process <0.248.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + diff --git a/newtests/20140723_125435/errors.csv b/newtests/20140723_125435/errors.csv new file mode 100644 index 000000000..29210b502 --- /dev/null +++ b/newtests/20140723_125435/errors.csv @@ -0,0 +1 @@ +"error","count" diff --git a/newtests/20140723_125435/floppstore.config b/newtests/20140723_125435/floppstore.config new file mode 100644 index 000000000..b7b52339a --- /dev/null +++ b/newtests/20140723_125435/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 5}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {uniform_int, 5000000}}. + +{value_generator, {fixed_bin, 10}}. + +{operations, [{static_tx, 1}, {interactive_tx,1}]}. %%, {append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140723_125435/interactive-tx_latencies.csv b/newtests/20140723_125435/interactive-tx_latencies.csv new file mode 100644 index 000000000..702aacf33 --- /dev/null +++ b/newtests/20140723_125435/interactive-tx_latencies.csv @@ -0,0 +1,3 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +10.0005, 10.0005, 122, 42041, 183270.8, 165976, 347332, 399458, 412422, 412422, 0 +10.443735, 0.443235, 5, 37327, 182516.1, 165976, 347332, 399458, 412422, 412422, 0 diff --git a/newtests/20140723_125435/log.sasl.txt b/newtests/20140723_125435/log.sasl.txt new file mode 100644 index 000000000..8381973d6 --- /dev/null +++ b/newtests/20140723_125435/log.sasl.txt @@ -0,0 +1,369 @@ + +=PROGRESS REPORT==== 23-Jul-2014::12:54:36 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::12:54:36 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::12:54:36 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 23-Jul-2014::12:54:36 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::12:54:36 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 23-Jul-2014::12:54:36 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::12:54:36 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 23-Jul-2014::12:54:36 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 23-Jul-2014::12:54:36 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::12:54:36 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::12:54:36 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 23-Jul-2014::12:54:36 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::12:54:36 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::12:54:36 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::12:54:36 === + supervisor: {local,net_sup} + started: [{pid,<0.100.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::12:54:36 === + supervisor: {local,kernel_sup} + started: [{pid,<0.97.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 23-Jul-2014::12:54:36 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.105.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 23-Jul-2014::12:54:36 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.104.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::12:54:36 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::12:54:36 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.108.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::12:54:36 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.110.0>}, + {name,basho_bench_worker_3}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_3,3]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::12:54:36 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.112.0>}, + {name,basho_bench_worker_4}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_4,4]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::12:54:36 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.114.0>}, + {name,basho_bench_worker_5}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_5,5]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::12:54:36 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.116.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::12:54:36 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 23-Jul-2014::12:54:40 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.112.0>}, + {name,basho_bench_worker_4}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_4,4]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 23-Jul-2014::12:54:40 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.205.0>}, + {name,basho_bench_worker_4}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_4,4]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 23-Jul-2014::12:54:40 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 23-Jul-2014::12:54:40 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.215.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 23-Jul-2014::12:54:41 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.108.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 23-Jul-2014::12:54:42 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.247.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 23-Jul-2014::12:54:42 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.205.0>}, + {name,basho_bench_worker_4}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_4,4]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 23-Jul-2014::12:54:42 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.253.0>}, + {name,basho_bench_worker_4}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_4,4]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 23-Jul-2014::12:54:44 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>}, + {name,basho_bench_worker_3}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_3,3]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 23-Jul-2014::12:54:44 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.308.0>}, + {name,basho_bench_worker_3}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_3,3]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 23-Jul-2014::12:54:47 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.247.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 23-Jul-2014::12:54:47 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.247.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140723_125435/static-tx_latencies.csv b/newtests/20140723_125435/static-tx_latencies.csv new file mode 100644 index 000000000..4bdd50deb --- /dev/null +++ b/newtests/20140723_125435/static-tx_latencies.csv @@ -0,0 +1,3 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +10.0005, 10.0005, 116, 49436, 183699.4, 174765, 309357, 422398, 433964, 433964, 0 +10.443735, 0.443235, 5, 49436, 179815.7, 171004, 309357, 422398, 433964, 433964, 0 diff --git a/newtests/20140723_125435/summary.csv b/newtests/20140723_125435/summary.csv new file mode 100644 index 000000000..5c72459e1 --- /dev/null +++ b/newtests/20140723_125435/summary.csv @@ -0,0 +1,3 @@ +elapsed, window, total, successful, failed +10.0005, 10.0005, 238, 238, 0 +10.443735, 0.443235, 10, 10, 0 diff --git a/newtests/20140723_140132/console.log b/newtests/20140723_140132/console.log new file mode 100644 index 000000000..e2aa170b0 --- /dev/null +++ b/newtests/20140723_140132/console.log @@ -0,0 +1,112 @@ +2014-07-23 14:01:32.860 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_140132/error.log"} into lager_event +2014-07-23 14:01:32.860 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_140132/console.log"} into lager_event +2014-07-23 14:01:32.860 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-23 14:01:32.896 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-23 14:01:32.896 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-23 14:01:32.896 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-23 14:01:32.897 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-23 14:01:33.336 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-23 14:01:33.743 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-23 14:01:33.744 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_140132/console.log to debug +2014-07-23 14:01:33.757 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB +2014-07-23 14:01:33.839 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-23 14:01:33.839 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-23 14:01:33.840 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-23 14:01:33.857 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-23 14:01:33.857 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-23 14:01:33.948 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-23 14:01:33.948 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-23 14:01:33.976 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-23 14:01:33.980 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-23 14:01:33.986 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-23 14:01:33.986 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-23 14:01:34.020 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-23 14:01:34.026 [debug] <0.94.0>@basho_bench_valgen:init_source:85 random source +2014-07-23 14:01:34.155 [debug] <0.97.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.98.0> +2014-07-23 14:01:34.163 [debug] <0.97.0> Supervisor net_sup started auth:start_link() at pid <0.99.0> +2014-07-23 14:01:34.177 [info] <0.96.0>@basho_bench_driver_floppystore:new:58 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-23 14:01:34.178 [debug] <0.97.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.100.0> +2014-07-23 14:01:34.178 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.97.0> +2014-07-23 14:01:34.197 [debug] <0.104.0> Supervisor inet_gethost_native_sup started undefined at pid <0.105.0> +2014-07-23 14:01:34.198 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.104.0> +2014-07-23 14:01:34.215 [info] <0.96.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:01:34.215 [info] <0.96.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-23 14:01:34.216 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-23 14:01:34.293 [info] <0.109.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:01:34.293 [info] <0.109.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-23 14:01:34.294 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.108.0> +2014-07-23 14:01:34.370 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:01:34.370 [info] <0.111.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 3 +2014-07-23 14:01:34.370 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_3, 3) at pid <0.110.0> +2014-07-23 14:01:34.442 [info] <0.113.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:01:34.442 [info] <0.113.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 4 +2014-07-23 14:01:34.442 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_4, 4) at pid <0.112.0> +2014-07-23 14:01:34.517 [info] <0.115.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:01:34.517 [info] <0.115.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 5 +2014-07-23 14:01:34.518 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_5, 5) at pid <0.114.0> +2014-07-23 14:01:34.518 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.116.0> +2014-07-23 14:01:34.523 [info] <0.115.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.115.0> +2014-07-23 14:01:34.523 [info] <0.113.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.113.0> +2014-07-23 14:01:34.524 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> +2014-07-23 14:01:34.524 [info] <0.109.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.109.0> +2014-07-23 14:01:34.524 [info] <0.96.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.96.0> +2014-07-23 14:01:34.524 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-23 14:01:35.525 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 14:01:35.525 [error] emulator Error in process <0.109.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-23 14:01:35.526 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated +2014-07-23 14:01:35.655 [info] <0.140.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:01:35.655 [info] <0.140.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-23 14:01:35.655 [warning] <0.139.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-23 14:01:35.655 [info] <0.140.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.140.0> +2014-07-23 14:01:35.656 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.139.0> +2014-07-23 14:01:36.636 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 14:01:36.636 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-23 14:01:36.637 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.110.0> exit with reason normal in context child_terminated +2014-07-23 14:01:36.823 [info] <0.172.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:01:36.823 [info] <0.172.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 3 +2014-07-23 14:01:36.823 [warning] <0.170.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-23 14:01:36.823 [info] <0.172.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.172.0> +2014-07-23 14:01:36.824 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_3, 3) at pid <0.170.0> +2014-07-23 14:01:37.610 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 14:01:37.610 [error] emulator Error in process <0.113.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-23 14:01:37.611 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.112.0> exit with reason normal in context child_terminated +2014-07-23 14:01:37.750 [info] <0.195.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:01:37.750 [info] <0.195.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 4 +2014-07-23 14:01:37.750 [warning] <0.192.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-23 14:01:37.750 [info] <0.195.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.195.0> +2014-07-23 14:01:37.750 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_4, 4) at pid <0.192.0> +2014-07-23 14:01:38.928 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 14:01:38.928 [error] emulator Error in process <0.115.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-23 14:01:38.929 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.114.0> exit with reason normal in context child_terminated +2014-07-23 14:01:39.068 [info] <0.231.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:01:39.068 [info] <0.231.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 5 +2014-07-23 14:01:39.068 [warning] <0.228.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-23 14:01:39.068 [info] <0.231.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.231.0> +2014-07-23 14:01:39.069 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_5, 5) at pid <0.228.0> +2014-07-23 14:01:40.729 [error] <0.139.0>@basho_bench_worker:handle_info:149 Worker <0.140.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 14:01:40.729 [error] emulator Error in process <0.140.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-23 14:01:40.730 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.139.0> exit with reason normal in context child_terminated +2014-07-23 14:01:40.864 [info] <0.270.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:01:40.864 [info] <0.270.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-23 14:01:40.864 [warning] <0.269.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-23 14:01:40.864 [info] <0.270.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.270.0> +2014-07-23 14:01:40.865 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.269.0> +2014-07-23 14:01:42.454 [error] emulator Error in process <0.231.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-23 14:01:42.454 [error] <0.228.0>@basho_bench_worker:handle_info:149 Worker <0.231.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 14:01:42.454 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.228.0> exit with reason normal in context child_terminated +2014-07-23 14:01:42.455 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.228.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-23 14:01:42.476 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. diff --git a/newtests/20140723_140132/crash.log b/newtests/20140723_140132/crash.log new file mode 100644 index 000000000..c71319533 --- /dev/null +++ b/newtests/20140723_140132/crash.log @@ -0,0 +1,60 @@ +2014-07-23 14:01:35 =ERROR REPORT==== +Error in process <0.109.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + +2014-07-23 14:01:35 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.108.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 14:01:36 =ERROR REPORT==== +Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + +2014-07-23 14:01:36 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>},{name,basho_bench_worker_3},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_3,3]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 14:01:37 =ERROR REPORT==== +Error in process <0.113.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + +2014-07-23 14:01:37 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.112.0>},{name,basho_bench_worker_4},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_4,4]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 14:01:38 =ERROR REPORT==== +Error in process <0.115.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + +2014-07-23 14:01:38 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.114.0>},{name,basho_bench_worker_5},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_5,5]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 14:01:40 =ERROR REPORT==== +Error in process <0.140.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + +2014-07-23 14:01:40 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.139.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 14:01:42 =ERROR REPORT==== +Error in process <0.231.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + +2014-07-23 14:01:42 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.228.0>},{name,basho_bench_worker_5},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_5,5]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 14:01:42 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.228.0>},{name,basho_bench_worker_5},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_5,5]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140723_140132/error.log b/newtests/20140723_140132/error.log new file mode 100644 index 000000000..f3a9be79f --- /dev/null +++ b/newtests/20140723_140132/error.log @@ -0,0 +1,31 @@ +2014-07-23 14:01:35.525 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 14:01:35.525 [error] emulator Error in process <0.109.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-23 14:01:35.526 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated +2014-07-23 14:01:36.636 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 14:01:36.636 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-23 14:01:36.637 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.110.0> exit with reason normal in context child_terminated +2014-07-23 14:01:37.610 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 14:01:37.610 [error] emulator Error in process <0.113.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-23 14:01:37.611 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.112.0> exit with reason normal in context child_terminated +2014-07-23 14:01:38.928 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 14:01:38.928 [error] emulator Error in process <0.115.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-23 14:01:38.929 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.114.0> exit with reason normal in context child_terminated +2014-07-23 14:01:40.729 [error] <0.139.0>@basho_bench_worker:handle_info:149 Worker <0.140.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 14:01:40.729 [error] emulator Error in process <0.140.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-23 14:01:40.730 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.139.0> exit with reason normal in context child_terminated +2014-07-23 14:01:42.454 [error] emulator Error in process <0.231.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-23 14:01:42.454 [error] <0.228.0>@basho_bench_worker:handle_info:149 Worker <0.231.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 14:01:42.454 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.228.0> exit with reason normal in context child_terminated +2014-07-23 14:01:42.455 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.228.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140723_140132/errors.csv b/newtests/20140723_140132/errors.csv new file mode 100644 index 000000000..29210b502 --- /dev/null +++ b/newtests/20140723_140132/errors.csv @@ -0,0 +1 @@ +"error","count" diff --git a/newtests/20140723_140132/floppstore.config b/newtests/20140723_140132/floppstore.config new file mode 100644 index 000000000..b7b52339a --- /dev/null +++ b/newtests/20140723_140132/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 5}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {uniform_int, 5000000}}. + +{value_generator, {fixed_bin, 10}}. + +{operations, [{static_tx, 1}, {interactive_tx,1}]}. %%, {append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140723_140132/interactive-tx_latencies.csv b/newtests/20140723_140132/interactive-tx_latencies.csv new file mode 100644 index 000000000..45e3e6638 --- /dev/null +++ b/newtests/20140723_140132/interactive-tx_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +7.936341, 7.936341, 83, 39463, 193832.8, 183341, 356693, 435588, 457862, 457862, 0 diff --git a/newtests/20140723_140132/log.sasl.txt b/newtests/20140723_140132/log.sasl.txt new file mode 100644 index 000000000..af40e7df3 --- /dev/null +++ b/newtests/20140723_140132/log.sasl.txt @@ -0,0 +1,369 @@ + +=PROGRESS REPORT==== 23-Jul-2014::14:01:33 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:01:33 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:01:33 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 23-Jul-2014::14:01:33 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:01:33 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 23-Jul-2014::14:01:33 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:01:33 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 23-Jul-2014::14:01:33 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 23-Jul-2014::14:01:33 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:01:33 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:01:33 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 23-Jul-2014::14:01:34 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:01:34 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:01:34 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:01:34 === + supervisor: {local,net_sup} + started: [{pid,<0.100.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:01:34 === + supervisor: {local,kernel_sup} + started: [{pid,<0.97.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 23-Jul-2014::14:01:34 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.105.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 23-Jul-2014::14:01:34 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.104.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:01:34 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:01:34 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.108.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:01:34 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.110.0>}, + {name,basho_bench_worker_3}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_3,3]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:01:34 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.112.0>}, + {name,basho_bench_worker_4}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_4,4]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:01:34 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.114.0>}, + {name,basho_bench_worker_5}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_5,5]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:01:34 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.116.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:01:34 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 23-Jul-2014::14:01:35 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.108.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 23-Jul-2014::14:01:35 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.139.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 23-Jul-2014::14:01:36 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>}, + {name,basho_bench_worker_3}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_3,3]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 23-Jul-2014::14:01:36 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.170.0>}, + {name,basho_bench_worker_3}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_3,3]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 23-Jul-2014::14:01:37 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.112.0>}, + {name,basho_bench_worker_4}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_4,4]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 23-Jul-2014::14:01:37 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.192.0>}, + {name,basho_bench_worker_4}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_4,4]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 23-Jul-2014::14:01:38 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.114.0>}, + {name,basho_bench_worker_5}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_5,5]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 23-Jul-2014::14:01:39 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.228.0>}, + {name,basho_bench_worker_5}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_5,5]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 23-Jul-2014::14:01:40 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.139.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 23-Jul-2014::14:01:40 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.269.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 23-Jul-2014::14:01:42 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.228.0>}, + {name,basho_bench_worker_5}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_5,5]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 23-Jul-2014::14:01:42 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.228.0>}, + {name,basho_bench_worker_5}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_5,5]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140723_140132/static-tx_latencies.csv b/newtests/20140723_140132/static-tx_latencies.csv new file mode 100644 index 000000000..9420ed263 --- /dev/null +++ b/newtests/20140723_140132/static-tx_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +7.936341, 7.936341, 90, 39414, 182257.2, 169022, 321979, 393407, 423865, 423865, 0 diff --git a/newtests/20140723_140132/summary.csv b/newtests/20140723_140132/summary.csv new file mode 100644 index 000000000..0f69442ae --- /dev/null +++ b/newtests/20140723_140132/summary.csv @@ -0,0 +1,2 @@ +elapsed, window, total, successful, failed +7.936341, 7.936341, 173, 173, 0 diff --git a/newtests/20140723_143206/console.log b/newtests/20140723_143206/console.log new file mode 100644 index 000000000..2593ef8c8 --- /dev/null +++ b/newtests/20140723_143206/console.log @@ -0,0 +1,110 @@ +2014-07-23 14:32:06.972 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_143206/error.log"} into lager_event +2014-07-23 14:32:06.972 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_143206/console.log"} into lager_event +2014-07-23 14:32:06.972 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-23 14:32:07.006 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-23 14:32:07.006 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-23 14:32:07.006 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-23 14:32:07.007 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-23 14:32:07.442 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-23 14:32:07.842 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-23 14:32:07.843 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_143206/console.log to debug +2014-07-23 14:32:07.856 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB +2014-07-23 14:32:07.936 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-23 14:32:07.937 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-23 14:32:07.937 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-23 14:32:07.955 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-23 14:32:07.955 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-23 14:32:08.046 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-23 14:32:08.046 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-23 14:32:08.074 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-23 14:32:08.078 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-23 14:32:08.085 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-23 14:32:08.085 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-23 14:32:08.122 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-23 14:32:08.127 [debug] <0.94.0>@basho_bench_valgen:init_source:85 random source +2014-07-23 14:32:08.257 [debug] <0.97.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.98.0> +2014-07-23 14:32:08.263 [debug] <0.97.0> Supervisor net_sup started auth:start_link() at pid <0.99.0> +2014-07-23 14:32:08.276 [info] <0.96.0>@basho_bench_driver_floppystore:new:58 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-23 14:32:08.276 [debug] <0.97.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.100.0> +2014-07-23 14:32:08.277 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.97.0> +2014-07-23 14:32:08.296 [debug] <0.104.0> Supervisor inet_gethost_native_sup started undefined at pid <0.105.0> +2014-07-23 14:32:08.296 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.104.0> +2014-07-23 14:32:08.312 [info] <0.96.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:32:08.312 [info] <0.96.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-23 14:32:08.313 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-23 14:32:08.385 [info] <0.109.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:32:08.385 [info] <0.109.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-23 14:32:08.386 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.108.0> +2014-07-23 14:32:08.459 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:32:08.459 [info] <0.111.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 3 +2014-07-23 14:32:08.459 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_3, 3) at pid <0.110.0> +2014-07-23 14:32:08.532 [info] <0.113.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:32:08.532 [info] <0.113.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 4 +2014-07-23 14:32:08.533 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_4, 4) at pid <0.112.0> +2014-07-23 14:32:08.607 [info] <0.115.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:32:08.607 [info] <0.115.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 5 +2014-07-23 14:32:08.607 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_5, 5) at pid <0.114.0> +2014-07-23 14:32:08.607 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.116.0> +2014-07-23 14:32:08.615 [info] <0.115.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.115.0> +2014-07-23 14:32:08.615 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> +2014-07-23 14:32:08.615 [info] <0.113.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.113.0> +2014-07-23 14:32:08.615 [info] <0.109.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.109.0> +2014-07-23 14:32:08.615 [info] <0.96.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.96.0> +2014-07-23 14:32:08.615 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-23 14:32:08.615 [debug] <0.111.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{badmatch,{badrpc,{'EXIT',{{case_clause,1},[{floppy,clockSI_istart_tx,1,[{file,"src/floppy.erl"},{line,72}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,139}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 14:32:08.616 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash +2014-07-23 14:32:08.616 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.110.0> exit with reason normal in context child_terminated +2014-07-23 14:32:08.617 [debug] <0.115.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{badmatch,{badrpc,{'EXIT',{{case_clause,1},[{floppy,clockSI_istart_tx,1,[{file,"src/floppy.erl"},{line,72}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,139}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 14:32:08.617 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash +2014-07-23 14:32:08.617 [debug] <0.113.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{badmatch,{badrpc,{'EXIT',{{case_clause,1},[{floppy,clockSI_istart_tx,1,[{file,"src/floppy.erl"},{line,72}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,139}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 14:32:08.617 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash +2014-07-23 14:32:08.707 [info] <0.123.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:32:08.708 [info] <0.123.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 3 +2014-07-23 14:32:08.708 [warning] <0.122.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-23 14:32:08.708 [info] <0.123.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.123.0> +2014-07-23 14:32:08.708 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_3, 3) at pid <0.122.0> +2014-07-23 14:32:08.708 [debug] <0.123.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{badmatch,{badrpc,{'EXIT',{{case_clause,1},[{floppy,clockSI_istart_tx,1,[{file,"src/floppy.erl"},{line,72}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,139}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 14:32:08.708 [error] <0.122.0>@basho_bench_worker:handle_info:149 Worker <0.123.0> exited with crash +2014-07-23 14:32:08.709 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.114.0> exit with reason normal in context child_terminated +2014-07-23 14:32:08.811 [info] <0.126.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:32:08.811 [info] <0.126.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 5 +2014-07-23 14:32:08.811 [warning] <0.124.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-23 14:32:08.811 [info] <0.126.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.126.0> +2014-07-23 14:32:08.812 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_5, 5) at pid <0.124.0> +2014-07-23 14:32:08.812 [debug] <0.126.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{badmatch,{badrpc,{'EXIT',{{case_clause,1},[{floppy,clockSI_istart_tx,1,[{file,"src/floppy.erl"},{line,72}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,139}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 14:32:08.812 [error] <0.124.0>@basho_bench_worker:handle_info:149 Worker <0.126.0> exited with crash +2014-07-23 14:32:08.812 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.112.0> exit with reason normal in context child_terminated +2014-07-23 14:32:08.891 [debug] <0.96.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{badmatch,{badrpc,{'EXIT',{{case_clause,1},[{floppy,clockSI_istart_tx,1,[{file,"src/floppy.erl"},{line,72}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,139}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 14:32:08.892 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with crash +2014-07-23 14:32:08.914 [info] <0.130.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:32:08.914 [info] <0.130.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 4 +2014-07-23 14:32:08.914 [warning] <0.128.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-23 14:32:08.914 [info] <0.130.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.130.0> +2014-07-23 14:32:08.915 [debug] <0.130.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{badmatch,{badrpc,{'EXIT',{{case_clause,1},[{floppy,clockSI_istart_tx,1,[{file,"src/floppy.erl"},{line,72}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,139}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 14:32:08.915 [error] <0.128.0>@basho_bench_worker:handle_info:149 Worker <0.130.0> exited with crash +2014-07-23 14:32:08.916 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_4, 4) at pid <0.128.0> +2014-07-23 14:32:08.916 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.122.0> exit with reason normal in context child_terminated +2014-07-23 14:32:09.017 [info] <0.135.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:32:09.018 [info] <0.135.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 3 +2014-07-23 14:32:09.018 [warning] <0.133.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-23 14:32:09.018 [info] <0.135.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.135.0> +2014-07-23 14:32:09.018 [debug] <0.135.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{badmatch,{badrpc,{'EXIT',{{case_clause,1},[{floppy,clockSI_istart_tx,1,[{file,"src/floppy.erl"},{line,72}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,139}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 14:32:09.018 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_3, 3) at pid <0.133.0> +2014-07-23 14:32:09.019 [error] <0.133.0>@basho_bench_worker:handle_info:149 Worker <0.135.0> exited with crash +2014-07-23 14:32:09.019 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.124.0> exit with reason normal in context child_terminated +2014-07-23 14:32:09.136 [info] <0.138.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:32:09.136 [info] <0.138.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 5 +2014-07-23 14:32:09.136 [warning] <0.136.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-23 14:32:09.137 [info] <0.138.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.138.0> +2014-07-23 14:32:09.137 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_5, 5) at pid <0.136.0> +2014-07-23 14:32:09.138 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-23 14:32:09.138 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-23 14:32:09.138 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.128.0> exit with reason normal in context shutdown_error +2014-07-23 14:32:09.139 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.133.0> exit with reason normal in context shutdown_error +2014-07-23 14:32:09.150 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {static_tx,static_tx} +2014-07-23 14:32:09.150 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {interactive_tx,interactive_tx} +2014-07-23 14:32:09.150 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{interactive_tx,interactive_tx},8},{{{interactive_tx,interactive_tx},crash},8}] +2014-07-23 14:32:09.150 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: +2014-07-23 14:32:09.150 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{interactive_tx,interactive_tx},crash}: 8 diff --git a/newtests/20140723_143206/crash.log b/newtests/20140723_143206/crash.log new file mode 100644 index 000000000..9d9bbd559 --- /dev/null +++ b/newtests/20140723_143206/crash.log @@ -0,0 +1,54 @@ +2014-07-23 14:32:08 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>},{name,basho_bench_worker_3},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_3,3]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 14:32:08 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.114.0>},{name,basho_bench_worker_5},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_5,5]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 14:32:08 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.112.0>},{name,basho_bench_worker_4},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_4,4]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 14:32:08 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.122.0>},{name,basho_bench_worker_3},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_3,3]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 14:32:09 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.124.0>},{name,basho_bench_worker_5},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_5,5]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 14:32:09 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 14:32:09 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 14:32:09 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown_error + Reason: normal + Offender: [{pid,<0.128.0>},{name,basho_bench_worker_4},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_4,4]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 14:32:09 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown_error + Reason: normal + Offender: [{pid,<0.133.0>},{name,basho_bench_worker_3},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_3,3]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140723_143206/error.log b/newtests/20140723_143206/error.log new file mode 100644 index 000000000..a79271ee7 --- /dev/null +++ b/newtests/20140723_143206/error.log @@ -0,0 +1,17 @@ +2014-07-23 14:32:08.616 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash +2014-07-23 14:32:08.616 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.110.0> exit with reason normal in context child_terminated +2014-07-23 14:32:08.617 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash +2014-07-23 14:32:08.617 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash +2014-07-23 14:32:08.708 [error] <0.122.0>@basho_bench_worker:handle_info:149 Worker <0.123.0> exited with crash +2014-07-23 14:32:08.709 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.114.0> exit with reason normal in context child_terminated +2014-07-23 14:32:08.812 [error] <0.124.0>@basho_bench_worker:handle_info:149 Worker <0.126.0> exited with crash +2014-07-23 14:32:08.812 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.112.0> exit with reason normal in context child_terminated +2014-07-23 14:32:08.892 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with crash +2014-07-23 14:32:08.915 [error] <0.128.0>@basho_bench_worker:handle_info:149 Worker <0.130.0> exited with crash +2014-07-23 14:32:08.916 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.122.0> exit with reason normal in context child_terminated +2014-07-23 14:32:09.019 [error] <0.133.0>@basho_bench_worker:handle_info:149 Worker <0.135.0> exited with crash +2014-07-23 14:32:09.019 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.124.0> exit with reason normal in context child_terminated +2014-07-23 14:32:09.138 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-23 14:32:09.138 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-23 14:32:09.138 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.128.0> exit with reason normal in context shutdown_error +2014-07-23 14:32:09.139 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.133.0> exit with reason normal in context shutdown_error diff --git a/newtests/20140723_143206/errors.csv b/newtests/20140723_143206/errors.csv new file mode 100644 index 000000000..8c4927987 --- /dev/null +++ b/newtests/20140723_143206/errors.csv @@ -0,0 +1,2 @@ +"error","count" +"{{interactive_tx,interactive_tx},crash}","8" diff --git a/newtests/20140723_143206/floppstore.config b/newtests/20140723_143206/floppstore.config new file mode 100644 index 000000000..b7b52339a --- /dev/null +++ b/newtests/20140723_143206/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 5}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {uniform_int, 5000000}}. + +{value_generator, {fixed_bin, 10}}. + +{operations, [{static_tx, 1}, {interactive_tx,1}]}. %%, {append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140723_143206/interactive-tx_latencies.csv b/newtests/20140723_143206/interactive-tx_latencies.csv new file mode 100644 index 000000000..f97488a55 --- /dev/null +++ b/newtests/20140723_143206/interactive-tx_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.529933, 0.529933, 0, 0, 0, 0, 0, 0, 0, 0, 8 diff --git a/newtests/20140723_143206/log.sasl.txt b/newtests/20140723_143206/log.sasl.txt new file mode 100644 index 000000000..697d14637 --- /dev/null +++ b/newtests/20140723_143206/log.sasl.txt @@ -0,0 +1,397 @@ + +=PROGRESS REPORT==== 23-Jul-2014::14:32:07 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:32:07 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:32:07 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 23-Jul-2014::14:32:07 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:32:07 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 23-Jul-2014::14:32:08 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:32:08 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 23-Jul-2014::14:32:08 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 23-Jul-2014::14:32:08 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:32:08 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:32:08 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 23-Jul-2014::14:32:08 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:32:08 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:32:08 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:32:08 === + supervisor: {local,net_sup} + started: [{pid,<0.100.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:32:08 === + supervisor: {local,kernel_sup} + started: [{pid,<0.97.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 23-Jul-2014::14:32:08 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.105.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 23-Jul-2014::14:32:08 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.104.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:32:08 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:32:08 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.108.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:32:08 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.110.0>}, + {name,basho_bench_worker_3}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_3,3]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:32:08 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.112.0>}, + {name,basho_bench_worker_4}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_4,4]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:32:08 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.114.0>}, + {name,basho_bench_worker_5}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_5,5]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:32:08 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.116.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:32:08 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 23-Jul-2014::14:32:08 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>}, + {name,basho_bench_worker_3}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_3,3]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 23-Jul-2014::14:32:08 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.122.0>}, + {name,basho_bench_worker_3}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_3,3]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 23-Jul-2014::14:32:08 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.114.0>}, + {name,basho_bench_worker_5}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_5,5]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 23-Jul-2014::14:32:08 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.124.0>}, + {name,basho_bench_worker_5}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_5,5]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 23-Jul-2014::14:32:08 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.112.0>}, + {name,basho_bench_worker_4}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_4,4]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 23-Jul-2014::14:32:08 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.128.0>}, + {name,basho_bench_worker_4}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_4,4]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 23-Jul-2014::14:32:08 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.122.0>}, + {name,basho_bench_worker_3}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_3,3]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 23-Jul-2014::14:32:09 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.133.0>}, + {name,basho_bench_worker_3}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_3,3]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 23-Jul-2014::14:32:09 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.124.0>}, + {name,basho_bench_worker_5}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_5,5]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 23-Jul-2014::14:32:09 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.136.0>}, + {name,basho_bench_worker_5}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_5,5]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 23-Jul-2014::14:32:09 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 23-Jul-2014::14:32:09 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 23-Jul-2014::14:32:09 === + Supervisor: {local,basho_bench_sup} + Context: shutdown_error + Reason: normal + Offender: [{pid,<0.128.0>}, + {name,basho_bench_worker_4}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_4,4]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 23-Jul-2014::14:32:09 === + Supervisor: {local,basho_bench_sup} + Context: shutdown_error + Reason: normal + Offender: [{pid,<0.133.0>}, + {name,basho_bench_worker_3}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_3,3]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140723_143206/static-tx_latencies.csv b/newtests/20140723_143206/static-tx_latencies.csv new file mode 100644 index 000000000..b7f8d86c4 --- /dev/null +++ b/newtests/20140723_143206/static-tx_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.529933, 0.529933, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140723_143206/summary.csv b/newtests/20140723_143206/summary.csv new file mode 100644 index 000000000..68ceba7eb --- /dev/null +++ b/newtests/20140723_143206/summary.csv @@ -0,0 +1,2 @@ +elapsed, window, total, successful, failed +0.529933, 0.529933, 12, 4, 8 diff --git a/newtests/20140723_143600/console.log b/newtests/20140723_143600/console.log new file mode 100644 index 000000000..aa4e32504 --- /dev/null +++ b/newtests/20140723_143600/console.log @@ -0,0 +1,114 @@ +2014-07-23 14:36:00.227 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_143600/error.log"} into lager_event +2014-07-23 14:36:00.227 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_143600/console.log"} into lager_event +2014-07-23 14:36:00.227 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-23 14:36:00.263 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-23 14:36:00.263 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-23 14:36:00.263 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-23 14:36:00.263 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-23 14:36:00.699 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-23 14:36:01.076 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-23 14:36:01.077 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_143600/console.log to debug +2014-07-23 14:36:01.090 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB +2014-07-23 14:36:01.175 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-23 14:36:01.176 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-23 14:36:01.176 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-23 14:36:01.191 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-23 14:36:01.192 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-23 14:36:01.285 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-23 14:36:01.285 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-23 14:36:01.315 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-23 14:36:01.319 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-23 14:36:01.325 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-23 14:36:01.325 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-23 14:36:01.359 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-23 14:36:01.365 [debug] <0.94.0>@basho_bench_valgen:init_source:85 random source +2014-07-23 14:36:01.493 [debug] <0.97.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.98.0> +2014-07-23 14:36:01.500 [debug] <0.97.0> Supervisor net_sup started auth:start_link() at pid <0.99.0> +2014-07-23 14:36:01.513 [info] <0.96.0>@basho_bench_driver_floppystore:new:58 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-23 14:36:01.513 [debug] <0.97.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.100.0> +2014-07-23 14:36:01.514 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.97.0> +2014-07-23 14:36:01.530 [debug] <0.104.0> Supervisor inet_gethost_native_sup started undefined at pid <0.105.0> +2014-07-23 14:36:01.531 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.104.0> +2014-07-23 14:36:01.548 [info] <0.96.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:36:01.548 [info] <0.96.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-23 14:36:01.549 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-23 14:36:01.626 [info] <0.109.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:36:01.626 [info] <0.109.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-23 14:36:01.627 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.108.0> +2014-07-23 14:36:01.700 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:36:01.700 [info] <0.111.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 3 +2014-07-23 14:36:01.700 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_3, 3) at pid <0.110.0> +2014-07-23 14:36:01.773 [info] <0.113.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:36:01.773 [info] <0.113.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 4 +2014-07-23 14:36:01.774 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_4, 4) at pid <0.112.0> +2014-07-23 14:36:01.847 [info] <0.115.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:36:01.847 [info] <0.115.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 5 +2014-07-23 14:36:01.847 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_5, 5) at pid <0.114.0> +2014-07-23 14:36:01.848 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.116.0> +2014-07-23 14:36:01.853 [info] <0.115.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.115.0> +2014-07-23 14:36:01.853 [info] <0.113.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.113.0> +2014-07-23 14:36:01.853 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> +2014-07-23 14:36:01.853 [info] <0.96.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.96.0> +2014-07-23 14:36:01.853 [info] <0.109.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.109.0> +2014-07-23 14:36:01.854 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-23 14:36:01.929 [debug] <0.113.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{case_clause,{read,2807225,riak_dt_gcounter}},[{basho_bench_driver_floppystore,'-run/4-fun-0-',3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,140}]},{lists,foreach,2,[{file,"lists.erl"},{line,1323}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 14:36:01.929 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash +2014-07-23 14:36:01.930 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.112.0> exit with reason normal in context child_terminated +2014-07-23 14:36:01.952 [debug] <0.111.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{case_clause,{read,2492595,riak_dt_gcounter}},[{basho_bench_driver_floppystore,'-run/4-fun-0-',3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,140}]},{lists,foreach,2,[{file,"lists.erl"},{line,1323}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 14:36:01.952 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash +2014-07-23 14:36:01.986 [debug] <0.115.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{case_clause,{read,661116,riak_dt_gcounter}},[{basho_bench_driver_floppystore,'-run/4-fun-0-',3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,140}]},{lists,foreach,2,[{file,"lists.erl"},{line,1323}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 14:36:01.986 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash +2014-07-23 14:36:02.060 [info] <0.123.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:36:02.060 [info] <0.123.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 4 +2014-07-23 14:36:02.060 [warning] <0.122.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-23 14:36:02.060 [info] <0.123.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.123.0> +2014-07-23 14:36:02.061 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_4, 4) at pid <0.122.0> +2014-07-23 14:36:02.062 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.110.0> exit with reason normal in context child_terminated +2014-07-23 14:36:02.062 [debug] <0.123.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{case_clause,{read,2538062,riak_dt_gcounter}},[{basho_bench_driver_floppystore,'-run/4-fun-0-',3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,140}]},{lists,foreach,2,[{file,"lists.erl"},{line,1323}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 14:36:02.063 [error] <0.122.0>@basho_bench_worker:handle_info:149 Worker <0.123.0> exited with crash +2014-07-23 14:36:02.064 [debug] <0.96.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{case_clause,{read,3171097,riak_dt_gcounter}},[{basho_bench_driver_floppystore,'-run/4-fun-0-',3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,140}]},{lists,foreach,2,[{file,"lists.erl"},{line,1323}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 14:36:02.064 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with crash +2014-07-23 14:36:02.168 [info] <0.128.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:36:02.169 [info] <0.128.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 3 +2014-07-23 14:36:02.169 [warning] <0.125.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-23 14:36:02.169 [info] <0.128.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.128.0> +2014-07-23 14:36:02.169 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_3, 3) at pid <0.125.0> +2014-07-23 14:36:02.170 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.114.0> exit with reason normal in context child_terminated +2014-07-23 14:36:02.170 [debug] <0.128.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{case_clause,{read,3813775,riak_dt_gcounter}},[{basho_bench_driver_floppystore,'-run/4-fun-0-',3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,140}]},{lists,foreach,2,[{file,"lists.erl"},{line,1323}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 14:36:02.170 [error] <0.125.0>@basho_bench_worker:handle_info:149 Worker <0.128.0> exited with crash +2014-07-23 14:36:02.250 [info] <0.131.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:36:02.250 [info] <0.131.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 5 +2014-07-23 14:36:02.251 [warning] <0.130.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-23 14:36:02.251 [info] <0.131.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.131.0> +2014-07-23 14:36:02.251 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_5, 5) at pid <0.130.0> +2014-07-23 14:36:02.252 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.122.0> exit with reason normal in context child_terminated +2014-07-23 14:36:02.255 [debug] <0.131.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{case_clause,{read,2833991,riak_dt_gcounter}},[{basho_bench_driver_floppystore,'-run/4-fun-0-',3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,140}]},{lists,foreach,2,[{file,"lists.erl"},{line,1323}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 14:36:02.255 [error] <0.130.0>@basho_bench_worker:handle_info:149 Worker <0.131.0> exited with crash +2014-07-23 14:36:02.289 [debug] <0.109.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{case_clause,{read,3056099,riak_dt_gcounter}},[{basho_bench_driver_floppystore,'-run/4-fun-0-',3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,140}]},{lists,foreach,2,[{file,"lists.erl"},{line,1323}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 14:36:02.289 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with crash +2014-07-23 14:36:02.345 [info] <0.135.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:36:02.345 [info] <0.135.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 4 +2014-07-23 14:36:02.345 [warning] <0.132.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-23 14:36:02.345 [info] <0.135.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.135.0> +2014-07-23 14:36:02.345 [debug] <0.136.0>@basho_bench_valgen:init_source:85 random source +2014-07-23 14:36:02.346 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_4, 4) at pid <0.132.0> +2014-07-23 14:36:02.347 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-23 14:36:02.347 [debug] <0.135.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{case_clause,{read,3794017,riak_dt_gcounter}},[{basho_bench_driver_floppystore,'-run/4-fun-0-',3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,140}]},{lists,foreach,2,[{file,"lists.erl"},{line,1323}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 14:36:02.347 [error] <0.132.0>@basho_bench_worker:handle_info:149 Worker <0.135.0> exited with crash +2014-07-23 14:36:02.419 [info] <0.138.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:36:02.419 [info] <0.138.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-23 14:36:02.419 [warning] <0.136.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-23 14:36:02.420 [info] <0.138.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.138.0> +2014-07-23 14:36:02.420 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.136.0> +2014-07-23 14:36:02.421 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.125.0> exit with reason normal in context child_terminated +2014-07-23 14:36:02.421 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.125.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-23 14:36:02.422 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.130.0> exit with reason normal in context shutdown_error +2014-07-23 14:36:02.422 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.132.0> exit with reason normal in context shutdown_error +2014-07-23 14:36:02.423 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context shutdown_error +2014-07-23 14:36:02.435 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {static_tx,static_tx} +2014-07-23 14:36:02.435 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {interactive_tx,interactive_tx} +2014-07-23 14:36:02.436 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{interactive_tx,interactive_tx},9},{{{interactive_tx,interactive_tx},crash},9}] +2014-07-23 14:36:02.436 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: +2014-07-23 14:36:02.436 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{interactive_tx,interactive_tx},crash}: 9 diff --git a/newtests/20140723_143600/crash.log b/newtests/20140723_143600/crash.log new file mode 100644 index 000000000..eb0304ae6 --- /dev/null +++ b/newtests/20140723_143600/crash.log @@ -0,0 +1,60 @@ +2014-07-23 14:36:01 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.112.0>},{name,basho_bench_worker_4},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_4,4]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 14:36:02 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>},{name,basho_bench_worker_3},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_3,3]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 14:36:02 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.114.0>},{name,basho_bench_worker_5},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_5,5]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 14:36:02 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.122.0>},{name,basho_bench_worker_4},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_4,4]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 14:36:02 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 14:36:02 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.125.0>},{name,basho_bench_worker_3},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_3,3]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 14:36:02 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.125.0>},{name,basho_bench_worker_3},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_3,3]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 14:36:02 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown_error + Reason: normal + Offender: [{pid,<0.130.0>},{name,basho_bench_worker_5},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_5,5]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 14:36:02 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown_error + Reason: normal + Offender: [{pid,<0.132.0>},{name,basho_bench_worker_4},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_4,4]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 14:36:02 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown_error + Reason: normal + Offender: [{pid,<0.108.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140723_143600/error.log b/newtests/20140723_143600/error.log new file mode 100644 index 000000000..ccb6fbecd --- /dev/null +++ b/newtests/20140723_143600/error.log @@ -0,0 +1,19 @@ +2014-07-23 14:36:01.929 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash +2014-07-23 14:36:01.930 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.112.0> exit with reason normal in context child_terminated +2014-07-23 14:36:01.952 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash +2014-07-23 14:36:01.986 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash +2014-07-23 14:36:02.062 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.110.0> exit with reason normal in context child_terminated +2014-07-23 14:36:02.063 [error] <0.122.0>@basho_bench_worker:handle_info:149 Worker <0.123.0> exited with crash +2014-07-23 14:36:02.064 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with crash +2014-07-23 14:36:02.170 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.114.0> exit with reason normal in context child_terminated +2014-07-23 14:36:02.170 [error] <0.125.0>@basho_bench_worker:handle_info:149 Worker <0.128.0> exited with crash +2014-07-23 14:36:02.252 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.122.0> exit with reason normal in context child_terminated +2014-07-23 14:36:02.255 [error] <0.130.0>@basho_bench_worker:handle_info:149 Worker <0.131.0> exited with crash +2014-07-23 14:36:02.289 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with crash +2014-07-23 14:36:02.347 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-23 14:36:02.347 [error] <0.132.0>@basho_bench_worker:handle_info:149 Worker <0.135.0> exited with crash +2014-07-23 14:36:02.421 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.125.0> exit with reason normal in context child_terminated +2014-07-23 14:36:02.421 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.125.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-23 14:36:02.422 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.130.0> exit with reason normal in context shutdown_error +2014-07-23 14:36:02.422 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.132.0> exit with reason normal in context shutdown_error +2014-07-23 14:36:02.423 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context shutdown_error diff --git a/newtests/20140723_143600/errors.csv b/newtests/20140723_143600/errors.csv new file mode 100644 index 000000000..59d26ee71 --- /dev/null +++ b/newtests/20140723_143600/errors.csv @@ -0,0 +1,2 @@ +"error","count" +"{{interactive_tx,interactive_tx},crash}","9" diff --git a/newtests/20140723_143600/floppstore.config b/newtests/20140723_143600/floppstore.config new file mode 100644 index 000000000..b7b52339a --- /dev/null +++ b/newtests/20140723_143600/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 5}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {uniform_int, 5000000}}. + +{value_generator, {fixed_bin, 10}}. + +{operations, [{static_tx, 1}, {interactive_tx,1}]}. %%, {append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140723_143600/interactive-tx_latencies.csv b/newtests/20140723_143600/interactive-tx_latencies.csv new file mode 100644 index 000000000..bac937b0f --- /dev/null +++ b/newtests/20140723_143600/interactive-tx_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.572566, 0.572566, 0, 0, 0, 0, 0, 0, 0, 0, 9 diff --git a/newtests/20140723_143600/log.sasl.txt b/newtests/20140723_143600/log.sasl.txt new file mode 100644 index 000000000..1e8e3aa8e --- /dev/null +++ b/newtests/20140723_143600/log.sasl.txt @@ -0,0 +1,411 @@ + +=PROGRESS REPORT==== 23-Jul-2014::14:36:01 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:36:01 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:36:01 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 23-Jul-2014::14:36:01 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:36:01 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 23-Jul-2014::14:36:01 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:36:01 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 23-Jul-2014::14:36:01 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 23-Jul-2014::14:36:01 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:36:01 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:36:01 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 23-Jul-2014::14:36:01 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:36:01 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:36:01 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:36:01 === + supervisor: {local,net_sup} + started: [{pid,<0.100.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:36:01 === + supervisor: {local,kernel_sup} + started: [{pid,<0.97.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 23-Jul-2014::14:36:01 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.105.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 23-Jul-2014::14:36:01 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.104.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:36:01 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:36:01 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.108.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:36:01 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.110.0>}, + {name,basho_bench_worker_3}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_3,3]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:36:01 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.112.0>}, + {name,basho_bench_worker_4}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_4,4]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:36:01 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.114.0>}, + {name,basho_bench_worker_5}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_5,5]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:36:01 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.116.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:36:01 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 23-Jul-2014::14:36:01 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.112.0>}, + {name,basho_bench_worker_4}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_4,4]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 23-Jul-2014::14:36:02 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.122.0>}, + {name,basho_bench_worker_4}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_4,4]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 23-Jul-2014::14:36:02 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>}, + {name,basho_bench_worker_3}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_3,3]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 23-Jul-2014::14:36:02 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.125.0>}, + {name,basho_bench_worker_3}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_3,3]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 23-Jul-2014::14:36:02 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.114.0>}, + {name,basho_bench_worker_5}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_5,5]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 23-Jul-2014::14:36:02 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.130.0>}, + {name,basho_bench_worker_5}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_5,5]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 23-Jul-2014::14:36:02 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.122.0>}, + {name,basho_bench_worker_4}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_4,4]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 23-Jul-2014::14:36:02 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.132.0>}, + {name,basho_bench_worker_4}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_4,4]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 23-Jul-2014::14:36:02 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 23-Jul-2014::14:36:02 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.136.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 23-Jul-2014::14:36:02 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.125.0>}, + {name,basho_bench_worker_3}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_3,3]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 23-Jul-2014::14:36:02 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.125.0>}, + {name,basho_bench_worker_3}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_3,3]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 23-Jul-2014::14:36:02 === + Supervisor: {local,basho_bench_sup} + Context: shutdown_error + Reason: normal + Offender: [{pid,<0.130.0>}, + {name,basho_bench_worker_5}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_5,5]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 23-Jul-2014::14:36:02 === + Supervisor: {local,basho_bench_sup} + Context: shutdown_error + Reason: normal + Offender: [{pid,<0.132.0>}, + {name,basho_bench_worker_4}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_4,4]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 23-Jul-2014::14:36:02 === + Supervisor: {local,basho_bench_sup} + Context: shutdown_error + Reason: normal + Offender: [{pid,<0.108.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140723_143600/static-tx_latencies.csv b/newtests/20140723_143600/static-tx_latencies.csv new file mode 100644 index 000000000..ae8538f12 --- /dev/null +++ b/newtests/20140723_143600/static-tx_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.572566, 0.572566, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140723_143600/summary.csv b/newtests/20140723_143600/summary.csv new file mode 100644 index 000000000..40c83c7e8 --- /dev/null +++ b/newtests/20140723_143600/summary.csv @@ -0,0 +1,2 @@ +elapsed, window, total, successful, failed +0.572566, 0.572566, 12, 3, 9 diff --git a/newtests/20140723_144217/console.log b/newtests/20140723_144217/console.log new file mode 100644 index 000000000..98cb09539 --- /dev/null +++ b/newtests/20140723_144217/console.log @@ -0,0 +1,103 @@ +2014-07-23 14:42:17.693 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_144217/error.log"} into lager_event +2014-07-23 14:42:17.693 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_144217/console.log"} into lager_event +2014-07-23 14:42:17.693 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-23 14:42:17.728 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-23 14:42:17.728 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-23 14:42:17.728 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-23 14:42:17.728 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-23 14:42:18.169 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-23 14:42:18.599 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-23 14:42:18.600 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_144217/console.log to debug +2014-07-23 14:42:18.615 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB +2014-07-23 14:42:18.700 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-23 14:42:18.700 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-23 14:42:18.701 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-23 14:42:18.716 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-23 14:42:18.717 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-23 14:42:18.809 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-23 14:42:18.809 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-23 14:42:18.839 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-23 14:42:18.847 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-23 14:42:18.852 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-23 14:42:18.852 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-23 14:42:18.887 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-23 14:42:18.893 [debug] <0.94.0>@basho_bench_valgen:init_source:85 random source +2014-07-23 14:42:19.021 [debug] <0.97.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.98.0> +2014-07-23 14:42:19.028 [debug] <0.97.0> Supervisor net_sup started auth:start_link() at pid <0.99.0> +2014-07-23 14:42:19.043 [info] <0.96.0>@basho_bench_driver_floppystore:new:58 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-23 14:42:19.043 [debug] <0.97.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.100.0> +2014-07-23 14:42:19.044 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.97.0> +2014-07-23 14:42:19.059 [debug] <0.104.0> Supervisor inet_gethost_native_sup started undefined at pid <0.105.0> +2014-07-23 14:42:19.059 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.104.0> +2014-07-23 14:42:19.078 [info] <0.96.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:42:19.078 [info] <0.96.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-23 14:42:19.079 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-23 14:42:19.161 [info] <0.109.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:42:19.161 [info] <0.109.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-23 14:42:19.162 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.108.0> +2014-07-23 14:42:19.242 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:42:19.242 [info] <0.111.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 3 +2014-07-23 14:42:19.243 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_3, 3) at pid <0.110.0> +2014-07-23 14:42:19.316 [info] <0.113.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:42:19.316 [info] <0.113.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 4 +2014-07-23 14:42:19.316 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_4, 4) at pid <0.112.0> +2014-07-23 14:42:19.390 [info] <0.115.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:42:19.390 [info] <0.115.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 5 +2014-07-23 14:42:19.391 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_5, 5) at pid <0.114.0> +2014-07-23 14:42:19.391 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.116.0> +2014-07-23 14:42:19.395 [info] <0.115.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.115.0> +2014-07-23 14:42:19.395 [info] <0.113.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.113.0> +2014-07-23 14:42:19.396 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> +2014-07-23 14:42:19.396 [info] <0.109.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.109.0> +2014-07-23 14:42:19.396 [info] <0.96.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.96.0> +2014-07-23 14:42:19.396 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-23 14:42:19.627 [debug] <0.111.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{badmatch,{badrpc,{'EXIT',{{case_clause,1406119339585412},[{floppy,clockSI_istart_tx,1,[{file,"src/floppy.erl"},{line,72}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,139}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 14:42:19.627 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash +2014-07-23 14:42:19.628 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.110.0> exit with reason normal in context child_terminated +2014-07-23 14:42:19.631 [debug] <0.113.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{badmatch,{badrpc,{'EXIT',{{case_clause,1406119339599504},[{floppy,clockSI_istart_tx,1,[{file,"src/floppy.erl"},{line,72}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,139}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 14:42:19.631 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash +2014-07-23 14:42:19.674 [debug] <0.115.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{badmatch,{badrpc,{'EXIT',{{case_clause,1406119339644329},[{floppy,clockSI_istart_tx,1,[{file,"src/floppy.erl"},{line,72}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,139}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 14:42:19.674 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash +2014-07-23 14:42:19.757 [info] <0.127.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:42:19.757 [info] <0.127.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 3 +2014-07-23 14:42:19.758 [warning] <0.123.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-23 14:42:19.758 [info] <0.127.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.127.0> +2014-07-23 14:42:19.758 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_3, 3) at pid <0.123.0> +2014-07-23 14:42:19.759 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.112.0> exit with reason normal in context child_terminated +2014-07-23 14:42:19.781 [debug] <0.109.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{badmatch,{badrpc,{'EXIT',{{case_clause,1406119339769262},[{floppy,clockSI_istart_tx,1,[{file,"src/floppy.erl"},{line,72}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,139}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 14:42:19.781 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with crash +2014-07-23 14:42:19.835 [debug] <0.127.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{badmatch,{badrpc,{'EXIT',{{case_clause,1406119339813278},[{floppy,clockSI_istart_tx,1,[{file,"src/floppy.erl"},{line,72}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,139}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 14:42:19.835 [error] <0.123.0>@basho_bench_worker:handle_info:149 Worker <0.127.0> exited with crash +2014-07-23 14:42:19.876 [info] <0.132.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:42:19.876 [info] <0.132.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 4 +2014-07-23 14:42:19.876 [warning] <0.129.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-23 14:42:19.876 [info] <0.132.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.132.0> +2014-07-23 14:42:19.876 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_4, 4) at pid <0.129.0> +2014-07-23 14:42:19.877 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.114.0> exit with reason normal in context child_terminated +2014-07-23 14:42:20.018 [info] <0.136.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:42:20.018 [info] <0.136.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 5 +2014-07-23 14:42:20.018 [warning] <0.134.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-23 14:42:20.018 [info] <0.136.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.136.0> +2014-07-23 14:42:20.019 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_5, 5) at pid <0.134.0> +2014-07-23 14:42:20.020 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated +2014-07-23 14:42:20.115 [info] <0.139.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:42:20.115 [info] <0.139.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-23 14:42:20.115 [warning] <0.137.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-23 14:42:20.115 [info] <0.139.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.139.0> +2014-07-23 14:42:20.116 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.137.0> +2014-07-23 14:42:20.117 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.123.0> exit with reason normal in context child_terminated +2014-07-23 14:42:20.251 [info] <0.143.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:42:20.251 [info] <0.143.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 3 +2014-07-23 14:42:20.251 [warning] <0.141.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-23 14:42:20.251 [info] <0.143.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.143.0> +2014-07-23 14:42:20.252 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_3, 3) at pid <0.141.0> +2014-07-23 14:42:20.322 [debug] <0.136.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{badmatch,{badrpc,{'EXIT',{{case_clause,1406119340287928},[{floppy,clockSI_istart_tx,1,[{file,"src/floppy.erl"},{line,72}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,139}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 14:42:20.322 [error] <0.134.0>@basho_bench_worker:handle_info:149 Worker <0.136.0> exited with crash +2014-07-23 14:42:20.323 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.134.0> exit with reason normal in context child_terminated +2014-07-23 14:42:20.323 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.134.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-23 14:42:20.343 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {static_tx,static_tx} +2014-07-23 14:42:20.344 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{interactive_tx,interactive_tx},6},{{{interactive_tx,interactive_tx},crash},6}] +2014-07-23 14:42:20.344 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: +2014-07-23 14:42:20.344 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{interactive_tx,interactive_tx},crash}: 6 diff --git a/newtests/20140723_144217/crash.log b/newtests/20140723_144217/crash.log new file mode 100644 index 000000000..8c9d842f5 --- /dev/null +++ b/newtests/20140723_144217/crash.log @@ -0,0 +1,42 @@ +2014-07-23 14:42:19 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>},{name,basho_bench_worker_3},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_3,3]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 14:42:19 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.112.0>},{name,basho_bench_worker_4},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_4,4]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 14:42:19 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.114.0>},{name,basho_bench_worker_5},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_5,5]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 14:42:20 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.108.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 14:42:20 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.123.0>},{name,basho_bench_worker_3},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_3,3]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 14:42:20 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.134.0>},{name,basho_bench_worker_5},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_5,5]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 14:42:20 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.134.0>},{name,basho_bench_worker_5},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_5,5]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140723_144217/error.log b/newtests/20140723_144217/error.log new file mode 100644 index 000000000..364ddc33d --- /dev/null +++ b/newtests/20140723_144217/error.log @@ -0,0 +1,13 @@ +2014-07-23 14:42:19.627 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash +2014-07-23 14:42:19.628 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.110.0> exit with reason normal in context child_terminated +2014-07-23 14:42:19.631 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash +2014-07-23 14:42:19.674 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash +2014-07-23 14:42:19.759 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.112.0> exit with reason normal in context child_terminated +2014-07-23 14:42:19.781 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with crash +2014-07-23 14:42:19.835 [error] <0.123.0>@basho_bench_worker:handle_info:149 Worker <0.127.0> exited with crash +2014-07-23 14:42:19.877 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.114.0> exit with reason normal in context child_terminated +2014-07-23 14:42:20.020 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated +2014-07-23 14:42:20.117 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.123.0> exit with reason normal in context child_terminated +2014-07-23 14:42:20.322 [error] <0.134.0>@basho_bench_worker:handle_info:149 Worker <0.136.0> exited with crash +2014-07-23 14:42:20.323 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.134.0> exit with reason normal in context child_terminated +2014-07-23 14:42:20.323 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.134.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140723_144217/errors.csv b/newtests/20140723_144217/errors.csv new file mode 100644 index 000000000..aca3eb71a --- /dev/null +++ b/newtests/20140723_144217/errors.csv @@ -0,0 +1,2 @@ +"error","count" +"{{interactive_tx,interactive_tx},crash}","6" diff --git a/newtests/20140723_144217/floppstore.config b/newtests/20140723_144217/floppstore.config new file mode 100644 index 000000000..b7b52339a --- /dev/null +++ b/newtests/20140723_144217/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 5}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {uniform_int, 5000000}}. + +{value_generator, {fixed_bin, 10}}. + +{operations, [{static_tx, 1}, {interactive_tx,1}]}. %%, {append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140723_144217/interactive-tx_latencies.csv b/newtests/20140723_144217/interactive-tx_latencies.csv new file mode 100644 index 000000000..f65d05816 --- /dev/null +++ b/newtests/20140723_144217/interactive-tx_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.932204, 0.932204, 8, 74130, 228782.4, 231442, 343866, 343866, 343866, 343866, 6 diff --git a/newtests/20140723_144217/log.sasl.txt b/newtests/20140723_144217/log.sasl.txt new file mode 100644 index 000000000..4db3239ea --- /dev/null +++ b/newtests/20140723_144217/log.sasl.txt @@ -0,0 +1,369 @@ + +=PROGRESS REPORT==== 23-Jul-2014::14:42:18 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:42:18 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:42:18 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 23-Jul-2014::14:42:18 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:42:18 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 23-Jul-2014::14:42:18 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:42:18 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 23-Jul-2014::14:42:18 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 23-Jul-2014::14:42:18 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:42:18 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:42:18 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 23-Jul-2014::14:42:18 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:42:19 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:42:19 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:42:19 === + supervisor: {local,net_sup} + started: [{pid,<0.100.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:42:19 === + supervisor: {local,kernel_sup} + started: [{pid,<0.97.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 23-Jul-2014::14:42:19 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.105.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 23-Jul-2014::14:42:19 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.104.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:42:19 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:42:19 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.108.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:42:19 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.110.0>}, + {name,basho_bench_worker_3}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_3,3]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:42:19 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.112.0>}, + {name,basho_bench_worker_4}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_4,4]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:42:19 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.114.0>}, + {name,basho_bench_worker_5}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_5,5]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:42:19 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.116.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:42:19 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 23-Jul-2014::14:42:19 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>}, + {name,basho_bench_worker_3}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_3,3]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 23-Jul-2014::14:42:19 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.123.0>}, + {name,basho_bench_worker_3}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_3,3]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 23-Jul-2014::14:42:19 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.112.0>}, + {name,basho_bench_worker_4}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_4,4]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 23-Jul-2014::14:42:19 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.129.0>}, + {name,basho_bench_worker_4}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_4,4]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 23-Jul-2014::14:42:19 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.114.0>}, + {name,basho_bench_worker_5}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_5,5]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 23-Jul-2014::14:42:20 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.134.0>}, + {name,basho_bench_worker_5}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_5,5]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 23-Jul-2014::14:42:20 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.108.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 23-Jul-2014::14:42:20 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.137.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 23-Jul-2014::14:42:20 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.123.0>}, + {name,basho_bench_worker_3}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_3,3]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 23-Jul-2014::14:42:20 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.141.0>}, + {name,basho_bench_worker_3}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_3,3]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 23-Jul-2014::14:42:20 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.134.0>}, + {name,basho_bench_worker_5}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_5,5]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 23-Jul-2014::14:42:20 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.134.0>}, + {name,basho_bench_worker_5}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_5,5]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140723_144217/static-tx_latencies.csv b/newtests/20140723_144217/static-tx_latencies.csv new file mode 100644 index 000000000..a3ec184ea --- /dev/null +++ b/newtests/20140723_144217/static-tx_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.932204, 0.932204, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140723_144217/summary.csv b/newtests/20140723_144217/summary.csv new file mode 100644 index 000000000..3cb376a3c --- /dev/null +++ b/newtests/20140723_144217/summary.csv @@ -0,0 +1,2 @@ +elapsed, window, total, successful, failed +0.932204, 0.932204, 18, 12, 6 diff --git a/newtests/20140723_144723/console.log b/newtests/20140723_144723/console.log new file mode 100644 index 000000000..1c95a5003 --- /dev/null +++ b/newtests/20140723_144723/console.log @@ -0,0 +1,124 @@ +2014-07-23 14:47:24.000 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_144723/error.log"} into lager_event +2014-07-23 14:47:24.000 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_144723/console.log"} into lager_event +2014-07-23 14:47:24.000 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-23 14:47:24.039 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-23 14:47:24.039 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-23 14:47:24.039 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-23 14:47:24.039 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-23 14:47:24.475 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-23 14:47:24.842 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-23 14:47:24.843 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_144723/console.log to debug +2014-07-23 14:47:24.858 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB +2014-07-23 14:47:24.934 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-23 14:47:24.935 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-23 14:47:24.935 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-23 14:47:24.951 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-23 14:47:24.951 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-23 14:47:25.041 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-23 14:47:25.041 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-23 14:47:25.075 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-23 14:47:25.079 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-23 14:47:25.086 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-23 14:47:25.086 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-23 14:47:25.117 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-23 14:47:25.124 [debug] <0.94.0>@basho_bench_valgen:init_source:85 random source +2014-07-23 14:47:25.257 [debug] <0.97.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.98.0> +2014-07-23 14:47:25.264 [debug] <0.97.0> Supervisor net_sup started auth:start_link() at pid <0.99.0> +2014-07-23 14:47:25.276 [info] <0.96.0>@basho_bench_driver_floppystore:new:58 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-23 14:47:25.277 [debug] <0.97.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.100.0> +2014-07-23 14:47:25.277 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.97.0> +2014-07-23 14:47:25.291 [debug] <0.104.0> Supervisor inet_gethost_native_sup started undefined at pid <0.105.0> +2014-07-23 14:47:25.291 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.104.0> +2014-07-23 14:47:25.310 [info] <0.96.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:47:25.310 [info] <0.96.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-23 14:47:25.311 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-23 14:47:25.385 [info] <0.109.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:47:25.385 [info] <0.109.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-23 14:47:25.385 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.108.0> +2014-07-23 14:47:25.463 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:47:25.463 [info] <0.111.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 3 +2014-07-23 14:47:25.463 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_3, 3) at pid <0.110.0> +2014-07-23 14:47:25.537 [info] <0.113.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:47:25.537 [info] <0.113.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 4 +2014-07-23 14:47:25.538 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_4, 4) at pid <0.112.0> +2014-07-23 14:47:25.613 [info] <0.115.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:47:25.613 [info] <0.115.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 5 +2014-07-23 14:47:25.614 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_5, 5) at pid <0.114.0> +2014-07-23 14:47:25.614 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.116.0> +2014-07-23 14:47:25.619 [info] <0.115.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.115.0> +2014-07-23 14:47:25.619 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> +2014-07-23 14:47:25.619 [info] <0.113.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.113.0> +2014-07-23 14:47:25.619 [info] <0.109.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.109.0> +2014-07-23 14:47:25.619 [info] <0.96.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.96.0> +2014-07-23 14:47:25.620 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-23 14:47:32.324 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 14:47:32.324 [error] emulator Error in process <0.96.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-23 14:47:32.324 [debug] <0.257.0>@basho_bench_valgen:init_source:85 random source +2014-07-23 14:47:32.325 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-23 14:47:32.490 [info] <0.259.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:47:32.490 [info] <0.259.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-23 14:47:32.490 [warning] <0.257.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-23 14:47:32.490 [info] <0.259.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.259.0> +2014-07-23 14:47:32.491 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.257.0> +2014-07-23 14:47:33.211 [debug] <0.109.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{badmatch,{badrpc,{'EXIT',{timeout,{gen_fsm,sync_send_event,[<10082.7774.1>,{read,{1099714,riak_dt_gcounter}}]}}}}},[{basho_bench_driver_floppystore,'-run/4-fun-0-',3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{lists,foreach,2,[{file,"lists.erl"},{line,1323}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 14:47:33.211 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with crash +2014-07-23 14:47:33.212 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated +2014-07-23 14:47:33.343 [info] <0.279.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:47:33.343 [info] <0.279.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-23 14:47:33.343 [warning] <0.276.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-23 14:47:33.343 [info] <0.279.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.279.0> +2014-07-23 14:47:33.344 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.276.0> +2014-07-23 14:47:35.621 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{interactive_tx,interactive_tx},1},{{{interactive_tx,interactive_tx},crash},1}] +2014-07-23 14:47:35.747 [debug] <0.111.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{badmatch,{badrpc,{'EXIT',{timeout,{gen_fsm,sync_send_event,[<10082.11695.1>,{read,{4042980,riak_dt_gcounter}}]}}}}},[{basho_bench_driver_floppystore,'-run/4-fun-0-',3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{lists,foreach,2,[{file,"lists.erl"},{line,1323}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 14:47:35.747 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash +2014-07-23 14:47:35.812 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.110.0> exit with reason normal in context child_terminated +2014-07-23 14:47:35.869 [info] <0.330.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:47:35.869 [info] <0.330.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 3 +2014-07-23 14:47:35.869 [warning] <0.329.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-23 14:47:35.869 [info] <0.330.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.330.0> +2014-07-23 14:47:35.870 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_3, 3) at pid <0.329.0> +2014-07-23 14:47:40.341 [debug] <0.113.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{badmatch,{badrpc,{'EXIT',{timeout,{gen_fsm,sync_send_event,[<10082.16935.1>,{read,{4900186,riak_dt_gcounter}}]}}}}},[{basho_bench_driver_floppystore,'-run/4-fun-0-',3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{lists,foreach,2,[{file,"lists.erl"},{line,1323}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 14:47:40.341 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash +2014-07-23 14:47:40.342 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.112.0> exit with reason normal in context child_terminated +2014-07-23 14:47:40.438 [info] <0.408.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:47:40.438 [info] <0.408.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 4 +2014-07-23 14:47:40.439 [warning] <0.407.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-23 14:47:40.439 [info] <0.408.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.408.0> +2014-07-23 14:47:40.439 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_4, 4) at pid <0.407.0> +2014-07-23 14:47:41.311 [debug] <0.330.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{badmatch,{badrpc,{'EXIT',{timeout,{gen_fsm,sync_send_event,[<10082.18206.1>,{read,{4142599,riak_dt_gcounter}}]}}}}},[{basho_bench_driver_floppystore,'-run/4-fun-0-',3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{lists,foreach,2,[{file,"lists.erl"},{line,1323}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 14:47:41.312 [error] <0.329.0>@basho_bench_worker:handle_info:149 Worker <0.330.0> exited with crash +2014-07-23 14:47:41.312 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.329.0> exit with reason normal in context child_terminated +2014-07-23 14:47:41.409 [info] <0.422.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:47:41.409 [info] <0.422.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 3 +2014-07-23 14:47:41.409 [warning] <0.420.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-23 14:47:41.409 [info] <0.422.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.422.0> +2014-07-23 14:47:41.410 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_3, 3) at pid <0.420.0> +2014-07-23 14:47:44.115 [debug] <0.259.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{badmatch,{badrpc,{'EXIT',{timeout,{gen_fsm,sync_send_event,[<10082.21305.1>,{read,{4828180,riak_dt_gcounter}}]}}}}},[{basho_bench_driver_floppystore,'-run/4-fun-0-',3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{lists,foreach,2,[{file,"lists.erl"},{line,1323}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 14:47:44.115 [error] <0.257.0>@basho_bench_worker:handle_info:149 Worker <0.259.0> exited with crash +2014-07-23 14:47:44.115 [debug] <0.474.0>@basho_bench_valgen:init_source:85 random source +2014-07-23 14:47:44.116 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.257.0> exit with reason normal in context child_terminated +2014-07-23 14:47:44.266 [info] <0.476.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:47:44.266 [info] <0.476.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-23 14:47:44.267 [warning] <0.474.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-23 14:47:44.267 [info] <0.476.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.476.0> +2014-07-23 14:47:44.267 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.474.0> +2014-07-23 14:47:44.336 [error] <0.276.0>@basho_bench_worker:handle_info:149 Worker <0.279.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 14:47:44.336 [error] emulator Error in process <0.279.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-23 14:47:44.337 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.276.0> exit with reason normal in context child_terminated +2014-07-23 14:47:44.399 [debug] <0.115.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{badmatch,{badrpc,{'EXIT',{timeout,{gen_fsm,sync_send_event,[<10082.21538.1>,{read,{148069,riak_dt_gcounter}}]}}}}},[{basho_bench_driver_floppystore,'-run/4-fun-0-',3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{lists,foreach,2,[{file,"lists.erl"},{line,1323}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 14:47:44.399 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash +2014-07-23 14:47:44.465 [info] <0.482.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:47:44.465 [info] <0.482.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-23 14:47:44.465 [warning] <0.480.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-23 14:47:44.465 [info] <0.482.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.482.0> +2014-07-23 14:47:44.466 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.480.0> +2014-07-23 14:47:44.467 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.114.0> exit with reason normal in context child_terminated +2014-07-23 14:47:44.467 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{interactive_tx,interactive_tx},5},{{{interactive_tx,interactive_tx},crash},5}] +2014-07-23 14:47:44.467 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: +2014-07-23 14:47:44.467 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{interactive_tx,interactive_tx},crash}: 6 diff --git a/newtests/20140723_144723/crash.log b/newtests/20140723_144723/crash.log new file mode 100644 index 000000000..1e4ae3516 --- /dev/null +++ b/newtests/20140723_144723/crash.log @@ -0,0 +1,60 @@ +2014-07-23 14:47:32 =ERROR REPORT==== +Error in process <0.96.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + +2014-07-23 14:47:32 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 14:47:33 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.108.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 14:47:35 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>},{name,basho_bench_worker_3},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_3,3]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 14:47:40 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.112.0>},{name,basho_bench_worker_4},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_4,4]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 14:47:41 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.329.0>},{name,basho_bench_worker_3},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_3,3]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 14:47:44 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.257.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 14:47:44 =ERROR REPORT==== +Error in process <0.279.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + +2014-07-23 14:47:44 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.276.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 14:47:44 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.114.0>},{name,basho_bench_worker_5},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_5,5]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 14:47:44 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.114.0>},{name,basho_bench_worker_5},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_5,5]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140723_144723/error.log b/newtests/20140723_144723/error.log new file mode 100644 index 000000000..fbcaa2237 --- /dev/null +++ b/newtests/20140723_144723/error.log @@ -0,0 +1,22 @@ +2014-07-23 14:47:32.324 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 14:47:32.324 [error] emulator Error in process <0.96.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-23 14:47:32.325 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated +2014-07-23 14:47:33.211 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with crash +2014-07-23 14:47:33.212 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated +2014-07-23 14:47:35.747 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash +2014-07-23 14:47:35.812 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.110.0> exit with reason normal in context child_terminated +2014-07-23 14:47:40.341 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash +2014-07-23 14:47:40.342 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.112.0> exit with reason normal in context child_terminated +2014-07-23 14:47:41.312 [error] <0.329.0>@basho_bench_worker:handle_info:149 Worker <0.330.0> exited with crash +2014-07-23 14:47:41.312 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.329.0> exit with reason normal in context child_terminated +2014-07-23 14:47:44.115 [error] <0.257.0>@basho_bench_worker:handle_info:149 Worker <0.259.0> exited with crash +2014-07-23 14:47:44.116 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.257.0> exit with reason normal in context child_terminated +2014-07-23 14:47:44.336 [error] <0.276.0>@basho_bench_worker:handle_info:149 Worker <0.279.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 14:47:44.336 [error] emulator Error in process <0.279.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-23 14:47:44.337 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.276.0> exit with reason normal in context child_terminated +2014-07-23 14:47:44.399 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash +2014-07-23 14:47:44.467 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.114.0> exit with reason normal in context child_terminated diff --git a/newtests/20140723_144723/errors.csv b/newtests/20140723_144723/errors.csv new file mode 100644 index 000000000..aca3eb71a --- /dev/null +++ b/newtests/20140723_144723/errors.csv @@ -0,0 +1,2 @@ +"error","count" +"{{interactive_tx,interactive_tx},crash}","6" diff --git a/newtests/20140723_144723/floppstore.config b/newtests/20140723_144723/floppstore.config new file mode 100644 index 000000000..b7b52339a --- /dev/null +++ b/newtests/20140723_144723/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 5}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {uniform_int, 5000000}}. + +{value_generator, {fixed_bin, 10}}. + +{operations, [{static_tx, 1}, {interactive_tx,1}]}. %%, {append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140723_144723/interactive-tx_latencies.csv b/newtests/20140723_144723/interactive-tx_latencies.csv new file mode 100644 index 000000000..dd384e2ab --- /dev/null +++ b/newtests/20140723_144723/interactive-tx_latencies.csv @@ -0,0 +1,3 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +10.00036, 10.00036, 102, 57285, 190765.9, 184507, 319226, 388662, 391066, 391066, 1 +18.852447, 8.852087, 71, 39511, 166327.0, 159352, 275152, 388662, 391066, 391066, 5 diff --git a/newtests/20140723_144723/log.sasl.txt b/newtests/20140723_144723/log.sasl.txt new file mode 100644 index 000000000..eee9d7403 --- /dev/null +++ b/newtests/20140723_144723/log.sasl.txt @@ -0,0 +1,419 @@ + +=PROGRESS REPORT==== 23-Jul-2014::14:47:24 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:47:24 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:47:24 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 23-Jul-2014::14:47:24 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:47:24 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 23-Jul-2014::14:47:25 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:47:25 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 23-Jul-2014::14:47:25 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 23-Jul-2014::14:47:25 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:47:25 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:47:25 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 23-Jul-2014::14:47:25 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:47:25 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:47:25 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:47:25 === + supervisor: {local,net_sup} + started: [{pid,<0.100.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:47:25 === + supervisor: {local,kernel_sup} + started: [{pid,<0.97.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 23-Jul-2014::14:47:25 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.105.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 23-Jul-2014::14:47:25 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.104.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:47:25 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:47:25 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.108.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:47:25 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.110.0>}, + {name,basho_bench_worker_3}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_3,3]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:47:25 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.112.0>}, + {name,basho_bench_worker_4}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_4,4]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:47:25 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.114.0>}, + {name,basho_bench_worker_5}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_5,5]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:47:25 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.116.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:47:25 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 23-Jul-2014::14:47:32 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 23-Jul-2014::14:47:32 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.257.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 23-Jul-2014::14:47:33 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.108.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 23-Jul-2014::14:47:33 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.276.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 23-Jul-2014::14:47:35 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>}, + {name,basho_bench_worker_3}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_3,3]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 23-Jul-2014::14:47:35 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.329.0>}, + {name,basho_bench_worker_3}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_3,3]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 23-Jul-2014::14:47:40 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.112.0>}, + {name,basho_bench_worker_4}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_4,4]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 23-Jul-2014::14:47:40 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.407.0>}, + {name,basho_bench_worker_4}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_4,4]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 23-Jul-2014::14:47:41 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.329.0>}, + {name,basho_bench_worker_3}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_3,3]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 23-Jul-2014::14:47:41 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.420.0>}, + {name,basho_bench_worker_3}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_3,3]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 23-Jul-2014::14:47:44 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.257.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 23-Jul-2014::14:47:44 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.474.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 23-Jul-2014::14:47:44 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.276.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 23-Jul-2014::14:47:44 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.480.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 23-Jul-2014::14:47:44 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.114.0>}, + {name,basho_bench_worker_5}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_5,5]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 23-Jul-2014::14:47:44 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.114.0>}, + {name,basho_bench_worker_5}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_5,5]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140723_144723/static-tx_latencies.csv b/newtests/20140723_144723/static-tx_latencies.csv new file mode 100644 index 000000000..8b8fd0759 --- /dev/null +++ b/newtests/20140723_144723/static-tx_latencies.csv @@ -0,0 +1,3 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +10.00036, 10.00036, 97, 35613, 190244.1, 171318, 338177, 434668, 440473, 440473, 0 +18.852447, 8.852087, 71, 35613, 162834.4, 154017, 313236, 338587, 339400, 339400, 0 diff --git a/newtests/20140723_144723/summary.csv b/newtests/20140723_144723/summary.csv new file mode 100644 index 000000000..c8dc73342 --- /dev/null +++ b/newtests/20140723_144723/summary.csv @@ -0,0 +1,3 @@ +elapsed, window, total, successful, failed +10.00036, 10.00036, 200, 199, 1 +18.852447, 8.852087, 147, 142, 5 diff --git a/newtests/20140723_144925/append_latencies.csv b/newtests/20140723_144925/append_latencies.csv new file mode 100644 index 000000000..feb7d4588 --- /dev/null +++ b/newtests/20140723_144925/append_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.724846, 0.724846, 19, 2345, 14992.8, 3778, 66467, 71968, 71968, 71968, 0 diff --git a/newtests/20140723_144925/console.log b/newtests/20140723_144925/console.log new file mode 100644 index 000000000..a2873f918 --- /dev/null +++ b/newtests/20140723_144925/console.log @@ -0,0 +1,116 @@ +2014-07-23 14:49:26.053 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_144925/error.log"} into lager_event +2014-07-23 14:49:26.053 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_144925/console.log"} into lager_event +2014-07-23 14:49:26.053 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-23 14:49:26.088 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-23 14:49:26.088 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-23 14:49:26.089 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-23 14:49:26.089 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-23 14:49:26.530 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-23 14:49:26.875 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-23 14:49:26.876 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_144925/console.log to debug +2014-07-23 14:49:26.887 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB +2014-07-23 14:49:26.963 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-23 14:49:26.963 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-23 14:49:26.964 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-23 14:49:26.979 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-23 14:49:26.980 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-23 14:49:27.064 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-23 14:49:27.065 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-23 14:49:27.093 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-23 14:49:27.097 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-23 14:49:27.104 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-23 14:49:27.104 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-23 14:49:27.140 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-23 14:49:27.145 [debug] <0.96.0>@basho_bench_valgen:init_source:85 random source +2014-07-23 14:49:27.272 [debug] <0.99.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.100.0> +2014-07-23 14:49:27.278 [debug] <0.99.0> Supervisor net_sup started auth:start_link() at pid <0.101.0> +2014-07-23 14:49:27.290 [info] <0.98.0>@basho_bench_driver_floppystore:new:58 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-23 14:49:27.291 [debug] <0.99.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.102.0> +2014-07-23 14:49:27.291 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> +2014-07-23 14:49:27.304 [debug] <0.106.0> Supervisor inet_gethost_native_sup started undefined at pid <0.107.0> +2014-07-23 14:49:27.305 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.106.0> +2014-07-23 14:49:27.324 [info] <0.98.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:49:27.324 [info] <0.98.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-23 14:49:27.325 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.96.0> +2014-07-23 14:49:27.398 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:49:27.398 [info] <0.111.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-23 14:49:27.399 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.110.0> +2014-07-23 14:49:27.472 [info] <0.113.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:49:27.472 [info] <0.113.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 3 +2014-07-23 14:49:27.472 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_3, 3) at pid <0.112.0> +2014-07-23 14:49:27.545 [info] <0.115.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:49:27.545 [info] <0.115.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 4 +2014-07-23 14:49:27.545 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_4, 4) at pid <0.114.0> +2014-07-23 14:49:27.621 [info] <0.117.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:49:27.621 [info] <0.117.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 5 +2014-07-23 14:49:27.621 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_5, 5) at pid <0.116.0> +2014-07-23 14:49:27.622 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.118.0> +2014-07-23 14:49:27.627 [info] <0.117.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.117.0> +2014-07-23 14:49:27.627 [info] <0.115.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.115.0> +2014-07-23 14:49:27.627 [info] <0.113.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.113.0> +2014-07-23 14:49:27.627 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> +2014-07-23 14:49:27.627 [info] <0.98.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.98.0> +2014-07-23 14:49:27.628 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-23 14:49:27.697 [error] emulator Error in process <0.113.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-23 14:49:27.698 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 14:49:27.758 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 14:49:27.776 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.112.0> exit with reason normal in context child_terminated +2014-07-23 14:49:27.776 [error] emulator Error in process <0.115.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-23 14:49:27.856 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 14:49:27.856 [error] emulator Error in process <0.117.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-23 14:49:27.880 [info] <0.134.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:49:27.880 [info] <0.134.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 3 +2014-07-23 14:49:27.881 [warning] <0.132.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-23 14:49:27.881 [info] <0.134.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.134.0> +2014-07-23 14:49:27.881 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_3, 3) at pid <0.132.0> +2014-07-23 14:49:27.882 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.114.0> exit with reason normal in context child_terminated +2014-07-23 14:49:27.990 [info] <0.138.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:49:27.990 [info] <0.138.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 4 +2014-07-23 14:49:27.991 [warning] <0.136.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-23 14:49:27.991 [info] <0.138.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.138.0> +2014-07-23 14:49:27.991 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_4, 4) at pid <0.136.0> +2014-07-23 14:49:27.992 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.116.0> exit with reason normal in context child_terminated +2014-07-23 14:49:28.063 [error] emulator Error in process <0.134.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-23 14:49:28.063 [error] <0.132.0>@basho_bench_worker:handle_info:149 Worker <0.134.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 14:49:28.063 [error] emulator Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-23 14:49:28.063 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 14:49:28.101 [info] <0.145.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:49:28.101 [info] <0.145.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 5 +2014-07-23 14:49:28.101 [warning] <0.143.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-23 14:49:28.101 [info] <0.145.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.145.0> +2014-07-23 14:49:28.102 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_5, 5) at pid <0.143.0> +2014-07-23 14:49:28.103 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.132.0> exit with reason normal in context child_terminated +2014-07-23 14:49:28.162 [error] emulator Error in process <0.138.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-23 14:49:28.163 [error] <0.136.0>@basho_bench_worker:handle_info:149 Worker <0.138.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 14:49:28.241 [info] <0.152.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:49:28.242 [info] <0.152.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 3 +2014-07-23 14:49:28.242 [warning] <0.148.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-23 14:49:28.242 [info] <0.152.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.152.0> +2014-07-23 14:49:28.242 [debug] <0.159.0>@basho_bench_valgen:init_source:85 random source +2014-07-23 14:49:28.242 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_3, 3) at pid <0.148.0> +2014-07-23 14:49:28.243 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated +2014-07-23 14:49:28.345 [info] <0.160.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 14:49:28.345 [info] <0.160.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-23 14:49:28.345 [warning] <0.159.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-23 14:49:28.345 [info] <0.160.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.160.0> +2014-07-23 14:49:28.346 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.159.0> +2014-07-23 14:49:28.347 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.136.0> exit with reason normal in context child_terminated +2014-07-23 14:49:28.347 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.136.0> exit with reason reached_max_restart_intensity in context shutdown +2014-07-23 14:49:28.361 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {static_tx,static_tx} +2014-07-23 14:49:28.361 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {interactive_tx,interactive_tx} +2014-07-23 14:49:28.362 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} +2014-07-23 14:49:28.363 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. diff --git a/newtests/20140723_144925/crash.log b/newtests/20140723_144925/crash.log new file mode 100644 index 000000000..6ea6858c8 --- /dev/null +++ b/newtests/20140723_144925/crash.log @@ -0,0 +1,60 @@ +2014-07-23 14:49:27 =ERROR REPORT==== +Error in process <0.113.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-23 14:49:27 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.112.0>},{name,basho_bench_worker_3},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_3,3]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 14:49:27 =ERROR REPORT==== +Error in process <0.115.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-23 14:49:27 =ERROR REPORT==== +Error in process <0.117.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-23 14:49:27 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.114.0>},{name,basho_bench_worker_4},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_4,4]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 14:49:27 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.116.0>},{name,basho_bench_worker_5},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_5,5]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 14:49:28 =ERROR REPORT==== +Error in process <0.134.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-23 14:49:28 =ERROR REPORT==== +Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-23 14:49:28 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.132.0>},{name,basho_bench_worker_3},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_3,3]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 14:49:28 =ERROR REPORT==== +Error in process <0.138.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + +2014-07-23 14:49:28 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.96.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 14:49:28 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.136.0>},{name,basho_bench_worker_4},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_4,4]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 14:49:28 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.136.0>},{name,basho_bench_worker_4},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_4,4]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140723_144925/error.log b/newtests/20140723_144925/error.log new file mode 100644 index 000000000..17e1d92ee --- /dev/null +++ b/newtests/20140723_144925/error.log @@ -0,0 +1,31 @@ +2014-07-23 14:49:27.697 [error] emulator Error in process <0.113.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-23 14:49:27.698 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 14:49:27.758 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 14:49:27.776 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.112.0> exit with reason normal in context child_terminated +2014-07-23 14:49:27.776 [error] emulator Error in process <0.115.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-23 14:49:27.856 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 14:49:27.856 [error] emulator Error in process <0.117.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-23 14:49:27.882 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.114.0> exit with reason normal in context child_terminated +2014-07-23 14:49:27.992 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.116.0> exit with reason normal in context child_terminated +2014-07-23 14:49:28.063 [error] emulator Error in process <0.134.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-23 14:49:28.063 [error] <0.132.0>@basho_bench_worker:handle_info:149 Worker <0.134.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 14:49:28.063 [error] emulator Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-23 14:49:28.063 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 14:49:28.103 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.132.0> exit with reason normal in context child_terminated +2014-07-23 14:49:28.162 [error] emulator Error in process <0.138.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... + + +2014-07-23 14:49:28.163 [error] <0.136.0>@basho_bench_worker:handle_info:149 Worker <0.138.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 14:49:28.243 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated +2014-07-23 14:49:28.347 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.136.0> exit with reason normal in context child_terminated +2014-07-23 14:49:28.347 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.136.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140723_144925/errors.csv b/newtests/20140723_144925/errors.csv new file mode 100644 index 000000000..29210b502 --- /dev/null +++ b/newtests/20140723_144925/errors.csv @@ -0,0 +1 @@ +"error","count" diff --git a/newtests/20140723_144925/floppstore.config b/newtests/20140723_144925/floppstore.config new file mode 100644 index 000000000..79d18189d --- /dev/null +++ b/newtests/20140723_144925/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 5}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {uniform_int, 5000000}}. + +{value_generator, {fixed_bin, 10}}. + +{operations, [{static_tx, 1}, {interactive_tx,1}, {append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140723_144925/interactive-tx_latencies.csv b/newtests/20140723_144925/interactive-tx_latencies.csv new file mode 100644 index 000000000..b8a373500 --- /dev/null +++ b/newtests/20140723_144925/interactive-tx_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.724846, 0.724846, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140723_144925/log.sasl.txt b/newtests/20140723_144925/log.sasl.txt new file mode 100644 index 000000000..0a9ea4398 --- /dev/null +++ b/newtests/20140723_144925/log.sasl.txt @@ -0,0 +1,369 @@ + +=PROGRESS REPORT==== 23-Jul-2014::14:49:26 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:49:26 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:49:26 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 23-Jul-2014::14:49:26 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:49:26 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 23-Jul-2014::14:49:27 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:49:27 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 23-Jul-2014::14:49:27 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 23-Jul-2014::14:49:27 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:49:27 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:49:27 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 23-Jul-2014::14:49:27 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:49:27 === + supervisor: {local,net_sup} + started: [{pid,<0.100.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:49:27 === + supervisor: {local,net_sup} + started: [{pid,<0.101.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:49:27 === + supervisor: {local,net_sup} + started: [{pid,<0.102.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:49:27 === + supervisor: {local,kernel_sup} + started: [{pid,<0.99.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 23-Jul-2014::14:49:27 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.107.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 23-Jul-2014::14:49:27 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.106.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:49:27 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.96.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:49:27 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.110.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:49:27 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.112.0>}, + {name,basho_bench_worker_3}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_3,3]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:49:27 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.114.0>}, + {name,basho_bench_worker_4}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_4,4]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:49:27 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.116.0>}, + {name,basho_bench_worker_5}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_5,5]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:49:27 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.118.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::14:49:27 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 23-Jul-2014::14:49:27 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.112.0>}, + {name,basho_bench_worker_3}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_3,3]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 23-Jul-2014::14:49:27 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.132.0>}, + {name,basho_bench_worker_3}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_3,3]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 23-Jul-2014::14:49:27 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.114.0>}, + {name,basho_bench_worker_4}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_4,4]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 23-Jul-2014::14:49:27 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.136.0>}, + {name,basho_bench_worker_4}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_4,4]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 23-Jul-2014::14:49:27 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.116.0>}, + {name,basho_bench_worker_5}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_5,5]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 23-Jul-2014::14:49:28 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.143.0>}, + {name,basho_bench_worker_5}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_5,5]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 23-Jul-2014::14:49:28 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.132.0>}, + {name,basho_bench_worker_3}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_3,3]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 23-Jul-2014::14:49:28 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.148.0>}, + {name,basho_bench_worker_3}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_3,3]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 23-Jul-2014::14:49:28 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.96.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 23-Jul-2014::14:49:28 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.159.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 23-Jul-2014::14:49:28 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.136.0>}, + {name,basho_bench_worker_4}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_4,4]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=SUPERVISOR REPORT==== 23-Jul-2014::14:49:28 === + Supervisor: {local,basho_bench_sup} + Context: shutdown + Reason: reached_max_restart_intensity + Offender: [{pid,<0.136.0>}, + {name,basho_bench_worker_4}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_4,4]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + diff --git a/newtests/20140723_144925/read_latencies.csv b/newtests/20140723_144925/read_latencies.csv new file mode 100644 index 000000000..b8a373500 --- /dev/null +++ b/newtests/20140723_144925/read_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.724846, 0.724846, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140723_144925/static-tx_latencies.csv b/newtests/20140723_144925/static-tx_latencies.csv new file mode 100644 index 000000000..b8a373500 --- /dev/null +++ b/newtests/20140723_144925/static-tx_latencies.csv @@ -0,0 +1,2 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors +0.724846, 0.724846, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140723_144925/summary.csv b/newtests/20140723_144925/summary.csv new file mode 100644 index 000000000..292ce7cf5 --- /dev/null +++ b/newtests/20140723_144925/summary.csv @@ -0,0 +1,2 @@ +elapsed, window, total, successful, failed +0.724846, 0.724846, 26, 26, 0 diff --git a/newtests/20140723_203459/console.log b/newtests/20140723_203459/console.log new file mode 100644 index 000000000..a50cbe2ee --- /dev/null +++ b/newtests/20140723_203459/console.log @@ -0,0 +1,77 @@ +2014-07-23 20:34:59.856 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_203459/error.log"} into lager_event +2014-07-23 20:34:59.856 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_203459/console.log"} into lager_event +2014-07-23 20:34:59.856 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-23 20:34:59.889 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-23 20:34:59.889 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-23 20:34:59.889 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-23 20:34:59.890 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-23 20:35:00.329 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-23 20:35:00.701 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-23 20:35:00.702 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_203459/console.log to debug +2014-07-23 20:35:00.715 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB +2014-07-23 20:35:00.796 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-23 20:35:00.796 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-23 20:35:00.797 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-23 20:35:00.812 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-23 20:35:00.812 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-23 20:35:00.897 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-23 20:35:00.897 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-23 20:35:00.924 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-23 20:35:00.928 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-23 20:35:00.932 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-23 20:35:00.932 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-23 20:35:00.966 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-23 20:35:00.971 [debug] <0.94.0>@basho_bench_valgen:init_source:85 random source +2014-07-23 20:35:01.109 [debug] <0.97.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.98.0> +2014-07-23 20:35:01.116 [debug] <0.97.0> Supervisor net_sup started auth:start_link() at pid <0.99.0> +2014-07-23 20:35:01.130 [info] <0.96.0>@basho_bench_driver_floppystore:new:58 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-23 20:35:01.130 [debug] <0.97.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.100.0> +2014-07-23 20:35:01.130 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.97.0> +2014-07-23 20:35:01.146 [debug] <0.104.0> Supervisor inet_gethost_native_sup started undefined at pid <0.105.0> +2014-07-23 20:35:01.146 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.104.0> +2014-07-23 20:35:01.167 [info] <0.96.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 20:35:01.167 [info] <0.96.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-23 20:35:01.167 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-23 20:35:01.242 [info] <0.109.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 20:35:01.242 [info] <0.109.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-23 20:35:01.242 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.108.0> +2014-07-23 20:35:01.323 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 20:35:01.323 [info] <0.111.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 3 +2014-07-23 20:35:01.324 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_3, 3) at pid <0.110.0> +2014-07-23 20:35:01.402 [info] <0.113.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 20:35:01.402 [info] <0.113.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 4 +2014-07-23 20:35:01.402 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_4, 4) at pid <0.112.0> +2014-07-23 20:35:01.478 [info] <0.115.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 20:35:01.478 [info] <0.115.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 5 +2014-07-23 20:35:01.479 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_5, 5) at pid <0.114.0> +2014-07-23 20:35:01.479 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.116.0> +2014-07-23 20:35:01.487 [info] <0.115.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.115.0> +2014-07-23 20:35:01.487 [info] <0.113.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.113.0> +2014-07-23 20:35:01.487 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> +2014-07-23 20:35:01.487 [info] <0.109.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.109.0> +2014-07-23 20:35:01.487 [info] <0.96.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.96.0> +2014-07-23 20:35:01.487 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-23 20:35:05.557 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-23 20:35:05.557 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 20:35:05.558 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.110.0> exit with reason normal in context child_terminated +2014-07-23 20:35:05.671 [info] <0.201.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 20:35:05.671 [info] <0.201.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 3 +2014-07-23 20:35:05.671 [warning] <0.200.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-23 20:35:05.672 [info] <0.201.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.201.0> +2014-07-23 20:35:05.672 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_3, 3) at pid <0.200.0> +2014-07-23 20:35:10.046 [debug] <0.115.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{badmatch,{badrpc,{'EXIT',{timeout,{gen_fsm,sync_send_event,[<10082.21492.2>,{read,{263692,riak_dt_gcounter}}]}}}}},[{basho_bench_driver_floppystore,'-run/4-fun-0-',3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{lists,foreach,2,[{file,"lists.erl"},{line,1323}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 20:35:10.046 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash +2014-07-23 20:35:10.047 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.114.0> exit with reason normal in context child_terminated +2014-07-23 20:35:10.172 [info] <0.286.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 20:35:10.172 [info] <0.286.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 5 +2014-07-23 20:35:10.172 [warning] <0.283.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-23 20:35:10.172 [info] <0.286.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.286.0> +2014-07-23 20:35:10.173 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_5, 5) at pid <0.283.0> +2014-07-23 20:35:11.023 [debug] <0.96.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{badmatch,{badrpc,{'EXIT',{timeout,{gen_fsm,sync_send_event,[<10082.22579.2>,{read,{4131874,riak_dt_gcounter}}]}}}}},[{basho_bench_driver_floppystore,'-run/4-fun-0-',3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{lists,foreach,2,[{file,"lists.erl"},{line,1323}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 20:35:11.023 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with crash +2014-07-23 20:35:11.023 [debug] <0.305.0>@basho_bench_valgen:init_source:85 random source +2014-07-23 20:35:11.024 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated diff --git a/newtests/20140723_203459/crash.log b/newtests/20140723_203459/crash.log new file mode 100644 index 000000000..3da66a7f8 --- /dev/null +++ b/newtests/20140723_203459/crash.log @@ -0,0 +1,21 @@ +2014-07-23 20:35:05 =ERROR REPORT==== +Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + +2014-07-23 20:35:05 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>},{name,basho_bench_worker_3},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_3,3]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 20:35:10 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.114.0>},{name,basho_bench_worker_5},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_5,5]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 20:35:11 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/20140723_203459/error.log b/newtests/20140723_203459/error.log new file mode 100644 index 000000000..c168cb65d --- /dev/null +++ b/newtests/20140723_203459/error.log @@ -0,0 +1,9 @@ +2014-07-23 20:35:05.557 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-23 20:35:05.557 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 20:35:05.558 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.110.0> exit with reason normal in context child_terminated +2014-07-23 20:35:10.046 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash +2014-07-23 20:35:10.047 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.114.0> exit with reason normal in context child_terminated +2014-07-23 20:35:11.023 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with crash +2014-07-23 20:35:11.024 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated diff --git a/newtests/20140723_203459/errors.csv b/newtests/20140723_203459/errors.csv new file mode 100644 index 000000000..29210b502 --- /dev/null +++ b/newtests/20140723_203459/errors.csv @@ -0,0 +1 @@ +"error","count" diff --git a/newtests/20140723_203459/floppstore.config b/newtests/20140723_203459/floppstore.config new file mode 100644 index 000000000..1413752d5 --- /dev/null +++ b/newtests/20140723_203459/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 5}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {uniform_int, 5000000}}. + +{value_generator, {fixed_bin, 10}}. + +{operations, [{static_tx, 1}, {interactive_tx,1}]}. %% , {append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140723_203459/itx_latency.csv b/newtests/20140723_203459/itx_latency.csv new file mode 100644 index 000000000..2cee6f0d8 --- /dev/null +++ b/newtests/20140723_203459/itx_latency.csv @@ -0,0 +1 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors diff --git a/newtests/20140723_203459/log.sasl.txt b/newtests/20140723_203459/log.sasl.txt new file mode 100644 index 000000000..2cea27def --- /dev/null +++ b/newtests/20140723_203459/log.sasl.txt @@ -0,0 +1,291 @@ + +=PROGRESS REPORT==== 23-Jul-2014::20:35:00 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::20:35:00 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::20:35:00 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 23-Jul-2014::20:35:00 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::20:35:00 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 23-Jul-2014::20:35:00 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::20:35:00 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 23-Jul-2014::20:35:00 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 23-Jul-2014::20:35:00 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::20:35:00 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::20:35:00 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 23-Jul-2014::20:35:00 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::20:35:01 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::20:35:01 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::20:35:01 === + supervisor: {local,net_sup} + started: [{pid,<0.100.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::20:35:01 === + supervisor: {local,kernel_sup} + started: [{pid,<0.97.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 23-Jul-2014::20:35:01 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.105.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 23-Jul-2014::20:35:01 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.104.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::20:35:01 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::20:35:01 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.108.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::20:35:01 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.110.0>}, + {name,basho_bench_worker_3}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_3,3]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::20:35:01 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.112.0>}, + {name,basho_bench_worker_4}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_4,4]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::20:35:01 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.114.0>}, + {name,basho_bench_worker_5}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_5,5]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::20:35:01 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.116.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::20:35:01 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 23-Jul-2014::20:35:05 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>}, + {name,basho_bench_worker_3}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_3,3]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 23-Jul-2014::20:35:05 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.200.0>}, + {name,basho_bench_worker_3}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_3,3]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 23-Jul-2014::20:35:10 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.114.0>}, + {name,basho_bench_worker_5}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_5,5]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 23-Jul-2014::20:35:10 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.283.0>}, + {name,basho_bench_worker_5}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_5,5]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 23-Jul-2014::20:35:11 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 23-Jul-2014::20:35:11 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.305.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] diff --git a/newtests/20140723_203459/stx_latency.csv b/newtests/20140723_203459/stx_latency.csv new file mode 100644 index 000000000..2cee6f0d8 --- /dev/null +++ b/newtests/20140723_203459/stx_latency.csv @@ -0,0 +1 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors diff --git a/newtests/20140723_203459/summary.csv b/newtests/20140723_203459/summary.csv new file mode 100644 index 000000000..fa9e41e5d --- /dev/null +++ b/newtests/20140723_203459/summary.csv @@ -0,0 +1 @@ +elapsed, window, total, successful, failed diff --git a/newtests/current/console.log b/newtests/current/console.log new file mode 100644 index 000000000..a50cbe2ee --- /dev/null +++ b/newtests/current/console.log @@ -0,0 +1,77 @@ +2014-07-23 20:34:59.856 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_203459/error.log"} into lager_event +2014-07-23 20:34:59.856 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, + "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_203459/console.log"} into lager_event +2014-07-23 20:34:59.856 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger +2014-07-23 20:34:59.889 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> +2014-07-23 20:34:59.889 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> +2014-07-23 20:34:59.889 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> +2014-07-23 20:34:59.890 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> +2014-07-23 20:35:00.329 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event +2014-07-23 20:35:00.701 [info] <0.7.0> Application lager started on node nonode@nohost +2014-07-23 20:35:00.702 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_203459/console.log to debug +2014-07-23 20:35:00.715 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB +2014-07-23 20:35:00.796 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> +2014-07-23 20:35:00.796 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> +2014-07-23 20:35:00.797 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> +2014-07-23 20:35:00.812 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> +2014-07-23 20:35:00.812 [info] <0.7.0> Application sasl started on node nonode@nohost +2014-07-23 20:35:00.897 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> +2014-07-23 20:35:00.897 [info] <0.7.0> Application crypto started on node nonode@nohost +2014-07-23 20:35:00.924 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> +2014-07-23 20:35:00.928 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> +2014-07-23 20:35:00.932 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> +2014-07-23 20:35:00.932 [info] <0.7.0> Application folsom started on node nonode@nohost +2014-07-23 20:35:00.966 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> +2014-07-23 20:35:00.971 [debug] <0.94.0>@basho_bench_valgen:init_source:85 random source +2014-07-23 20:35:01.109 [debug] <0.97.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.98.0> +2014-07-23 20:35:01.116 [debug] <0.97.0> Supervisor net_sup started auth:start_link() at pid <0.99.0> +2014-07-23 20:35:01.130 [info] <0.96.0>@basho_bench_driver_floppystore:new:58 Net kernel started as 'floppy_bench@127.0.0.1' +2014-07-23 20:35:01.130 [debug] <0.97.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.100.0> +2014-07-23 20:35:01.130 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.97.0> +2014-07-23 20:35:01.146 [debug] <0.104.0> Supervisor inet_gethost_native_sup started undefined at pid <0.105.0> +2014-07-23 20:35:01.146 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.104.0> +2014-07-23 20:35:01.167 [info] <0.96.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 20:35:01.167 [info] <0.96.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 +2014-07-23 20:35:01.167 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> +2014-07-23 20:35:01.242 [info] <0.109.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 20:35:01.242 [info] <0.109.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 +2014-07-23 20:35:01.242 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.108.0> +2014-07-23 20:35:01.323 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 20:35:01.323 [info] <0.111.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 3 +2014-07-23 20:35:01.324 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_3, 3) at pid <0.110.0> +2014-07-23 20:35:01.402 [info] <0.113.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 20:35:01.402 [info] <0.113.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 4 +2014-07-23 20:35:01.402 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_4, 4) at pid <0.112.0> +2014-07-23 20:35:01.478 [info] <0.115.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 20:35:01.478 [info] <0.115.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 5 +2014-07-23 20:35:01.479 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_5, 5) at pid <0.114.0> +2014-07-23 20:35:01.479 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.116.0> +2014-07-23 20:35:01.487 [info] <0.115.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.115.0> +2014-07-23 20:35:01.487 [info] <0.113.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.113.0> +2014-07-23 20:35:01.487 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> +2014-07-23 20:35:01.487 [info] <0.109.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.109.0> +2014-07-23 20:35:01.487 [info] <0.96.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.96.0> +2014-07-23 20:35:01.487 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' +2014-07-23 20:35:05.557 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-23 20:35:05.557 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 20:35:05.558 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.110.0> exit with reason normal in context child_terminated +2014-07-23 20:35:05.671 [info] <0.201.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 20:35:05.671 [info] <0.201.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 3 +2014-07-23 20:35:05.671 [warning] <0.200.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-23 20:35:05.672 [info] <0.201.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.201.0> +2014-07-23 20:35:05.672 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_3, 3) at pid <0.200.0> +2014-07-23 20:35:10.046 [debug] <0.115.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{badmatch,{badrpc,{'EXIT',{timeout,{gen_fsm,sync_send_event,[<10082.21492.2>,{read,{263692,riak_dt_gcounter}}]}}}}},[{basho_bench_driver_floppystore,'-run/4-fun-0-',3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{lists,foreach,2,[{file,"lists.erl"},{line,1323}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 20:35:10.046 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash +2014-07-23 20:35:10.047 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.114.0> exit with reason normal in context child_terminated +2014-07-23 20:35:10.172 [info] <0.286.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' +2014-07-23 20:35:10.172 [info] <0.286.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 5 +2014-07-23 20:35:10.172 [warning] <0.283.0>@basho_bench_worker:init:124 Restarting crashed worker. +2014-07-23 20:35:10.172 [info] <0.286.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.286.0> +2014-07-23 20:35:10.173 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_5, 5) at pid <0.283.0> +2014-07-23 20:35:11.023 [debug] <0.96.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{badmatch,{badrpc,{'EXIT',{timeout,{gen_fsm,sync_send_event,[<10082.22579.2>,{read,{4131874,riak_dt_gcounter}}]}}}}},[{basho_bench_driver_floppystore,'-run/4-fun-0-',3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{lists,foreach,2,[{file,"lists.erl"},{line,1323}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 20:35:11.023 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with crash +2014-07-23 20:35:11.023 [debug] <0.305.0>@basho_bench_valgen:init_source:85 random source +2014-07-23 20:35:11.024 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated diff --git a/newtests/current/crash.log b/newtests/current/crash.log new file mode 100644 index 000000000..3da66a7f8 --- /dev/null +++ b/newtests/current/crash.log @@ -0,0 +1,21 @@ +2014-07-23 20:35:05 =ERROR REPORT==== +Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + +2014-07-23 20:35:05 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>},{name,basho_bench_worker_3},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_3,3]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 20:35:10 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.114.0>},{name,basho_bench_worker_5},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_5,5]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + +2014-07-23 20:35:11 =SUPERVISOR REPORT==== + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] + diff --git a/newtests/current/error.log b/newtests/current/error.log new file mode 100644 index 000000000..c168cb65d --- /dev/null +++ b/newtests/current/error.log @@ -0,0 +1,9 @@ +2014-07-23 20:35:05.557 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} + + +2014-07-23 20:35:05.557 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} +2014-07-23 20:35:05.558 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.110.0> exit with reason normal in context child_terminated +2014-07-23 20:35:10.046 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash +2014-07-23 20:35:10.047 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.114.0> exit with reason normal in context child_terminated +2014-07-23 20:35:11.023 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with crash +2014-07-23 20:35:11.024 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated diff --git a/newtests/current/errors.csv b/newtests/current/errors.csv new file mode 100644 index 000000000..29210b502 --- /dev/null +++ b/newtests/current/errors.csv @@ -0,0 +1 @@ +"error","count" diff --git a/newtests/current/floppstore.config b/newtests/current/floppstore.config new file mode 100644 index 000000000..1413752d5 --- /dev/null +++ b/newtests/current/floppstore.config @@ -0,0 +1,23 @@ +{mode, max}. + +{duration, 1}. + +{concurrent, 5}. + +{driver, basho_bench_driver_floppystore}. + +{key_generator, {uniform_int, 5000000}}. + +{value_generator, {fixed_bin, 10}}. + +{operations, [{static_tx, 1}, {interactive_tx,1}]}. %% , {append, 1}, {read, 1}]}. + +%% the second element in the list below (e.g., "../../public/bitcask") must point to +%% the relevant directory of a bitcask installation +{code_paths, ["../floppystore/ebin"]}. + +{floppystore_nodes, ['floppy@127.0.0.1']}. +{floppystore_cookie, floppy}. + +{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. +{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/current/itx_latency.csv b/newtests/current/itx_latency.csv new file mode 100644 index 000000000..2cee6f0d8 --- /dev/null +++ b/newtests/current/itx_latency.csv @@ -0,0 +1 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors diff --git a/newtests/current/log.sasl.txt b/newtests/current/log.sasl.txt new file mode 100644 index 000000000..2cea27def --- /dev/null +++ b/newtests/current/log.sasl.txt @@ -0,0 +1,291 @@ + +=PROGRESS REPORT==== 23-Jul-2014::20:35:00 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.71.0>}, + {name,alarm_handler}, + {mfargs,{alarm_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::20:35:00 === + supervisor: {local,sasl_safe_sup} + started: [{pid,<0.72.0>}, + {name,overload}, + {mfargs,{overload,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::20:35:00 === + supervisor: {local,sasl_sup} + started: [{pid,<0.70.0>}, + {name,sasl_safe_sup}, + {mfargs, + {supervisor,start_link, + [{local,sasl_safe_sup},sasl,safe]}}, + {restart_type,permanent}, + {shutdown,infinity}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 23-Jul-2014::20:35:00 === + supervisor: {local,sasl_sup} + started: [{pid,<0.73.0>}, + {name,release_handler}, + {mfargs,{release_handler,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::20:35:00 === + application: sasl + started_at: nonode@nohost + +=PROGRESS REPORT==== 23-Jul-2014::20:35:00 === + supervisor: {local,crypto_sup} + started: [{pid,<0.79.0>}, + {name,crypto_server}, + {mfargs,{crypto_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::20:35:00 === + application: crypto + started_at: nonode@nohost + +=PROGRESS REPORT==== 23-Jul-2014::20:35:00 === + supervisor: {local,folsom_sup} + started: [{pid,<0.89.0>}, + {name,folsom_sample_slide_sup}, + {mfargs,{folsom_sample_slide_sup,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 23-Jul-2014::20:35:00 === + supervisor: {local,folsom_sup} + started: [{pid,<0.90.0>}, + {name,folsom_meter_timer_server}, + {mfargs,{folsom_meter_timer_server,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::20:35:00 === + supervisor: {local,folsom_sup} + started: [{pid,<0.91.0>}, + {name,folsom_metrics_histogram_ets}, + {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::20:35:00 === + application: folsom + started_at: nonode@nohost + +=PROGRESS REPORT==== 23-Jul-2014::20:35:00 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.84.0>}, + {name,basho_bench_stats}, + {mfargs,{basho_bench_stats,start_link,[]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::20:35:01 === + supervisor: {local,net_sup} + started: [{pid,<0.98.0>}, + {name,erl_epmd}, + {mfargs,{erl_epmd,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::20:35:01 === + supervisor: {local,net_sup} + started: [{pid,<0.99.0>}, + {name,auth}, + {mfargs,{auth,start_link,[]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::20:35:01 === + supervisor: {local,net_sup} + started: [{pid,<0.100.0>}, + {name,net_kernel}, + {mfargs, + {net_kernel,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,2000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::20:35:01 === + supervisor: {local,kernel_sup} + started: [{pid,<0.97.0>}, + {name,net_sup_dynamic}, + {mfargs, + {erl_distribution,start_link, + [['floppy_bench@127.0.0.1',longnames]]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,supervisor}] + +=PROGRESS REPORT==== 23-Jul-2014::20:35:01 === + supervisor: {local,inet_gethost_native_sup} + started: [{pid,<0.105.0>},{mfa,{inet_gethost_native,init,[[]]}}] + +=PROGRESS REPORT==== 23-Jul-2014::20:35:01 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.104.0>}, + {name,inet_gethost_native_sup}, + {mfargs,{inet_gethost_native,start_link,[]}}, + {restart_type,temporary}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::20:35:01 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::20:35:01 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.108.0>}, + {name,basho_bench_worker_2}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_2,2]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::20:35:01 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.110.0>}, + {name,basho_bench_worker_3}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_3,3]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::20:35:01 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.112.0>}, + {name,basho_bench_worker_4}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_4,4]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::20:35:01 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.114.0>}, + {name,basho_bench_worker_5}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_5,5]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::20:35:01 === + supervisor: {local,kernel_safe_sup} + started: [{pid,<0.116.0>}, + {name,timer_server}, + {mfargs,{timer,start_link,[]}}, + {restart_type,permanent}, + {shutdown,1000}, + {child_type,worker}] + +=PROGRESS REPORT==== 23-Jul-2014::20:35:01 === + application: basho_bench + started_at: 'floppy_bench@127.0.0.1' + +=SUPERVISOR REPORT==== 23-Jul-2014::20:35:05 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.110.0>}, + {name,basho_bench_worker_3}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_3,3]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 23-Jul-2014::20:35:05 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.200.0>}, + {name,basho_bench_worker_3}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_3,3]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 23-Jul-2014::20:35:10 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.114.0>}, + {name,basho_bench_worker_5}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_5,5]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 23-Jul-2014::20:35:10 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.283.0>}, + {name,basho_bench_worker_5}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_5,5]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + +=SUPERVISOR REPORT==== 23-Jul-2014::20:35:11 === + Supervisor: {local,basho_bench_sup} + Context: child_terminated + Reason: normal + Offender: [{pid,<0.94.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] + + +=PROGRESS REPORT==== 23-Jul-2014::20:35:11 === + supervisor: {local,basho_bench_sup} + started: [{pid,<0.305.0>}, + {name,basho_bench_worker_1}, + {mfargs, + {basho_bench_worker,start_link, + [basho_bench_worker_1,1]}}, + {restart_type,permanent}, + {shutdown,5000}, + {child_type,worker}] diff --git a/newtests/current/stx_latency.csv b/newtests/current/stx_latency.csv new file mode 100644 index 000000000..2cee6f0d8 --- /dev/null +++ b/newtests/current/stx_latency.csv @@ -0,0 +1 @@ +elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors diff --git a/newtests/current/summary.csv b/newtests/current/summary.csv new file mode 100644 index 000000000..fa9e41e5d --- /dev/null +++ b/newtests/current/summary.csv @@ -0,0 +1 @@ +elapsed, window, total, successful, failed diff --git a/src/basho_bench_driver_floppystore.erl b/src/basho_bench_driver_floppystore.erl index a6c65e0fb..93a265ea7 100644 --- a/src/basho_bench_driver_floppystore.erl +++ b/src/basho_bench_driver_floppystore.erl @@ -80,7 +80,7 @@ new(Id) -> run(read, KeyGen, _ValueGen, State=#state{node=Node}) -> Key = KeyGen(), KeyType = get_key_type(Key), - BinaryKey = Key,%<<(Key):32/big>>, + BinaryKey = Key, %%<<(Key):32/big>>, Res = rpc:call(Node, floppy, read, [BinaryKey, KeyType], ?TIMEOUT), case Res of {ok, _Value} -> @@ -96,9 +96,9 @@ run(read, KeyGen, _ValueGen, State=#state{node=Node}) -> run(append, KeyGen, ValueGen, State=#state{node=Node, worker_id=Id, type_dict=TypeDict}) -> Key = KeyGen(), Type = get_key_type(Key), - BinaryKey = Key,%<<(Key):32/big>>, - KeyParam = get_random_param(TypeDict, Type, Id, ValueGen()), - Res = rpc:call(Node, floppy, append, [BinaryKey, KeyParam], ?TIMEOUT), + BinaryKey = Key, %%<<(Key):32/big>>, + {Type, KeyParam} = get_random_param(TypeDict, Type, Id, ValueGen()), + Res = rpc:call(Node, floppy, append, [BinaryKey, Type, KeyParam], ?TIMEOUT), case Res of {ok, _Result} -> {ok, State}; @@ -110,14 +110,14 @@ run(append, KeyGen, ValueGen, State=#state{node=Node, worker_id=Id, type_dict=Ty {ok, State} end; %% @doc Start a static transaction -run(static_tx, KeyGen, ValueGen, State=#state{node=Node, time=ClientTime, worker_id=Id, type_dict=Dict}) -> +run(stx, KeyGen, ValueGen, State=#state{node=Node, time=ClientTime, worker_id=Id, type_dict=Dict}) -> random:seed(now()), NumAppend = random:uniform(10), NumRead = random:uniform(10), ListAppends = get_random_append_ops(NumAppend, Dict, Id, KeyGen, ValueGen), ListReads = get_random_read_ops(NumRead, KeyGen), ListOps = ListAppends++ListReads, - Res = rpc:call(Node, floppy, clockSI_execute_TX, [ClientTime, ListOps], ?TIMEOUT), + Res = rpc:call(Node, floppy, clocksi_execute_tx, [ClientTime, ListOps], ?TIMEOUT), case Res of {ok, _ReadSet, CommitTime} -> {ok, State#state{time=CommitTime}}; @@ -128,7 +128,7 @@ run(static_tx, KeyGen, ValueGen, State=#state{node=Node, time=ClientTime, worker _Reason -> {ok, State} end; -run(interactive_tx, KeyGen, ValueGen, State=#state{node=Node, worker_id=Id, type_dict=Dict}) -> +run(itx, KeyGen, ValueGen, State=#state{node=Node, worker_id=Id, type_dict=Dict}) -> random:seed(now()), NumAppend = random:uniform(10), NumRead = random:uniform(10), @@ -136,15 +136,15 @@ run(interactive_tx, KeyGen, ValueGen, State=#state{node=Node, worker_id=Id, type ListReads = get_random_read_ops(NumRead, KeyGen), ListOps = ListAppends++ListReads, RandomOps = [X||{_,X} <- lists:sort([ {random:uniform(), N} || N <- ListOps])], - {ok, TxId} = rpc:call(Node, floppy, clockSI_istart_tx, [now()], ?TIMEOUT), + {ok, TxId} = rpc:call(Node, floppy, clocksi_istart_tx, [now()], ?TIMEOUT), ExecuteFun = fun(X) -> case X of - {update, UKey, UParam} -> ok = rpc:call(Node, floppy, clockSI_iupdate, [TxId, UKey, UParam]); - {read, RKey, RType} -> {ok, _} = rpc:call(Node, floppy, clockSI_iread, [TxId, RKey, RType]) + {update, UKey, UType, UParam} -> ok = rpc:call(Node, floppy, clocksi_iupdate, [TxId, UKey, UType, UParam]); + {read, RKey, RType} -> {ok, _} = rpc:call(Node, floppy, clocksi_iread, [TxId, RKey, RType]) end end, lists:foreach(ExecuteFun, RandomOps), - {ok, _} = rpc:call(Node, floppy, clockSI_iprepare, [TxId]), - End=rpc:call(Node, floppy, clockSI_icommit, [TxId]), + {ok, _} = rpc:call(Node, floppy, clocksi_iprepare, [TxId]), + End=rpc:call(Node, floppy, clocksi_icommit, [TxId]), case End of {ok, _} -> {ok, State}; @@ -170,14 +170,14 @@ ping_each([Node | Rest]) -> ?FAIL_MSG("Failed to ping node ~p\n", [Node]) end. -get_key_type(_Key) -> - %Rem = Key rem 10, - %case Rem > 5 of - % true -> - riak_dt_gcounter. - % false -> - % riak_dt_gset - %end. +get_key_type(Key) -> + Rem = Key rem 10, + case Rem > 5 of + true -> + riak_dt_gcounter; + false -> + riak_dt_gset + end. get_random_param(Dict, Type, Actor, Value) -> Params = dict:fetch(Type, Dict), @@ -185,16 +185,16 @@ get_random_param(Dict, Type, Actor, Value) -> Num = random:uniform(length(Params)), case Type of riak_dt_gcounter -> - {lists:nth(Num, Params), Actor}; + {riak_dt_gcounter, {lists:nth(Num, Params), Actor}}; riak_dt_gset -> - {{lists:nth(Num, Params), Value}, Actor} + {riak_dt_gset, {{lists:nth(Num, Params), Value}, Actor}} end. get_random_append_op(Key, Dict, Actor, Value) -> Type = get_key_type(Key), - Params = get_random_param(Dict, Type, Actor, Value), - {update, Key, Params}. + {Type, Params} = get_random_param(Dict, Type, Actor, Value), + {update, Key, Type, Params}. get_random_read_op(Key) -> Type = get_key_type(Key), From 6a87e491edcd7e9ccdc32468245484608270e761 Mon Sep 17 00:00:00 2001 From: Zhongmiao Li Date: Wed, 13 Aug 2014 21:37:13 +0200 Subject: [PATCH 9/9] Remove generated results of tes --- newtests/20140701_112946/append_latencies.csv | 8 - newtests/20140701_112946/console.log | 43 -- newtests/20140701_112946/crash.log | 0 newtests/20140701_112946/error.log | 0 newtests/20140701_112946/errors.csv | 1 - newtests/20140701_112946/floppstore.config | 22 - newtests/20140701_112946/log.sasl.txt | 183 ------- newtests/20140701_112946/read_latencies.csv | 8 - newtests/20140701_112946/summary.csv | 8 - newtests/20140709_125412/append_latencies.csv | 8 - newtests/20140709_125412/console.log | 43 -- newtests/20140709_125412/crash.log | 0 newtests/20140709_125412/error.log | 0 newtests/20140709_125412/errors.csv | 1 - newtests/20140709_125412/floppstore.config | 22 - newtests/20140709_125412/log.sasl.txt | 183 ------- newtests/20140709_125412/read_latencies.csv | 8 - newtests/20140709_125412/summary.csv | 8 - newtests/20140711_182613/append_latencies.csv | 1 - newtests/20140711_182613/console.log | 35 -- newtests/20140711_182613/crash.log | 0 newtests/20140711_182613/error.log | 1 - newtests/20140711_182613/errors.csv | 1 - newtests/20140711_182613/floppstore.config | 22 - newtests/20140711_182613/log.sasl.txt | 159 ------ newtests/20140711_182613/read_latencies.csv | 1 - newtests/20140711_182613/summary.csv | 1 - newtests/20140711_182632/append_latencies.csv | 2 - newtests/20140711_182632/console.log | 93 ---- newtests/20140711_182632/crash.log | 42 -- newtests/20140711_182632/error.log | 13 - newtests/20140711_182632/errors.csv | 2 - newtests/20140711_182632/floppstore.config | 22 - newtests/20140711_182632/log.sasl.txt | 336 ------------- newtests/20140711_182632/read_latencies.csv | 2 - newtests/20140711_182632/summary.csv | 2 - newtests/20140711_182641/append_latencies.csv | 2 - newtests/20140711_182641/console.log | 92 ---- newtests/20140711_182641/crash.log | 42 -- newtests/20140711_182641/error.log | 13 - newtests/20140711_182641/errors.csv | 2 - newtests/20140711_182641/floppstore.config | 22 - newtests/20140711_182641/log.sasl.txt | 336 ------------- newtests/20140711_182641/read_latencies.csv | 2 - newtests/20140711_182641/summary.csv | 2 - newtests/20140716_154312/append_latencies.csv | 1 - newtests/20140716_154312/console.log | 35 -- newtests/20140716_154312/crash.log | 0 newtests/20140716_154312/error.log | 1 - newtests/20140716_154312/errors.csv | 1 - newtests/20140716_154312/floppstore.config | 23 - newtests/20140716_154312/log.sasl.txt | 159 ------ newtests/20140716_154312/read_latencies.csv | 1 - newtests/20140716_154312/summary.csv | 1 - newtests/20140716_154402/append_latencies.csv | 1 - newtests/20140716_154402/console.log | 35 -- newtests/20140716_154402/crash.log | 0 newtests/20140716_154402/error.log | 1 - newtests/20140716_154402/errors.csv | 1 - newtests/20140716_154402/floppstore.config | 23 - newtests/20140716_154402/log.sasl.txt | 159 ------ newtests/20140716_154402/read_latencies.csv | 1 - newtests/20140716_154402/summary.csv | 1 - newtests/20140716_154446/append_latencies.csv | 2 - newtests/20140716_154446/console.log | 91 ---- newtests/20140716_154446/crash.log | 42 -- newtests/20140716_154446/error.log | 13 - newtests/20140716_154446/errors.csv | 2 - newtests/20140716_154446/floppstore.config | 23 - newtests/20140716_154446/log.sasl.txt | 336 ------------- newtests/20140716_154446/read_latencies.csv | 2 - newtests/20140716_154446/summary.csv | 2 - newtests/20140716_155207/append_latencies.csv | 2 - newtests/20140716_155207/console.log | 105 ---- newtests/20140716_155207/crash.log | 42 -- newtests/20140716_155207/error.log | 13 - newtests/20140716_155207/errors.csv | 2 - newtests/20140716_155207/floppstore.config | 23 - newtests/20140716_155207/log.sasl.txt | 336 ------------- newtests/20140716_155207/read_latencies.csv | 2 - newtests/20140716_155207/summary.csv | 2 - newtests/20140716_155332/append_latencies.csv | 2 - newtests/20140716_155332/console.log | 105 ---- newtests/20140716_155332/crash.log | 42 -- newtests/20140716_155332/error.log | 13 - newtests/20140716_155332/errors.csv | 2 - newtests/20140716_155332/floppstore.config | 23 - newtests/20140716_155332/log.sasl.txt | 336 ------------- newtests/20140716_155332/read_latencies.csv | 2 - newtests/20140716_155332/summary.csv | 2 - newtests/20140716_155458/console.log | 0 newtests/20140716_155458/crash.log | 0 newtests/20140716_155458/error.log | 0 newtests/20140716_155521/append_latencies.csv | 2 - newtests/20140716_155521/console.log | 105 ---- newtests/20140716_155521/crash.log | 42 -- newtests/20140716_155521/error.log | 13 - newtests/20140716_155521/errors.csv | 2 - newtests/20140716_155521/floppstore.config | 23 - newtests/20140716_155521/log.sasl.txt | 336 ------------- newtests/20140716_155521/read_latencies.csv | 2 - newtests/20140716_155521/summary.csv | 2 - newtests/20140716_155627/append_latencies.csv | 2 - newtests/20140716_155627/console.log | 106 ---- newtests/20140716_155627/crash.log | 42 -- newtests/20140716_155627/error.log | 13 - newtests/20140716_155627/errors.csv | 2 - newtests/20140716_155627/floppstore.config | 23 - newtests/20140716_155627/log.sasl.txt | 336 ------------- newtests/20140716_155627/read_latencies.csv | 2 - newtests/20140716_155627/summary.csv | 2 - newtests/20140716_160035/append_latencies.csv | 2 - newtests/20140716_160035/console.log | 105 ---- newtests/20140716_160035/crash.log | 42 -- newtests/20140716_160035/error.log | 13 - newtests/20140716_160035/errors.csv | 2 - newtests/20140716_160035/floppstore.config | 23 - newtests/20140716_160035/log.sasl.txt | 336 ------------- newtests/20140716_160035/read_latencies.csv | 2 - newtests/20140716_160035/summary.csv | 2 - newtests/20140716_160222/append_latencies.csv | 2 - newtests/20140716_160222/console.log | 106 ---- newtests/20140716_160222/crash.log | 42 -- newtests/20140716_160222/error.log | 13 - newtests/20140716_160222/errors.csv | 2 - newtests/20140716_160222/floppstore.config | 23 - newtests/20140716_160222/log.sasl.txt | 336 ------------- newtests/20140716_160222/read_latencies.csv | 2 - newtests/20140716_160222/summary.csv | 2 - newtests/20140716_160324/console.log | 0 newtests/20140716_160324/crash.log | 0 newtests/20140716_160324/error.log | 0 newtests/20140716_160324/floppstore.config | 23 - newtests/20140716_160324/log.sasl.txt | 42 -- newtests/20140716_160337/append_latencies.csv | 2 - newtests/20140716_160337/console.log | 98 ---- newtests/20140716_160337/crash.log | 42 -- newtests/20140716_160337/error.log | 13 - newtests/20140716_160337/errors.csv | 2 - newtests/20140716_160337/floppstore.config | 23 - newtests/20140716_160337/log.sasl.txt | 336 ------------- newtests/20140716_160337/read_latencies.csv | 2 - newtests/20140716_160337/summary.csv | 2 - newtests/20140716_160632/append_latencies.csv | 2 - newtests/20140716_160632/console.log | 98 ---- newtests/20140716_160632/crash.log | 42 -- newtests/20140716_160632/error.log | 13 - newtests/20140716_160632/errors.csv | 2 - newtests/20140716_160632/floppstore.config | 23 - newtests/20140716_160632/log.sasl.txt | 336 ------------- newtests/20140716_160632/read_latencies.csv | 2 - newtests/20140716_160632/summary.csv | 2 - newtests/20140716_161238/append_latencies.csv | 2 - newtests/20140716_161238/console.log | 91 ---- newtests/20140716_161238/crash.log | 42 -- newtests/20140716_161238/error.log | 13 - newtests/20140716_161238/errors.csv | 2 - newtests/20140716_161238/floppstore.config | 23 - newtests/20140716_161238/log.sasl.txt | 336 ------------- newtests/20140716_161238/read_latencies.csv | 2 - newtests/20140716_161238/summary.csv | 2 - newtests/20140716_161437/append_latencies.csv | 2 - newtests/20140716_161437/console.log | 91 ---- newtests/20140716_161437/crash.log | 42 -- newtests/20140716_161437/error.log | 13 - newtests/20140716_161437/errors.csv | 2 - newtests/20140716_161437/floppstore.config | 23 - newtests/20140716_161437/log.sasl.txt | 336 ------------- newtests/20140716_161437/read_latencies.csv | 2 - newtests/20140716_161437/summary.csv | 2 - newtests/20140716_161530/append_latencies.csv | 2 - newtests/20140716_161530/console.log | 92 ---- newtests/20140716_161530/crash.log | 42 -- newtests/20140716_161530/error.log | 13 - newtests/20140716_161530/errors.csv | 2 - newtests/20140716_161530/floppstore.config | 23 - newtests/20140716_161530/log.sasl.txt | 336 ------------- newtests/20140716_161530/read_latencies.csv | 2 - newtests/20140716_161530/summary.csv | 2 - newtests/20140716_161614/append_latencies.csv | 2 - newtests/20140716_161614/console.log | 93 ---- newtests/20140716_161614/crash.log | 42 -- newtests/20140716_161614/error.log | 13 - newtests/20140716_161614/errors.csv | 2 - newtests/20140716_161614/floppstore.config | 23 - newtests/20140716_161614/log.sasl.txt | 336 ------------- newtests/20140716_161614/read_latencies.csv | 2 - newtests/20140716_161614/summary.csv | 2 - newtests/20140716_162007/append_latencies.csv | 2 - newtests/20140716_162007/console.log | 100 ---- newtests/20140716_162007/crash.log | 60 --- newtests/20140716_162007/error.log | 31 -- newtests/20140716_162007/errors.csv | 1 - newtests/20140716_162007/floppstore.config | 23 - newtests/20140716_162007/log.sasl.txt | 336 ------------- newtests/20140716_162007/read_latencies.csv | 2 - newtests/20140716_162007/summary.csv | 2 - newtests/20140716_162303/append_latencies.csv | 2 - newtests/20140716_162303/console.log | 101 ---- newtests/20140716_162303/crash.log | 60 --- newtests/20140716_162303/error.log | 31 -- newtests/20140716_162303/errors.csv | 1 - newtests/20140716_162303/floppstore.config | 23 - newtests/20140716_162303/log.sasl.txt | 336 ------------- newtests/20140716_162303/read_latencies.csv | 2 - newtests/20140716_162303/summary.csv | 2 - newtests/20140716_162722/append_latencies.csv | 2 - newtests/20140716_162722/console.log | 100 ---- newtests/20140716_162722/crash.log | 60 --- newtests/20140716_162722/error.log | 31 -- newtests/20140716_162722/errors.csv | 1 - newtests/20140716_162722/floppstore.config | 23 - newtests/20140716_162722/log.sasl.txt | 336 ------------- newtests/20140716_162722/read_latencies.csv | 2 - newtests/20140716_162722/summary.csv | 2 - newtests/20140716_163000/append_latencies.csv | 2 - newtests/20140716_163000/console.log | 100 ---- newtests/20140716_163000/crash.log | 60 --- newtests/20140716_163000/error.log | 31 -- newtests/20140716_163000/errors.csv | 1 - newtests/20140716_163000/floppstore.config | 23 - newtests/20140716_163000/log.sasl.txt | 336 ------------- newtests/20140716_163000/read_latencies.csv | 2 - newtests/20140716_163000/summary.csv | 2 - newtests/20140716_163347/append_latencies.csv | 2 - newtests/20140716_163347/console.log | 100 ---- newtests/20140716_163347/crash.log | 60 --- newtests/20140716_163347/error.log | 31 -- newtests/20140716_163347/errors.csv | 1 - newtests/20140716_163347/floppstore.config | 23 - newtests/20140716_163347/log.sasl.txt | 336 ------------- newtests/20140716_163347/read_latencies.csv | 2 - newtests/20140716_163347/summary.csv | 2 - newtests/20140716_163407/append_latencies.csv | 2 - newtests/20140716_163407/console.log | 100 ---- newtests/20140716_163407/crash.log | 60 --- newtests/20140716_163407/error.log | 31 -- newtests/20140716_163407/errors.csv | 1 - newtests/20140716_163407/floppstore.config | 23 - newtests/20140716_163407/log.sasl.txt | 336 ------------- newtests/20140716_163407/read_latencies.csv | 2 - newtests/20140716_163407/summary.csv | 2 - newtests/20140716_164802/append_latencies.csv | 2 - newtests/20140716_164802/console.log | 89 ---- newtests/20140716_164802/crash.log | 42 -- newtests/20140716_164802/error.log | 13 - newtests/20140716_164802/errors.csv | 2 - newtests/20140716_164802/floppstore.config | 23 - newtests/20140716_164802/log.sasl.txt | 336 ------------- newtests/20140716_164802/read_latencies.csv | 2 - newtests/20140716_164802/summary.csv | 2 - newtests/20140716_165104/append_latencies.csv | 2 - newtests/20140716_165104/console.log | 89 ---- newtests/20140716_165104/crash.log | 42 -- newtests/20140716_165104/error.log | 13 - newtests/20140716_165104/errors.csv | 2 - newtests/20140716_165104/floppstore.config | 23 - newtests/20140716_165104/log.sasl.txt | 336 ------------- newtests/20140716_165104/read_latencies.csv | 2 - newtests/20140716_165104/summary.csv | 2 - newtests/20140716_165306/append_latencies.csv | 2 - newtests/20140716_165306/console.log | 91 ---- newtests/20140716_165306/crash.log | 45 -- newtests/20140716_165306/error.log | 16 - newtests/20140716_165306/errors.csv | 2 - newtests/20140716_165306/floppstore.config | 23 - newtests/20140716_165306/log.sasl.txt | 336 ------------- newtests/20140716_165306/read_latencies.csv | 2 - newtests/20140716_165306/summary.csv | 2 - newtests/20140716_165356/append_latencies.csv | 2 - newtests/20140716_165356/console.log | 91 ---- newtests/20140716_165356/crash.log | 45 -- newtests/20140716_165356/error.log | 16 - newtests/20140716_165356/errors.csv | 2 - newtests/20140716_165356/floppstore.config | 23 - newtests/20140716_165356/log.sasl.txt | 336 ------------- newtests/20140716_165356/read_latencies.csv | 2 - newtests/20140716_165356/summary.csv | 2 - newtests/20140716_170644/append_latencies.csv | 2 - newtests/20140716_170644/console.log | 92 ---- newtests/20140716_170644/crash.log | 45 -- newtests/20140716_170644/error.log | 16 - newtests/20140716_170644/errors.csv | 2 - newtests/20140716_170644/floppstore.config | 23 - newtests/20140716_170644/log.sasl.txt | 336 ------------- newtests/20140716_170644/read_latencies.csv | 2 - newtests/20140716_170644/summary.csv | 2 - newtests/20140716_170806/append_latencies.csv | 2 - newtests/20140716_170806/console.log | 99 ---- newtests/20140716_170806/crash.log | 60 --- newtests/20140716_170806/error.log | 31 -- newtests/20140716_170806/errors.csv | 1 - newtests/20140716_170806/floppstore.config | 23 - newtests/20140716_170806/log.sasl.txt | 336 ------------- newtests/20140716_170806/read_latencies.csv | 2 - newtests/20140716_170806/summary.csv | 2 - newtests/20140716_202737/append_latencies.csv | 2 - newtests/20140716_202737/console.log | 99 ---- newtests/20140716_202737/crash.log | 60 --- newtests/20140716_202737/error.log | 31 -- newtests/20140716_202737/errors.csv | 1 - newtests/20140716_202737/floppstore.config | 23 - newtests/20140716_202737/log.sasl.txt | 336 ------------- newtests/20140716_202737/read_latencies.csv | 2 - newtests/20140716_202737/summary.csv | 2 - newtests/20140716_202950/append_latencies.csv | 5 - newtests/20140716_202950/console.log | 149 ------ newtests/20140716_202950/crash.log | 105 ---- newtests/20140716_202950/error.log | 56 --- newtests/20140716_202950/errors.csv | 1 - newtests/20140716_202950/floppstore.config | 23 - newtests/20140716_202950/log.sasl.txt | 461 ------------------ newtests/20140716_202950/read_latencies.csv | 5 - newtests/20140716_202950/summary.csv | 5 - newtests/20140716_203343/append_latencies.csv | 2 - newtests/20140716_203343/console.log | 52 -- newtests/20140716_203343/crash.log | 9 - newtests/20140716_203343/error.log | 5 - newtests/20140716_203343/errors.csv | 1 - newtests/20140716_203343/floppstore.config | 23 - newtests/20140716_203343/log.sasl.txt | 208 -------- newtests/20140716_203343/read_latencies.csv | 2 - newtests/20140716_203343/summary.csv | 2 - newtests/20140716_203731/append_latencies.csv | 4 - newtests/20140716_203731/console.log | 105 ---- newtests/20140716_203731/crash.log | 69 --- newtests/20140716_203731/error.log | 36 -- newtests/20140716_203731/errors.csv | 1 - newtests/20140716_203731/floppstore.config | 23 - newtests/20140716_203731/log.sasl.txt | 350 ------------- newtests/20140716_203731/read_latencies.csv | 4 - newtests/20140716_203731/summary.csv | 4 - newtests/20140716_204925/append_latencies.csv | 2 - newtests/20140716_204925/console.log | 96 ---- newtests/20140716_204925/crash.log | 60 --- newtests/20140716_204925/error.log | 31 -- newtests/20140716_204925/errors.csv | 1 - newtests/20140716_204925/floppstore.config | 23 - newtests/20140716_204925/log.sasl.txt | 325 ------------ newtests/20140716_204925/read_latencies.csv | 2 - newtests/20140716_204925/summary.csv | 2 - newtests/20140716_205022/append_latencies.csv | 2 - newtests/20140716_205022/console.log | 88 ---- newtests/20140716_205022/crash.log | 45 -- newtests/20140716_205022/error.log | 25 - newtests/20140716_205022/errors.csv | 1 - newtests/20140716_205022/floppstore.config | 23 - newtests/20140716_205022/log.sasl.txt | 297 ----------- newtests/20140716_205022/read_latencies.csv | 2 - newtests/20140716_205022/summary.csv | 2 - newtests/20140716_205202/append_latencies.csv | 3 - newtests/20140716_205202/console.log | 105 ---- newtests/20140716_205202/crash.log | 69 --- newtests/20140716_205202/error.log | 36 -- newtests/20140716_205202/errors.csv | 1 - newtests/20140716_205202/floppstore.config | 23 - newtests/20140716_205202/log.sasl.txt | 350 ------------- newtests/20140716_205202/read_latencies.csv | 3 - newtests/20140716_205202/summary.csv | 3 - newtests/20140716_205355/append_latencies.csv | 8 - newtests/20140716_205355/console.log | 39 -- newtests/20140716_205355/crash.log | 0 newtests/20140716_205355/error.log | 0 newtests/20140716_205355/errors.csv | 1 - newtests/20140716_205355/floppstore.config | 23 - newtests/20140716_205355/log.sasl.txt | 172 ------- newtests/20140716_205355/read_latencies.csv | 8 - newtests/20140716_205355/summary.csv | 8 - newtests/20140717_145625/append_latencies.csv | 3 - newtests/20140717_145625/console.log | 39 -- newtests/20140717_145625/crash.log | 0 newtests/20140717_145625/error.log | 0 newtests/20140717_145625/errors.csv | 1 - newtests/20140717_145625/floppstore.config | 23 - newtests/20140717_145625/log.sasl.txt | 172 ------- newtests/20140717_145625/read_latencies.csv | 3 - newtests/20140717_145625/summary.csv | 3 - newtests/20140717_145733/append_latencies.csv | 1 - newtests/20140717_145733/console.log | 36 -- newtests/20140717_145733/crash.log | 0 newtests/20140717_145733/error.log | 1 - newtests/20140717_145733/errors.csv | 1 - newtests/20140717_145733/floppstore.config | 23 - newtests/20140717_145733/log.sasl.txt | 159 ------ newtests/20140717_145733/read_latencies.csv | 1 - newtests/20140717_145733/summary.csv | 1 - newtests/20140717_145743/append_latencies.csv | 5 - newtests/20140717_145743/console.log | 103 ---- newtests/20140717_145743/crash.log | 60 --- newtests/20140717_145743/error.log | 31 -- newtests/20140717_145743/errors.csv | 1 - newtests/20140717_145743/floppstore.config | 23 - newtests/20140717_145743/log.sasl.txt | 336 ------------- newtests/20140717_145743/read_latencies.csv | 5 - newtests/20140717_145743/summary.csv | 5 - newtests/20140717_151128/append_latencies.csv | 2 - newtests/20140717_151128/console.log | 96 ---- newtests/20140717_151128/crash.log | 42 -- newtests/20140717_151128/error.log | 13 - newtests/20140717_151128/errors.csv | 2 - newtests/20140717_151128/floppstore.config | 23 - newtests/20140717_151128/log.sasl.txt | 336 ------------- newtests/20140717_151128/read_latencies.csv | 2 - newtests/20140717_151128/summary.csv | 2 - newtests/20140717_151250/append_latencies.csv | 2 - newtests/20140717_151250/console.log | 94 ---- newtests/20140717_151250/crash.log | 42 -- newtests/20140717_151250/error.log | 13 - newtests/20140717_151250/errors.csv | 2 - newtests/20140717_151250/floppstore.config | 23 - newtests/20140717_151250/log.sasl.txt | 336 ------------- newtests/20140717_151250/read_latencies.csv | 2 - newtests/20140717_151250/summary.csv | 2 - newtests/20140717_151444/append_latencies.csv | 2 - newtests/20140717_151444/console.log | 94 ---- newtests/20140717_151444/crash.log | 42 -- newtests/20140717_151444/error.log | 13 - newtests/20140717_151444/errors.csv | 2 - newtests/20140717_151444/floppstore.config | 23 - newtests/20140717_151444/log.sasl.txt | 336 ------------- newtests/20140717_151444/read_latencies.csv | 2 - newtests/20140717_151444/summary.csv | 2 - newtests/20140717_151946/append_latencies.csv | 2 - newtests/20140717_151946/console.log | 94 ---- newtests/20140717_151946/crash.log | 42 -- newtests/20140717_151946/error.log | 13 - newtests/20140717_151946/errors.csv | 2 - newtests/20140717_151946/floppstore.config | 23 - newtests/20140717_151946/log.sasl.txt | 336 ------------- newtests/20140717_151946/read_latencies.csv | 2 - newtests/20140717_151946/summary.csv | 2 - newtests/20140717_152313/append_latencies.csv | 2 - newtests/20140717_152313/console.log | 95 ---- newtests/20140717_152313/crash.log | 42 -- newtests/20140717_152313/error.log | 13 - newtests/20140717_152313/errors.csv | 2 - newtests/20140717_152313/floppstore.config | 23 - newtests/20140717_152313/log.sasl.txt | 336 ------------- newtests/20140717_152313/read_latencies.csv | 2 - newtests/20140717_152313/summary.csv | 2 - newtests/20140717_152423/append_latencies.csv | 2 - newtests/20140717_152423/console.log | 95 ---- newtests/20140717_152423/crash.log | 42 -- newtests/20140717_152423/error.log | 13 - newtests/20140717_152423/errors.csv | 2 - newtests/20140717_152423/floppstore.config | 23 - newtests/20140717_152423/log.sasl.txt | 336 ------------- newtests/20140717_152423/read_latencies.csv | 2 - newtests/20140717_152423/summary.csv | 2 - newtests/20140717_153010/append_latencies.csv | 2 - newtests/20140717_153010/console.log | 96 ---- newtests/20140717_153010/crash.log | 42 -- newtests/20140717_153010/error.log | 13 - newtests/20140717_153010/errors.csv | 2 - newtests/20140717_153010/floppstore.config | 23 - newtests/20140717_153010/log.sasl.txt | 336 ------------- newtests/20140717_153010/read_latencies.csv | 2 - newtests/20140717_153010/summary.csv | 2 - newtests/20140717_154723/console.log | 12 - newtests/20140717_154723/crash.log | 0 newtests/20140717_154723/error.log | 1 - newtests/20140717_154801/append_latencies.csv | 8 - newtests/20140717_154801/console.log | 44 -- newtests/20140717_154801/crash.log | 0 newtests/20140717_154801/error.log | 0 newtests/20140717_154801/errors.csv | 1 - newtests/20140717_154801/floppstore.config | 23 - newtests/20140717_154801/log.sasl.txt | 183 ------- newtests/20140717_154801/read_latencies.csv | 8 - newtests/20140717_154801/summary.csv | 8 - newtests/20140717_154801/summary.png | Bin 169499 -> 0 bytes newtests/20140722_105906/append_latencies.csv | 2 - newtests/20140722_105906/console.log | 98 ---- newtests/20140722_105906/crash.log | 42 -- newtests/20140722_105906/error.log | 13 - newtests/20140722_105906/errors.csv | 2 - newtests/20140722_105906/floppstore.config | 23 - .../interactive-tx_latencies.csv | 2 - newtests/20140722_105906/log.sasl.txt | 336 ------------- newtests/20140722_105906/read_latencies.csv | 2 - .../20140722_105906/static-tx_latencies.csv | 2 - newtests/20140722_105906/summary.csv | 2 - newtests/20140722_110309/append_latencies.csv | 2 - newtests/20140722_110309/console.log | 104 ---- newtests/20140722_110309/crash.log | 60 --- newtests/20140722_110309/error.log | 31 -- newtests/20140722_110309/errors.csv | 1 - newtests/20140722_110309/floppstore.config | 23 - .../interactive-tx_latencies.csv | 2 - newtests/20140722_110309/log.sasl.txt | 336 ------------- newtests/20140722_110309/read_latencies.csv | 2 - .../20140722_110309/static-tx_latencies.csv | 2 - newtests/20140722_110309/summary.csv | 2 - newtests/20140722_110442/append_latencies.csv | 2 - newtests/20140722_110442/console.log | 105 ---- newtests/20140722_110442/crash.log | 60 --- newtests/20140722_110442/error.log | 31 -- newtests/20140722_110442/errors.csv | 1 - newtests/20140722_110442/floppstore.config | 23 - .../interactive-tx_latencies.csv | 2 - newtests/20140722_110442/log.sasl.txt | 336 ------------- newtests/20140722_110442/read_latencies.csv | 2 - .../20140722_110442/static-tx_latencies.csv | 2 - newtests/20140722_110442/summary.csv | 2 - newtests/20140722_124623/append_latencies.csv | 2 - newtests/20140722_124623/console.log | 102 ---- newtests/20140722_124623/crash.log | 60 --- newtests/20140722_124623/error.log | 31 -- newtests/20140722_124623/errors.csv | 1 - newtests/20140722_124623/floppstore.config | 23 - .../interactive-tx_latencies.csv | 2 - newtests/20140722_124623/log.sasl.txt | 336 ------------- newtests/20140722_124623/read_latencies.csv | 2 - .../20140722_124623/static-tx_latencies.csv | 2 - newtests/20140722_124623/summary.csv | 2 - newtests/20140722_124824/append_latencies.csv | 2 - newtests/20140722_124824/console.log | 104 ---- newtests/20140722_124824/crash.log | 60 --- newtests/20140722_124824/error.log | 31 -- newtests/20140722_124824/errors.csv | 1 - newtests/20140722_124824/floppstore.config | 23 - .../interactive-tx_latencies.csv | 2 - newtests/20140722_124824/log.sasl.txt | 336 ------------- newtests/20140722_124824/read_latencies.csv | 2 - .../20140722_124824/static-tx_latencies.csv | 2 - newtests/20140722_124824/summary.csv | 2 - newtests/20140722_140229/append_latencies.csv | 2 - newtests/20140722_140229/console.log | 103 ---- newtests/20140722_140229/crash.log | 60 --- newtests/20140722_140229/error.log | 31 -- newtests/20140722_140229/errors.csv | 1 - newtests/20140722_140229/floppstore.config | 23 - .../interactive-tx_latencies.csv | 2 - newtests/20140722_140229/log.sasl.txt | 336 ------------- newtests/20140722_140229/read_latencies.csv | 2 - .../20140722_140229/static-tx_latencies.csv | 2 - newtests/20140722_140229/summary.csv | 2 - newtests/20140722_140845/append_latencies.csv | 2 - newtests/20140722_140845/console.log | 103 ---- newtests/20140722_140845/crash.log | 60 --- newtests/20140722_140845/error.log | 31 -- newtests/20140722_140845/errors.csv | 1 - newtests/20140722_140845/floppstore.config | 23 - .../interactive-tx_latencies.csv | 2 - newtests/20140722_140845/log.sasl.txt | 336 ------------- newtests/20140722_140845/read_latencies.csv | 2 - .../20140722_140845/static-tx_latencies.csv | 2 - newtests/20140722_140845/summary.csv | 2 - newtests/20140722_141942/append_latencies.csv | 2 - newtests/20140722_141942/console.log | 105 ---- newtests/20140722_141942/crash.log | 60 --- newtests/20140722_141942/error.log | 31 -- newtests/20140722_141942/errors.csv | 1 - newtests/20140722_141942/floppstore.config | 23 - .../interactive-tx_latencies.csv | 2 - newtests/20140722_141942/log.sasl.txt | 336 ------------- newtests/20140722_141942/read_latencies.csv | 2 - .../20140722_141942/static-tx_latencies.csv | 2 - newtests/20140722_141942/summary.csv | 2 - newtests/20140722_142103/append_latencies.csv | 2 - newtests/20140722_142103/console.log | 103 ---- newtests/20140722_142103/crash.log | 60 --- newtests/20140722_142103/error.log | 31 -- newtests/20140722_142103/errors.csv | 1 - newtests/20140722_142103/floppstore.config | 23 - .../interactive-tx_latencies.csv | 2 - newtests/20140722_142103/log.sasl.txt | 336 ------------- newtests/20140722_142103/read_latencies.csv | 2 - .../20140722_142103/static-tx_latencies.csv | 2 - newtests/20140722_142103/summary.csv | 2 - newtests/20140722_142202/append_latencies.csv | 2 - newtests/20140722_142202/console.log | 103 ---- newtests/20140722_142202/crash.log | 60 --- newtests/20140722_142202/error.log | 31 -- newtests/20140722_142202/errors.csv | 1 - newtests/20140722_142202/floppstore.config | 23 - .../interactive-tx_latencies.csv | 2 - newtests/20140722_142202/log.sasl.txt | 336 ------------- newtests/20140722_142202/read_latencies.csv | 2 - .../20140722_142202/static-tx_latencies.csv | 2 - newtests/20140722_142202/summary.csv | 2 - newtests/20140722_142341/append_latencies.csv | 2 - newtests/20140722_142341/console.log | 105 ---- newtests/20140722_142341/crash.log | 60 --- newtests/20140722_142341/error.log | 31 -- newtests/20140722_142341/errors.csv | 1 - newtests/20140722_142341/floppstore.config | 23 - .../interactive-tx_latencies.csv | 2 - newtests/20140722_142341/log.sasl.txt | 336 ------------- newtests/20140722_142341/read_latencies.csv | 2 - .../20140722_142341/static-tx_latencies.csv | 2 - newtests/20140722_142341/summary.csv | 2 - newtests/20140722_142917/append_latencies.csv | 2 - newtests/20140722_142917/console.log | 105 ---- newtests/20140722_142917/crash.log | 60 --- newtests/20140722_142917/error.log | 31 -- newtests/20140722_142917/errors.csv | 1 - newtests/20140722_142917/floppstore.config | 23 - .../interactive-tx_latencies.csv | 2 - newtests/20140722_142917/log.sasl.txt | 336 ------------- newtests/20140722_142917/read_latencies.csv | 2 - .../20140722_142917/static-tx_latencies.csv | 2 - newtests/20140722_142917/summary.csv | 2 - newtests/20140722_143932/console.log | 12 - newtests/20140722_143932/crash.log | 0 newtests/20140722_143932/error.log | 1 - newtests/20140722_143955/console.log | 75 --- newtests/20140722_143955/crash.log | 27 - newtests/20140722_143955/error.log | 15 - newtests/20140722_143955/errors.csv | 1 - newtests/20140722_143955/floppstore.config | 23 - newtests/20140722_143955/log.sasl.txt | 258 ---------- .../20140722_143955/static-tx_latencies.csv | 6 - newtests/20140722_143955/summary.csv | 6 - newtests/20140722_144135/console.log | 36 -- newtests/20140722_144135/crash.log | 0 newtests/20140722_144135/error.log | 1 - newtests/20140722_144135/errors.csv | 1 - newtests/20140722_144135/floppstore.config | 23 - newtests/20140722_144135/log.sasl.txt | 159 ------ .../20140722_144135/static-tx_latencies.csv | 1 - newtests/20140722_144135/summary.csv | 1 - newtests/20140722_144554/append_latencies.csv | 2 - newtests/20140722_144554/console.log | 102 ---- newtests/20140722_144554/crash.log | 60 --- newtests/20140722_144554/error.log | 31 -- newtests/20140722_144554/errors.csv | 1 - newtests/20140722_144554/floppstore.config | 23 - .../interactive-tx_latencies.csv | 2 - newtests/20140722_144554/log.sasl.txt | 336 ------------- newtests/20140722_144554/read_latencies.csv | 2 - .../20140722_144554/static-tx_latencies.csv | 2 - newtests/20140722_144554/summary.csv | 2 - newtests/20140722_144834/append_latencies.csv | 2 - newtests/20140722_144834/console.log | 103 ---- newtests/20140722_144834/crash.log | 60 --- newtests/20140722_144834/error.log | 31 -- newtests/20140722_144834/errors.csv | 1 - newtests/20140722_144834/floppstore.config | 23 - .../interactive-tx_latencies.csv | 2 - newtests/20140722_144834/log.sasl.txt | 336 ------------- newtests/20140722_144834/read_latencies.csv | 2 - .../20140722_144834/static-tx_latencies.csv | 2 - newtests/20140722_144834/summary.csv | 2 - newtests/20140722_150342/console.log | 18 - newtests/20140722_150342/crash.log | 0 newtests/20140722_150342/error.log | 0 newtests/20140722_150342/errors.csv | 1 - newtests/20140722_150342/floppstore.config | 23 - .../interactive-tx_latencies.csv | 1 - newtests/20140722_150342/log.sasl.txt | 113 ----- .../20140722_150342/static-tx_latencies.csv | 1 - newtests/20140722_150342/summary.csv | 1 - newtests/20140722_150549/console.log | 43 -- newtests/20140722_150549/crash.log | 0 newtests/20140722_150549/error.log | 0 newtests/20140722_150549/errors.csv | 1 - newtests/20140722_150549/floppstore.config | 23 - .../interactive-tx_latencies.csv | 1 - newtests/20140722_150549/log.sasl.txt | 183 ------- .../20140722_150549/static-tx_latencies.csv | 1 - newtests/20140722_150549/summary.csv | 1 - newtests/20140722_150633/console.log | 43 -- newtests/20140722_150633/crash.log | 0 newtests/20140722_150633/error.log | 0 newtests/20140722_150633/errors.csv | 1 - newtests/20140722_150633/floppstore.config | 23 - .../interactive-tx_latencies.csv | 1 - newtests/20140722_150633/log.sasl.txt | 183 ------- .../20140722_150633/static-tx_latencies.csv | 1 - newtests/20140722_150633/summary.csv | 1 - newtests/20140722_150647/console.log | 74 --- newtests/20140722_150647/crash.log | 27 - newtests/20140722_150647/error.log | 15 - newtests/20140722_150647/errors.csv | 1 - newtests/20140722_150647/floppstore.config | 23 - .../interactive-tx_latencies.csv | 4 - newtests/20140722_150647/log.sasl.txt | 258 ---------- .../20140722_150647/static-tx_latencies.csv | 4 - newtests/20140722_150647/summary.csv | 4 - newtests/20140722_150754/console.log | 151 ------ newtests/20140722_150754/crash.log | 90 ---- newtests/20140722_150754/error.log | 50 -- newtests/20140722_150754/errors.csv | 1 - newtests/20140722_150754/floppstore.config | 23 - .../interactive-tx_latencies.csv | 8 - newtests/20140722_150754/log.sasl.txt | 433 ---------------- .../20140722_150754/static-tx_latencies.csv | 8 - newtests/20140722_150754/summary.csv | 8 - newtests/20140722_152913/console.log | 138 ------ newtests/20140722_152913/crash.log | 81 --- newtests/20140722_152913/error.log | 45 -- newtests/20140722_152913/errors.csv | 1 - newtests/20140722_152913/floppstore.config | 23 - .../interactive-tx_latencies.csv | 8 - newtests/20140722_152913/log.sasl.txt | 408 ---------------- .../20140722_152913/static-tx_latencies.csv | 8 - newtests/20140722_152913/summary.csv | 8 - newtests/20140723_123916/console.log | 113 ----- newtests/20140723_123916/crash.log | 60 --- newtests/20140723_123916/error.log | 31 -- newtests/20140723_123916/errors.csv | 1 - newtests/20140723_123916/floppstore.config | 23 - .../interactive-tx_latencies.csv | 2 - newtests/20140723_123916/log.sasl.txt | 369 -------------- .../20140723_123916/static-tx_latencies.csv | 2 - newtests/20140723_123916/summary.csv | 2 - newtests/20140723_123954/console.log | 121 ----- newtests/20140723_123954/crash.log | 69 --- newtests/20140723_123954/error.log | 35 -- newtests/20140723_123954/errors.csv | 1 - newtests/20140723_123954/floppstore.config | 23 - .../interactive-tx_latencies.csv | 3 - newtests/20140723_123954/log.sasl.txt | 394 --------------- .../20140723_123954/static-tx_latencies.csv | 3 - newtests/20140723_123954/summary.csv | 3 - newtests/20140723_125435/console.log | 111 ----- newtests/20140723_125435/crash.log | 60 --- newtests/20140723_125435/error.log | 29 -- newtests/20140723_125435/errors.csv | 1 - newtests/20140723_125435/floppstore.config | 23 - .../interactive-tx_latencies.csv | 3 - newtests/20140723_125435/log.sasl.txt | 369 -------------- .../20140723_125435/static-tx_latencies.csv | 3 - newtests/20140723_125435/summary.csv | 3 - newtests/20140723_140132/console.log | 112 ----- newtests/20140723_140132/crash.log | 60 --- newtests/20140723_140132/error.log | 31 -- newtests/20140723_140132/errors.csv | 1 - newtests/20140723_140132/floppstore.config | 23 - .../interactive-tx_latencies.csv | 2 - newtests/20140723_140132/log.sasl.txt | 369 -------------- .../20140723_140132/static-tx_latencies.csv | 2 - newtests/20140723_140132/summary.csv | 2 - newtests/20140723_143206/console.log | 110 ----- newtests/20140723_143206/crash.log | 54 -- newtests/20140723_143206/error.log | 17 - newtests/20140723_143206/errors.csv | 2 - newtests/20140723_143206/floppstore.config | 23 - .../interactive-tx_latencies.csv | 2 - newtests/20140723_143206/log.sasl.txt | 397 --------------- .../20140723_143206/static-tx_latencies.csv | 2 - newtests/20140723_143206/summary.csv | 2 - newtests/20140723_143600/console.log | 114 ----- newtests/20140723_143600/crash.log | 60 --- newtests/20140723_143600/error.log | 19 - newtests/20140723_143600/errors.csv | 2 - newtests/20140723_143600/floppstore.config | 23 - .../interactive-tx_latencies.csv | 2 - newtests/20140723_143600/log.sasl.txt | 411 ---------------- .../20140723_143600/static-tx_latencies.csv | 2 - newtests/20140723_143600/summary.csv | 2 - newtests/20140723_144217/console.log | 103 ---- newtests/20140723_144217/crash.log | 42 -- newtests/20140723_144217/error.log | 13 - newtests/20140723_144217/errors.csv | 2 - newtests/20140723_144217/floppstore.config | 23 - .../interactive-tx_latencies.csv | 2 - newtests/20140723_144217/log.sasl.txt | 369 -------------- .../20140723_144217/static-tx_latencies.csv | 2 - newtests/20140723_144217/summary.csv | 2 - newtests/20140723_144723/console.log | 124 ----- newtests/20140723_144723/crash.log | 60 --- newtests/20140723_144723/error.log | 22 - newtests/20140723_144723/errors.csv | 2 - newtests/20140723_144723/floppstore.config | 23 - .../interactive-tx_latencies.csv | 3 - newtests/20140723_144723/log.sasl.txt | 419 ---------------- .../20140723_144723/static-tx_latencies.csv | 3 - newtests/20140723_144723/summary.csv | 3 - newtests/20140723_144925/append_latencies.csv | 2 - newtests/20140723_144925/console.log | 116 ----- newtests/20140723_144925/crash.log | 60 --- newtests/20140723_144925/error.log | 31 -- newtests/20140723_144925/errors.csv | 1 - newtests/20140723_144925/floppstore.config | 23 - .../interactive-tx_latencies.csv | 2 - newtests/20140723_144925/log.sasl.txt | 369 -------------- newtests/20140723_144925/read_latencies.csv | 2 - .../20140723_144925/static-tx_latencies.csv | 2 - newtests/20140723_144925/summary.csv | 2 - newtests/20140723_203459/console.log | 77 --- newtests/20140723_203459/crash.log | 21 - newtests/20140723_203459/error.log | 9 - newtests/20140723_203459/errors.csv | 1 - newtests/20140723_203459/floppstore.config | 23 - newtests/20140723_203459/itx_latency.csv | 1 - newtests/20140723_203459/log.sasl.txt | 291 ----------- newtests/20140723_203459/stx_latency.csv | 1 - newtests/20140723_203459/summary.csv | 1 - newtests/current/console.log | 77 --- newtests/current/crash.log | 21 - newtests/current/error.log | 9 - newtests/current/errors.csv | 1 - newtests/current/floppstore.config | 23 - newtests/current/itx_latency.csv | 1 - newtests/current/log.sasl.txt | 291 ----------- newtests/current/stx_latency.csv | 1 - newtests/current/summary.csv | 1 - 799 files changed, 42097 deletions(-) delete mode 100644 newtests/20140701_112946/append_latencies.csv delete mode 100644 newtests/20140701_112946/console.log delete mode 100644 newtests/20140701_112946/crash.log delete mode 100644 newtests/20140701_112946/error.log delete mode 100644 newtests/20140701_112946/errors.csv delete mode 100644 newtests/20140701_112946/floppstore.config delete mode 100644 newtests/20140701_112946/log.sasl.txt delete mode 100644 newtests/20140701_112946/read_latencies.csv delete mode 100644 newtests/20140701_112946/summary.csv delete mode 100644 newtests/20140709_125412/append_latencies.csv delete mode 100644 newtests/20140709_125412/console.log delete mode 100644 newtests/20140709_125412/crash.log delete mode 100644 newtests/20140709_125412/error.log delete mode 100644 newtests/20140709_125412/errors.csv delete mode 100644 newtests/20140709_125412/floppstore.config delete mode 100644 newtests/20140709_125412/log.sasl.txt delete mode 100644 newtests/20140709_125412/read_latencies.csv delete mode 100644 newtests/20140709_125412/summary.csv delete mode 100644 newtests/20140711_182613/append_latencies.csv delete mode 100644 newtests/20140711_182613/console.log delete mode 100644 newtests/20140711_182613/crash.log delete mode 100644 newtests/20140711_182613/error.log delete mode 100644 newtests/20140711_182613/errors.csv delete mode 100644 newtests/20140711_182613/floppstore.config delete mode 100644 newtests/20140711_182613/log.sasl.txt delete mode 100644 newtests/20140711_182613/read_latencies.csv delete mode 100644 newtests/20140711_182613/summary.csv delete mode 100644 newtests/20140711_182632/append_latencies.csv delete mode 100644 newtests/20140711_182632/console.log delete mode 100644 newtests/20140711_182632/crash.log delete mode 100644 newtests/20140711_182632/error.log delete mode 100644 newtests/20140711_182632/errors.csv delete mode 100644 newtests/20140711_182632/floppstore.config delete mode 100644 newtests/20140711_182632/log.sasl.txt delete mode 100644 newtests/20140711_182632/read_latencies.csv delete mode 100644 newtests/20140711_182632/summary.csv delete mode 100644 newtests/20140711_182641/append_latencies.csv delete mode 100644 newtests/20140711_182641/console.log delete mode 100644 newtests/20140711_182641/crash.log delete mode 100644 newtests/20140711_182641/error.log delete mode 100644 newtests/20140711_182641/errors.csv delete mode 100644 newtests/20140711_182641/floppstore.config delete mode 100644 newtests/20140711_182641/log.sasl.txt delete mode 100644 newtests/20140711_182641/read_latencies.csv delete mode 100644 newtests/20140711_182641/summary.csv delete mode 100644 newtests/20140716_154312/append_latencies.csv delete mode 100644 newtests/20140716_154312/console.log delete mode 100644 newtests/20140716_154312/crash.log delete mode 100644 newtests/20140716_154312/error.log delete mode 100644 newtests/20140716_154312/errors.csv delete mode 100644 newtests/20140716_154312/floppstore.config delete mode 100644 newtests/20140716_154312/log.sasl.txt delete mode 100644 newtests/20140716_154312/read_latencies.csv delete mode 100644 newtests/20140716_154312/summary.csv delete mode 100644 newtests/20140716_154402/append_latencies.csv delete mode 100644 newtests/20140716_154402/console.log delete mode 100644 newtests/20140716_154402/crash.log delete mode 100644 newtests/20140716_154402/error.log delete mode 100644 newtests/20140716_154402/errors.csv delete mode 100644 newtests/20140716_154402/floppstore.config delete mode 100644 newtests/20140716_154402/log.sasl.txt delete mode 100644 newtests/20140716_154402/read_latencies.csv delete mode 100644 newtests/20140716_154402/summary.csv delete mode 100644 newtests/20140716_154446/append_latencies.csv delete mode 100644 newtests/20140716_154446/console.log delete mode 100644 newtests/20140716_154446/crash.log delete mode 100644 newtests/20140716_154446/error.log delete mode 100644 newtests/20140716_154446/errors.csv delete mode 100644 newtests/20140716_154446/floppstore.config delete mode 100644 newtests/20140716_154446/log.sasl.txt delete mode 100644 newtests/20140716_154446/read_latencies.csv delete mode 100644 newtests/20140716_154446/summary.csv delete mode 100644 newtests/20140716_155207/append_latencies.csv delete mode 100644 newtests/20140716_155207/console.log delete mode 100644 newtests/20140716_155207/crash.log delete mode 100644 newtests/20140716_155207/error.log delete mode 100644 newtests/20140716_155207/errors.csv delete mode 100644 newtests/20140716_155207/floppstore.config delete mode 100644 newtests/20140716_155207/log.sasl.txt delete mode 100644 newtests/20140716_155207/read_latencies.csv delete mode 100644 newtests/20140716_155207/summary.csv delete mode 100644 newtests/20140716_155332/append_latencies.csv delete mode 100644 newtests/20140716_155332/console.log delete mode 100644 newtests/20140716_155332/crash.log delete mode 100644 newtests/20140716_155332/error.log delete mode 100644 newtests/20140716_155332/errors.csv delete mode 100644 newtests/20140716_155332/floppstore.config delete mode 100644 newtests/20140716_155332/log.sasl.txt delete mode 100644 newtests/20140716_155332/read_latencies.csv delete mode 100644 newtests/20140716_155332/summary.csv delete mode 100644 newtests/20140716_155458/console.log delete mode 100644 newtests/20140716_155458/crash.log delete mode 100644 newtests/20140716_155458/error.log delete mode 100644 newtests/20140716_155521/append_latencies.csv delete mode 100644 newtests/20140716_155521/console.log delete mode 100644 newtests/20140716_155521/crash.log delete mode 100644 newtests/20140716_155521/error.log delete mode 100644 newtests/20140716_155521/errors.csv delete mode 100644 newtests/20140716_155521/floppstore.config delete mode 100644 newtests/20140716_155521/log.sasl.txt delete mode 100644 newtests/20140716_155521/read_latencies.csv delete mode 100644 newtests/20140716_155521/summary.csv delete mode 100644 newtests/20140716_155627/append_latencies.csv delete mode 100644 newtests/20140716_155627/console.log delete mode 100644 newtests/20140716_155627/crash.log delete mode 100644 newtests/20140716_155627/error.log delete mode 100644 newtests/20140716_155627/errors.csv delete mode 100644 newtests/20140716_155627/floppstore.config delete mode 100644 newtests/20140716_155627/log.sasl.txt delete mode 100644 newtests/20140716_155627/read_latencies.csv delete mode 100644 newtests/20140716_155627/summary.csv delete mode 100644 newtests/20140716_160035/append_latencies.csv delete mode 100644 newtests/20140716_160035/console.log delete mode 100644 newtests/20140716_160035/crash.log delete mode 100644 newtests/20140716_160035/error.log delete mode 100644 newtests/20140716_160035/errors.csv delete mode 100644 newtests/20140716_160035/floppstore.config delete mode 100644 newtests/20140716_160035/log.sasl.txt delete mode 100644 newtests/20140716_160035/read_latencies.csv delete mode 100644 newtests/20140716_160035/summary.csv delete mode 100644 newtests/20140716_160222/append_latencies.csv delete mode 100644 newtests/20140716_160222/console.log delete mode 100644 newtests/20140716_160222/crash.log delete mode 100644 newtests/20140716_160222/error.log delete mode 100644 newtests/20140716_160222/errors.csv delete mode 100644 newtests/20140716_160222/floppstore.config delete mode 100644 newtests/20140716_160222/log.sasl.txt delete mode 100644 newtests/20140716_160222/read_latencies.csv delete mode 100644 newtests/20140716_160222/summary.csv delete mode 100644 newtests/20140716_160324/console.log delete mode 100644 newtests/20140716_160324/crash.log delete mode 100644 newtests/20140716_160324/error.log delete mode 100644 newtests/20140716_160324/floppstore.config delete mode 100644 newtests/20140716_160324/log.sasl.txt delete mode 100644 newtests/20140716_160337/append_latencies.csv delete mode 100644 newtests/20140716_160337/console.log delete mode 100644 newtests/20140716_160337/crash.log delete mode 100644 newtests/20140716_160337/error.log delete mode 100644 newtests/20140716_160337/errors.csv delete mode 100644 newtests/20140716_160337/floppstore.config delete mode 100644 newtests/20140716_160337/log.sasl.txt delete mode 100644 newtests/20140716_160337/read_latencies.csv delete mode 100644 newtests/20140716_160337/summary.csv delete mode 100644 newtests/20140716_160632/append_latencies.csv delete mode 100644 newtests/20140716_160632/console.log delete mode 100644 newtests/20140716_160632/crash.log delete mode 100644 newtests/20140716_160632/error.log delete mode 100644 newtests/20140716_160632/errors.csv delete mode 100644 newtests/20140716_160632/floppstore.config delete mode 100644 newtests/20140716_160632/log.sasl.txt delete mode 100644 newtests/20140716_160632/read_latencies.csv delete mode 100644 newtests/20140716_160632/summary.csv delete mode 100644 newtests/20140716_161238/append_latencies.csv delete mode 100644 newtests/20140716_161238/console.log delete mode 100644 newtests/20140716_161238/crash.log delete mode 100644 newtests/20140716_161238/error.log delete mode 100644 newtests/20140716_161238/errors.csv delete mode 100644 newtests/20140716_161238/floppstore.config delete mode 100644 newtests/20140716_161238/log.sasl.txt delete mode 100644 newtests/20140716_161238/read_latencies.csv delete mode 100644 newtests/20140716_161238/summary.csv delete mode 100644 newtests/20140716_161437/append_latencies.csv delete mode 100644 newtests/20140716_161437/console.log delete mode 100644 newtests/20140716_161437/crash.log delete mode 100644 newtests/20140716_161437/error.log delete mode 100644 newtests/20140716_161437/errors.csv delete mode 100644 newtests/20140716_161437/floppstore.config delete mode 100644 newtests/20140716_161437/log.sasl.txt delete mode 100644 newtests/20140716_161437/read_latencies.csv delete mode 100644 newtests/20140716_161437/summary.csv delete mode 100644 newtests/20140716_161530/append_latencies.csv delete mode 100644 newtests/20140716_161530/console.log delete mode 100644 newtests/20140716_161530/crash.log delete mode 100644 newtests/20140716_161530/error.log delete mode 100644 newtests/20140716_161530/errors.csv delete mode 100644 newtests/20140716_161530/floppstore.config delete mode 100644 newtests/20140716_161530/log.sasl.txt delete mode 100644 newtests/20140716_161530/read_latencies.csv delete mode 100644 newtests/20140716_161530/summary.csv delete mode 100644 newtests/20140716_161614/append_latencies.csv delete mode 100644 newtests/20140716_161614/console.log delete mode 100644 newtests/20140716_161614/crash.log delete mode 100644 newtests/20140716_161614/error.log delete mode 100644 newtests/20140716_161614/errors.csv delete mode 100644 newtests/20140716_161614/floppstore.config delete mode 100644 newtests/20140716_161614/log.sasl.txt delete mode 100644 newtests/20140716_161614/read_latencies.csv delete mode 100644 newtests/20140716_161614/summary.csv delete mode 100644 newtests/20140716_162007/append_latencies.csv delete mode 100644 newtests/20140716_162007/console.log delete mode 100644 newtests/20140716_162007/crash.log delete mode 100644 newtests/20140716_162007/error.log delete mode 100644 newtests/20140716_162007/errors.csv delete mode 100644 newtests/20140716_162007/floppstore.config delete mode 100644 newtests/20140716_162007/log.sasl.txt delete mode 100644 newtests/20140716_162007/read_latencies.csv delete mode 100644 newtests/20140716_162007/summary.csv delete mode 100644 newtests/20140716_162303/append_latencies.csv delete mode 100644 newtests/20140716_162303/console.log delete mode 100644 newtests/20140716_162303/crash.log delete mode 100644 newtests/20140716_162303/error.log delete mode 100644 newtests/20140716_162303/errors.csv delete mode 100644 newtests/20140716_162303/floppstore.config delete mode 100644 newtests/20140716_162303/log.sasl.txt delete mode 100644 newtests/20140716_162303/read_latencies.csv delete mode 100644 newtests/20140716_162303/summary.csv delete mode 100644 newtests/20140716_162722/append_latencies.csv delete mode 100644 newtests/20140716_162722/console.log delete mode 100644 newtests/20140716_162722/crash.log delete mode 100644 newtests/20140716_162722/error.log delete mode 100644 newtests/20140716_162722/errors.csv delete mode 100644 newtests/20140716_162722/floppstore.config delete mode 100644 newtests/20140716_162722/log.sasl.txt delete mode 100644 newtests/20140716_162722/read_latencies.csv delete mode 100644 newtests/20140716_162722/summary.csv delete mode 100644 newtests/20140716_163000/append_latencies.csv delete mode 100644 newtests/20140716_163000/console.log delete mode 100644 newtests/20140716_163000/crash.log delete mode 100644 newtests/20140716_163000/error.log delete mode 100644 newtests/20140716_163000/errors.csv delete mode 100644 newtests/20140716_163000/floppstore.config delete mode 100644 newtests/20140716_163000/log.sasl.txt delete mode 100644 newtests/20140716_163000/read_latencies.csv delete mode 100644 newtests/20140716_163000/summary.csv delete mode 100644 newtests/20140716_163347/append_latencies.csv delete mode 100644 newtests/20140716_163347/console.log delete mode 100644 newtests/20140716_163347/crash.log delete mode 100644 newtests/20140716_163347/error.log delete mode 100644 newtests/20140716_163347/errors.csv delete mode 100644 newtests/20140716_163347/floppstore.config delete mode 100644 newtests/20140716_163347/log.sasl.txt delete mode 100644 newtests/20140716_163347/read_latencies.csv delete mode 100644 newtests/20140716_163347/summary.csv delete mode 100644 newtests/20140716_163407/append_latencies.csv delete mode 100644 newtests/20140716_163407/console.log delete mode 100644 newtests/20140716_163407/crash.log delete mode 100644 newtests/20140716_163407/error.log delete mode 100644 newtests/20140716_163407/errors.csv delete mode 100644 newtests/20140716_163407/floppstore.config delete mode 100644 newtests/20140716_163407/log.sasl.txt delete mode 100644 newtests/20140716_163407/read_latencies.csv delete mode 100644 newtests/20140716_163407/summary.csv delete mode 100644 newtests/20140716_164802/append_latencies.csv delete mode 100644 newtests/20140716_164802/console.log delete mode 100644 newtests/20140716_164802/crash.log delete mode 100644 newtests/20140716_164802/error.log delete mode 100644 newtests/20140716_164802/errors.csv delete mode 100644 newtests/20140716_164802/floppstore.config delete mode 100644 newtests/20140716_164802/log.sasl.txt delete mode 100644 newtests/20140716_164802/read_latencies.csv delete mode 100644 newtests/20140716_164802/summary.csv delete mode 100644 newtests/20140716_165104/append_latencies.csv delete mode 100644 newtests/20140716_165104/console.log delete mode 100644 newtests/20140716_165104/crash.log delete mode 100644 newtests/20140716_165104/error.log delete mode 100644 newtests/20140716_165104/errors.csv delete mode 100644 newtests/20140716_165104/floppstore.config delete mode 100644 newtests/20140716_165104/log.sasl.txt delete mode 100644 newtests/20140716_165104/read_latencies.csv delete mode 100644 newtests/20140716_165104/summary.csv delete mode 100644 newtests/20140716_165306/append_latencies.csv delete mode 100644 newtests/20140716_165306/console.log delete mode 100644 newtests/20140716_165306/crash.log delete mode 100644 newtests/20140716_165306/error.log delete mode 100644 newtests/20140716_165306/errors.csv delete mode 100644 newtests/20140716_165306/floppstore.config delete mode 100644 newtests/20140716_165306/log.sasl.txt delete mode 100644 newtests/20140716_165306/read_latencies.csv delete mode 100644 newtests/20140716_165306/summary.csv delete mode 100644 newtests/20140716_165356/append_latencies.csv delete mode 100644 newtests/20140716_165356/console.log delete mode 100644 newtests/20140716_165356/crash.log delete mode 100644 newtests/20140716_165356/error.log delete mode 100644 newtests/20140716_165356/errors.csv delete mode 100644 newtests/20140716_165356/floppstore.config delete mode 100644 newtests/20140716_165356/log.sasl.txt delete mode 100644 newtests/20140716_165356/read_latencies.csv delete mode 100644 newtests/20140716_165356/summary.csv delete mode 100644 newtests/20140716_170644/append_latencies.csv delete mode 100644 newtests/20140716_170644/console.log delete mode 100644 newtests/20140716_170644/crash.log delete mode 100644 newtests/20140716_170644/error.log delete mode 100644 newtests/20140716_170644/errors.csv delete mode 100644 newtests/20140716_170644/floppstore.config delete mode 100644 newtests/20140716_170644/log.sasl.txt delete mode 100644 newtests/20140716_170644/read_latencies.csv delete mode 100644 newtests/20140716_170644/summary.csv delete mode 100644 newtests/20140716_170806/append_latencies.csv delete mode 100644 newtests/20140716_170806/console.log delete mode 100644 newtests/20140716_170806/crash.log delete mode 100644 newtests/20140716_170806/error.log delete mode 100644 newtests/20140716_170806/errors.csv delete mode 100644 newtests/20140716_170806/floppstore.config delete mode 100644 newtests/20140716_170806/log.sasl.txt delete mode 100644 newtests/20140716_170806/read_latencies.csv delete mode 100644 newtests/20140716_170806/summary.csv delete mode 100644 newtests/20140716_202737/append_latencies.csv delete mode 100644 newtests/20140716_202737/console.log delete mode 100644 newtests/20140716_202737/crash.log delete mode 100644 newtests/20140716_202737/error.log delete mode 100644 newtests/20140716_202737/errors.csv delete mode 100644 newtests/20140716_202737/floppstore.config delete mode 100644 newtests/20140716_202737/log.sasl.txt delete mode 100644 newtests/20140716_202737/read_latencies.csv delete mode 100644 newtests/20140716_202737/summary.csv delete mode 100644 newtests/20140716_202950/append_latencies.csv delete mode 100644 newtests/20140716_202950/console.log delete mode 100644 newtests/20140716_202950/crash.log delete mode 100644 newtests/20140716_202950/error.log delete mode 100644 newtests/20140716_202950/errors.csv delete mode 100644 newtests/20140716_202950/floppstore.config delete mode 100644 newtests/20140716_202950/log.sasl.txt delete mode 100644 newtests/20140716_202950/read_latencies.csv delete mode 100644 newtests/20140716_202950/summary.csv delete mode 100644 newtests/20140716_203343/append_latencies.csv delete mode 100644 newtests/20140716_203343/console.log delete mode 100644 newtests/20140716_203343/crash.log delete mode 100644 newtests/20140716_203343/error.log delete mode 100644 newtests/20140716_203343/errors.csv delete mode 100644 newtests/20140716_203343/floppstore.config delete mode 100644 newtests/20140716_203343/log.sasl.txt delete mode 100644 newtests/20140716_203343/read_latencies.csv delete mode 100644 newtests/20140716_203343/summary.csv delete mode 100644 newtests/20140716_203731/append_latencies.csv delete mode 100644 newtests/20140716_203731/console.log delete mode 100644 newtests/20140716_203731/crash.log delete mode 100644 newtests/20140716_203731/error.log delete mode 100644 newtests/20140716_203731/errors.csv delete mode 100644 newtests/20140716_203731/floppstore.config delete mode 100644 newtests/20140716_203731/log.sasl.txt delete mode 100644 newtests/20140716_203731/read_latencies.csv delete mode 100644 newtests/20140716_203731/summary.csv delete mode 100644 newtests/20140716_204925/append_latencies.csv delete mode 100644 newtests/20140716_204925/console.log delete mode 100644 newtests/20140716_204925/crash.log delete mode 100644 newtests/20140716_204925/error.log delete mode 100644 newtests/20140716_204925/errors.csv delete mode 100644 newtests/20140716_204925/floppstore.config delete mode 100644 newtests/20140716_204925/log.sasl.txt delete mode 100644 newtests/20140716_204925/read_latencies.csv delete mode 100644 newtests/20140716_204925/summary.csv delete mode 100644 newtests/20140716_205022/append_latencies.csv delete mode 100644 newtests/20140716_205022/console.log delete mode 100644 newtests/20140716_205022/crash.log delete mode 100644 newtests/20140716_205022/error.log delete mode 100644 newtests/20140716_205022/errors.csv delete mode 100644 newtests/20140716_205022/floppstore.config delete mode 100644 newtests/20140716_205022/log.sasl.txt delete mode 100644 newtests/20140716_205022/read_latencies.csv delete mode 100644 newtests/20140716_205022/summary.csv delete mode 100644 newtests/20140716_205202/append_latencies.csv delete mode 100644 newtests/20140716_205202/console.log delete mode 100644 newtests/20140716_205202/crash.log delete mode 100644 newtests/20140716_205202/error.log delete mode 100644 newtests/20140716_205202/errors.csv delete mode 100644 newtests/20140716_205202/floppstore.config delete mode 100644 newtests/20140716_205202/log.sasl.txt delete mode 100644 newtests/20140716_205202/read_latencies.csv delete mode 100644 newtests/20140716_205202/summary.csv delete mode 100644 newtests/20140716_205355/append_latencies.csv delete mode 100644 newtests/20140716_205355/console.log delete mode 100644 newtests/20140716_205355/crash.log delete mode 100644 newtests/20140716_205355/error.log delete mode 100644 newtests/20140716_205355/errors.csv delete mode 100644 newtests/20140716_205355/floppstore.config delete mode 100644 newtests/20140716_205355/log.sasl.txt delete mode 100644 newtests/20140716_205355/read_latencies.csv delete mode 100644 newtests/20140716_205355/summary.csv delete mode 100644 newtests/20140717_145625/append_latencies.csv delete mode 100644 newtests/20140717_145625/console.log delete mode 100644 newtests/20140717_145625/crash.log delete mode 100644 newtests/20140717_145625/error.log delete mode 100644 newtests/20140717_145625/errors.csv delete mode 100644 newtests/20140717_145625/floppstore.config delete mode 100644 newtests/20140717_145625/log.sasl.txt delete mode 100644 newtests/20140717_145625/read_latencies.csv delete mode 100644 newtests/20140717_145625/summary.csv delete mode 100644 newtests/20140717_145733/append_latencies.csv delete mode 100644 newtests/20140717_145733/console.log delete mode 100644 newtests/20140717_145733/crash.log delete mode 100644 newtests/20140717_145733/error.log delete mode 100644 newtests/20140717_145733/errors.csv delete mode 100644 newtests/20140717_145733/floppstore.config delete mode 100644 newtests/20140717_145733/log.sasl.txt delete mode 100644 newtests/20140717_145733/read_latencies.csv delete mode 100644 newtests/20140717_145733/summary.csv delete mode 100644 newtests/20140717_145743/append_latencies.csv delete mode 100644 newtests/20140717_145743/console.log delete mode 100644 newtests/20140717_145743/crash.log delete mode 100644 newtests/20140717_145743/error.log delete mode 100644 newtests/20140717_145743/errors.csv delete mode 100644 newtests/20140717_145743/floppstore.config delete mode 100644 newtests/20140717_145743/log.sasl.txt delete mode 100644 newtests/20140717_145743/read_latencies.csv delete mode 100644 newtests/20140717_145743/summary.csv delete mode 100644 newtests/20140717_151128/append_latencies.csv delete mode 100644 newtests/20140717_151128/console.log delete mode 100644 newtests/20140717_151128/crash.log delete mode 100644 newtests/20140717_151128/error.log delete mode 100644 newtests/20140717_151128/errors.csv delete mode 100644 newtests/20140717_151128/floppstore.config delete mode 100644 newtests/20140717_151128/log.sasl.txt delete mode 100644 newtests/20140717_151128/read_latencies.csv delete mode 100644 newtests/20140717_151128/summary.csv delete mode 100644 newtests/20140717_151250/append_latencies.csv delete mode 100644 newtests/20140717_151250/console.log delete mode 100644 newtests/20140717_151250/crash.log delete mode 100644 newtests/20140717_151250/error.log delete mode 100644 newtests/20140717_151250/errors.csv delete mode 100644 newtests/20140717_151250/floppstore.config delete mode 100644 newtests/20140717_151250/log.sasl.txt delete mode 100644 newtests/20140717_151250/read_latencies.csv delete mode 100644 newtests/20140717_151250/summary.csv delete mode 100644 newtests/20140717_151444/append_latencies.csv delete mode 100644 newtests/20140717_151444/console.log delete mode 100644 newtests/20140717_151444/crash.log delete mode 100644 newtests/20140717_151444/error.log delete mode 100644 newtests/20140717_151444/errors.csv delete mode 100644 newtests/20140717_151444/floppstore.config delete mode 100644 newtests/20140717_151444/log.sasl.txt delete mode 100644 newtests/20140717_151444/read_latencies.csv delete mode 100644 newtests/20140717_151444/summary.csv delete mode 100644 newtests/20140717_151946/append_latencies.csv delete mode 100644 newtests/20140717_151946/console.log delete mode 100644 newtests/20140717_151946/crash.log delete mode 100644 newtests/20140717_151946/error.log delete mode 100644 newtests/20140717_151946/errors.csv delete mode 100644 newtests/20140717_151946/floppstore.config delete mode 100644 newtests/20140717_151946/log.sasl.txt delete mode 100644 newtests/20140717_151946/read_latencies.csv delete mode 100644 newtests/20140717_151946/summary.csv delete mode 100644 newtests/20140717_152313/append_latencies.csv delete mode 100644 newtests/20140717_152313/console.log delete mode 100644 newtests/20140717_152313/crash.log delete mode 100644 newtests/20140717_152313/error.log delete mode 100644 newtests/20140717_152313/errors.csv delete mode 100644 newtests/20140717_152313/floppstore.config delete mode 100644 newtests/20140717_152313/log.sasl.txt delete mode 100644 newtests/20140717_152313/read_latencies.csv delete mode 100644 newtests/20140717_152313/summary.csv delete mode 100644 newtests/20140717_152423/append_latencies.csv delete mode 100644 newtests/20140717_152423/console.log delete mode 100644 newtests/20140717_152423/crash.log delete mode 100644 newtests/20140717_152423/error.log delete mode 100644 newtests/20140717_152423/errors.csv delete mode 100644 newtests/20140717_152423/floppstore.config delete mode 100644 newtests/20140717_152423/log.sasl.txt delete mode 100644 newtests/20140717_152423/read_latencies.csv delete mode 100644 newtests/20140717_152423/summary.csv delete mode 100644 newtests/20140717_153010/append_latencies.csv delete mode 100644 newtests/20140717_153010/console.log delete mode 100644 newtests/20140717_153010/crash.log delete mode 100644 newtests/20140717_153010/error.log delete mode 100644 newtests/20140717_153010/errors.csv delete mode 100644 newtests/20140717_153010/floppstore.config delete mode 100644 newtests/20140717_153010/log.sasl.txt delete mode 100644 newtests/20140717_153010/read_latencies.csv delete mode 100644 newtests/20140717_153010/summary.csv delete mode 100644 newtests/20140717_154723/console.log delete mode 100644 newtests/20140717_154723/crash.log delete mode 100644 newtests/20140717_154723/error.log delete mode 100644 newtests/20140717_154801/append_latencies.csv delete mode 100644 newtests/20140717_154801/console.log delete mode 100644 newtests/20140717_154801/crash.log delete mode 100644 newtests/20140717_154801/error.log delete mode 100644 newtests/20140717_154801/errors.csv delete mode 100644 newtests/20140717_154801/floppstore.config delete mode 100644 newtests/20140717_154801/log.sasl.txt delete mode 100644 newtests/20140717_154801/read_latencies.csv delete mode 100644 newtests/20140717_154801/summary.csv delete mode 100644 newtests/20140717_154801/summary.png delete mode 100644 newtests/20140722_105906/append_latencies.csv delete mode 100644 newtests/20140722_105906/console.log delete mode 100644 newtests/20140722_105906/crash.log delete mode 100644 newtests/20140722_105906/error.log delete mode 100644 newtests/20140722_105906/errors.csv delete mode 100644 newtests/20140722_105906/floppstore.config delete mode 100644 newtests/20140722_105906/interactive-tx_latencies.csv delete mode 100644 newtests/20140722_105906/log.sasl.txt delete mode 100644 newtests/20140722_105906/read_latencies.csv delete mode 100644 newtests/20140722_105906/static-tx_latencies.csv delete mode 100644 newtests/20140722_105906/summary.csv delete mode 100644 newtests/20140722_110309/append_latencies.csv delete mode 100644 newtests/20140722_110309/console.log delete mode 100644 newtests/20140722_110309/crash.log delete mode 100644 newtests/20140722_110309/error.log delete mode 100644 newtests/20140722_110309/errors.csv delete mode 100644 newtests/20140722_110309/floppstore.config delete mode 100644 newtests/20140722_110309/interactive-tx_latencies.csv delete mode 100644 newtests/20140722_110309/log.sasl.txt delete mode 100644 newtests/20140722_110309/read_latencies.csv delete mode 100644 newtests/20140722_110309/static-tx_latencies.csv delete mode 100644 newtests/20140722_110309/summary.csv delete mode 100644 newtests/20140722_110442/append_latencies.csv delete mode 100644 newtests/20140722_110442/console.log delete mode 100644 newtests/20140722_110442/crash.log delete mode 100644 newtests/20140722_110442/error.log delete mode 100644 newtests/20140722_110442/errors.csv delete mode 100644 newtests/20140722_110442/floppstore.config delete mode 100644 newtests/20140722_110442/interactive-tx_latencies.csv delete mode 100644 newtests/20140722_110442/log.sasl.txt delete mode 100644 newtests/20140722_110442/read_latencies.csv delete mode 100644 newtests/20140722_110442/static-tx_latencies.csv delete mode 100644 newtests/20140722_110442/summary.csv delete mode 100644 newtests/20140722_124623/append_latencies.csv delete mode 100644 newtests/20140722_124623/console.log delete mode 100644 newtests/20140722_124623/crash.log delete mode 100644 newtests/20140722_124623/error.log delete mode 100644 newtests/20140722_124623/errors.csv delete mode 100644 newtests/20140722_124623/floppstore.config delete mode 100644 newtests/20140722_124623/interactive-tx_latencies.csv delete mode 100644 newtests/20140722_124623/log.sasl.txt delete mode 100644 newtests/20140722_124623/read_latencies.csv delete mode 100644 newtests/20140722_124623/static-tx_latencies.csv delete mode 100644 newtests/20140722_124623/summary.csv delete mode 100644 newtests/20140722_124824/append_latencies.csv delete mode 100644 newtests/20140722_124824/console.log delete mode 100644 newtests/20140722_124824/crash.log delete mode 100644 newtests/20140722_124824/error.log delete mode 100644 newtests/20140722_124824/errors.csv delete mode 100644 newtests/20140722_124824/floppstore.config delete mode 100644 newtests/20140722_124824/interactive-tx_latencies.csv delete mode 100644 newtests/20140722_124824/log.sasl.txt delete mode 100644 newtests/20140722_124824/read_latencies.csv delete mode 100644 newtests/20140722_124824/static-tx_latencies.csv delete mode 100644 newtests/20140722_124824/summary.csv delete mode 100644 newtests/20140722_140229/append_latencies.csv delete mode 100644 newtests/20140722_140229/console.log delete mode 100644 newtests/20140722_140229/crash.log delete mode 100644 newtests/20140722_140229/error.log delete mode 100644 newtests/20140722_140229/errors.csv delete mode 100644 newtests/20140722_140229/floppstore.config delete mode 100644 newtests/20140722_140229/interactive-tx_latencies.csv delete mode 100644 newtests/20140722_140229/log.sasl.txt delete mode 100644 newtests/20140722_140229/read_latencies.csv delete mode 100644 newtests/20140722_140229/static-tx_latencies.csv delete mode 100644 newtests/20140722_140229/summary.csv delete mode 100644 newtests/20140722_140845/append_latencies.csv delete mode 100644 newtests/20140722_140845/console.log delete mode 100644 newtests/20140722_140845/crash.log delete mode 100644 newtests/20140722_140845/error.log delete mode 100644 newtests/20140722_140845/errors.csv delete mode 100644 newtests/20140722_140845/floppstore.config delete mode 100644 newtests/20140722_140845/interactive-tx_latencies.csv delete mode 100644 newtests/20140722_140845/log.sasl.txt delete mode 100644 newtests/20140722_140845/read_latencies.csv delete mode 100644 newtests/20140722_140845/static-tx_latencies.csv delete mode 100644 newtests/20140722_140845/summary.csv delete mode 100644 newtests/20140722_141942/append_latencies.csv delete mode 100644 newtests/20140722_141942/console.log delete mode 100644 newtests/20140722_141942/crash.log delete mode 100644 newtests/20140722_141942/error.log delete mode 100644 newtests/20140722_141942/errors.csv delete mode 100644 newtests/20140722_141942/floppstore.config delete mode 100644 newtests/20140722_141942/interactive-tx_latencies.csv delete mode 100644 newtests/20140722_141942/log.sasl.txt delete mode 100644 newtests/20140722_141942/read_latencies.csv delete mode 100644 newtests/20140722_141942/static-tx_latencies.csv delete mode 100644 newtests/20140722_141942/summary.csv delete mode 100644 newtests/20140722_142103/append_latencies.csv delete mode 100644 newtests/20140722_142103/console.log delete mode 100644 newtests/20140722_142103/crash.log delete mode 100644 newtests/20140722_142103/error.log delete mode 100644 newtests/20140722_142103/errors.csv delete mode 100644 newtests/20140722_142103/floppstore.config delete mode 100644 newtests/20140722_142103/interactive-tx_latencies.csv delete mode 100644 newtests/20140722_142103/log.sasl.txt delete mode 100644 newtests/20140722_142103/read_latencies.csv delete mode 100644 newtests/20140722_142103/static-tx_latencies.csv delete mode 100644 newtests/20140722_142103/summary.csv delete mode 100644 newtests/20140722_142202/append_latencies.csv delete mode 100644 newtests/20140722_142202/console.log delete mode 100644 newtests/20140722_142202/crash.log delete mode 100644 newtests/20140722_142202/error.log delete mode 100644 newtests/20140722_142202/errors.csv delete mode 100644 newtests/20140722_142202/floppstore.config delete mode 100644 newtests/20140722_142202/interactive-tx_latencies.csv delete mode 100644 newtests/20140722_142202/log.sasl.txt delete mode 100644 newtests/20140722_142202/read_latencies.csv delete mode 100644 newtests/20140722_142202/static-tx_latencies.csv delete mode 100644 newtests/20140722_142202/summary.csv delete mode 100644 newtests/20140722_142341/append_latencies.csv delete mode 100644 newtests/20140722_142341/console.log delete mode 100644 newtests/20140722_142341/crash.log delete mode 100644 newtests/20140722_142341/error.log delete mode 100644 newtests/20140722_142341/errors.csv delete mode 100644 newtests/20140722_142341/floppstore.config delete mode 100644 newtests/20140722_142341/interactive-tx_latencies.csv delete mode 100644 newtests/20140722_142341/log.sasl.txt delete mode 100644 newtests/20140722_142341/read_latencies.csv delete mode 100644 newtests/20140722_142341/static-tx_latencies.csv delete mode 100644 newtests/20140722_142341/summary.csv delete mode 100644 newtests/20140722_142917/append_latencies.csv delete mode 100644 newtests/20140722_142917/console.log delete mode 100644 newtests/20140722_142917/crash.log delete mode 100644 newtests/20140722_142917/error.log delete mode 100644 newtests/20140722_142917/errors.csv delete mode 100644 newtests/20140722_142917/floppstore.config delete mode 100644 newtests/20140722_142917/interactive-tx_latencies.csv delete mode 100644 newtests/20140722_142917/log.sasl.txt delete mode 100644 newtests/20140722_142917/read_latencies.csv delete mode 100644 newtests/20140722_142917/static-tx_latencies.csv delete mode 100644 newtests/20140722_142917/summary.csv delete mode 100644 newtests/20140722_143932/console.log delete mode 100644 newtests/20140722_143932/crash.log delete mode 100644 newtests/20140722_143932/error.log delete mode 100644 newtests/20140722_143955/console.log delete mode 100644 newtests/20140722_143955/crash.log delete mode 100644 newtests/20140722_143955/error.log delete mode 100644 newtests/20140722_143955/errors.csv delete mode 100644 newtests/20140722_143955/floppstore.config delete mode 100644 newtests/20140722_143955/log.sasl.txt delete mode 100644 newtests/20140722_143955/static-tx_latencies.csv delete mode 100644 newtests/20140722_143955/summary.csv delete mode 100644 newtests/20140722_144135/console.log delete mode 100644 newtests/20140722_144135/crash.log delete mode 100644 newtests/20140722_144135/error.log delete mode 100644 newtests/20140722_144135/errors.csv delete mode 100644 newtests/20140722_144135/floppstore.config delete mode 100644 newtests/20140722_144135/log.sasl.txt delete mode 100644 newtests/20140722_144135/static-tx_latencies.csv delete mode 100644 newtests/20140722_144135/summary.csv delete mode 100644 newtests/20140722_144554/append_latencies.csv delete mode 100644 newtests/20140722_144554/console.log delete mode 100644 newtests/20140722_144554/crash.log delete mode 100644 newtests/20140722_144554/error.log delete mode 100644 newtests/20140722_144554/errors.csv delete mode 100644 newtests/20140722_144554/floppstore.config delete mode 100644 newtests/20140722_144554/interactive-tx_latencies.csv delete mode 100644 newtests/20140722_144554/log.sasl.txt delete mode 100644 newtests/20140722_144554/read_latencies.csv delete mode 100644 newtests/20140722_144554/static-tx_latencies.csv delete mode 100644 newtests/20140722_144554/summary.csv delete mode 100644 newtests/20140722_144834/append_latencies.csv delete mode 100644 newtests/20140722_144834/console.log delete mode 100644 newtests/20140722_144834/crash.log delete mode 100644 newtests/20140722_144834/error.log delete mode 100644 newtests/20140722_144834/errors.csv delete mode 100644 newtests/20140722_144834/floppstore.config delete mode 100644 newtests/20140722_144834/interactive-tx_latencies.csv delete mode 100644 newtests/20140722_144834/log.sasl.txt delete mode 100644 newtests/20140722_144834/read_latencies.csv delete mode 100644 newtests/20140722_144834/static-tx_latencies.csv delete mode 100644 newtests/20140722_144834/summary.csv delete mode 100644 newtests/20140722_150342/console.log delete mode 100644 newtests/20140722_150342/crash.log delete mode 100644 newtests/20140722_150342/error.log delete mode 100644 newtests/20140722_150342/errors.csv delete mode 100644 newtests/20140722_150342/floppstore.config delete mode 100644 newtests/20140722_150342/interactive-tx_latencies.csv delete mode 100644 newtests/20140722_150342/log.sasl.txt delete mode 100644 newtests/20140722_150342/static-tx_latencies.csv delete mode 100644 newtests/20140722_150342/summary.csv delete mode 100644 newtests/20140722_150549/console.log delete mode 100644 newtests/20140722_150549/crash.log delete mode 100644 newtests/20140722_150549/error.log delete mode 100644 newtests/20140722_150549/errors.csv delete mode 100644 newtests/20140722_150549/floppstore.config delete mode 100644 newtests/20140722_150549/interactive-tx_latencies.csv delete mode 100644 newtests/20140722_150549/log.sasl.txt delete mode 100644 newtests/20140722_150549/static-tx_latencies.csv delete mode 100644 newtests/20140722_150549/summary.csv delete mode 100644 newtests/20140722_150633/console.log delete mode 100644 newtests/20140722_150633/crash.log delete mode 100644 newtests/20140722_150633/error.log delete mode 100644 newtests/20140722_150633/errors.csv delete mode 100644 newtests/20140722_150633/floppstore.config delete mode 100644 newtests/20140722_150633/interactive-tx_latencies.csv delete mode 100644 newtests/20140722_150633/log.sasl.txt delete mode 100644 newtests/20140722_150633/static-tx_latencies.csv delete mode 100644 newtests/20140722_150633/summary.csv delete mode 100644 newtests/20140722_150647/console.log delete mode 100644 newtests/20140722_150647/crash.log delete mode 100644 newtests/20140722_150647/error.log delete mode 100644 newtests/20140722_150647/errors.csv delete mode 100644 newtests/20140722_150647/floppstore.config delete mode 100644 newtests/20140722_150647/interactive-tx_latencies.csv delete mode 100644 newtests/20140722_150647/log.sasl.txt delete mode 100644 newtests/20140722_150647/static-tx_latencies.csv delete mode 100644 newtests/20140722_150647/summary.csv delete mode 100644 newtests/20140722_150754/console.log delete mode 100644 newtests/20140722_150754/crash.log delete mode 100644 newtests/20140722_150754/error.log delete mode 100644 newtests/20140722_150754/errors.csv delete mode 100644 newtests/20140722_150754/floppstore.config delete mode 100644 newtests/20140722_150754/interactive-tx_latencies.csv delete mode 100644 newtests/20140722_150754/log.sasl.txt delete mode 100644 newtests/20140722_150754/static-tx_latencies.csv delete mode 100644 newtests/20140722_150754/summary.csv delete mode 100644 newtests/20140722_152913/console.log delete mode 100644 newtests/20140722_152913/crash.log delete mode 100644 newtests/20140722_152913/error.log delete mode 100644 newtests/20140722_152913/errors.csv delete mode 100644 newtests/20140722_152913/floppstore.config delete mode 100644 newtests/20140722_152913/interactive-tx_latencies.csv delete mode 100644 newtests/20140722_152913/log.sasl.txt delete mode 100644 newtests/20140722_152913/static-tx_latencies.csv delete mode 100644 newtests/20140722_152913/summary.csv delete mode 100644 newtests/20140723_123916/console.log delete mode 100644 newtests/20140723_123916/crash.log delete mode 100644 newtests/20140723_123916/error.log delete mode 100644 newtests/20140723_123916/errors.csv delete mode 100644 newtests/20140723_123916/floppstore.config delete mode 100644 newtests/20140723_123916/interactive-tx_latencies.csv delete mode 100644 newtests/20140723_123916/log.sasl.txt delete mode 100644 newtests/20140723_123916/static-tx_latencies.csv delete mode 100644 newtests/20140723_123916/summary.csv delete mode 100644 newtests/20140723_123954/console.log delete mode 100644 newtests/20140723_123954/crash.log delete mode 100644 newtests/20140723_123954/error.log delete mode 100644 newtests/20140723_123954/errors.csv delete mode 100644 newtests/20140723_123954/floppstore.config delete mode 100644 newtests/20140723_123954/interactive-tx_latencies.csv delete mode 100644 newtests/20140723_123954/log.sasl.txt delete mode 100644 newtests/20140723_123954/static-tx_latencies.csv delete mode 100644 newtests/20140723_123954/summary.csv delete mode 100644 newtests/20140723_125435/console.log delete mode 100644 newtests/20140723_125435/crash.log delete mode 100644 newtests/20140723_125435/error.log delete mode 100644 newtests/20140723_125435/errors.csv delete mode 100644 newtests/20140723_125435/floppstore.config delete mode 100644 newtests/20140723_125435/interactive-tx_latencies.csv delete mode 100644 newtests/20140723_125435/log.sasl.txt delete mode 100644 newtests/20140723_125435/static-tx_latencies.csv delete mode 100644 newtests/20140723_125435/summary.csv delete mode 100644 newtests/20140723_140132/console.log delete mode 100644 newtests/20140723_140132/crash.log delete mode 100644 newtests/20140723_140132/error.log delete mode 100644 newtests/20140723_140132/errors.csv delete mode 100644 newtests/20140723_140132/floppstore.config delete mode 100644 newtests/20140723_140132/interactive-tx_latencies.csv delete mode 100644 newtests/20140723_140132/log.sasl.txt delete mode 100644 newtests/20140723_140132/static-tx_latencies.csv delete mode 100644 newtests/20140723_140132/summary.csv delete mode 100644 newtests/20140723_143206/console.log delete mode 100644 newtests/20140723_143206/crash.log delete mode 100644 newtests/20140723_143206/error.log delete mode 100644 newtests/20140723_143206/errors.csv delete mode 100644 newtests/20140723_143206/floppstore.config delete mode 100644 newtests/20140723_143206/interactive-tx_latencies.csv delete mode 100644 newtests/20140723_143206/log.sasl.txt delete mode 100644 newtests/20140723_143206/static-tx_latencies.csv delete mode 100644 newtests/20140723_143206/summary.csv delete mode 100644 newtests/20140723_143600/console.log delete mode 100644 newtests/20140723_143600/crash.log delete mode 100644 newtests/20140723_143600/error.log delete mode 100644 newtests/20140723_143600/errors.csv delete mode 100644 newtests/20140723_143600/floppstore.config delete mode 100644 newtests/20140723_143600/interactive-tx_latencies.csv delete mode 100644 newtests/20140723_143600/log.sasl.txt delete mode 100644 newtests/20140723_143600/static-tx_latencies.csv delete mode 100644 newtests/20140723_143600/summary.csv delete mode 100644 newtests/20140723_144217/console.log delete mode 100644 newtests/20140723_144217/crash.log delete mode 100644 newtests/20140723_144217/error.log delete mode 100644 newtests/20140723_144217/errors.csv delete mode 100644 newtests/20140723_144217/floppstore.config delete mode 100644 newtests/20140723_144217/interactive-tx_latencies.csv delete mode 100644 newtests/20140723_144217/log.sasl.txt delete mode 100644 newtests/20140723_144217/static-tx_latencies.csv delete mode 100644 newtests/20140723_144217/summary.csv delete mode 100644 newtests/20140723_144723/console.log delete mode 100644 newtests/20140723_144723/crash.log delete mode 100644 newtests/20140723_144723/error.log delete mode 100644 newtests/20140723_144723/errors.csv delete mode 100644 newtests/20140723_144723/floppstore.config delete mode 100644 newtests/20140723_144723/interactive-tx_latencies.csv delete mode 100644 newtests/20140723_144723/log.sasl.txt delete mode 100644 newtests/20140723_144723/static-tx_latencies.csv delete mode 100644 newtests/20140723_144723/summary.csv delete mode 100644 newtests/20140723_144925/append_latencies.csv delete mode 100644 newtests/20140723_144925/console.log delete mode 100644 newtests/20140723_144925/crash.log delete mode 100644 newtests/20140723_144925/error.log delete mode 100644 newtests/20140723_144925/errors.csv delete mode 100644 newtests/20140723_144925/floppstore.config delete mode 100644 newtests/20140723_144925/interactive-tx_latencies.csv delete mode 100644 newtests/20140723_144925/log.sasl.txt delete mode 100644 newtests/20140723_144925/read_latencies.csv delete mode 100644 newtests/20140723_144925/static-tx_latencies.csv delete mode 100644 newtests/20140723_144925/summary.csv delete mode 100644 newtests/20140723_203459/console.log delete mode 100644 newtests/20140723_203459/crash.log delete mode 100644 newtests/20140723_203459/error.log delete mode 100644 newtests/20140723_203459/errors.csv delete mode 100644 newtests/20140723_203459/floppstore.config delete mode 100644 newtests/20140723_203459/itx_latency.csv delete mode 100644 newtests/20140723_203459/log.sasl.txt delete mode 100644 newtests/20140723_203459/stx_latency.csv delete mode 100644 newtests/20140723_203459/summary.csv delete mode 100644 newtests/current/console.log delete mode 100644 newtests/current/crash.log delete mode 100644 newtests/current/error.log delete mode 100644 newtests/current/errors.csv delete mode 100644 newtests/current/floppstore.config delete mode 100644 newtests/current/itx_latency.csv delete mode 100644 newtests/current/log.sasl.txt delete mode 100644 newtests/current/stx_latency.csv delete mode 100644 newtests/current/summary.csv diff --git a/newtests/20140701_112946/append_latencies.csv b/newtests/20140701_112946/append_latencies.csv deleted file mode 100644 index 07b590abf..000000000 --- a/newtests/20140701_112946/append_latencies.csv +++ /dev/null @@ -1,8 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -10.000806, 10.000806, 4661, 953, 2238.5, 2120, 3295, 6535, 20873, 75433, 0 -20.001816, 10.00101, 4464, 1174, 2296.4, 2202, 3407, 4567, 15911, 78848, 0 -30.001812, 9.999996, 4312, 1126, 2406.3, 2283, 3638, 4992, 18089, 86873, 0 -40.001808, 9.999996, 4560, 1093, 2342.2, 2266, 3308, 4264, 59342, 86873, 0 -50.001819, 10.000011, 4645, 992, 2183.3, 2218, 3017, 3935, 36728, 80811, 0 -60.001812, 9.999993, 4913, 1056, 2093.6, 2085, 2862, 3522, 46222, 78082, 0 -61.007935, 1.006123, 444, 1056, 2106.7, 2096, 2871, 3649, 46222, 78082, 0 diff --git a/newtests/20140701_112946/console.log b/newtests/20140701_112946/console.log deleted file mode 100644 index e974828ec..000000000 --- a/newtests/20140701_112946/console.log +++ /dev/null @@ -1,43 +0,0 @@ -2014-07-01 11:29:46.240 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140701_112946/error.log"} into lager_event -2014-07-01 11:29:46.240 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140701_112946/console.log"} into lager_event -2014-07-01 11:29:46.240 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-01 11:29:46.274 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-01 11:29:46.274 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-01 11:29:46.274 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-01 11:29:46.274 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-01 11:29:46.714 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-01 11:29:47.075 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-01 11:29:47.077 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140701_112946/console.log to debug -2014-07-01 11:29:47.083 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} -2014-07-01 11:29:47.166 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-01 11:29:47.167 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-01 11:29:47.167 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-01 11:29:47.184 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-01 11:29:47.184 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-01 11:29:47.272 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-01 11:29:47.272 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-01 11:29:47.302 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-01 11:29:47.308 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-01 11:29:47.316 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-01 11:29:47.316 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-01 11:29:47.357 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-01 11:29:47.428 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> -2014-07-01 11:29:47.437 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> -2014-07-01 11:29:47.452 [info] <0.95.0>@basho_bench_driver_floppystore:new:59 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-01 11:29:47.453 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> -2014-07-01 11:29:47.453 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> -2014-07-01 11:29:47.469 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> -2014-07-01 11:29:47.470 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> -2014-07-01 11:29:47.488 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:132 Finished pinging 'floppy@127.0.0.1' -2014-07-01 11:29:47.488 [info] <0.95.0>@basho_bench_driver_floppystore:new:75 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-01 11:29:47.488 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-01 11:29:47.514 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:132 Finished pinging 'floppy@127.0.0.1' -2014-07-01 11:29:47.515 [info] <0.108.0>@basho_bench_driver_floppystore:new:75 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-01 11:29:47.515 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> -2014-07-01 11:29:47.516 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> -2014-07-01 11:29:47.522 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> -2014-07-01 11:29:47.522 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> -2014-07-01 11:29:47.523 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-01 11:30:48.542 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. diff --git a/newtests/20140701_112946/crash.log b/newtests/20140701_112946/crash.log deleted file mode 100644 index e69de29bb..000000000 diff --git a/newtests/20140701_112946/error.log b/newtests/20140701_112946/error.log deleted file mode 100644 index e69de29bb..000000000 diff --git a/newtests/20140701_112946/errors.csv b/newtests/20140701_112946/errors.csv deleted file mode 100644 index 29210b502..000000000 --- a/newtests/20140701_112946/errors.csv +++ /dev/null @@ -1 +0,0 @@ -"error","count" diff --git a/newtests/20140701_112946/floppstore.config b/newtests/20140701_112946/floppstore.config deleted file mode 100644 index 0ee2cec79..000000000 --- a/newtests/20140701_112946/floppstore.config +++ /dev/null @@ -1,22 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. - -{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. - -{operations, [{append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. diff --git a/newtests/20140701_112946/log.sasl.txt b/newtests/20140701_112946/log.sasl.txt deleted file mode 100644 index 5c9b44bac..000000000 --- a/newtests/20140701_112946/log.sasl.txt +++ /dev/null @@ -1,183 +0,0 @@ - -=PROGRESS REPORT==== 1-Jul-2014::11:29:47 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 1-Jul-2014::11:29:47 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 1-Jul-2014::11:29:47 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 1-Jul-2014::11:29:47 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 1-Jul-2014::11:29:47 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 1-Jul-2014::11:29:47 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 1-Jul-2014::11:29:47 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 1-Jul-2014::11:29:47 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 1-Jul-2014::11:29:47 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 1-Jul-2014::11:29:47 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 1-Jul-2014::11:29:47 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 1-Jul-2014::11:29:47 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 1-Jul-2014::11:29:47 === - supervisor: {local,net_sup} - started: [{pid,<0.97.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 1-Jul-2014::11:29:47 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 1-Jul-2014::11:29:47 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 1-Jul-2014::11:29:47 === - supervisor: {local,kernel_sup} - started: [{pid,<0.96.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 1-Jul-2014::11:29:47 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 1-Jul-2014::11:29:47 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.103.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 1-Jul-2014::11:29:47 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 1-Jul-2014::11:29:47 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 1-Jul-2014::11:29:47 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.109.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 1-Jul-2014::11:29:47 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' diff --git a/newtests/20140701_112946/read_latencies.csv b/newtests/20140701_112946/read_latencies.csv deleted file mode 100644 index 939e343ea..000000000 --- a/newtests/20140701_112946/read_latencies.csv +++ /dev/null @@ -1,8 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -10.000806, 10.000806, 4634, 935, 2020.2, 1960, 3109, 4103, 10706, 42627, 0 -20.001816, 10.00101, 4433, 992, 2128.8, 2062, 3255, 4356, 6438, 76861, 0 -30.001812, 9.999996, 4154, 1016, 2227.6, 2177, 3503, 4658, 7900, 11378, 0 -40.001808, 9.999996, 4425, 1045, 2089.3, 2086, 3191, 4147, 7207, 15814, 0 -50.001819, 10.000011, 4813, 965, 2006.0, 2028, 2879, 3707, 9222, 76627, 0 -60.001812, 9.999993, 4921, 1014, 1922.8, 1842, 2768, 3275, 5898, 47620, 0 -61.007935, 1.006123, 497, 1014, 1929.0, 1887, 2780, 3289, 5202, 47620, 0 diff --git a/newtests/20140701_112946/summary.csv b/newtests/20140701_112946/summary.csv deleted file mode 100644 index 61deae758..000000000 --- a/newtests/20140701_112946/summary.csv +++ /dev/null @@ -1,8 +0,0 @@ -elapsed, window, total, successful, failed -10.000806, 10.000806, 9295, 9295, 0 -20.001816, 10.00101, 8897, 8897, 0 -30.001812, 9.999996, 8466, 8466, 0 -40.001808, 9.999996, 8985, 8985, 0 -50.001819, 10.000011, 9458, 9458, 0 -60.001812, 9.999993, 9834, 9834, 0 -61.007935, 1.006123, 941, 941, 0 diff --git a/newtests/20140709_125412/append_latencies.csv b/newtests/20140709_125412/append_latencies.csv deleted file mode 100644 index 0e6a3efd9..000000000 --- a/newtests/20140709_125412/append_latencies.csv +++ /dev/null @@ -1,8 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -10.000761, 10.000761, 5201, 892, 2036.1, 1822, 2882, 4897, 29720, 53515, 0 -20.00176, 10.000999, 5032, 816, 2058.6, 1985, 2976, 3953, 35864, 64128, 0 -30.001849, 10.000089, 4871, 848, 2181.4, 2049, 3221, 6938, 44155, 46053, 0 -40.001761, 9.999912, 5084, 971, 2006.5, 2021, 2985, 3676, 7036, 13191, 0 -50.002183, 10.000422, 5147, 825, 1954.4, 1885, 2829, 3513, 14415, 61094, 0 -60.000764, 9.998581, 4885, 1016, 2105.0, 1964, 3165, 4879, 27709, 49736, 0 -61.007866, 1.007102, 493, 1016, 2076.0, 1951, 3142, 4461, 17309, 49736, 0 diff --git a/newtests/20140709_125412/console.log b/newtests/20140709_125412/console.log deleted file mode 100644 index 8993bac56..000000000 --- a/newtests/20140709_125412/console.log +++ /dev/null @@ -1,43 +0,0 @@ -2014-07-09 12:54:12.704 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140709_125412/error.log"} into lager_event -2014-07-09 12:54:12.704 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140709_125412/console.log"} into lager_event -2014-07-09 12:54:12.704 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-09 12:54:12.740 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-09 12:54:12.740 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-09 12:54:12.741 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-09 12:54:12.741 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-09 12:54:13.177 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-09 12:54:13.657 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-09 12:54:13.665 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140709_125412/console.log to debug -2014-07-09 12:54:13.672 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} -2014-07-09 12:54:13.769 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-09 12:54:13.769 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-09 12:54:13.770 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-09 12:54:13.786 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-09 12:54:13.786 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-09 12:54:13.876 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-09 12:54:13.876 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-09 12:54:13.907 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-09 12:54:13.914 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-09 12:54:13.920 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-09 12:54:13.920 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-09 12:54:13.959 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-09 12:54:14.034 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> -2014-07-09 12:54:14.043 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> -2014-07-09 12:54:14.059 [info] <0.95.0>@basho_bench_driver_floppystore:new:59 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-09 12:54:14.059 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> -2014-07-09 12:54:14.059 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> -2014-07-09 12:54:14.074 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> -2014-07-09 12:54:14.075 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> -2014-07-09 12:54:14.097 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:132 Finished pinging 'floppy@127.0.0.1' -2014-07-09 12:54:14.097 [info] <0.95.0>@basho_bench_driver_floppystore:new:75 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-09 12:54:14.097 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-09 12:54:14.133 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:132 Finished pinging 'floppy@127.0.0.1' -2014-07-09 12:54:14.133 [info] <0.108.0>@basho_bench_driver_floppystore:new:75 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-09 12:54:14.133 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> -2014-07-09 12:54:14.134 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> -2014-07-09 12:54:14.140 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> -2014-07-09 12:54:14.140 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> -2014-07-09 12:54:14.140 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-09 12:55:15.159 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. diff --git a/newtests/20140709_125412/crash.log b/newtests/20140709_125412/crash.log deleted file mode 100644 index e69de29bb..000000000 diff --git a/newtests/20140709_125412/error.log b/newtests/20140709_125412/error.log deleted file mode 100644 index e69de29bb..000000000 diff --git a/newtests/20140709_125412/errors.csv b/newtests/20140709_125412/errors.csv deleted file mode 100644 index 29210b502..000000000 --- a/newtests/20140709_125412/errors.csv +++ /dev/null @@ -1 +0,0 @@ -"error","count" diff --git a/newtests/20140709_125412/floppstore.config b/newtests/20140709_125412/floppstore.config deleted file mode 100644 index 0ee2cec79..000000000 --- a/newtests/20140709_125412/floppstore.config +++ /dev/null @@ -1,22 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. - -{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. - -{operations, [{append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. diff --git a/newtests/20140709_125412/log.sasl.txt b/newtests/20140709_125412/log.sasl.txt deleted file mode 100644 index aa5ad277b..000000000 --- a/newtests/20140709_125412/log.sasl.txt +++ /dev/null @@ -1,183 +0,0 @@ - -=PROGRESS REPORT==== 9-Jul-2014::12:54:13 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 9-Jul-2014::12:54:13 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 9-Jul-2014::12:54:13 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 9-Jul-2014::12:54:13 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 9-Jul-2014::12:54:13 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 9-Jul-2014::12:54:13 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 9-Jul-2014::12:54:13 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 9-Jul-2014::12:54:13 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 9-Jul-2014::12:54:13 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 9-Jul-2014::12:54:13 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 9-Jul-2014::12:54:13 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 9-Jul-2014::12:54:13 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 9-Jul-2014::12:54:14 === - supervisor: {local,net_sup} - started: [{pid,<0.97.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 9-Jul-2014::12:54:14 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 9-Jul-2014::12:54:14 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 9-Jul-2014::12:54:14 === - supervisor: {local,kernel_sup} - started: [{pid,<0.96.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 9-Jul-2014::12:54:14 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 9-Jul-2014::12:54:14 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.103.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 9-Jul-2014::12:54:14 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 9-Jul-2014::12:54:14 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 9-Jul-2014::12:54:14 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.109.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 9-Jul-2014::12:54:14 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' diff --git a/newtests/20140709_125412/read_latencies.csv b/newtests/20140709_125412/read_latencies.csv deleted file mode 100644 index 728047a8d..000000000 --- a/newtests/20140709_125412/read_latencies.csv +++ /dev/null @@ -1,8 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -10.000761, 10.000761, 5123, 854, 1803.0, 1583, 2687, 3432, 15884, 42643, 0 -20.00176, 10.000999, 4985, 775, 1876.8, 1734, 2841, 3611, 9220, 62209, 0 -30.001849, 10.000089, 4709, 812, 1940.1, 1832, 2944, 4124, 13828, 42997, 0 -40.001761, 9.999912, 5078, 890, 1877.4, 1816, 2886, 3594, 6237, 13141, 0 -50.002183, 10.000422, 5267, 844, 1834.3, 1735, 2777, 3368, 7523, 53119, 0 -60.000764, 9.998581, 4901, 926, 1932.9, 1828, 2996, 4362, 10440, 31195, 0 -61.007866, 1.007102, 493, 926, 1927.9, 1835, 2935, 4043, 10977, 31195, 0 diff --git a/newtests/20140709_125412/summary.csv b/newtests/20140709_125412/summary.csv deleted file mode 100644 index 6c7bc8ff1..000000000 --- a/newtests/20140709_125412/summary.csv +++ /dev/null @@ -1,8 +0,0 @@ -elapsed, window, total, successful, failed -10.000761, 10.000761, 10324, 10324, 0 -20.00176, 10.000999, 10017, 10017, 0 -30.001849, 10.000089, 9580, 9580, 0 -40.001761, 9.999912, 10162, 10162, 0 -50.002183, 10.000422, 10414, 10414, 0 -60.000764, 9.998581, 9786, 9786, 0 -61.007866, 1.007102, 986, 986, 0 diff --git a/newtests/20140711_182613/append_latencies.csv b/newtests/20140711_182613/append_latencies.csv deleted file mode 100644 index 2cee6f0d8..000000000 --- a/newtests/20140711_182613/append_latencies.csv +++ /dev/null @@ -1 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors diff --git a/newtests/20140711_182613/console.log b/newtests/20140711_182613/console.log deleted file mode 100644 index 0ec6afa8b..000000000 --- a/newtests/20140711_182613/console.log +++ /dev/null @@ -1,35 +0,0 @@ -2014-07-11 18:26:14.052 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140711_182613/error.log"} into lager_event -2014-07-11 18:26:14.052 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140711_182613/console.log"} into lager_event -2014-07-11 18:26:14.052 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-11 18:26:14.084 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-11 18:26:14.084 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-11 18:26:14.084 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-11 18:26:14.084 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-11 18:26:14.529 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-11 18:26:14.896 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-11 18:26:14.904 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140711_182613/console.log to debug -2014-07-11 18:26:14.913 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} -2014-07-11 18:26:15.001 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-11 18:26:15.001 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-11 18:26:15.002 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-11 18:26:15.018 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-11 18:26:15.018 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-11 18:26:15.111 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-11 18:26:15.111 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-11 18:26:15.141 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-11 18:26:15.145 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-11 18:26:15.151 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-11 18:26:15.151 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-11 18:26:15.190 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-11 18:26:15.258 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> -2014-07-11 18:26:15.267 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> -2014-07-11 18:26:15.283 [info] <0.95.0>@basho_bench_driver_floppystore:new:56 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-11 18:26:15.284 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> -2014-07-11 18:26:15.284 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> -2014-07-11 18:26:15.302 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> -2014-07-11 18:26:15.302 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> -2014-07-11 18:26:15.320 [error] <0.95.0>@basho_bench_driver_floppystore:ping_each:137 Failed to ping node 'floppy@127.0.0.1' -2014-07-11 18:26:15.320 [info] <0.95.0>@basho_bench_driver_floppystore:new:72 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-11 18:26:15.320 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> diff --git a/newtests/20140711_182613/crash.log b/newtests/20140711_182613/crash.log deleted file mode 100644 index e69de29bb..000000000 diff --git a/newtests/20140711_182613/error.log b/newtests/20140711_182613/error.log deleted file mode 100644 index a58fcdb1f..000000000 --- a/newtests/20140711_182613/error.log +++ /dev/null @@ -1 +0,0 @@ -2014-07-11 18:26:15.320 [error] <0.95.0>@basho_bench_driver_floppystore:ping_each:137 Failed to ping node 'floppy@127.0.0.1' diff --git a/newtests/20140711_182613/errors.csv b/newtests/20140711_182613/errors.csv deleted file mode 100644 index 29210b502..000000000 --- a/newtests/20140711_182613/errors.csv +++ /dev/null @@ -1 +0,0 @@ -"error","count" diff --git a/newtests/20140711_182613/floppstore.config b/newtests/20140711_182613/floppstore.config deleted file mode 100644 index 0ee2cec79..000000000 --- a/newtests/20140711_182613/floppstore.config +++ /dev/null @@ -1,22 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. - -{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. - -{operations, [{append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. diff --git a/newtests/20140711_182613/log.sasl.txt b/newtests/20140711_182613/log.sasl.txt deleted file mode 100644 index 2712d8904..000000000 --- a/newtests/20140711_182613/log.sasl.txt +++ /dev/null @@ -1,159 +0,0 @@ - -=PROGRESS REPORT==== 11-Jul-2014::18:26:14 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 11-Jul-2014::18:26:15 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 11-Jul-2014::18:26:15 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 11-Jul-2014::18:26:15 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 11-Jul-2014::18:26:15 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 11-Jul-2014::18:26:15 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 11-Jul-2014::18:26:15 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 11-Jul-2014::18:26:15 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 11-Jul-2014::18:26:15 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 11-Jul-2014::18:26:15 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 11-Jul-2014::18:26:15 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 11-Jul-2014::18:26:15 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 11-Jul-2014::18:26:15 === - supervisor: {local,net_sup} - started: [{pid,<0.97.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 11-Jul-2014::18:26:15 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 11-Jul-2014::18:26:15 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 11-Jul-2014::18:26:15 === - supervisor: {local,kernel_sup} - started: [{pid,<0.96.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 11-Jul-2014::18:26:15 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 11-Jul-2014::18:26:15 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.103.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 11-Jul-2014::18:26:15 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] diff --git a/newtests/20140711_182613/read_latencies.csv b/newtests/20140711_182613/read_latencies.csv deleted file mode 100644 index 2cee6f0d8..000000000 --- a/newtests/20140711_182613/read_latencies.csv +++ /dev/null @@ -1 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors diff --git a/newtests/20140711_182613/summary.csv b/newtests/20140711_182613/summary.csv deleted file mode 100644 index fa9e41e5d..000000000 --- a/newtests/20140711_182613/summary.csv +++ /dev/null @@ -1 +0,0 @@ -elapsed, window, total, successful, failed diff --git a/newtests/20140711_182632/append_latencies.csv b/newtests/20140711_182632/append_latencies.csv deleted file mode 100644 index cb579baaa..000000000 --- a/newtests/20140711_182632/append_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.154102, 0.154102, 0, 0, 0, 0, 0, 0, 0, 0, 7 diff --git a/newtests/20140711_182632/console.log b/newtests/20140711_182632/console.log deleted file mode 100644 index f8a9469b5..000000000 --- a/newtests/20140711_182632/console.log +++ /dev/null @@ -1,93 +0,0 @@ -2014-07-11 18:26:33.048 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140711_182632/error.log"} into lager_event -2014-07-11 18:26:33.048 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140711_182632/console.log"} into lager_event -2014-07-11 18:26:33.048 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-11 18:26:33.086 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-11 18:26:33.086 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-11 18:26:33.086 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-11 18:26:33.087 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-11 18:26:33.518 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-11 18:26:34.016 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-11 18:26:34.017 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140711_182632/console.log to debug -2014-07-11 18:26:34.024 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} -2014-07-11 18:26:34.112 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-11 18:26:34.112 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-11 18:26:34.113 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-11 18:26:34.127 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-11 18:26:34.127 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-11 18:26:34.214 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-11 18:26:34.215 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-11 18:26:34.244 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-11 18:26:34.248 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-11 18:26:34.253 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-11 18:26:34.253 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-11 18:26:34.293 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-11 18:26:34.360 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> -2014-07-11 18:26:34.368 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> -2014-07-11 18:26:34.382 [info] <0.95.0>@basho_bench_driver_floppystore:new:56 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-11 18:26:34.382 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> -2014-07-11 18:26:34.383 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> -2014-07-11 18:26:34.402 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> -2014-07-11 18:26:34.402 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> -2014-07-11 18:26:34.426 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-11 18:26:34.426 [info] <0.95.0>@basho_bench_driver_floppystore:new:72 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-11 18:26:34.427 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-11 18:26:34.453 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-11 18:26:34.453 [info] <0.108.0>@basho_bench_driver_floppystore:new:72 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-11 18:26:34.454 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> -2014-07-11 18:26:34.454 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> -2014-07-11 18:26:34.459 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> -2014-07-11 18:26:34.459 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> -2014-07-11 18:26:34.459 [debug] <0.95.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,106}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-11 18:26:34.459 [debug] <0.108.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,106}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-11 18:26:34.460 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash -2014-07-11 18:26:34.460 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash -2014-07-11 18:26:34.460 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-11 18:26:34.460 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-11 18:26:34.490 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-11 18:26:34.490 [info] <0.111.0>@basho_bench_driver_floppystore:new:72 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-11 18:26:34.490 [warning] <0.110.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-11 18:26:34.490 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> -2014-07-11 18:26:34.490 [debug] <0.111.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,106}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-11 18:26:34.491 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash -2014-07-11 18:26:34.491 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.110.0> -2014-07-11 18:26:34.491 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-11 18:26:34.520 [info] <0.113.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-11 18:26:34.520 [info] <0.113.0>@basho_bench_driver_floppystore:new:72 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-11 18:26:34.520 [warning] <0.112.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-11 18:26:34.520 [info] <0.113.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.113.0> -2014-07-11 18:26:34.521 [debug] <0.113.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,106}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-11 18:26:34.521 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash -2014-07-11 18:26:34.521 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.112.0> -2014-07-11 18:26:34.521 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.110.0> exit with reason normal in context child_terminated -2014-07-11 18:26:34.545 [info] <0.115.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-11 18:26:34.545 [info] <0.115.0>@basho_bench_driver_floppystore:new:72 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-11 18:26:34.545 [warning] <0.114.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-11 18:26:34.545 [info] <0.115.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.115.0> -2014-07-11 18:26:34.546 [debug] <0.115.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,106}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-11 18:26:34.546 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash -2014-07-11 18:26:34.546 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.114.0> -2014-07-11 18:26:34.546 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.112.0> exit with reason normal in context child_terminated -2014-07-11 18:26:34.578 [info] <0.117.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-11 18:26:34.578 [info] <0.117.0>@basho_bench_driver_floppystore:new:72 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-11 18:26:34.578 [warning] <0.116.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-11 18:26:34.578 [info] <0.117.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.117.0> -2014-07-11 18:26:34.579 [debug] <0.117.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,106}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-11 18:26:34.579 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.116.0> -2014-07-11 18:26:34.579 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash -2014-07-11 18:26:34.580 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.114.0> exit with reason normal in context child_terminated -2014-07-11 18:26:34.607 [info] <0.119.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-11 18:26:34.607 [info] <0.119.0>@basho_bench_driver_floppystore:new:72 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-11 18:26:34.607 [warning] <0.118.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-11 18:26:34.607 [info] <0.119.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.119.0> -2014-07-11 18:26:34.608 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.118.0> -2014-07-11 18:26:34.608 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.116.0> exit with reason normal in context child_terminated -2014-07-11 18:26:34.609 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-11 18:26:34.613 [debug] <0.119.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,106}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-11 18:26:34.620 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {append,append} -2014-07-11 18:26:34.620 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} -2014-07-11 18:26:34.621 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{append,append},7},{{{append,append},crash},7}] -2014-07-11 18:26:34.621 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: -2014-07-11 18:26:34.621 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{append,append},crash}: 7 -2014-07-11 18:26:34.622 [info] <0.2.0>@basho_bench:wait_for_stop:191 Test stopped: shutdown diff --git a/newtests/20140711_182632/crash.log b/newtests/20140711_182632/crash.log deleted file mode 100644 index 54a6993bf..000000000 --- a/newtests/20140711_182632/crash.log +++ /dev/null @@ -1,42 +0,0 @@ -2014-07-11 18:26:34 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-11 18:26:34 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-11 18:26:34 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-11 18:26:34 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.112.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-11 18:26:34 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.114.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-11 18:26:34 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.116.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-11 18:26:34 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.116.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140711_182632/error.log b/newtests/20140711_182632/error.log deleted file mode 100644 index 64df2f5c3..000000000 --- a/newtests/20140711_182632/error.log +++ /dev/null @@ -1,13 +0,0 @@ -2014-07-11 18:26:34.460 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash -2014-07-11 18:26:34.460 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash -2014-07-11 18:26:34.460 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-11 18:26:34.491 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash -2014-07-11 18:26:34.491 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-11 18:26:34.521 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash -2014-07-11 18:26:34.521 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.110.0> exit with reason normal in context child_terminated -2014-07-11 18:26:34.546 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash -2014-07-11 18:26:34.546 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.112.0> exit with reason normal in context child_terminated -2014-07-11 18:26:34.579 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash -2014-07-11 18:26:34.580 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.114.0> exit with reason normal in context child_terminated -2014-07-11 18:26:34.608 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.116.0> exit with reason normal in context child_terminated -2014-07-11 18:26:34.609 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140711_182632/errors.csv b/newtests/20140711_182632/errors.csv deleted file mode 100644 index a31ba014e..000000000 --- a/newtests/20140711_182632/errors.csv +++ /dev/null @@ -1,2 +0,0 @@ -"error","count" -"{{append,append},crash}","7" diff --git a/newtests/20140711_182632/floppstore.config b/newtests/20140711_182632/floppstore.config deleted file mode 100644 index 0ee2cec79..000000000 --- a/newtests/20140711_182632/floppstore.config +++ /dev/null @@ -1,22 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. - -{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. - -{operations, [{append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. diff --git a/newtests/20140711_182632/log.sasl.txt b/newtests/20140711_182632/log.sasl.txt deleted file mode 100644 index 2754f88c1..000000000 --- a/newtests/20140711_182632/log.sasl.txt +++ /dev/null @@ -1,336 +0,0 @@ - -=PROGRESS REPORT==== 11-Jul-2014::18:26:34 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 11-Jul-2014::18:26:34 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 11-Jul-2014::18:26:34 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 11-Jul-2014::18:26:34 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 11-Jul-2014::18:26:34 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 11-Jul-2014::18:26:34 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 11-Jul-2014::18:26:34 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 11-Jul-2014::18:26:34 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 11-Jul-2014::18:26:34 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 11-Jul-2014::18:26:34 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 11-Jul-2014::18:26:34 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 11-Jul-2014::18:26:34 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 11-Jul-2014::18:26:34 === - supervisor: {local,net_sup} - started: [{pid,<0.97.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 11-Jul-2014::18:26:34 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 11-Jul-2014::18:26:34 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 11-Jul-2014::18:26:34 === - supervisor: {local,kernel_sup} - started: [{pid,<0.96.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 11-Jul-2014::18:26:34 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 11-Jul-2014::18:26:34 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.103.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 11-Jul-2014::18:26:34 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 11-Jul-2014::18:26:34 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 11-Jul-2014::18:26:34 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.109.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 11-Jul-2014::18:26:34 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 11-Jul-2014::18:26:34 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=PROGRESS REPORT==== 11-Jul-2014::18:26:34 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.110.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 11-Jul-2014::18:26:34 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 11-Jul-2014::18:26:34 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.112.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 11-Jul-2014::18:26:34 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 11-Jul-2014::18:26:34 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.114.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 11-Jul-2014::18:26:34 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.112.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 11-Jul-2014::18:26:34 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.116.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 11-Jul-2014::18:26:34 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.114.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 11-Jul-2014::18:26:34 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.118.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 11-Jul-2014::18:26:34 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.116.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 11-Jul-2014::18:26:34 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.116.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140711_182632/read_latencies.csv b/newtests/20140711_182632/read_latencies.csv deleted file mode 100644 index e1163c2de..000000000 --- a/newtests/20140711_182632/read_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.154102, 0.154102, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140711_182632/summary.csv b/newtests/20140711_182632/summary.csv deleted file mode 100644 index 004a6fe10..000000000 --- a/newtests/20140711_182632/summary.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, total, successful, failed -0.154102, 0.154102, 7, 0, 7 diff --git a/newtests/20140711_182641/append_latencies.csv b/newtests/20140711_182641/append_latencies.csv deleted file mode 100644 index 9bc654f0d..000000000 --- a/newtests/20140711_182641/append_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.163101, 0.163101, 0, 0, 0, 0, 0, 0, 0, 0, 7 diff --git a/newtests/20140711_182641/console.log b/newtests/20140711_182641/console.log deleted file mode 100644 index d6daad9a8..000000000 --- a/newtests/20140711_182641/console.log +++ /dev/null @@ -1,92 +0,0 @@ -2014-07-11 18:26:41.548 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140711_182641/error.log"} into lager_event -2014-07-11 18:26:41.548 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140711_182641/console.log"} into lager_event -2014-07-11 18:26:41.548 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-11 18:26:41.579 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-11 18:26:41.580 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-11 18:26:41.580 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-11 18:26:41.580 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-11 18:26:42.022 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-11 18:26:42.394 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-11 18:26:42.395 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140711_182641/console.log to debug -2014-07-11 18:26:42.402 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} -2014-07-11 18:26:42.482 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-11 18:26:42.483 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-11 18:26:42.483 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-11 18:26:42.498 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-11 18:26:42.499 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-11 18:26:42.584 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-11 18:26:42.584 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-11 18:26:42.613 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-11 18:26:42.617 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-11 18:26:42.621 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-11 18:26:42.622 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-11 18:26:42.661 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-11 18:26:42.727 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> -2014-07-11 18:26:42.734 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> -2014-07-11 18:26:42.746 [info] <0.95.0>@basho_bench_driver_floppystore:new:56 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-11 18:26:42.746 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> -2014-07-11 18:26:42.747 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> -2014-07-11 18:26:42.762 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> -2014-07-11 18:26:42.762 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> -2014-07-11 18:26:42.777 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-11 18:26:42.777 [info] <0.95.0>@basho_bench_driver_floppystore:new:72 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-11 18:26:42.778 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-11 18:26:42.812 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-11 18:26:42.812 [info] <0.108.0>@basho_bench_driver_floppystore:new:72 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-11 18:26:42.812 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> -2014-07-11 18:26:42.813 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> -2014-07-11 18:26:42.819 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> -2014-07-11 18:26:42.819 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> -2014-07-11 18:26:42.820 [debug] <0.95.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,106}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-11 18:26:42.820 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash -2014-07-11 18:26:42.820 [debug] <0.108.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,106}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-11 18:26:42.820 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-11 18:26:42.820 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash -2014-07-11 18:26:42.827 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-11 18:26:42.857 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-11 18:26:42.857 [info] <0.111.0>@basho_bench_driver_floppystore:new:72 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-11 18:26:42.857 [warning] <0.110.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-11 18:26:42.857 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> -2014-07-11 18:26:42.857 [debug] <0.111.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,106}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-11 18:26:42.857 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.110.0> -2014-07-11 18:26:42.857 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash -2014-07-11 18:26:42.858 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-11 18:26:42.887 [info] <0.113.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-11 18:26:42.887 [info] <0.113.0>@basho_bench_driver_floppystore:new:72 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-11 18:26:42.887 [warning] <0.112.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-11 18:26:42.887 [info] <0.113.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.113.0> -2014-07-11 18:26:42.888 [debug] <0.113.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,106}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-11 18:26:42.888 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash -2014-07-11 18:26:42.888 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.112.0> -2014-07-11 18:26:42.889 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.110.0> exit with reason normal in context child_terminated -2014-07-11 18:26:42.919 [info] <0.115.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-11 18:26:42.919 [info] <0.115.0>@basho_bench_driver_floppystore:new:72 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-11 18:26:42.919 [warning] <0.114.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-11 18:26:42.919 [info] <0.115.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.115.0> -2014-07-11 18:26:42.919 [debug] <0.115.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,106}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-11 18:26:42.919 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash -2014-07-11 18:26:42.920 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.114.0> -2014-07-11 18:26:42.920 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.112.0> exit with reason normal in context child_terminated -2014-07-11 18:26:42.946 [info] <0.117.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-11 18:26:42.946 [info] <0.117.0>@basho_bench_driver_floppystore:new:72 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-11 18:26:42.946 [warning] <0.116.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-11 18:26:42.946 [info] <0.117.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.117.0> -2014-07-11 18:26:42.947 [debug] <0.117.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,106}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-11 18:26:42.947 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash -2014-07-11 18:26:42.947 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.116.0> -2014-07-11 18:26:42.947 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.114.0> exit with reason normal in context child_terminated -2014-07-11 18:26:42.975 [info] <0.119.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-11 18:26:42.975 [info] <0.119.0>@basho_bench_driver_floppystore:new:72 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-11 18:26:42.975 [warning] <0.118.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-11 18:26:42.975 [info] <0.119.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.119.0> -2014-07-11 18:26:42.975 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.118.0> -2014-07-11 18:26:42.976 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.116.0> exit with reason normal in context child_terminated -2014-07-11 18:26:42.976 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-11 18:26:42.982 [debug] <0.119.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,106}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-11 18:26:42.989 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {append,append} -2014-07-11 18:26:42.989 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} -2014-07-11 18:26:42.990 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{append,append},7},{{{append,append},crash},7}] -2014-07-11 18:26:42.990 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: -2014-07-11 18:26:42.990 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{append,append},crash}: 7 diff --git a/newtests/20140711_182641/crash.log b/newtests/20140711_182641/crash.log deleted file mode 100644 index 807e38ca1..000000000 --- a/newtests/20140711_182641/crash.log +++ /dev/null @@ -1,42 +0,0 @@ -2014-07-11 18:26:42 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-11 18:26:42 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-11 18:26:42 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-11 18:26:42 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.112.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-11 18:26:42 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.114.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-11 18:26:42 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.116.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-11 18:26:42 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.116.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140711_182641/error.log b/newtests/20140711_182641/error.log deleted file mode 100644 index a9f65e878..000000000 --- a/newtests/20140711_182641/error.log +++ /dev/null @@ -1,13 +0,0 @@ -2014-07-11 18:26:42.820 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash -2014-07-11 18:26:42.820 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash -2014-07-11 18:26:42.827 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-11 18:26:42.857 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash -2014-07-11 18:26:42.858 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-11 18:26:42.888 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash -2014-07-11 18:26:42.889 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.110.0> exit with reason normal in context child_terminated -2014-07-11 18:26:42.919 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash -2014-07-11 18:26:42.920 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.112.0> exit with reason normal in context child_terminated -2014-07-11 18:26:42.947 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash -2014-07-11 18:26:42.947 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.114.0> exit with reason normal in context child_terminated -2014-07-11 18:26:42.976 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.116.0> exit with reason normal in context child_terminated -2014-07-11 18:26:42.976 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140711_182641/errors.csv b/newtests/20140711_182641/errors.csv deleted file mode 100644 index a31ba014e..000000000 --- a/newtests/20140711_182641/errors.csv +++ /dev/null @@ -1,2 +0,0 @@ -"error","count" -"{{append,append},crash}","7" diff --git a/newtests/20140711_182641/floppstore.config b/newtests/20140711_182641/floppstore.config deleted file mode 100644 index 0ee2cec79..000000000 --- a/newtests/20140711_182641/floppstore.config +++ /dev/null @@ -1,22 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. - -{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. - -{operations, [{append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. diff --git a/newtests/20140711_182641/log.sasl.txt b/newtests/20140711_182641/log.sasl.txt deleted file mode 100644 index 58b30c4b8..000000000 --- a/newtests/20140711_182641/log.sasl.txt +++ /dev/null @@ -1,336 +0,0 @@ - -=PROGRESS REPORT==== 11-Jul-2014::18:26:42 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 11-Jul-2014::18:26:42 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 11-Jul-2014::18:26:42 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 11-Jul-2014::18:26:42 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 11-Jul-2014::18:26:42 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 11-Jul-2014::18:26:42 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 11-Jul-2014::18:26:42 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 11-Jul-2014::18:26:42 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 11-Jul-2014::18:26:42 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 11-Jul-2014::18:26:42 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 11-Jul-2014::18:26:42 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 11-Jul-2014::18:26:42 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 11-Jul-2014::18:26:42 === - supervisor: {local,net_sup} - started: [{pid,<0.97.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 11-Jul-2014::18:26:42 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 11-Jul-2014::18:26:42 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 11-Jul-2014::18:26:42 === - supervisor: {local,kernel_sup} - started: [{pid,<0.96.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 11-Jul-2014::18:26:42 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 11-Jul-2014::18:26:42 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.103.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 11-Jul-2014::18:26:42 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 11-Jul-2014::18:26:42 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 11-Jul-2014::18:26:42 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.109.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 11-Jul-2014::18:26:42 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 11-Jul-2014::18:26:42 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 11-Jul-2014::18:26:42 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.110.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 11-Jul-2014::18:26:42 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 11-Jul-2014::18:26:42 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.112.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 11-Jul-2014::18:26:42 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 11-Jul-2014::18:26:42 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.114.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 11-Jul-2014::18:26:42 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.112.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 11-Jul-2014::18:26:42 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.116.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 11-Jul-2014::18:26:42 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.114.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 11-Jul-2014::18:26:42 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.118.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 11-Jul-2014::18:26:42 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.116.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 11-Jul-2014::18:26:42 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.116.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140711_182641/read_latencies.csv b/newtests/20140711_182641/read_latencies.csv deleted file mode 100644 index ac1a69647..000000000 --- a/newtests/20140711_182641/read_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.163101, 0.163101, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140711_182641/summary.csv b/newtests/20140711_182641/summary.csv deleted file mode 100644 index f23e8710c..000000000 --- a/newtests/20140711_182641/summary.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, total, successful, failed -0.163101, 0.163101, 7, 0, 7 diff --git a/newtests/20140716_154312/append_latencies.csv b/newtests/20140716_154312/append_latencies.csv deleted file mode 100644 index 2cee6f0d8..000000000 --- a/newtests/20140716_154312/append_latencies.csv +++ /dev/null @@ -1 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors diff --git a/newtests/20140716_154312/console.log b/newtests/20140716_154312/console.log deleted file mode 100644 index c92acf5fb..000000000 --- a/newtests/20140716_154312/console.log +++ /dev/null @@ -1,35 +0,0 @@ -2014-07-16 15:43:13.012 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_154312/error.log"} into lager_event -2014-07-16 15:43:13.012 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_154312/console.log"} into lager_event -2014-07-16 15:43:13.012 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-16 15:43:13.049 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-16 15:43:13.049 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-16 15:43:13.050 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-16 15:43:13.050 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-16 15:43:13.485 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-16 15:43:13.854 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-16 15:43:13.863 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_154312/console.log to debug -2014-07-16 15:43:13.872 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} -2014-07-16 15:43:13.958 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-16 15:43:13.958 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-16 15:43:13.959 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-16 15:43:13.975 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-16 15:43:13.975 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-16 15:43:14.066 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-16 15:43:14.067 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-16 15:43:14.098 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-16 15:43:14.103 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-16 15:43:14.110 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-16 15:43:14.110 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-16 15:43:14.152 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-16 15:43:14.218 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> -2014-07-16 15:43:14.225 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> -2014-07-16 15:43:14.238 [info] <0.95.0>@basho_bench_driver_floppystore:new:56 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-16 15:43:14.239 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> -2014-07-16 15:43:14.239 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> -2014-07-16 15:43:14.263 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> -2014-07-16 15:43:14.264 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> -2014-07-16 15:43:14.284 [error] <0.95.0>@basho_bench_driver_floppystore:ping_each:137 Failed to ping node 'floppy@127.0.0.1' -2014-07-16 15:43:14.284 [info] <0.95.0>@basho_bench_driver_floppystore:new:72 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 15:43:14.284 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> diff --git a/newtests/20140716_154312/crash.log b/newtests/20140716_154312/crash.log deleted file mode 100644 index e69de29bb..000000000 diff --git a/newtests/20140716_154312/error.log b/newtests/20140716_154312/error.log deleted file mode 100644 index fa9c29e22..000000000 --- a/newtests/20140716_154312/error.log +++ /dev/null @@ -1 +0,0 @@ -2014-07-16 15:43:14.284 [error] <0.95.0>@basho_bench_driver_floppystore:ping_each:137 Failed to ping node 'floppy@127.0.0.1' diff --git a/newtests/20140716_154312/errors.csv b/newtests/20140716_154312/errors.csv deleted file mode 100644 index 29210b502..000000000 --- a/newtests/20140716_154312/errors.csv +++ /dev/null @@ -1 +0,0 @@ -"error","count" diff --git a/newtests/20140716_154312/floppstore.config b/newtests/20140716_154312/floppstore.config deleted file mode 100644 index 55db32761..000000000 --- a/newtests/20140716_154312/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. - -{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. - -{operations, [{append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_154312/log.sasl.txt b/newtests/20140716_154312/log.sasl.txt deleted file mode 100644 index 6df5748c0..000000000 --- a/newtests/20140716_154312/log.sasl.txt +++ /dev/null @@ -1,159 +0,0 @@ - -=PROGRESS REPORT==== 16-Jul-2014::15:43:13 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:43:13 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:43:13 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::15:43:13 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:43:13 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::15:43:14 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:43:14 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::15:43:14 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::15:43:14 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:43:14 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:43:14 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::15:43:14 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:43:14 === - supervisor: {local,net_sup} - started: [{pid,<0.97.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:43:14 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:43:14 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:43:14 === - supervisor: {local,kernel_sup} - started: [{pid,<0.96.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::15:43:14 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 16-Jul-2014::15:43:14 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.103.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:43:14 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] diff --git a/newtests/20140716_154312/read_latencies.csv b/newtests/20140716_154312/read_latencies.csv deleted file mode 100644 index 2cee6f0d8..000000000 --- a/newtests/20140716_154312/read_latencies.csv +++ /dev/null @@ -1 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors diff --git a/newtests/20140716_154312/summary.csv b/newtests/20140716_154312/summary.csv deleted file mode 100644 index fa9e41e5d..000000000 --- a/newtests/20140716_154312/summary.csv +++ /dev/null @@ -1 +0,0 @@ -elapsed, window, total, successful, failed diff --git a/newtests/20140716_154402/append_latencies.csv b/newtests/20140716_154402/append_latencies.csv deleted file mode 100644 index 2cee6f0d8..000000000 --- a/newtests/20140716_154402/append_latencies.csv +++ /dev/null @@ -1 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors diff --git a/newtests/20140716_154402/console.log b/newtests/20140716_154402/console.log deleted file mode 100644 index 9976cb7be..000000000 --- a/newtests/20140716_154402/console.log +++ /dev/null @@ -1,35 +0,0 @@ -2014-07-16 15:44:02.740 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_154402/error.log"} into lager_event -2014-07-16 15:44:02.740 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_154402/console.log"} into lager_event -2014-07-16 15:44:02.740 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-16 15:44:02.775 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-16 15:44:02.776 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-16 15:44:02.776 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-16 15:44:02.776 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-16 15:44:03.213 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-16 15:44:03.627 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-16 15:44:03.628 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_154402/console.log to debug -2014-07-16 15:44:03.636 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} -2014-07-16 15:44:03.720 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-16 15:44:03.720 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-16 15:44:03.720 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-16 15:44:03.737 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-16 15:44:03.737 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-16 15:44:03.823 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-16 15:44:03.824 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-16 15:44:03.855 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-16 15:44:03.859 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-16 15:44:03.865 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-16 15:44:03.865 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-16 15:44:03.903 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-16 15:44:03.973 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> -2014-07-16 15:44:03.982 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> -2014-07-16 15:44:03.995 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-16 15:44:03.995 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> -2014-07-16 15:44:03.996 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> -2014-07-16 15:44:04.009 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> -2014-07-16 15:44:04.009 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> -2014-07-16 15:44:04.025 [error] <0.95.0>@basho_bench_driver_floppystore:ping_each:137 Failed to ping node 'floppy@127.0.0.1' -2014-07-16 15:44:04.025 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 15:44:04.025 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> diff --git a/newtests/20140716_154402/crash.log b/newtests/20140716_154402/crash.log deleted file mode 100644 index e69de29bb..000000000 diff --git a/newtests/20140716_154402/error.log b/newtests/20140716_154402/error.log deleted file mode 100644 index b7763870d..000000000 --- a/newtests/20140716_154402/error.log +++ /dev/null @@ -1 +0,0 @@ -2014-07-16 15:44:04.025 [error] <0.95.0>@basho_bench_driver_floppystore:ping_each:137 Failed to ping node 'floppy@127.0.0.1' diff --git a/newtests/20140716_154402/errors.csv b/newtests/20140716_154402/errors.csv deleted file mode 100644 index 29210b502..000000000 --- a/newtests/20140716_154402/errors.csv +++ /dev/null @@ -1 +0,0 @@ -"error","count" diff --git a/newtests/20140716_154402/floppstore.config b/newtests/20140716_154402/floppstore.config deleted file mode 100644 index 55db32761..000000000 --- a/newtests/20140716_154402/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. - -{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. - -{operations, [{append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_154402/log.sasl.txt b/newtests/20140716_154402/log.sasl.txt deleted file mode 100644 index cc2287ea3..000000000 --- a/newtests/20140716_154402/log.sasl.txt +++ /dev/null @@ -1,159 +0,0 @@ - -=PROGRESS REPORT==== 16-Jul-2014::15:44:03 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:44:03 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:44:03 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::15:44:03 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:44:03 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::15:44:03 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:44:03 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::15:44:03 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::15:44:03 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:44:03 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:44:03 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::15:44:03 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:44:03 === - supervisor: {local,net_sup} - started: [{pid,<0.97.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:44:03 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:44:03 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:44:03 === - supervisor: {local,kernel_sup} - started: [{pid,<0.96.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::15:44:04 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 16-Jul-2014::15:44:04 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.103.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:44:04 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] diff --git a/newtests/20140716_154402/read_latencies.csv b/newtests/20140716_154402/read_latencies.csv deleted file mode 100644 index 2cee6f0d8..000000000 --- a/newtests/20140716_154402/read_latencies.csv +++ /dev/null @@ -1 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors diff --git a/newtests/20140716_154402/summary.csv b/newtests/20140716_154402/summary.csv deleted file mode 100644 index fa9e41e5d..000000000 --- a/newtests/20140716_154402/summary.csv +++ /dev/null @@ -1 +0,0 @@ -elapsed, window, total, successful, failed diff --git a/newtests/20140716_154446/append_latencies.csv b/newtests/20140716_154446/append_latencies.csv deleted file mode 100644 index 7883aa9d9..000000000 --- a/newtests/20140716_154446/append_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.161625, 0.161625, 0, 0, 0, 0, 0, 0, 0, 0, 6 diff --git a/newtests/20140716_154446/console.log b/newtests/20140716_154446/console.log deleted file mode 100644 index 335012abb..000000000 --- a/newtests/20140716_154446/console.log +++ /dev/null @@ -1,91 +0,0 @@ -2014-07-16 15:44:47.154 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_154446/error.log"} into lager_event -2014-07-16 15:44:47.154 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_154446/console.log"} into lager_event -2014-07-16 15:44:47.154 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-16 15:44:47.188 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-16 15:44:47.188 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-16 15:44:47.188 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-16 15:44:47.188 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-16 15:44:47.630 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-16 15:44:47.987 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-16 15:44:47.989 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_154446/console.log to debug -2014-07-16 15:44:47.995 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} -2014-07-16 15:44:48.078 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-16 15:44:48.078 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-16 15:44:48.079 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-16 15:44:48.095 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-16 15:44:48.095 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-16 15:44:48.177 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-16 15:44:48.177 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-16 15:44:48.202 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-16 15:44:48.206 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-16 15:44:48.211 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-16 15:44:48.211 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-16 15:44:48.252 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-16 15:44:48.311 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> -2014-07-16 15:44:48.321 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> -2014-07-16 15:44:48.337 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-16 15:44:48.337 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> -2014-07-16 15:44:48.338 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> -2014-07-16 15:44:48.354 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> -2014-07-16 15:44:48.354 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> -2014-07-16 15:44:48.369 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 15:44:48.369 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 15:44:48.370 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-16 15:44:48.397 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 15:44:48.397 [info] <0.108.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 15:44:48.397 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> -2014-07-16 15:44:48.398 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> -2014-07-16 15:44:48.404 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> -2014-07-16 15:44:48.404 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> -2014-07-16 15:44:48.404 [debug] <0.108.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,106}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 15:44:48.404 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash -2014-07-16 15:44:48.405 [debug] <0.95.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,106}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 15:44:48.405 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash -2014-07-16 15:44:48.405 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-16 15:44:48.405 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-16 15:44:48.443 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 15:44:48.443 [info] <0.111.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 15:44:48.443 [warning] <0.110.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 15:44:48.444 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> -2014-07-16 15:44:48.444 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.110.0> -2014-07-16 15:44:48.444 [debug] <0.111.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,106}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 15:44:48.444 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash -2014-07-16 15:44:48.444 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 15:44:48.471 [info] <0.113.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 15:44:48.471 [info] <0.113.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 15:44:48.471 [warning] <0.112.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 15:44:48.471 [info] <0.113.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.113.0> -2014-07-16 15:44:48.471 [debug] <0.113.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,106}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 15:44:48.471 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash -2014-07-16 15:44:48.471 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.112.0> -2014-07-16 15:44:48.472 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated -2014-07-16 15:44:48.502 [info] <0.115.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 15:44:48.502 [info] <0.115.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 15:44:48.502 [warning] <0.114.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 15:44:48.502 [info] <0.115.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.115.0> -2014-07-16 15:44:48.503 [debug] <0.115.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,106}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 15:44:48.503 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash -2014-07-16 15:44:48.503 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.114.0> -2014-07-16 15:44:48.503 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.112.0> exit with reason normal in context child_terminated -2014-07-16 15:44:48.533 [info] <0.117.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 15:44:48.533 [info] <0.117.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 15:44:48.533 [warning] <0.116.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 15:44:48.534 [info] <0.117.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.117.0> -2014-07-16 15:44:48.534 [debug] <0.117.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,106}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 15:44:48.534 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash -2014-07-16 15:44:48.534 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.116.0> -2014-07-16 15:44:48.534 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.114.0> exit with reason normal in context child_terminated -2014-07-16 15:44:48.558 [info] <0.119.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 15:44:48.558 [info] <0.119.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 15:44:48.558 [warning] <0.118.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 15:44:48.558 [info] <0.119.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.119.0> -2014-07-16 15:44:48.559 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.118.0> -2014-07-16 15:44:48.559 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason normal in context child_terminated -2014-07-16 15:44:48.560 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-16 15:44:48.573 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {append,append} -2014-07-16 15:44:48.573 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} -2014-07-16 15:44:48.574 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{append,append},6},{{{append,append},crash},6}] -2014-07-16 15:44:48.574 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: -2014-07-16 15:44:48.574 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{append,append},crash}: 6 diff --git a/newtests/20140716_154446/crash.log b/newtests/20140716_154446/crash.log deleted file mode 100644 index 58835eecd..000000000 --- a/newtests/20140716_154446/crash.log +++ /dev/null @@ -1,42 +0,0 @@ -2014-07-16 15:44:48 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 15:44:48 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 15:44:48 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 15:44:48 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.112.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 15:44:48 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.114.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 15:44:48 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.116.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 15:44:48 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.116.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140716_154446/error.log b/newtests/20140716_154446/error.log deleted file mode 100644 index 3fa0ceffb..000000000 --- a/newtests/20140716_154446/error.log +++ /dev/null @@ -1,13 +0,0 @@ -2014-07-16 15:44:48.404 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash -2014-07-16 15:44:48.405 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash -2014-07-16 15:44:48.405 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-16 15:44:48.444 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash -2014-07-16 15:44:48.444 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 15:44:48.471 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash -2014-07-16 15:44:48.472 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated -2014-07-16 15:44:48.503 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash -2014-07-16 15:44:48.503 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.112.0> exit with reason normal in context child_terminated -2014-07-16 15:44:48.534 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash -2014-07-16 15:44:48.534 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.114.0> exit with reason normal in context child_terminated -2014-07-16 15:44:48.559 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason normal in context child_terminated -2014-07-16 15:44:48.560 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_154446/errors.csv b/newtests/20140716_154446/errors.csv deleted file mode 100644 index dc786eb57..000000000 --- a/newtests/20140716_154446/errors.csv +++ /dev/null @@ -1,2 +0,0 @@ -"error","count" -"{{append,append},crash}","6" diff --git a/newtests/20140716_154446/floppstore.config b/newtests/20140716_154446/floppstore.config deleted file mode 100644 index 55db32761..000000000 --- a/newtests/20140716_154446/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. - -{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. - -{operations, [{append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_154446/log.sasl.txt b/newtests/20140716_154446/log.sasl.txt deleted file mode 100644 index ca45d8be7..000000000 --- a/newtests/20140716_154446/log.sasl.txt +++ /dev/null @@ -1,336 +0,0 @@ - -=PROGRESS REPORT==== 16-Jul-2014::15:44:48 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:44:48 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:44:48 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::15:44:48 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:44:48 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::15:44:48 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:44:48 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::15:44:48 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::15:44:48 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:44:48 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:44:48 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::15:44:48 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:44:48 === - supervisor: {local,net_sup} - started: [{pid,<0.97.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:44:48 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:44:48 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:44:48 === - supervisor: {local,kernel_sup} - started: [{pid,<0.96.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::15:44:48 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 16-Jul-2014::15:44:48 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.103.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:44:48 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:44:48 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:44:48 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.109.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:44:48 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 16-Jul-2014::15:44:48 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::15:44:48 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.110.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::15:44:48 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::15:44:48 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.112.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::15:44:48 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::15:44:48 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.114.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::15:44:48 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.112.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::15:44:48 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.116.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::15:44:48 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.114.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::15:44:48 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.118.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::15:44:48 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.116.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 16-Jul-2014::15:44:48 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.116.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140716_154446/read_latencies.csv b/newtests/20140716_154446/read_latencies.csv deleted file mode 100644 index f81b3f99c..000000000 --- a/newtests/20140716_154446/read_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.161625, 0.161625, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140716_154446/summary.csv b/newtests/20140716_154446/summary.csv deleted file mode 100644 index 2c702e295..000000000 --- a/newtests/20140716_154446/summary.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, total, successful, failed -0.161625, 0.161625, 6, 0, 6 diff --git a/newtests/20140716_155207/append_latencies.csv b/newtests/20140716_155207/append_latencies.csv deleted file mode 100644 index b900d838a..000000000 --- a/newtests/20140716_155207/append_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.192496, 0.192496, 0, 0, 0, 0, 0, 0, 0, 0, 6 diff --git a/newtests/20140716_155207/console.log b/newtests/20140716_155207/console.log deleted file mode 100644 index a437897be..000000000 --- a/newtests/20140716_155207/console.log +++ /dev/null @@ -1,105 +0,0 @@ -2014-07-16 15:52:07.589 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_155207/error.log"} into lager_event -2014-07-16 15:52:07.589 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_155207/console.log"} into lager_event -2014-07-16 15:52:07.589 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-16 15:52:07.622 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-16 15:52:07.622 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-16 15:52:07.622 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-16 15:52:07.622 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-16 15:52:08.063 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-16 15:52:08.492 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-16 15:52:08.493 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_155207/console.log to debug -2014-07-16 15:52:08.501 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} -2014-07-16 15:52:08.589 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-16 15:52:08.590 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-16 15:52:08.590 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-16 15:52:08.606 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-16 15:52:08.606 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-16 15:52:08.692 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-16 15:52:08.692 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-16 15:52:08.720 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-16 15:52:08.726 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-16 15:52:08.732 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-16 15:52:08.732 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-16 15:52:08.771 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-16 15:52:08.842 [info] <0.95.0>@basho_bench_driver_floppystore:new:54 **********Got types************* -2014-07-16 15:52:08.860 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> -2014-07-16 15:52:08.869 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> -2014-07-16 15:52:08.886 [info] <0.95.0>@basho_bench_driver_floppystore:new:58 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-16 15:52:08.887 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> -2014-07-16 15:52:08.887 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> -2014-07-16 15:52:08.906 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> -2014-07-16 15:52:08.906 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> -2014-07-16 15:52:08.925 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' -2014-07-16 15:52:08.925 [info] <0.95.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 15:52:08.925 [info] <0.95.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* -2014-07-16 15:52:08.926 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-16 15:52:08.957 [info] <0.108.0>@basho_bench_driver_floppystore:new:54 **********Got types************* -2014-07-16 15:52:08.957 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' -2014-07-16 15:52:08.957 [info] <0.108.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 15:52:08.957 [info] <0.108.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* -2014-07-16 15:52:08.957 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> -2014-07-16 15:52:08.958 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> -2014-07-16 15:52:08.965 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> -2014-07-16 15:52:08.965 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> -2014-07-16 15:52:08.965 [debug] <0.108.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,144}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 15:52:08.966 [debug] <0.95.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,144}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 15:52:08.966 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash -2014-07-16 15:52:08.966 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash -2014-07-16 15:52:08.966 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-16 15:52:08.966 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-16 15:52:09.000 [info] <0.111.0>@basho_bench_driver_floppystore:new:54 **********Got types************* -2014-07-16 15:52:09.000 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' -2014-07-16 15:52:09.000 [info] <0.111.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 15:52:09.000 [info] <0.111.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* -2014-07-16 15:52:09.000 [warning] <0.110.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 15:52:09.000 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> -2014-07-16 15:52:09.000 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.110.0> -2014-07-16 15:52:09.001 [debug] <0.111.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,144}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 15:52:09.001 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash -2014-07-16 15:52:09.001 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 15:52:09.037 [info] <0.113.0>@basho_bench_driver_floppystore:new:54 **********Got types************* -2014-07-16 15:52:09.037 [info] <0.113.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' -2014-07-16 15:52:09.037 [info] <0.113.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 15:52:09.037 [info] <0.113.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* -2014-07-16 15:52:09.037 [warning] <0.112.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 15:52:09.037 [info] <0.113.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.113.0> -2014-07-16 15:52:09.037 [debug] <0.113.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,144}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 15:52:09.037 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash -2014-07-16 15:52:09.038 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.112.0> -2014-07-16 15:52:09.038 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated -2014-07-16 15:52:09.073 [info] <0.115.0>@basho_bench_driver_floppystore:new:54 **********Got types************* -2014-07-16 15:52:09.074 [info] <0.115.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' -2014-07-16 15:52:09.074 [info] <0.115.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 15:52:09.074 [info] <0.115.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* -2014-07-16 15:52:09.074 [warning] <0.114.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 15:52:09.074 [info] <0.115.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.115.0> -2014-07-16 15:52:09.074 [debug] <0.115.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,144}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 15:52:09.074 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash -2014-07-16 15:52:09.074 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.114.0> -2014-07-16 15:52:09.075 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.112.0> exit with reason normal in context child_terminated -2014-07-16 15:52:09.110 [info] <0.117.0>@basho_bench_driver_floppystore:new:54 **********Got types************* -2014-07-16 15:52:09.111 [info] <0.117.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' -2014-07-16 15:52:09.111 [info] <0.117.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 15:52:09.111 [info] <0.117.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* -2014-07-16 15:52:09.111 [warning] <0.116.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 15:52:09.111 [info] <0.117.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.117.0> -2014-07-16 15:52:09.111 [debug] <0.117.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,144}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 15:52:09.111 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash -2014-07-16 15:52:09.112 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.116.0> -2014-07-16 15:52:09.112 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.114.0> exit with reason normal in context child_terminated -2014-07-16 15:52:09.149 [info] <0.119.0>@basho_bench_driver_floppystore:new:54 **********Got types************* -2014-07-16 15:52:09.149 [info] <0.119.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' -2014-07-16 15:52:09.149 [info] <0.119.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 15:52:09.149 [info] <0.119.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* -2014-07-16 15:52:09.149 [warning] <0.118.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 15:52:09.149 [info] <0.119.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.119.0> -2014-07-16 15:52:09.150 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.118.0> -2014-07-16 15:52:09.150 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason normal in context child_terminated -2014-07-16 15:52:09.151 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-16 15:52:09.165 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {append,append} -2014-07-16 15:52:09.165 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} -2014-07-16 15:52:09.165 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{append,append},6},{{{append,append},crash},6}] -2014-07-16 15:52:09.165 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: -2014-07-16 15:52:09.166 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{append,append},crash}: 6 diff --git a/newtests/20140716_155207/crash.log b/newtests/20140716_155207/crash.log deleted file mode 100644 index 666ee8501..000000000 --- a/newtests/20140716_155207/crash.log +++ /dev/null @@ -1,42 +0,0 @@ -2014-07-16 15:52:08 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 15:52:09 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 15:52:09 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 15:52:09 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.112.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 15:52:09 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.114.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 15:52:09 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.116.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 15:52:09 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.116.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140716_155207/error.log b/newtests/20140716_155207/error.log deleted file mode 100644 index a58272ca9..000000000 --- a/newtests/20140716_155207/error.log +++ /dev/null @@ -1,13 +0,0 @@ -2014-07-16 15:52:08.966 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash -2014-07-16 15:52:08.966 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash -2014-07-16 15:52:08.966 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-16 15:52:09.001 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash -2014-07-16 15:52:09.001 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 15:52:09.037 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash -2014-07-16 15:52:09.038 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated -2014-07-16 15:52:09.074 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash -2014-07-16 15:52:09.075 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.112.0> exit with reason normal in context child_terminated -2014-07-16 15:52:09.111 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash -2014-07-16 15:52:09.112 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.114.0> exit with reason normal in context child_terminated -2014-07-16 15:52:09.150 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason normal in context child_terminated -2014-07-16 15:52:09.151 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_155207/errors.csv b/newtests/20140716_155207/errors.csv deleted file mode 100644 index dc786eb57..000000000 --- a/newtests/20140716_155207/errors.csv +++ /dev/null @@ -1,2 +0,0 @@ -"error","count" -"{{append,append},crash}","6" diff --git a/newtests/20140716_155207/floppstore.config b/newtests/20140716_155207/floppstore.config deleted file mode 100644 index 55db32761..000000000 --- a/newtests/20140716_155207/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. - -{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. - -{operations, [{append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_155207/log.sasl.txt b/newtests/20140716_155207/log.sasl.txt deleted file mode 100644 index f003f9952..000000000 --- a/newtests/20140716_155207/log.sasl.txt +++ /dev/null @@ -1,336 +0,0 @@ - -=PROGRESS REPORT==== 16-Jul-2014::15:52:08 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:52:08 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:52:08 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::15:52:08 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:52:08 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::15:52:08 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:52:08 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::15:52:08 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::15:52:08 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:52:08 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:52:08 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::15:52:08 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:52:08 === - supervisor: {local,net_sup} - started: [{pid,<0.97.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:52:08 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:52:08 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:52:08 === - supervisor: {local,kernel_sup} - started: [{pid,<0.96.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::15:52:08 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 16-Jul-2014::15:52:08 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.103.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:52:08 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:52:08 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:52:08 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.109.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:52:08 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 16-Jul-2014::15:52:08 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::15:52:09 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.110.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::15:52:09 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::15:52:09 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.112.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::15:52:09 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::15:52:09 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.114.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::15:52:09 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.112.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::15:52:09 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.116.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::15:52:09 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.114.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::15:52:09 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.118.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::15:52:09 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.116.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 16-Jul-2014::15:52:09 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.116.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140716_155207/read_latencies.csv b/newtests/20140716_155207/read_latencies.csv deleted file mode 100644 index 2a7796054..000000000 --- a/newtests/20140716_155207/read_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.192496, 0.192496, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140716_155207/summary.csv b/newtests/20140716_155207/summary.csv deleted file mode 100644 index 0bf2fba2c..000000000 --- a/newtests/20140716_155207/summary.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, total, successful, failed -0.192496, 0.192496, 6, 0, 6 diff --git a/newtests/20140716_155332/append_latencies.csv b/newtests/20140716_155332/append_latencies.csv deleted file mode 100644 index a059c0f0c..000000000 --- a/newtests/20140716_155332/append_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.150941, 0.150941, 0, 0, 0, 0, 0, 0, 0, 0, 6 diff --git a/newtests/20140716_155332/console.log b/newtests/20140716_155332/console.log deleted file mode 100644 index 8c13842fd..000000000 --- a/newtests/20140716_155332/console.log +++ /dev/null @@ -1,105 +0,0 @@ -2014-07-16 15:53:33.132 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_155332/error.log"} into lager_event -2014-07-16 15:53:33.132 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_155332/console.log"} into lager_event -2014-07-16 15:53:33.132 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-16 15:53:33.167 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-16 15:53:33.167 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-16 15:53:33.168 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-16 15:53:33.168 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-16 15:53:33.606 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-16 15:53:33.970 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-16 15:53:33.971 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_155332/console.log to debug -2014-07-16 15:53:33.978 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} -2014-07-16 15:53:34.059 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-16 15:53:34.059 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-16 15:53:34.060 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-16 15:53:34.074 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-16 15:53:34.075 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-16 15:53:34.158 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-16 15:53:34.159 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-16 15:53:34.186 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-16 15:53:34.190 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-16 15:53:34.195 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-16 15:53:34.195 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-16 15:53:34.234 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-16 15:53:34.281 [info] <0.95.0>@basho_bench_driver_floppystore:new:54 **********Got types************* -2014-07-16 15:53:34.298 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> -2014-07-16 15:53:34.306 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> -2014-07-16 15:53:34.321 [info] <0.95.0>@basho_bench_driver_floppystore:new:58 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-16 15:53:34.321 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> -2014-07-16 15:53:34.322 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> -2014-07-16 15:53:34.337 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> -2014-07-16 15:53:34.338 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> -2014-07-16 15:53:34.351 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' -2014-07-16 15:53:34.351 [info] <0.95.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 15:53:34.351 [info] <0.95.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* -2014-07-16 15:53:34.352 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-16 15:53:34.381 [info] <0.108.0>@basho_bench_driver_floppystore:new:54 **********Got types************* -2014-07-16 15:53:34.381 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' -2014-07-16 15:53:34.381 [info] <0.108.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 15:53:34.381 [info] <0.108.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* -2014-07-16 15:53:34.381 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> -2014-07-16 15:53:34.382 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> -2014-07-16 15:53:34.388 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> -2014-07-16 15:53:34.388 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> -2014-07-16 15:53:34.389 [debug] <0.108.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 15:53:34.389 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash -2014-07-16 15:53:34.389 [debug] <0.95.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 15:53:34.389 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-16 15:53:34.389 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash -2014-07-16 15:53:34.389 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-16 15:53:34.420 [info] <0.111.0>@basho_bench_driver_floppystore:new:54 **********Got types************* -2014-07-16 15:53:34.420 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' -2014-07-16 15:53:34.421 [info] <0.111.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 15:53:34.421 [info] <0.111.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* -2014-07-16 15:53:34.421 [warning] <0.110.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 15:53:34.421 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> -2014-07-16 15:53:34.421 [debug] <0.111.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 15:53:34.421 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash -2014-07-16 15:53:34.421 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.110.0> -2014-07-16 15:53:34.422 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 15:53:34.446 [info] <0.113.0>@basho_bench_driver_floppystore:new:54 **********Got types************* -2014-07-16 15:53:34.447 [info] <0.113.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' -2014-07-16 15:53:34.447 [info] <0.113.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 15:53:34.447 [info] <0.113.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* -2014-07-16 15:53:34.447 [warning] <0.112.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 15:53:34.447 [info] <0.113.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.113.0> -2014-07-16 15:53:34.447 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.112.0> -2014-07-16 15:53:34.447 [debug] <0.113.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 15:53:34.447 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash -2014-07-16 15:53:34.447 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated -2014-07-16 15:53:34.479 [info] <0.115.0>@basho_bench_driver_floppystore:new:54 **********Got types************* -2014-07-16 15:53:34.480 [info] <0.115.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' -2014-07-16 15:53:34.480 [info] <0.115.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 15:53:34.480 [info] <0.115.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* -2014-07-16 15:53:34.480 [warning] <0.114.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 15:53:34.480 [info] <0.115.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.115.0> -2014-07-16 15:53:34.480 [debug] <0.115.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 15:53:34.480 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash -2014-07-16 15:53:34.480 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.114.0> -2014-07-16 15:53:34.481 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.112.0> exit with reason normal in context child_terminated -2014-07-16 15:53:34.506 [info] <0.117.0>@basho_bench_driver_floppystore:new:54 **********Got types************* -2014-07-16 15:53:34.506 [info] <0.117.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' -2014-07-16 15:53:34.506 [info] <0.117.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 15:53:34.506 [info] <0.117.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* -2014-07-16 15:53:34.506 [warning] <0.116.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 15:53:34.506 [info] <0.117.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.117.0> -2014-07-16 15:53:34.507 [debug] <0.117.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 15:53:34.507 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash -2014-07-16 15:53:34.507 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.116.0> -2014-07-16 15:53:34.507 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.114.0> exit with reason normal in context child_terminated -2014-07-16 15:53:34.531 [info] <0.119.0>@basho_bench_driver_floppystore:new:54 **********Got types************* -2014-07-16 15:53:34.532 [info] <0.119.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' -2014-07-16 15:53:34.532 [info] <0.119.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 15:53:34.532 [info] <0.119.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* -2014-07-16 15:53:34.532 [warning] <0.118.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 15:53:34.532 [info] <0.119.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.119.0> -2014-07-16 15:53:34.533 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.118.0> -2014-07-16 15:53:34.533 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason normal in context child_terminated -2014-07-16 15:53:34.534 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-16 15:53:34.546 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {append,append} -2014-07-16 15:53:34.546 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} -2014-07-16 15:53:34.546 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{append,append},6},{{{append,append},crash},6}] -2014-07-16 15:53:34.546 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: -2014-07-16 15:53:34.546 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{append,append},crash}: 6 diff --git a/newtests/20140716_155332/crash.log b/newtests/20140716_155332/crash.log deleted file mode 100644 index ac284deeb..000000000 --- a/newtests/20140716_155332/crash.log +++ /dev/null @@ -1,42 +0,0 @@ -2014-07-16 15:53:34 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 15:53:34 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 15:53:34 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 15:53:34 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.112.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 15:53:34 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.114.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 15:53:34 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.116.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 15:53:34 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.116.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140716_155332/error.log b/newtests/20140716_155332/error.log deleted file mode 100644 index 91867f869..000000000 --- a/newtests/20140716_155332/error.log +++ /dev/null @@ -1,13 +0,0 @@ -2014-07-16 15:53:34.389 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash -2014-07-16 15:53:34.389 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash -2014-07-16 15:53:34.389 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-16 15:53:34.421 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash -2014-07-16 15:53:34.422 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 15:53:34.447 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash -2014-07-16 15:53:34.447 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated -2014-07-16 15:53:34.480 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash -2014-07-16 15:53:34.481 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.112.0> exit with reason normal in context child_terminated -2014-07-16 15:53:34.507 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash -2014-07-16 15:53:34.507 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.114.0> exit with reason normal in context child_terminated -2014-07-16 15:53:34.533 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason normal in context child_terminated -2014-07-16 15:53:34.534 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_155332/errors.csv b/newtests/20140716_155332/errors.csv deleted file mode 100644 index dc786eb57..000000000 --- a/newtests/20140716_155332/errors.csv +++ /dev/null @@ -1,2 +0,0 @@ -"error","count" -"{{append,append},crash}","6" diff --git a/newtests/20140716_155332/floppstore.config b/newtests/20140716_155332/floppstore.config deleted file mode 100644 index 55db32761..000000000 --- a/newtests/20140716_155332/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. - -{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. - -{operations, [{append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_155332/log.sasl.txt b/newtests/20140716_155332/log.sasl.txt deleted file mode 100644 index 7ba36fcd0..000000000 --- a/newtests/20140716_155332/log.sasl.txt +++ /dev/null @@ -1,336 +0,0 @@ - -=PROGRESS REPORT==== 16-Jul-2014::15:53:34 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:53:34 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:53:34 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::15:53:34 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:53:34 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::15:53:34 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:53:34 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::15:53:34 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::15:53:34 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:53:34 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:53:34 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::15:53:34 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:53:34 === - supervisor: {local,net_sup} - started: [{pid,<0.97.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:53:34 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:53:34 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:53:34 === - supervisor: {local,kernel_sup} - started: [{pid,<0.96.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::15:53:34 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 16-Jul-2014::15:53:34 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.103.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:53:34 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:53:34 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:53:34 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.109.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:53:34 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 16-Jul-2014::15:53:34 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::15:53:34 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.110.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::15:53:34 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::15:53:34 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.112.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::15:53:34 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::15:53:34 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.114.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::15:53:34 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.112.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::15:53:34 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.116.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::15:53:34 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.114.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::15:53:34 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.118.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::15:53:34 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.116.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 16-Jul-2014::15:53:34 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.116.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140716_155332/read_latencies.csv b/newtests/20140716_155332/read_latencies.csv deleted file mode 100644 index 74352dc3f..000000000 --- a/newtests/20140716_155332/read_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.150941, 0.150941, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140716_155332/summary.csv b/newtests/20140716_155332/summary.csv deleted file mode 100644 index c453cef5b..000000000 --- a/newtests/20140716_155332/summary.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, total, successful, failed -0.150941, 0.150941, 6, 0, 6 diff --git a/newtests/20140716_155458/console.log b/newtests/20140716_155458/console.log deleted file mode 100644 index e69de29bb..000000000 diff --git a/newtests/20140716_155458/crash.log b/newtests/20140716_155458/crash.log deleted file mode 100644 index e69de29bb..000000000 diff --git a/newtests/20140716_155458/error.log b/newtests/20140716_155458/error.log deleted file mode 100644 index e69de29bb..000000000 diff --git a/newtests/20140716_155521/append_latencies.csv b/newtests/20140716_155521/append_latencies.csv deleted file mode 100644 index 7fe792055..000000000 --- a/newtests/20140716_155521/append_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.179098, 0.179098, 0, 0, 0, 0, 0, 0, 0, 0, 6 diff --git a/newtests/20140716_155521/console.log b/newtests/20140716_155521/console.log deleted file mode 100644 index 9935726df..000000000 --- a/newtests/20140716_155521/console.log +++ /dev/null @@ -1,105 +0,0 @@ -2014-07-16 15:55:21.578 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_155521/error.log"} into lager_event -2014-07-16 15:55:21.578 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_155521/console.log"} into lager_event -2014-07-16 15:55:21.578 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-16 15:55:21.614 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-16 15:55:21.614 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-16 15:55:21.614 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-16 15:55:21.615 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-16 15:55:22.055 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-16 15:55:22.377 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-16 15:55:22.379 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_155521/console.log to debug -2014-07-16 15:55:22.385 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} -2014-07-16 15:55:22.455 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-16 15:55:22.456 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-16 15:55:22.456 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-16 15:55:22.471 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-16 15:55:22.471 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-16 15:55:22.559 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-16 15:55:22.559 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-16 15:55:22.589 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-16 15:55:22.594 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-16 15:55:22.599 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-16 15:55:22.599 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-16 15:55:22.639 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-16 15:55:22.684 [info] <0.95.0>@basho_bench_driver_floppystore:new:54 **********Got types************* -2014-07-16 15:55:22.698 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> -2014-07-16 15:55:22.705 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> -2014-07-16 15:55:22.718 [info] <0.95.0>@basho_bench_driver_floppystore:new:58 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-16 15:55:22.718 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> -2014-07-16 15:55:22.718 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> -2014-07-16 15:55:22.731 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> -2014-07-16 15:55:22.732 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> -2014-07-16 15:55:22.745 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' -2014-07-16 15:55:22.745 [info] <0.95.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 15:55:22.745 [info] <0.95.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* -2014-07-16 15:55:22.746 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-16 15:55:22.779 [info] <0.108.0>@basho_bench_driver_floppystore:new:54 **********Got types************* -2014-07-16 15:55:22.779 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' -2014-07-16 15:55:22.779 [info] <0.108.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 15:55:22.779 [info] <0.108.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* -2014-07-16 15:55:22.780 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> -2014-07-16 15:55:22.780 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> -2014-07-16 15:55:22.786 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> -2014-07-16 15:55:22.786 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> -2014-07-16 15:55:22.786 [debug] <0.108.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 15:55:22.786 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash -2014-07-16 15:55:22.787 [debug] <0.95.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 15:55:22.787 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-16 15:55:22.787 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash -2014-07-16 15:55:22.787 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-16 15:55:22.824 [info] <0.111.0>@basho_bench_driver_floppystore:new:54 **********Got types************* -2014-07-16 15:55:22.824 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' -2014-07-16 15:55:22.824 [info] <0.111.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 15:55:22.824 [info] <0.111.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* -2014-07-16 15:55:22.824 [warning] <0.110.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 15:55:22.824 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> -2014-07-16 15:55:22.825 [debug] <0.111.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 15:55:22.825 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash -2014-07-16 15:55:22.825 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.110.0> -2014-07-16 15:55:22.825 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 15:55:22.856 [info] <0.113.0>@basho_bench_driver_floppystore:new:54 **********Got types************* -2014-07-16 15:55:22.856 [info] <0.113.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' -2014-07-16 15:55:22.857 [info] <0.113.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 15:55:22.857 [info] <0.113.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* -2014-07-16 15:55:22.857 [warning] <0.112.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 15:55:22.857 [info] <0.113.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.113.0> -2014-07-16 15:55:22.857 [debug] <0.113.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 15:55:22.857 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.112.0> -2014-07-16 15:55:22.857 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash -2014-07-16 15:55:22.858 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated -2014-07-16 15:55:22.898 [info] <0.115.0>@basho_bench_driver_floppystore:new:54 **********Got types************* -2014-07-16 15:55:22.898 [info] <0.115.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' -2014-07-16 15:55:22.898 [info] <0.115.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 15:55:22.898 [info] <0.115.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* -2014-07-16 15:55:22.898 [warning] <0.114.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 15:55:22.898 [info] <0.115.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.115.0> -2014-07-16 15:55:22.899 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.114.0> -2014-07-16 15:55:22.899 [debug] <0.115.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 15:55:22.899 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash -2014-07-16 15:55:22.899 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.112.0> exit with reason normal in context child_terminated -2014-07-16 15:55:22.924 [info] <0.117.0>@basho_bench_driver_floppystore:new:54 **********Got types************* -2014-07-16 15:55:22.925 [info] <0.117.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' -2014-07-16 15:55:22.925 [info] <0.117.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 15:55:22.925 [info] <0.117.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* -2014-07-16 15:55:22.925 [warning] <0.116.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 15:55:22.925 [info] <0.117.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.117.0> -2014-07-16 15:55:22.925 [debug] <0.117.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 15:55:22.925 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.116.0> -2014-07-16 15:55:22.925 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash -2014-07-16 15:55:22.926 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.114.0> exit with reason normal in context child_terminated -2014-07-16 15:55:22.958 [info] <0.119.0>@basho_bench_driver_floppystore:new:54 **********Got types************* -2014-07-16 15:55:22.958 [info] <0.119.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' -2014-07-16 15:55:22.958 [info] <0.119.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 15:55:22.958 [info] <0.119.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* -2014-07-16 15:55:22.958 [warning] <0.118.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 15:55:22.958 [info] <0.119.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.119.0> -2014-07-16 15:55:22.959 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.118.0> -2014-07-16 15:55:22.960 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason normal in context child_terminated -2014-07-16 15:55:22.960 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-16 15:55:22.973 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {append,append} -2014-07-16 15:55:22.973 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} -2014-07-16 15:55:22.973 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{append,append},6},{{{append,append},crash},6}] -2014-07-16 15:55:22.973 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: -2014-07-16 15:55:22.973 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{append,append},crash}: 6 diff --git a/newtests/20140716_155521/crash.log b/newtests/20140716_155521/crash.log deleted file mode 100644 index b013a0b20..000000000 --- a/newtests/20140716_155521/crash.log +++ /dev/null @@ -1,42 +0,0 @@ -2014-07-16 15:55:22 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 15:55:22 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 15:55:22 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 15:55:22 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.112.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 15:55:22 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.114.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 15:55:22 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.116.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 15:55:22 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.116.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140716_155521/error.log b/newtests/20140716_155521/error.log deleted file mode 100644 index 6845009c6..000000000 --- a/newtests/20140716_155521/error.log +++ /dev/null @@ -1,13 +0,0 @@ -2014-07-16 15:55:22.786 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash -2014-07-16 15:55:22.787 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash -2014-07-16 15:55:22.787 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-16 15:55:22.825 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash -2014-07-16 15:55:22.825 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 15:55:22.857 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash -2014-07-16 15:55:22.858 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated -2014-07-16 15:55:22.899 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash -2014-07-16 15:55:22.899 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.112.0> exit with reason normal in context child_terminated -2014-07-16 15:55:22.925 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash -2014-07-16 15:55:22.926 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.114.0> exit with reason normal in context child_terminated -2014-07-16 15:55:22.960 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason normal in context child_terminated -2014-07-16 15:55:22.960 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_155521/errors.csv b/newtests/20140716_155521/errors.csv deleted file mode 100644 index dc786eb57..000000000 --- a/newtests/20140716_155521/errors.csv +++ /dev/null @@ -1,2 +0,0 @@ -"error","count" -"{{append,append},crash}","6" diff --git a/newtests/20140716_155521/floppstore.config b/newtests/20140716_155521/floppstore.config deleted file mode 100644 index 55db32761..000000000 --- a/newtests/20140716_155521/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. - -{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. - -{operations, [{append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_155521/log.sasl.txt b/newtests/20140716_155521/log.sasl.txt deleted file mode 100644 index 526fd2a8b..000000000 --- a/newtests/20140716_155521/log.sasl.txt +++ /dev/null @@ -1,336 +0,0 @@ - -=PROGRESS REPORT==== 16-Jul-2014::15:55:22 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:55:22 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:55:22 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::15:55:22 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:55:22 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::15:55:22 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:55:22 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::15:55:22 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::15:55:22 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:55:22 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:55:22 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::15:55:22 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:55:22 === - supervisor: {local,net_sup} - started: [{pid,<0.97.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:55:22 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:55:22 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:55:22 === - supervisor: {local,kernel_sup} - started: [{pid,<0.96.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::15:55:22 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 16-Jul-2014::15:55:22 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.103.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:55:22 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:55:22 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:55:22 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.109.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:55:22 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 16-Jul-2014::15:55:22 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::15:55:22 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.110.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::15:55:22 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::15:55:22 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.112.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::15:55:22 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::15:55:22 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.114.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::15:55:22 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.112.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::15:55:22 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.116.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::15:55:22 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.114.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::15:55:22 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.118.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::15:55:22 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.116.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 16-Jul-2014::15:55:22 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.116.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140716_155521/read_latencies.csv b/newtests/20140716_155521/read_latencies.csv deleted file mode 100644 index 2bcda9dc5..000000000 --- a/newtests/20140716_155521/read_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.179098, 0.179098, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140716_155521/summary.csv b/newtests/20140716_155521/summary.csv deleted file mode 100644 index 8925c591a..000000000 --- a/newtests/20140716_155521/summary.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, total, successful, failed -0.179098, 0.179098, 6, 0, 6 diff --git a/newtests/20140716_155627/append_latencies.csv b/newtests/20140716_155627/append_latencies.csv deleted file mode 100644 index f5965956d..000000000 --- a/newtests/20140716_155627/append_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.156541, 0.156541, 0, 0, 0, 0, 0, 0, 0, 0, 7 diff --git a/newtests/20140716_155627/console.log b/newtests/20140716_155627/console.log deleted file mode 100644 index b2218c902..000000000 --- a/newtests/20140716_155627/console.log +++ /dev/null @@ -1,106 +0,0 @@ -2014-07-16 15:56:27.283 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_155627/error.log"} into lager_event -2014-07-16 15:56:27.283 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_155627/console.log"} into lager_event -2014-07-16 15:56:27.283 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-16 15:56:27.317 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-16 15:56:27.317 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-16 15:56:27.317 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-16 15:56:27.317 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-16 15:56:27.759 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-16 15:56:28.100 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-16 15:56:28.101 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_155627/console.log to debug -2014-07-16 15:56:28.108 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} -2014-07-16 15:56:28.188 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-16 15:56:28.188 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-16 15:56:28.189 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-16 15:56:28.204 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-16 15:56:28.204 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-16 15:56:28.289 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-16 15:56:28.290 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-16 15:56:28.318 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-16 15:56:28.322 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-16 15:56:28.326 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-16 15:56:28.326 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-16 15:56:28.364 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-16 15:56:28.415 [info] <0.95.0>@basho_bench_driver_floppystore:new:54 **********Got types************* -2014-07-16 15:56:28.430 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> -2014-07-16 15:56:28.437 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> -2014-07-16 15:56:28.449 [info] <0.95.0>@basho_bench_driver_floppystore:new:58 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-16 15:56:28.449 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> -2014-07-16 15:56:28.450 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> -2014-07-16 15:56:28.464 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> -2014-07-16 15:56:28.464 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> -2014-07-16 15:56:28.481 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' -2014-07-16 15:56:28.481 [info] <0.95.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 15:56:28.481 [info] <0.95.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* -2014-07-16 15:56:28.482 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-16 15:56:28.510 [info] <0.108.0>@basho_bench_driver_floppystore:new:54 **********Got types************* -2014-07-16 15:56:28.510 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' -2014-07-16 15:56:28.511 [info] <0.108.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 15:56:28.511 [info] <0.108.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* -2014-07-16 15:56:28.511 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> -2014-07-16 15:56:28.511 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> -2014-07-16 15:56:28.517 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> -2014-07-16 15:56:28.517 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> -2014-07-16 15:56:28.518 [debug] <0.95.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 15:56:28.518 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash -2014-07-16 15:56:28.518 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-16 15:56:28.518 [debug] <0.108.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 15:56:28.518 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash -2014-07-16 15:56:28.525 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 15:56:28.551 [info] <0.111.0>@basho_bench_driver_floppystore:new:54 **********Got types************* -2014-07-16 15:56:28.551 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' -2014-07-16 15:56:28.551 [info] <0.111.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 15:56:28.551 [info] <0.111.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* -2014-07-16 15:56:28.551 [warning] <0.110.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 15:56:28.551 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> -2014-07-16 15:56:28.552 [debug] <0.111.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 15:56:28.552 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.110.0> -2014-07-16 15:56:28.552 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash -2014-07-16 15:56:28.552 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-16 15:56:28.582 [info] <0.113.0>@basho_bench_driver_floppystore:new:54 **********Got types************* -2014-07-16 15:56:28.582 [info] <0.113.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' -2014-07-16 15:56:28.582 [info] <0.113.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 15:56:28.582 [info] <0.113.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* -2014-07-16 15:56:28.582 [warning] <0.112.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 15:56:28.582 [info] <0.113.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.113.0> -2014-07-16 15:56:28.583 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.112.0> -2014-07-16 15:56:28.583 [debug] <0.113.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 15:56:28.583 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash -2014-07-16 15:56:28.583 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.110.0> exit with reason normal in context child_terminated -2014-07-16 15:56:28.607 [info] <0.115.0>@basho_bench_driver_floppystore:new:54 **********Got types************* -2014-07-16 15:56:28.607 [info] <0.115.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' -2014-07-16 15:56:28.607 [info] <0.115.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 15:56:28.607 [info] <0.115.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* -2014-07-16 15:56:28.607 [warning] <0.114.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 15:56:28.607 [info] <0.115.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.115.0> -2014-07-16 15:56:28.608 [debug] <0.115.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 15:56:28.608 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.114.0> -2014-07-16 15:56:28.608 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash -2014-07-16 15:56:28.608 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.112.0> exit with reason normal in context child_terminated -2014-07-16 15:56:28.634 [info] <0.117.0>@basho_bench_driver_floppystore:new:54 **********Got types************* -2014-07-16 15:56:28.634 [info] <0.117.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' -2014-07-16 15:56:28.634 [info] <0.117.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 15:56:28.634 [info] <0.117.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* -2014-07-16 15:56:28.634 [warning] <0.116.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 15:56:28.634 [info] <0.117.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.117.0> -2014-07-16 15:56:28.634 [debug] <0.117.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 15:56:28.635 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash -2014-07-16 15:56:28.635 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.116.0> -2014-07-16 15:56:28.635 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.114.0> exit with reason normal in context child_terminated -2014-07-16 15:56:28.667 [info] <0.119.0>@basho_bench_driver_floppystore:new:54 **********Got types************* -2014-07-16 15:56:28.667 [info] <0.119.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' -2014-07-16 15:56:28.667 [info] <0.119.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 15:56:28.667 [info] <0.119.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* -2014-07-16 15:56:28.667 [warning] <0.118.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 15:56:28.667 [info] <0.119.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.119.0> -2014-07-16 15:56:28.667 [debug] <0.119.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 15:56:28.667 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.118.0> -2014-07-16 15:56:28.668 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.116.0> exit with reason normal in context child_terminated -2014-07-16 15:56:28.668 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-16 15:56:28.678 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {append,append} -2014-07-16 15:56:28.679 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} -2014-07-16 15:56:28.679 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{append,append},7},{{{append,append},crash},7}] -2014-07-16 15:56:28.679 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: -2014-07-16 15:56:28.679 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{append,append},crash}: 7 diff --git a/newtests/20140716_155627/crash.log b/newtests/20140716_155627/crash.log deleted file mode 100644 index 32213c7a5..000000000 --- a/newtests/20140716_155627/crash.log +++ /dev/null @@ -1,42 +0,0 @@ -2014-07-16 15:56:28 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 15:56:28 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 15:56:28 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 15:56:28 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.112.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 15:56:28 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.114.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 15:56:28 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.116.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 15:56:28 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.116.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140716_155627/error.log b/newtests/20140716_155627/error.log deleted file mode 100644 index 46a7c9d57..000000000 --- a/newtests/20140716_155627/error.log +++ /dev/null @@ -1,13 +0,0 @@ -2014-07-16 15:56:28.518 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash -2014-07-16 15:56:28.518 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash -2014-07-16 15:56:28.525 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 15:56:28.552 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash -2014-07-16 15:56:28.552 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-16 15:56:28.583 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash -2014-07-16 15:56:28.583 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.110.0> exit with reason normal in context child_terminated -2014-07-16 15:56:28.608 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash -2014-07-16 15:56:28.608 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.112.0> exit with reason normal in context child_terminated -2014-07-16 15:56:28.635 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash -2014-07-16 15:56:28.635 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.114.0> exit with reason normal in context child_terminated -2014-07-16 15:56:28.668 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.116.0> exit with reason normal in context child_terminated -2014-07-16 15:56:28.668 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_155627/errors.csv b/newtests/20140716_155627/errors.csv deleted file mode 100644 index a31ba014e..000000000 --- a/newtests/20140716_155627/errors.csv +++ /dev/null @@ -1,2 +0,0 @@ -"error","count" -"{{append,append},crash}","7" diff --git a/newtests/20140716_155627/floppstore.config b/newtests/20140716_155627/floppstore.config deleted file mode 100644 index 55db32761..000000000 --- a/newtests/20140716_155627/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. - -{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. - -{operations, [{append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_155627/log.sasl.txt b/newtests/20140716_155627/log.sasl.txt deleted file mode 100644 index 3d8ef7556..000000000 --- a/newtests/20140716_155627/log.sasl.txt +++ /dev/null @@ -1,336 +0,0 @@ - -=PROGRESS REPORT==== 16-Jul-2014::15:56:28 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:56:28 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:56:28 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::15:56:28 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:56:28 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::15:56:28 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:56:28 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::15:56:28 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::15:56:28 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:56:28 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:56:28 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::15:56:28 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:56:28 === - supervisor: {local,net_sup} - started: [{pid,<0.97.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:56:28 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:56:28 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:56:28 === - supervisor: {local,kernel_sup} - started: [{pid,<0.96.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::15:56:28 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 16-Jul-2014::15:56:28 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.103.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:56:28 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:56:28 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:56:28 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.109.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::15:56:28 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 16-Jul-2014::15:56:28 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::15:56:28 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.110.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::15:56:28 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::15:56:28 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.112.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::15:56:28 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::15:56:28 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.114.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::15:56:28 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.112.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::15:56:28 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.116.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::15:56:28 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.114.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::15:56:28 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.118.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::15:56:28 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.116.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 16-Jul-2014::15:56:28 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.116.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140716_155627/read_latencies.csv b/newtests/20140716_155627/read_latencies.csv deleted file mode 100644 index 7b0bd52ad..000000000 --- a/newtests/20140716_155627/read_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.156541, 0.156541, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140716_155627/summary.csv b/newtests/20140716_155627/summary.csv deleted file mode 100644 index 46d349d98..000000000 --- a/newtests/20140716_155627/summary.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, total, successful, failed -0.156541, 0.156541, 7, 0, 7 diff --git a/newtests/20140716_160035/append_latencies.csv b/newtests/20140716_160035/append_latencies.csv deleted file mode 100644 index a1ac67404..000000000 --- a/newtests/20140716_160035/append_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.143616, 0.143616, 0, 0, 0, 0, 0, 0, 0, 0, 6 diff --git a/newtests/20140716_160035/console.log b/newtests/20140716_160035/console.log deleted file mode 100644 index 010aacdba..000000000 --- a/newtests/20140716_160035/console.log +++ /dev/null @@ -1,105 +0,0 @@ -2014-07-16 16:00:35.762 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_160035/error.log"} into lager_event -2014-07-16 16:00:35.762 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_160035/console.log"} into lager_event -2014-07-16 16:00:35.762 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-16 16:00:35.795 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-16 16:00:35.795 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-16 16:00:35.796 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-16 16:00:35.796 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-16 16:00:36.237 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-16 16:00:36.586 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-16 16:00:36.587 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_160035/console.log to debug -2014-07-16 16:00:36.594 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} -2014-07-16 16:00:36.673 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-16 16:00:36.674 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-16 16:00:36.674 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-16 16:00:36.689 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-16 16:00:36.689 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-16 16:00:36.775 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-16 16:00:36.775 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-16 16:00:36.804 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-16 16:00:36.808 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-16 16:00:36.813 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-16 16:00:36.813 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-16 16:00:36.859 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-16 16:00:36.908 [info] <0.95.0>@basho_bench_driver_floppystore:new:54 **********Got types************* -2014-07-16 16:00:36.923 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> -2014-07-16 16:00:36.931 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> -2014-07-16 16:00:36.944 [info] <0.95.0>@basho_bench_driver_floppystore:new:58 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-16 16:00:36.945 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> -2014-07-16 16:00:36.945 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> -2014-07-16 16:00:36.958 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> -2014-07-16 16:00:36.958 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> -2014-07-16 16:00:36.972 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:00:36.972 [info] <0.95.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:00:36.972 [info] <0.95.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* [{riak_dt_gcounter,[increment]},{riak_dt_gset,[add]}] -2014-07-16 16:00:36.973 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-16 16:00:37.000 [info] <0.108.0>@basho_bench_driver_floppystore:new:54 **********Got types************* -2014-07-16 16:00:37.000 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:00:37.000 [info] <0.108.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:00:37.000 [info] <0.108.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* [{riak_dt_gcounter,[increment]},{riak_dt_gset,[add]}] -2014-07-16 16:00:37.001 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> -2014-07-16 16:00:37.001 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> -2014-07-16 16:00:37.008 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> -2014-07-16 16:00:37.008 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> -2014-07-16 16:00:37.008 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-16 16:00:37.008 [debug] <0.95.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:00:37.008 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash -2014-07-16 16:00:37.008 [debug] <0.108.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:00:37.009 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash -2014-07-16 16:00:37.009 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 16:00:37.034 [info] <0.111.0>@basho_bench_driver_floppystore:new:54 **********Got types************* -2014-07-16 16:00:37.034 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:00:37.034 [info] <0.111.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:00:37.034 [info] <0.111.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* [{riak_dt_gcounter,[increment]},{riak_dt_gset,[add]}] -2014-07-16 16:00:37.034 [warning] <0.110.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:00:37.035 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> -2014-07-16 16:00:37.035 [debug] <0.111.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:00:37.035 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash -2014-07-16 16:00:37.035 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.110.0> -2014-07-16 16:00:37.035 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-16 16:00:37.058 [info] <0.113.0>@basho_bench_driver_floppystore:new:54 **********Got types************* -2014-07-16 16:00:37.058 [info] <0.113.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:00:37.058 [info] <0.113.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:00:37.058 [info] <0.113.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* [{riak_dt_gcounter,[increment]},{riak_dt_gset,[add]}] -2014-07-16 16:00:37.058 [warning] <0.112.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:00:37.058 [info] <0.113.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.113.0> -2014-07-16 16:00:37.058 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.112.0> -2014-07-16 16:00:37.058 [debug] <0.113.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:00:37.059 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash -2014-07-16 16:00:37.059 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.110.0> exit with reason normal in context child_terminated -2014-07-16 16:00:37.091 [info] <0.115.0>@basho_bench_driver_floppystore:new:54 **********Got types************* -2014-07-16 16:00:37.091 [info] <0.115.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:00:37.091 [info] <0.115.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:00:37.091 [info] <0.115.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* [{riak_dt_gcounter,[increment]},{riak_dt_gset,[add]}] -2014-07-16 16:00:37.091 [warning] <0.114.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:00:37.091 [info] <0.115.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.115.0> -2014-07-16 16:00:37.091 [debug] <0.115.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:00:37.091 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash -2014-07-16 16:00:37.092 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.114.0> -2014-07-16 16:00:37.092 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.112.0> exit with reason normal in context child_terminated -2014-07-16 16:00:37.118 [info] <0.117.0>@basho_bench_driver_floppystore:new:54 **********Got types************* -2014-07-16 16:00:37.118 [info] <0.117.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:00:37.118 [info] <0.117.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:00:37.119 [info] <0.117.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* [{riak_dt_gcounter,[increment]},{riak_dt_gset,[add]}] -2014-07-16 16:00:37.119 [warning] <0.116.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:00:37.119 [info] <0.117.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.117.0> -2014-07-16 16:00:37.119 [debug] <0.117.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:00:37.119 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash -2014-07-16 16:00:37.119 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.116.0> -2014-07-16 16:00:37.120 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.114.0> exit with reason normal in context child_terminated -2014-07-16 16:00:37.143 [info] <0.119.0>@basho_bench_driver_floppystore:new:54 **********Got types************* -2014-07-16 16:00:37.144 [info] <0.119.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:00:37.144 [info] <0.119.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:00:37.144 [info] <0.119.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* [{riak_dt_gcounter,[increment]},{riak_dt_gset,[add]}] -2014-07-16 16:00:37.144 [warning] <0.118.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:00:37.144 [info] <0.119.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.119.0> -2014-07-16 16:00:37.145 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.118.0> -2014-07-16 16:00:37.145 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.116.0> exit with reason normal in context child_terminated -2014-07-16 16:00:37.145 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-16 16:00:37.158 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {append,append} -2014-07-16 16:00:37.158 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} -2014-07-16 16:00:37.158 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{append,append},6},{{{append,append},crash},6}] -2014-07-16 16:00:37.158 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: -2014-07-16 16:00:37.158 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{append,append},crash}: 6 diff --git a/newtests/20140716_160035/crash.log b/newtests/20140716_160035/crash.log deleted file mode 100644 index 70cc10bd4..000000000 --- a/newtests/20140716_160035/crash.log +++ /dev/null @@ -1,42 +0,0 @@ -2014-07-16 16:00:37 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:00:37 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:00:37 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:00:37 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.112.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:00:37 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.114.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:00:37 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.116.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:00:37 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.116.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140716_160035/error.log b/newtests/20140716_160035/error.log deleted file mode 100644 index 89c33bb0b..000000000 --- a/newtests/20140716_160035/error.log +++ /dev/null @@ -1,13 +0,0 @@ -2014-07-16 16:00:37.008 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash -2014-07-16 16:00:37.009 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash -2014-07-16 16:00:37.009 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 16:00:37.035 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash -2014-07-16 16:00:37.035 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-16 16:00:37.059 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash -2014-07-16 16:00:37.059 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.110.0> exit with reason normal in context child_terminated -2014-07-16 16:00:37.091 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash -2014-07-16 16:00:37.092 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.112.0> exit with reason normal in context child_terminated -2014-07-16 16:00:37.119 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash -2014-07-16 16:00:37.120 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.114.0> exit with reason normal in context child_terminated -2014-07-16 16:00:37.145 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.116.0> exit with reason normal in context child_terminated -2014-07-16 16:00:37.145 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_160035/errors.csv b/newtests/20140716_160035/errors.csv deleted file mode 100644 index dc786eb57..000000000 --- a/newtests/20140716_160035/errors.csv +++ /dev/null @@ -1,2 +0,0 @@ -"error","count" -"{{append,append},crash}","6" diff --git a/newtests/20140716_160035/floppstore.config b/newtests/20140716_160035/floppstore.config deleted file mode 100644 index 55db32761..000000000 --- a/newtests/20140716_160035/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. - -{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. - -{operations, [{append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_160035/log.sasl.txt b/newtests/20140716_160035/log.sasl.txt deleted file mode 100644 index 7661bc5f3..000000000 --- a/newtests/20140716_160035/log.sasl.txt +++ /dev/null @@ -1,336 +0,0 @@ - -=PROGRESS REPORT==== 16-Jul-2014::16:00:36 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:00:36 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:00:36 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::16:00:36 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:00:36 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::16:00:36 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:00:36 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::16:00:36 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::16:00:36 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:00:36 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:00:36 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::16:00:36 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:00:36 === - supervisor: {local,net_sup} - started: [{pid,<0.97.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:00:36 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:00:36 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:00:36 === - supervisor: {local,kernel_sup} - started: [{pid,<0.96.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::16:00:36 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 16-Jul-2014::16:00:36 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.103.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:00:36 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:00:37 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:00:37 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.109.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:00:37 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 16-Jul-2014::16:00:37 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:00:37 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.110.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:00:37 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:00:37 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.112.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:00:37 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:00:37 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.114.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:00:37 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.112.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:00:37 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.116.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:00:37 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.114.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:00:37 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.118.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:00:37 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.116.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 16-Jul-2014::16:00:37 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.116.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140716_160035/read_latencies.csv b/newtests/20140716_160035/read_latencies.csv deleted file mode 100644 index 0ef81497c..000000000 --- a/newtests/20140716_160035/read_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.143616, 0.143616, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140716_160035/summary.csv b/newtests/20140716_160035/summary.csv deleted file mode 100644 index 03d43a55e..000000000 --- a/newtests/20140716_160035/summary.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, total, successful, failed -0.143616, 0.143616, 6, 0, 6 diff --git a/newtests/20140716_160222/append_latencies.csv b/newtests/20140716_160222/append_latencies.csv deleted file mode 100644 index 5ac939cf3..000000000 --- a/newtests/20140716_160222/append_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.160611, 0.160611, 0, 0, 0, 0, 0, 0, 0, 0, 6 diff --git a/newtests/20140716_160222/console.log b/newtests/20140716_160222/console.log deleted file mode 100644 index dc2662dd0..000000000 --- a/newtests/20140716_160222/console.log +++ /dev/null @@ -1,106 +0,0 @@ -2014-07-16 16:02:22.681 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_160222/error.log"} into lager_event -2014-07-16 16:02:22.681 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_160222/console.log"} into lager_event -2014-07-16 16:02:22.681 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-16 16:02:22.715 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-16 16:02:22.715 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-16 16:02:22.715 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-16 16:02:22.715 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-16 16:02:23.156 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-16 16:02:23.465 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-16 16:02:23.467 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_160222/console.log to debug -2014-07-16 16:02:23.473 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} -2014-07-16 16:02:23.549 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-16 16:02:23.550 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-16 16:02:23.550 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-16 16:02:23.565 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-16 16:02:23.565 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-16 16:02:23.642 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-16 16:02:23.642 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-16 16:02:23.669 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-16 16:02:23.674 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-16 16:02:23.678 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-16 16:02:23.679 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-16 16:02:23.716 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-16 16:02:23.772 [info] <0.95.0>@basho_bench_driver_floppystore:new:54 **********Got types************* -2014-07-16 16:02:23.787 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> -2014-07-16 16:02:23.793 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> -2014-07-16 16:02:23.807 [info] <0.95.0>@basho_bench_driver_floppystore:new:58 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-16 16:02:23.807 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> -2014-07-16 16:02:23.807 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> -2014-07-16 16:02:23.820 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> -2014-07-16 16:02:23.821 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> -2014-07-16 16:02:23.838 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:02:23.838 [info] <0.95.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:02:23.838 [info] <0.95.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* [] -2014-07-16 16:02:23.839 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-16 16:02:23.873 [info] <0.108.0>@basho_bench_driver_floppystore:new:54 **********Got types************* -2014-07-16 16:02:23.873 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:02:23.873 [info] <0.108.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:02:23.873 [info] <0.108.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* [] -2014-07-16 16:02:23.874 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> -2014-07-16 16:02:23.874 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> -2014-07-16 16:02:23.879 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> -2014-07-16 16:02:23.879 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> -2014-07-16 16:02:23.879 [debug] <0.108.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:02:23.879 [debug] <0.95.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:02:23.879 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash -2014-07-16 16:02:23.879 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash -2014-07-16 16:02:23.879 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-16 16:02:23.880 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-16 16:02:23.915 [info] <0.111.0>@basho_bench_driver_floppystore:new:54 **********Got types************* -2014-07-16 16:02:23.916 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:02:23.916 [info] <0.111.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:02:23.916 [info] <0.111.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* [] -2014-07-16 16:02:23.916 [warning] <0.110.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:02:23.916 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> -2014-07-16 16:02:23.916 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.110.0> -2014-07-16 16:02:23.916 [debug] <0.111.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:02:23.916 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash -2014-07-16 16:02:23.917 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 16:02:23.951 [info] <0.113.0>@basho_bench_driver_floppystore:new:54 **********Got types************* -2014-07-16 16:02:23.951 [info] <0.113.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:02:23.951 [info] <0.113.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:02:23.951 [info] <0.113.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* [] -2014-07-16 16:02:23.951 [warning] <0.112.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:02:23.951 [info] <0.113.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.113.0> -2014-07-16 16:02:23.952 [debug] <0.113.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:02:23.952 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash -2014-07-16 16:02:23.952 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.112.0> -2014-07-16 16:02:23.952 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated -2014-07-16 16:02:23.977 [info] <0.115.0>@basho_bench_driver_floppystore:new:54 **********Got types************* -2014-07-16 16:02:23.978 [info] <0.115.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:02:23.978 [info] <0.115.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:02:23.978 [info] <0.115.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* [] -2014-07-16 16:02:23.978 [warning] <0.114.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:02:23.978 [info] <0.115.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.115.0> -2014-07-16 16:02:23.978 [debug] <0.115.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:02:23.978 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash -2014-07-16 16:02:23.978 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.114.0> -2014-07-16 16:02:23.979 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.112.0> exit with reason normal in context child_terminated -2014-07-16 16:02:24.003 [info] <0.117.0>@basho_bench_driver_floppystore:new:54 **********Got types************* -2014-07-16 16:02:24.003 [info] <0.117.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:02:24.003 [info] <0.117.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:02:24.003 [info] <0.117.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* [] -2014-07-16 16:02:24.003 [warning] <0.116.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:02:24.003 [info] <0.117.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.117.0> -2014-07-16 16:02:24.004 [debug] <0.117.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,108}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:02:24.004 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.116.0> -2014-07-16 16:02:24.004 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash -2014-07-16 16:02:24.004 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.114.0> exit with reason normal in context child_terminated -2014-07-16 16:02:24.033 [info] <0.119.0>@basho_bench_driver_floppystore:new:54 **********Got types************* -2014-07-16 16:02:24.033 [info] <0.119.0>@basho_bench_driver_floppystore:ping_each:136 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:02:24.034 [info] <0.119.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:02:24.034 [info] <0.119.0>@basho_bench_driver_floppystore:new:78 **********Inserteds************* [] -2014-07-16 16:02:24.034 [warning] <0.118.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:02:24.034 [info] <0.119.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.119.0> -2014-07-16 16:02:24.034 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.118.0> -2014-07-16 16:02:24.035 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason normal in context child_terminated -2014-07-16 16:02:24.035 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-16 16:02:24.046 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {append,append} -2014-07-16 16:02:24.046 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} -2014-07-16 16:02:24.047 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{append,append},6},{{{append,append},crash},6}] -2014-07-16 16:02:24.047 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: -2014-07-16 16:02:24.047 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{append,append},crash}: 6 -2014-07-16 16:02:24.047 [info] <0.2.0>@basho_bench:wait_for_stop:191 Test stopped: shutdown diff --git a/newtests/20140716_160222/crash.log b/newtests/20140716_160222/crash.log deleted file mode 100644 index b93710730..000000000 --- a/newtests/20140716_160222/crash.log +++ /dev/null @@ -1,42 +0,0 @@ -2014-07-16 16:02:23 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:02:23 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:02:23 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:02:23 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.112.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:02:24 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.114.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:02:24 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.116.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:02:24 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.116.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140716_160222/error.log b/newtests/20140716_160222/error.log deleted file mode 100644 index 7831ee8d0..000000000 --- a/newtests/20140716_160222/error.log +++ /dev/null @@ -1,13 +0,0 @@ -2014-07-16 16:02:23.879 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash -2014-07-16 16:02:23.879 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash -2014-07-16 16:02:23.880 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-16 16:02:23.916 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash -2014-07-16 16:02:23.917 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 16:02:23.952 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash -2014-07-16 16:02:23.952 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated -2014-07-16 16:02:23.978 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash -2014-07-16 16:02:23.979 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.112.0> exit with reason normal in context child_terminated -2014-07-16 16:02:24.004 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash -2014-07-16 16:02:24.004 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.114.0> exit with reason normal in context child_terminated -2014-07-16 16:02:24.035 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason normal in context child_terminated -2014-07-16 16:02:24.035 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_160222/errors.csv b/newtests/20140716_160222/errors.csv deleted file mode 100644 index dc786eb57..000000000 --- a/newtests/20140716_160222/errors.csv +++ /dev/null @@ -1,2 +0,0 @@ -"error","count" -"{{append,append},crash}","6" diff --git a/newtests/20140716_160222/floppstore.config b/newtests/20140716_160222/floppstore.config deleted file mode 100644 index 55db32761..000000000 --- a/newtests/20140716_160222/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. - -{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. - -{operations, [{append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_160222/log.sasl.txt b/newtests/20140716_160222/log.sasl.txt deleted file mode 100644 index 614dc7fad..000000000 --- a/newtests/20140716_160222/log.sasl.txt +++ /dev/null @@ -1,336 +0,0 @@ - -=PROGRESS REPORT==== 16-Jul-2014::16:02:23 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:02:23 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:02:23 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::16:02:23 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:02:23 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::16:02:23 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:02:23 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::16:02:23 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::16:02:23 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:02:23 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:02:23 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::16:02:23 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:02:23 === - supervisor: {local,net_sup} - started: [{pid,<0.97.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:02:23 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:02:23 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:02:23 === - supervisor: {local,kernel_sup} - started: [{pid,<0.96.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::16:02:23 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 16-Jul-2014::16:02:23 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.103.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:02:23 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:02:23 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:02:23 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.109.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:02:23 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 16-Jul-2014::16:02:23 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:02:23 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.110.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:02:23 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:02:23 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.112.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:02:23 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:02:23 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.114.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:02:23 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.112.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:02:24 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.116.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:02:24 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.114.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:02:24 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.118.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:02:24 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.116.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 16-Jul-2014::16:02:24 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.116.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140716_160222/read_latencies.csv b/newtests/20140716_160222/read_latencies.csv deleted file mode 100644 index 19917f52c..000000000 --- a/newtests/20140716_160222/read_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.160611, 0.160611, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140716_160222/summary.csv b/newtests/20140716_160222/summary.csv deleted file mode 100644 index 2ca790c49..000000000 --- a/newtests/20140716_160222/summary.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, total, successful, failed -0.160611, 0.160611, 6, 0, 6 diff --git a/newtests/20140716_160324/console.log b/newtests/20140716_160324/console.log deleted file mode 100644 index e69de29bb..000000000 diff --git a/newtests/20140716_160324/crash.log b/newtests/20140716_160324/crash.log deleted file mode 100644 index e69de29bb..000000000 diff --git a/newtests/20140716_160324/error.log b/newtests/20140716_160324/error.log deleted file mode 100644 index e69de29bb..000000000 diff --git a/newtests/20140716_160324/floppstore.config b/newtests/20140716_160324/floppstore.config deleted file mode 100644 index 55db32761..000000000 --- a/newtests/20140716_160324/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. - -{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. - -{operations, [{append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_160324/log.sasl.txt b/newtests/20140716_160324/log.sasl.txt deleted file mode 100644 index 5000516dc..000000000 --- a/newtests/20140716_160324/log.sasl.txt +++ /dev/null @@ -1,42 +0,0 @@ - -=PROGRESS REPORT==== 16-Jul-2014::16:03:25 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:03:25 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:03:25 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::16:03:25 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:03:25 === - application: sasl - started_at: nonode@nohost diff --git a/newtests/20140716_160337/append_latencies.csv b/newtests/20140716_160337/append_latencies.csv deleted file mode 100644 index 8872aa1f2..000000000 --- a/newtests/20140716_160337/append_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.15691, 0.15691, 0, 0, 0, 0, 0, 0, 0, 0, 6 diff --git a/newtests/20140716_160337/console.log b/newtests/20140716_160337/console.log deleted file mode 100644 index 0dcd472dc..000000000 --- a/newtests/20140716_160337/console.log +++ /dev/null @@ -1,98 +0,0 @@ -2014-07-16 16:03:37.179 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_160337/error.log"} into lager_event -2014-07-16 16:03:37.179 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_160337/console.log"} into lager_event -2014-07-16 16:03:37.179 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-16 16:03:37.214 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-16 16:03:37.215 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-16 16:03:37.215 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-16 16:03:37.215 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-16 16:03:37.655 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-16 16:03:37.954 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-16 16:03:37.955 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_160337/console.log to debug -2014-07-16 16:03:37.961 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} -2014-07-16 16:03:38.034 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-16 16:03:38.034 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-16 16:03:38.035 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-16 16:03:38.048 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-16 16:03:38.048 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-16 16:03:38.125 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-16 16:03:38.126 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-16 16:03:38.154 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-16 16:03:38.158 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-16 16:03:38.163 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-16 16:03:38.163 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-16 16:03:38.201 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-16 16:03:38.263 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> -2014-07-16 16:03:38.270 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> -2014-07-16 16:03:38.285 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-16 16:03:38.285 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> -2014-07-16 16:03:38.285 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> -2014-07-16 16:03:38.299 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> -2014-07-16 16:03:38.299 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> -2014-07-16 16:03:38.313 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:135 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:03:38.313 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:03:38.313 [info] <0.95.0>@basho_bench_driver_floppystore:new:77 **********Inserteds************* [] -2014-07-16 16:03:38.314 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-16 16:03:38.348 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:135 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:03:38.348 [info] <0.108.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:03:38.349 [info] <0.108.0>@basho_bench_driver_floppystore:new:77 **********Inserteds************* [] -2014-07-16 16:03:38.349 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> -2014-07-16 16:03:38.350 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> -2014-07-16 16:03:38.355 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> -2014-07-16 16:03:38.355 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> -2014-07-16 16:03:38.356 [debug] <0.108.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,144}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:03:38.356 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash -2014-07-16 16:03:38.356 [debug] <0.95.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,144}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:03:38.356 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash -2014-07-16 16:03:38.356 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-16 16:03:38.362 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-16 16:03:38.390 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:135 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:03:38.390 [info] <0.111.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:03:38.390 [info] <0.111.0>@basho_bench_driver_floppystore:new:77 **********Inserteds************* [] -2014-07-16 16:03:38.390 [warning] <0.110.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:03:38.390 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> -2014-07-16 16:03:38.391 [debug] <0.111.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,144}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:03:38.391 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.110.0> -2014-07-16 16:03:38.391 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash -2014-07-16 16:03:38.391 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 16:03:38.422 [info] <0.113.0>@basho_bench_driver_floppystore:ping_each:135 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:03:38.422 [info] <0.113.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:03:38.422 [info] <0.113.0>@basho_bench_driver_floppystore:new:77 **********Inserteds************* [] -2014-07-16 16:03:38.422 [warning] <0.112.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:03:38.422 [info] <0.113.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.113.0> -2014-07-16 16:03:38.423 [debug] <0.113.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,144}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:03:38.423 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash -2014-07-16 16:03:38.423 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.112.0> -2014-07-16 16:03:38.423 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated -2014-07-16 16:03:38.448 [info] <0.115.0>@basho_bench_driver_floppystore:ping_each:135 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:03:38.448 [info] <0.115.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:03:38.449 [info] <0.115.0>@basho_bench_driver_floppystore:new:77 **********Inserteds************* [] -2014-07-16 16:03:38.449 [warning] <0.114.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:03:38.449 [info] <0.115.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.115.0> -2014-07-16 16:03:38.449 [debug] <0.115.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,144}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:03:38.449 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash -2014-07-16 16:03:38.449 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.114.0> -2014-07-16 16:03:38.450 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.112.0> exit with reason normal in context child_terminated -2014-07-16 16:03:38.474 [info] <0.117.0>@basho_bench_driver_floppystore:ping_each:135 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:03:38.474 [info] <0.117.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:03:38.474 [info] <0.117.0>@basho_bench_driver_floppystore:new:77 **********Inserteds************* [] -2014-07-16 16:03:38.474 [warning] <0.116.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:03:38.474 [info] <0.117.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.117.0> -2014-07-16 16:03:38.474 [debug] <0.117.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,144}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:03:38.474 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash -2014-07-16 16:03:38.474 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.116.0> -2014-07-16 16:03:38.475 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.114.0> exit with reason normal in context child_terminated -2014-07-16 16:03:38.505 [info] <0.119.0>@basho_bench_driver_floppystore:ping_each:135 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:03:38.505 [info] <0.119.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:03:38.505 [info] <0.119.0>@basho_bench_driver_floppystore:new:77 **********Inserteds************* [] -2014-07-16 16:03:38.505 [warning] <0.118.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:03:38.506 [info] <0.119.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.119.0> -2014-07-16 16:03:38.506 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.118.0> -2014-07-16 16:03:38.506 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason normal in context child_terminated -2014-07-16 16:03:38.507 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-16 16:03:38.517 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {append,append} -2014-07-16 16:03:38.517 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} -2014-07-16 16:03:38.517 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{append,append},6},{{{append,append},crash},6}] -2014-07-16 16:03:38.517 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: -2014-07-16 16:03:38.517 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{append,append},crash}: 6 diff --git a/newtests/20140716_160337/crash.log b/newtests/20140716_160337/crash.log deleted file mode 100644 index 4b7b7be66..000000000 --- a/newtests/20140716_160337/crash.log +++ /dev/null @@ -1,42 +0,0 @@ -2014-07-16 16:03:38 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:03:38 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:03:38 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:03:38 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.112.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:03:38 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.114.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:03:38 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.116.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:03:38 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.116.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140716_160337/error.log b/newtests/20140716_160337/error.log deleted file mode 100644 index e12c3ac1b..000000000 --- a/newtests/20140716_160337/error.log +++ /dev/null @@ -1,13 +0,0 @@ -2014-07-16 16:03:38.356 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash -2014-07-16 16:03:38.356 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash -2014-07-16 16:03:38.362 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-16 16:03:38.391 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash -2014-07-16 16:03:38.391 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 16:03:38.423 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash -2014-07-16 16:03:38.423 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated -2014-07-16 16:03:38.449 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash -2014-07-16 16:03:38.450 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.112.0> exit with reason normal in context child_terminated -2014-07-16 16:03:38.474 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash -2014-07-16 16:03:38.475 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.114.0> exit with reason normal in context child_terminated -2014-07-16 16:03:38.506 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason normal in context child_terminated -2014-07-16 16:03:38.507 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_160337/errors.csv b/newtests/20140716_160337/errors.csv deleted file mode 100644 index dc786eb57..000000000 --- a/newtests/20140716_160337/errors.csv +++ /dev/null @@ -1,2 +0,0 @@ -"error","count" -"{{append,append},crash}","6" diff --git a/newtests/20140716_160337/floppstore.config b/newtests/20140716_160337/floppstore.config deleted file mode 100644 index 55db32761..000000000 --- a/newtests/20140716_160337/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. - -{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. - -{operations, [{append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_160337/log.sasl.txt b/newtests/20140716_160337/log.sasl.txt deleted file mode 100644 index 6c6e75e7b..000000000 --- a/newtests/20140716_160337/log.sasl.txt +++ /dev/null @@ -1,336 +0,0 @@ - -=PROGRESS REPORT==== 16-Jul-2014::16:03:38 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:03:38 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:03:38 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::16:03:38 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:03:38 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::16:03:38 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:03:38 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::16:03:38 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::16:03:38 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:03:38 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:03:38 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::16:03:38 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:03:38 === - supervisor: {local,net_sup} - started: [{pid,<0.97.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:03:38 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:03:38 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:03:38 === - supervisor: {local,kernel_sup} - started: [{pid,<0.96.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::16:03:38 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 16-Jul-2014::16:03:38 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.103.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:03:38 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:03:38 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:03:38 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.109.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:03:38 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 16-Jul-2014::16:03:38 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:03:38 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.110.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:03:38 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:03:38 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.112.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:03:38 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:03:38 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.114.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:03:38 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.112.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:03:38 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.116.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:03:38 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.114.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:03:38 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.118.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:03:38 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.116.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 16-Jul-2014::16:03:38 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.116.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140716_160337/read_latencies.csv b/newtests/20140716_160337/read_latencies.csv deleted file mode 100644 index 7262765c6..000000000 --- a/newtests/20140716_160337/read_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.15691, 0.15691, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140716_160337/summary.csv b/newtests/20140716_160337/summary.csv deleted file mode 100644 index 33c0e3507..000000000 --- a/newtests/20140716_160337/summary.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, total, successful, failed -0.15691, 0.15691, 6, 0, 6 diff --git a/newtests/20140716_160632/append_latencies.csv b/newtests/20140716_160632/append_latencies.csv deleted file mode 100644 index c9e2de1c6..000000000 --- a/newtests/20140716_160632/append_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.154689, 0.154689, 0, 0, 0, 0, 0, 0, 0, 0, 6 diff --git a/newtests/20140716_160632/console.log b/newtests/20140716_160632/console.log deleted file mode 100644 index 38becb601..000000000 --- a/newtests/20140716_160632/console.log +++ /dev/null @@ -1,98 +0,0 @@ -2014-07-16 16:06:32.939 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_160632/error.log"} into lager_event -2014-07-16 16:06:32.939 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_160632/console.log"} into lager_event -2014-07-16 16:06:32.939 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-16 16:06:32.976 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-16 16:06:32.976 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-16 16:06:32.976 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-16 16:06:32.977 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-16 16:06:33.416 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-16 16:06:33.738 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-16 16:06:33.740 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_160632/console.log to debug -2014-07-16 16:06:33.746 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} -2014-07-16 16:06:33.821 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-16 16:06:33.822 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-16 16:06:33.822 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-16 16:06:33.837 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-16 16:06:33.837 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-16 16:06:33.917 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-16 16:06:33.917 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-16 16:06:33.944 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-16 16:06:33.948 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-16 16:06:33.952 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-16 16:06:33.952 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-16 16:06:33.989 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-16 16:06:34.049 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> -2014-07-16 16:06:34.056 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> -2014-07-16 16:06:34.067 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-16 16:06:34.068 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> -2014-07-16 16:06:34.068 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> -2014-07-16 16:06:34.082 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> -2014-07-16 16:06:34.082 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> -2014-07-16 16:06:34.096 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:06:34.096 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:06:34.096 [info] <0.95.0>@basho_bench_driver_floppystore:new:76 **********Inserteds************* [riak_dt_gcounter,riak_dt_gset] -2014-07-16 16:06:34.097 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-16 16:06:34.128 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:06:34.128 [info] <0.108.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:06:34.129 [info] <0.108.0>@basho_bench_driver_floppystore:new:76 **********Inserteds************* [riak_dt_gcounter,riak_dt_gset] -2014-07-16 16:06:34.129 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> -2014-07-16 16:06:34.129 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> -2014-07-16 16:06:34.136 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> -2014-07-16 16:06:34.136 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> -2014-07-16 16:06:34.137 [debug] <0.95.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[riak_dt_gcounter,riak_dt_gset]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,143}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,106}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:06:34.137 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash -2014-07-16 16:06:34.137 [debug] <0.108.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[riak_dt_gcounter,riak_dt_gset]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,143}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,106}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:06:34.137 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash -2014-07-16 16:06:34.137 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-16 16:06:34.143 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 16:06:34.169 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:06:34.169 [info] <0.111.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:06:34.169 [info] <0.111.0>@basho_bench_driver_floppystore:new:76 **********Inserteds************* [riak_dt_gcounter,riak_dt_gset] -2014-07-16 16:06:34.169 [warning] <0.110.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:06:34.169 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> -2014-07-16 16:06:34.170 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.110.0> -2014-07-16 16:06:34.170 [debug] <0.111.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[riak_dt_gcounter,riak_dt_gset]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,143}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,106}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:06:34.170 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash -2014-07-16 16:06:34.170 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-16 16:06:34.195 [info] <0.113.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:06:34.195 [info] <0.113.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:06:34.195 [info] <0.113.0>@basho_bench_driver_floppystore:new:76 **********Inserteds************* [riak_dt_gcounter,riak_dt_gset] -2014-07-16 16:06:34.195 [warning] <0.112.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:06:34.195 [info] <0.113.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.113.0> -2014-07-16 16:06:34.196 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.112.0> -2014-07-16 16:06:34.196 [debug] <0.113.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[riak_dt_gcounter,riak_dt_gset]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,143}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,106}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:06:34.196 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash -2014-07-16 16:06:34.196 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.110.0> exit with reason normal in context child_terminated -2014-07-16 16:06:34.232 [info] <0.115.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:06:34.232 [info] <0.115.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:06:34.232 [info] <0.115.0>@basho_bench_driver_floppystore:new:76 **********Inserteds************* [riak_dt_gcounter,riak_dt_gset] -2014-07-16 16:06:34.232 [warning] <0.114.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:06:34.232 [info] <0.115.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.115.0> -2014-07-16 16:06:34.233 [debug] <0.115.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[riak_dt_gcounter,riak_dt_gset]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,143}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,106}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:06:34.233 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.114.0> -2014-07-16 16:06:34.233 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash -2014-07-16 16:06:34.233 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.112.0> exit with reason normal in context child_terminated -2014-07-16 16:06:34.257 [info] <0.117.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:06:34.257 [info] <0.117.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:06:34.257 [info] <0.117.0>@basho_bench_driver_floppystore:new:76 **********Inserteds************* [riak_dt_gcounter,riak_dt_gset] -2014-07-16 16:06:34.257 [warning] <0.116.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:06:34.257 [info] <0.117.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.117.0> -2014-07-16 16:06:34.258 [debug] <0.117.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{lists,size,[[riak_dt_gcounter,riak_dt_gset]],[]},{basho_bench_driver_floppystore,get_random_elem,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,143}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,106}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:06:34.258 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.116.0> -2014-07-16 16:06:34.258 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash -2014-07-16 16:06:34.258 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.114.0> exit with reason normal in context child_terminated -2014-07-16 16:06:34.283 [info] <0.119.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:06:34.283 [info] <0.119.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:06:34.283 [info] <0.119.0>@basho_bench_driver_floppystore:new:76 **********Inserteds************* [riak_dt_gcounter,riak_dt_gset] -2014-07-16 16:06:34.283 [warning] <0.118.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:06:34.283 [info] <0.119.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.119.0> -2014-07-16 16:06:34.284 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.118.0> -2014-07-16 16:06:34.284 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.116.0> exit with reason normal in context child_terminated -2014-07-16 16:06:34.285 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-16 16:06:34.297 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {append,append} -2014-07-16 16:06:34.297 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} -2014-07-16 16:06:34.297 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{append,append},6},{{{append,append},crash},6}] -2014-07-16 16:06:34.297 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: -2014-07-16 16:06:34.297 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{append,append},crash}: 6 diff --git a/newtests/20140716_160632/crash.log b/newtests/20140716_160632/crash.log deleted file mode 100644 index 12612671a..000000000 --- a/newtests/20140716_160632/crash.log +++ /dev/null @@ -1,42 +0,0 @@ -2014-07-16 16:06:34 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:06:34 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:06:34 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:06:34 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.112.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:06:34 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.114.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:06:34 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.116.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:06:34 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.116.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140716_160632/error.log b/newtests/20140716_160632/error.log deleted file mode 100644 index a5ccfd50c..000000000 --- a/newtests/20140716_160632/error.log +++ /dev/null @@ -1,13 +0,0 @@ -2014-07-16 16:06:34.137 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash -2014-07-16 16:06:34.137 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash -2014-07-16 16:06:34.143 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 16:06:34.170 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash -2014-07-16 16:06:34.170 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-16 16:06:34.196 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash -2014-07-16 16:06:34.196 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.110.0> exit with reason normal in context child_terminated -2014-07-16 16:06:34.233 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash -2014-07-16 16:06:34.233 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.112.0> exit with reason normal in context child_terminated -2014-07-16 16:06:34.258 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash -2014-07-16 16:06:34.258 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.114.0> exit with reason normal in context child_terminated -2014-07-16 16:06:34.284 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.116.0> exit with reason normal in context child_terminated -2014-07-16 16:06:34.285 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_160632/errors.csv b/newtests/20140716_160632/errors.csv deleted file mode 100644 index dc786eb57..000000000 --- a/newtests/20140716_160632/errors.csv +++ /dev/null @@ -1,2 +0,0 @@ -"error","count" -"{{append,append},crash}","6" diff --git a/newtests/20140716_160632/floppstore.config b/newtests/20140716_160632/floppstore.config deleted file mode 100644 index 55db32761..000000000 --- a/newtests/20140716_160632/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. - -{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. - -{operations, [{append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_160632/log.sasl.txt b/newtests/20140716_160632/log.sasl.txt deleted file mode 100644 index b76c20e3f..000000000 --- a/newtests/20140716_160632/log.sasl.txt +++ /dev/null @@ -1,336 +0,0 @@ - -=PROGRESS REPORT==== 16-Jul-2014::16:06:33 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:06:33 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:06:33 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::16:06:33 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:06:33 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::16:06:33 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:06:33 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::16:06:33 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::16:06:33 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:06:33 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:06:33 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::16:06:33 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:06:34 === - supervisor: {local,net_sup} - started: [{pid,<0.97.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:06:34 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:06:34 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:06:34 === - supervisor: {local,kernel_sup} - started: [{pid,<0.96.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::16:06:34 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 16-Jul-2014::16:06:34 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.103.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:06:34 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:06:34 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:06:34 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.109.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:06:34 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 16-Jul-2014::16:06:34 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:06:34 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.110.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:06:34 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:06:34 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.112.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:06:34 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:06:34 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.114.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:06:34 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.112.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:06:34 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.116.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:06:34 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.114.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:06:34 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.118.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:06:34 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.116.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 16-Jul-2014::16:06:34 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.116.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140716_160632/read_latencies.csv b/newtests/20140716_160632/read_latencies.csv deleted file mode 100644 index ffdd0bab3..000000000 --- a/newtests/20140716_160632/read_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.154689, 0.154689, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140716_160632/summary.csv b/newtests/20140716_160632/summary.csv deleted file mode 100644 index b89d6e521..000000000 --- a/newtests/20140716_160632/summary.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, total, successful, failed -0.154689, 0.154689, 6, 0, 6 diff --git a/newtests/20140716_161238/append_latencies.csv b/newtests/20140716_161238/append_latencies.csv deleted file mode 100644 index 643e9c6c1..000000000 --- a/newtests/20140716_161238/append_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.161442, 0.161442, 0, 0, 0, 0, 0, 0, 0, 0, 6 diff --git a/newtests/20140716_161238/console.log b/newtests/20140716_161238/console.log deleted file mode 100644 index 5eed72583..000000000 --- a/newtests/20140716_161238/console.log +++ /dev/null @@ -1,91 +0,0 @@ -2014-07-16 16:12:38.826 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_161238/error.log"} into lager_event -2014-07-16 16:12:38.826 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_161238/console.log"} into lager_event -2014-07-16 16:12:38.826 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-16 16:12:38.864 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-16 16:12:38.864 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-16 16:12:38.864 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-16 16:12:38.864 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-16 16:12:39.300 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-16 16:12:39.644 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-16 16:12:39.645 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_161238/console.log to debug -2014-07-16 16:12:39.652 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} -2014-07-16 16:12:39.732 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-16 16:12:39.732 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-16 16:12:39.733 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-16 16:12:39.747 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-16 16:12:39.747 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-16 16:12:39.831 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-16 16:12:39.831 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-16 16:12:39.861 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-16 16:12:39.866 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-16 16:12:39.871 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-16 16:12:39.872 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-16 16:12:39.909 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-16 16:12:39.970 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> -2014-07-16 16:12:39.977 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> -2014-07-16 16:12:39.993 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-16 16:12:39.993 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> -2014-07-16 16:12:39.994 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> -2014-07-16 16:12:40.010 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> -2014-07-16 16:12:40.010 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> -2014-07-16 16:12:40.025 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:12:40.025 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:12:40.026 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-16 16:12:40.058 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:12:40.058 [info] <0.108.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:12:40.059 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> -2014-07-16 16:12:40.059 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> -2014-07-16 16:12:40.064 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> -2014-07-16 16:12:40.064 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> -2014-07-16 16:12:40.065 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-16 16:12:40.065 [debug] <0.95.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,length,[error],[]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,150}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:12:40.065 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash -2014-07-16 16:12:40.065 [debug] <0.108.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,length,[error],[]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,150}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:12:40.065 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash -2014-07-16 16:12:40.065 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 16:12:40.102 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:12:40.102 [info] <0.111.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:12:40.102 [warning] <0.110.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:12:40.102 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> -2014-07-16 16:12:40.103 [debug] <0.111.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,length,[error],[]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,150}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:12:40.103 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.110.0> -2014-07-16 16:12:40.103 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash -2014-07-16 16:12:40.103 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-16 16:12:40.134 [info] <0.113.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:12:40.134 [info] <0.113.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:12:40.134 [warning] <0.112.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:12:40.134 [info] <0.113.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.113.0> -2014-07-16 16:12:40.134 [debug] <0.113.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,length,[error],[]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,150}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:12:40.134 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash -2014-07-16 16:12:40.134 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.112.0> -2014-07-16 16:12:40.135 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.110.0> exit with reason normal in context child_terminated -2014-07-16 16:12:40.159 [info] <0.115.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:12:40.159 [info] <0.115.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:12:40.159 [warning] <0.114.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:12:40.159 [info] <0.115.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.115.0> -2014-07-16 16:12:40.159 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.114.0> -2014-07-16 16:12:40.160 [debug] <0.115.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,length,[error],[]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,150}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:12:40.160 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash -2014-07-16 16:12:40.160 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.112.0> exit with reason normal in context child_terminated -2014-07-16 16:12:40.186 [info] <0.117.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:12:40.186 [info] <0.117.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:12:40.186 [warning] <0.116.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:12:40.187 [info] <0.117.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.117.0> -2014-07-16 16:12:40.187 [debug] <0.117.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,length,[error],[]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,150}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:12:40.187 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.116.0> -2014-07-16 16:12:40.187 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash -2014-07-16 16:12:40.187 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.114.0> exit with reason normal in context child_terminated -2014-07-16 16:12:40.219 [info] <0.119.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:12:40.219 [info] <0.119.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:12:40.219 [warning] <0.118.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:12:40.220 [info] <0.119.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.119.0> -2014-07-16 16:12:40.220 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.118.0> -2014-07-16 16:12:40.220 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.116.0> exit with reason normal in context child_terminated -2014-07-16 16:12:40.221 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-16 16:12:40.231 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {append,append} -2014-07-16 16:12:40.231 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} -2014-07-16 16:12:40.232 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{append,append},6},{{{append,append},crash},6}] -2014-07-16 16:12:40.232 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: -2014-07-16 16:12:40.232 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{append,append},crash}: 6 diff --git a/newtests/20140716_161238/crash.log b/newtests/20140716_161238/crash.log deleted file mode 100644 index eae31f074..000000000 --- a/newtests/20140716_161238/crash.log +++ /dev/null @@ -1,42 +0,0 @@ -2014-07-16 16:12:40 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:12:40 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:12:40 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:12:40 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.112.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:12:40 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.114.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:12:40 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.116.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:12:40 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.116.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140716_161238/error.log b/newtests/20140716_161238/error.log deleted file mode 100644 index cfbaae357..000000000 --- a/newtests/20140716_161238/error.log +++ /dev/null @@ -1,13 +0,0 @@ -2014-07-16 16:12:40.065 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash -2014-07-16 16:12:40.065 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash -2014-07-16 16:12:40.065 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 16:12:40.103 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash -2014-07-16 16:12:40.103 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-16 16:12:40.134 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash -2014-07-16 16:12:40.135 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.110.0> exit with reason normal in context child_terminated -2014-07-16 16:12:40.160 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash -2014-07-16 16:12:40.160 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.112.0> exit with reason normal in context child_terminated -2014-07-16 16:12:40.187 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash -2014-07-16 16:12:40.187 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.114.0> exit with reason normal in context child_terminated -2014-07-16 16:12:40.220 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.116.0> exit with reason normal in context child_terminated -2014-07-16 16:12:40.221 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_161238/errors.csv b/newtests/20140716_161238/errors.csv deleted file mode 100644 index dc786eb57..000000000 --- a/newtests/20140716_161238/errors.csv +++ /dev/null @@ -1,2 +0,0 @@ -"error","count" -"{{append,append},crash}","6" diff --git a/newtests/20140716_161238/floppstore.config b/newtests/20140716_161238/floppstore.config deleted file mode 100644 index 55db32761..000000000 --- a/newtests/20140716_161238/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. - -{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. - -{operations, [{append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_161238/log.sasl.txt b/newtests/20140716_161238/log.sasl.txt deleted file mode 100644 index fc8cb754f..000000000 --- a/newtests/20140716_161238/log.sasl.txt +++ /dev/null @@ -1,336 +0,0 @@ - -=PROGRESS REPORT==== 16-Jul-2014::16:12:39 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:12:39 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:12:39 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::16:12:39 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:12:39 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::16:12:39 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:12:39 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::16:12:39 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::16:12:39 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:12:39 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:12:39 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::16:12:39 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:12:39 === - supervisor: {local,net_sup} - started: [{pid,<0.97.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:12:39 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:12:39 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:12:39 === - supervisor: {local,kernel_sup} - started: [{pid,<0.96.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::16:12:40 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 16-Jul-2014::16:12:40 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.103.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:12:40 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:12:40 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:12:40 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.109.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:12:40 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 16-Jul-2014::16:12:40 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:12:40 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.110.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:12:40 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:12:40 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.112.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:12:40 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:12:40 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.114.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:12:40 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.112.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:12:40 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.116.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:12:40 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.114.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:12:40 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.118.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:12:40 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.116.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 16-Jul-2014::16:12:40 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.116.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140716_161238/read_latencies.csv b/newtests/20140716_161238/read_latencies.csv deleted file mode 100644 index ffd212a5b..000000000 --- a/newtests/20140716_161238/read_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.161442, 0.161442, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140716_161238/summary.csv b/newtests/20140716_161238/summary.csv deleted file mode 100644 index 100e19388..000000000 --- a/newtests/20140716_161238/summary.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, total, successful, failed -0.161442, 0.161442, 6, 0, 6 diff --git a/newtests/20140716_161437/append_latencies.csv b/newtests/20140716_161437/append_latencies.csv deleted file mode 100644 index 297e45eb4..000000000 --- a/newtests/20140716_161437/append_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.1523, 0.1523, 0, 0, 0, 0, 0, 0, 0, 0, 6 diff --git a/newtests/20140716_161437/console.log b/newtests/20140716_161437/console.log deleted file mode 100644 index bf0ce5869..000000000 --- a/newtests/20140716_161437/console.log +++ /dev/null @@ -1,91 +0,0 @@ -2014-07-16 16:14:37.875 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_161437/error.log"} into lager_event -2014-07-16 16:14:37.875 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_161437/console.log"} into lager_event -2014-07-16 16:14:37.875 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-16 16:14:37.908 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-16 16:14:37.908 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-16 16:14:37.908 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-16 16:14:37.908 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-16 16:14:38.351 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-16 16:14:38.721 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-16 16:14:38.723 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_161437/console.log to debug -2014-07-16 16:14:38.729 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} -2014-07-16 16:14:38.811 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-16 16:14:38.811 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-16 16:14:38.812 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-16 16:14:38.826 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-16 16:14:38.826 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-16 16:14:38.909 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-16 16:14:38.909 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-16 16:14:38.938 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-16 16:14:38.944 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-16 16:14:38.951 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-16 16:14:38.952 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-16 16:14:38.982 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-16 16:14:39.044 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> -2014-07-16 16:14:39.050 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> -2014-07-16 16:14:39.063 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-16 16:14:39.063 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> -2014-07-16 16:14:39.063 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> -2014-07-16 16:14:39.077 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> -2014-07-16 16:14:39.077 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> -2014-07-16 16:14:39.091 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:14:39.091 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:14:39.092 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-16 16:14:39.123 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:14:39.123 [info] <0.108.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:14:39.124 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> -2014-07-16 16:14:39.124 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> -2014-07-16 16:14:39.129 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> -2014-07-16 16:14:39.129 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> -2014-07-16 16:14:39.130 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-16 16:14:39.130 [debug] <0.108.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,length,[error],[]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,150}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:14:39.130 [debug] <0.95.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,length,[error],[]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,150}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:14:39.130 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash -2014-07-16 16:14:39.130 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash -2014-07-16 16:14:39.131 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-16 16:14:39.160 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:14:39.160 [info] <0.111.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:14:39.160 [warning] <0.110.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:14:39.160 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> -2014-07-16 16:14:39.160 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.110.0> -2014-07-16 16:14:39.161 [debug] <0.111.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,length,[error],[]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,150}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:14:39.161 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash -2014-07-16 16:14:39.161 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 16:14:39.193 [info] <0.113.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:14:39.193 [info] <0.113.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:14:39.193 [warning] <0.112.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:14:39.193 [info] <0.113.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.113.0> -2014-07-16 16:14:39.194 [debug] <0.113.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,length,[error],[]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,150}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:14:39.194 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.112.0> -2014-07-16 16:14:39.194 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash -2014-07-16 16:14:39.194 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated -2014-07-16 16:14:39.221 [info] <0.115.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:14:39.221 [info] <0.115.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:14:39.221 [warning] <0.114.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:14:39.221 [info] <0.115.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.115.0> -2014-07-16 16:14:39.221 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.114.0> -2014-07-16 16:14:39.221 [debug] <0.115.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,length,[error],[]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,150}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:14:39.221 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash -2014-07-16 16:14:39.222 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.112.0> exit with reason normal in context child_terminated -2014-07-16 16:14:39.245 [info] <0.117.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:14:39.245 [info] <0.117.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:14:39.245 [warning] <0.116.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:14:39.245 [info] <0.117.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.117.0> -2014-07-16 16:14:39.246 [debug] <0.117.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,length,[error],[]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,150}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:14:39.246 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.116.0> -2014-07-16 16:14:39.246 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash -2014-07-16 16:14:39.246 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.114.0> exit with reason normal in context child_terminated -2014-07-16 16:14:39.275 [info] <0.119.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:14:39.275 [info] <0.119.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:14:39.275 [warning] <0.118.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:14:39.276 [info] <0.119.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.119.0> -2014-07-16 16:14:39.276 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.118.0> -2014-07-16 16:14:39.277 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason normal in context child_terminated -2014-07-16 16:14:39.277 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-16 16:14:39.290 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {append,append} -2014-07-16 16:14:39.290 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} -2014-07-16 16:14:39.290 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{append,append},6},{{{append,append},crash},6}] -2014-07-16 16:14:39.290 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: -2014-07-16 16:14:39.290 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{append,append},crash}: 6 diff --git a/newtests/20140716_161437/crash.log b/newtests/20140716_161437/crash.log deleted file mode 100644 index 0fa5e23d7..000000000 --- a/newtests/20140716_161437/crash.log +++ /dev/null @@ -1,42 +0,0 @@ -2014-07-16 16:14:39 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:14:39 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:14:39 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:14:39 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.112.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:14:39 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.114.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:14:39 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.116.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:14:39 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.116.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140716_161437/error.log b/newtests/20140716_161437/error.log deleted file mode 100644 index 2051be7ef..000000000 --- a/newtests/20140716_161437/error.log +++ /dev/null @@ -1,13 +0,0 @@ -2014-07-16 16:14:39.130 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash -2014-07-16 16:14:39.130 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash -2014-07-16 16:14:39.131 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-16 16:14:39.161 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash -2014-07-16 16:14:39.161 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 16:14:39.194 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash -2014-07-16 16:14:39.194 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated -2014-07-16 16:14:39.221 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash -2014-07-16 16:14:39.222 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.112.0> exit with reason normal in context child_terminated -2014-07-16 16:14:39.246 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash -2014-07-16 16:14:39.246 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.114.0> exit with reason normal in context child_terminated -2014-07-16 16:14:39.277 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason normal in context child_terminated -2014-07-16 16:14:39.277 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_161437/errors.csv b/newtests/20140716_161437/errors.csv deleted file mode 100644 index dc786eb57..000000000 --- a/newtests/20140716_161437/errors.csv +++ /dev/null @@ -1,2 +0,0 @@ -"error","count" -"{{append,append},crash}","6" diff --git a/newtests/20140716_161437/floppstore.config b/newtests/20140716_161437/floppstore.config deleted file mode 100644 index 55db32761..000000000 --- a/newtests/20140716_161437/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. - -{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. - -{operations, [{append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_161437/log.sasl.txt b/newtests/20140716_161437/log.sasl.txt deleted file mode 100644 index 770ef888d..000000000 --- a/newtests/20140716_161437/log.sasl.txt +++ /dev/null @@ -1,336 +0,0 @@ - -=PROGRESS REPORT==== 16-Jul-2014::16:14:38 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:14:38 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:14:38 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::16:14:38 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:14:38 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::16:14:38 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:14:38 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::16:14:38 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::16:14:38 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:14:38 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:14:38 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::16:14:38 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:14:39 === - supervisor: {local,net_sup} - started: [{pid,<0.97.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:14:39 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:14:39 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:14:39 === - supervisor: {local,kernel_sup} - started: [{pid,<0.96.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::16:14:39 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 16-Jul-2014::16:14:39 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.103.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:14:39 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:14:39 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:14:39 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.109.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:14:39 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 16-Jul-2014::16:14:39 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:14:39 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.110.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:14:39 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:14:39 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.112.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:14:39 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:14:39 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.114.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:14:39 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.112.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:14:39 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.116.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:14:39 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.114.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:14:39 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.118.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:14:39 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.116.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 16-Jul-2014::16:14:39 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.116.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140716_161437/read_latencies.csv b/newtests/20140716_161437/read_latencies.csv deleted file mode 100644 index fe5eaa554..000000000 --- a/newtests/20140716_161437/read_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.1523, 0.1523, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140716_161437/summary.csv b/newtests/20140716_161437/summary.csv deleted file mode 100644 index c346d7be4..000000000 --- a/newtests/20140716_161437/summary.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, total, successful, failed -0.1523, 0.1523, 6, 0, 6 diff --git a/newtests/20140716_161530/append_latencies.csv b/newtests/20140716_161530/append_latencies.csv deleted file mode 100644 index 1ac06de33..000000000 --- a/newtests/20140716_161530/append_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.163789, 0.163789, 0, 0, 0, 0, 0, 0, 0, 0, 6 diff --git a/newtests/20140716_161530/console.log b/newtests/20140716_161530/console.log deleted file mode 100644 index d3d8529a2..000000000 --- a/newtests/20140716_161530/console.log +++ /dev/null @@ -1,92 +0,0 @@ -2014-07-16 16:15:30.787 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_161530/error.log"} into lager_event -2014-07-16 16:15:30.787 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_161530/console.log"} into lager_event -2014-07-16 16:15:30.787 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-16 16:15:30.822 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-16 16:15:30.822 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-16 16:15:30.822 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-16 16:15:30.822 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-16 16:15:31.264 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-16 16:15:31.633 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-16 16:15:31.634 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_161530/console.log to debug -2014-07-16 16:15:31.641 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} -2014-07-16 16:15:31.720 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-16 16:15:31.721 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-16 16:15:31.721 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-16 16:15:31.737 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-16 16:15:31.737 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-16 16:15:31.819 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-16 16:15:31.819 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-16 16:15:31.846 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-16 16:15:31.850 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-16 16:15:31.855 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-16 16:15:31.855 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-16 16:15:31.892 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-16 16:15:31.952 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> -2014-07-16 16:15:31.959 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> -2014-07-16 16:15:31.971 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-16 16:15:31.972 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> -2014-07-16 16:15:31.972 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> -2014-07-16 16:15:31.985 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> -2014-07-16 16:15:31.985 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> -2014-07-16 16:15:32.000 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:15:32.000 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:15:32.000 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-16 16:15:32.031 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:15:32.032 [info] <0.108.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:15:32.032 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> -2014-07-16 16:15:32.032 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> -2014-07-16 16:15:32.038 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> -2014-07-16 16:15:32.038 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> -2014-07-16 16:15:32.038 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-16 16:15:32.038 [debug] <0.108.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,length,[error],[]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,150}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:15:32.038 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash -2014-07-16 16:15:32.038 [debug] <0.95.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,length,[error],[]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,150}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:15:32.039 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash -2014-07-16 16:15:32.045 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-16 16:15:32.075 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:15:32.076 [info] <0.111.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:15:32.076 [warning] <0.110.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:15:32.076 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> -2014-07-16 16:15:32.076 [debug] <0.111.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,length,[error],[]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,150}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:15:32.076 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.110.0> -2014-07-16 16:15:32.076 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash -2014-07-16 16:15:32.077 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 16:15:32.107 [info] <0.113.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:15:32.108 [info] <0.113.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:15:32.108 [warning] <0.112.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:15:32.108 [info] <0.113.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.113.0> -2014-07-16 16:15:32.108 [debug] <0.113.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,length,[error],[]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,150}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:15:32.108 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.112.0> -2014-07-16 16:15:32.108 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash -2014-07-16 16:15:32.109 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated -2014-07-16 16:15:32.136 [info] <0.115.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:15:32.136 [info] <0.115.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:15:32.137 [warning] <0.114.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:15:32.137 [info] <0.115.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.115.0> -2014-07-16 16:15:32.137 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.114.0> -2014-07-16 16:15:32.137 [debug] <0.115.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,length,[error],[]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,150}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:15:32.137 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash -2014-07-16 16:15:32.137 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.112.0> exit with reason normal in context child_terminated -2014-07-16 16:15:32.161 [info] <0.117.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:15:32.161 [info] <0.117.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:15:32.161 [warning] <0.116.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:15:32.161 [info] <0.117.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.117.0> -2014-07-16 16:15:32.162 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.116.0> -2014-07-16 16:15:32.162 [debug] <0.117.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,length,[error],[]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,150}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:15:32.162 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash -2014-07-16 16:15:32.162 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.114.0> exit with reason normal in context child_terminated -2014-07-16 16:15:32.195 [info] <0.119.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:15:32.195 [info] <0.119.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:15:32.195 [warning] <0.118.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:15:32.195 [info] <0.119.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.119.0> -2014-07-16 16:15:32.196 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.118.0> -2014-07-16 16:15:32.196 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason normal in context child_terminated -2014-07-16 16:15:32.197 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-16 16:15:32.208 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {append,append} -2014-07-16 16:15:32.208 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} -2014-07-16 16:15:32.208 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{append,append},6},{{{append,append},crash},6}] -2014-07-16 16:15:32.208 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: -2014-07-16 16:15:32.208 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{append,append},crash}: 6 -2014-07-16 16:15:32.209 [info] <0.2.0>@basho_bench:wait_for_stop:191 Test stopped: shutdown diff --git a/newtests/20140716_161530/crash.log b/newtests/20140716_161530/crash.log deleted file mode 100644 index af0067412..000000000 --- a/newtests/20140716_161530/crash.log +++ /dev/null @@ -1,42 +0,0 @@ -2014-07-16 16:15:32 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:15:32 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:15:32 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:15:32 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.112.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:15:32 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.114.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:15:32 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.116.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:15:32 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.116.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140716_161530/error.log b/newtests/20140716_161530/error.log deleted file mode 100644 index e900e6670..000000000 --- a/newtests/20140716_161530/error.log +++ /dev/null @@ -1,13 +0,0 @@ -2014-07-16 16:15:32.038 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash -2014-07-16 16:15:32.039 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash -2014-07-16 16:15:32.045 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-16 16:15:32.076 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash -2014-07-16 16:15:32.077 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 16:15:32.108 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash -2014-07-16 16:15:32.109 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated -2014-07-16 16:15:32.137 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash -2014-07-16 16:15:32.137 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.112.0> exit with reason normal in context child_terminated -2014-07-16 16:15:32.162 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash -2014-07-16 16:15:32.162 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.114.0> exit with reason normal in context child_terminated -2014-07-16 16:15:32.196 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason normal in context child_terminated -2014-07-16 16:15:32.197 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_161530/errors.csv b/newtests/20140716_161530/errors.csv deleted file mode 100644 index dc786eb57..000000000 --- a/newtests/20140716_161530/errors.csv +++ /dev/null @@ -1,2 +0,0 @@ -"error","count" -"{{append,append},crash}","6" diff --git a/newtests/20140716_161530/floppstore.config b/newtests/20140716_161530/floppstore.config deleted file mode 100644 index 55db32761..000000000 --- a/newtests/20140716_161530/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. - -{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. - -{operations, [{append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_161530/log.sasl.txt b/newtests/20140716_161530/log.sasl.txt deleted file mode 100644 index 9bd84eb6a..000000000 --- a/newtests/20140716_161530/log.sasl.txt +++ /dev/null @@ -1,336 +0,0 @@ - -=PROGRESS REPORT==== 16-Jul-2014::16:15:31 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:15:31 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:15:31 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::16:15:31 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:15:31 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::16:15:31 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:15:31 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::16:15:31 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::16:15:31 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:15:31 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:15:31 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::16:15:31 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:15:31 === - supervisor: {local,net_sup} - started: [{pid,<0.97.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:15:31 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:15:31 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:15:31 === - supervisor: {local,kernel_sup} - started: [{pid,<0.96.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::16:15:31 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 16-Jul-2014::16:15:31 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.103.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:15:32 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:15:32 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:15:32 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.109.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:15:32 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 16-Jul-2014::16:15:32 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:15:32 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.110.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:15:32 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:15:32 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.112.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:15:32 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:15:32 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.114.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:15:32 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.112.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:15:32 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.116.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:15:32 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.114.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:15:32 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.118.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:15:32 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.116.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 16-Jul-2014::16:15:32 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.116.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140716_161530/read_latencies.csv b/newtests/20140716_161530/read_latencies.csv deleted file mode 100644 index e7b40d453..000000000 --- a/newtests/20140716_161530/read_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.163789, 0.163789, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140716_161530/summary.csv b/newtests/20140716_161530/summary.csv deleted file mode 100644 index 5d61e6684..000000000 --- a/newtests/20140716_161530/summary.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, total, successful, failed -0.163789, 0.163789, 6, 0, 6 diff --git a/newtests/20140716_161614/append_latencies.csv b/newtests/20140716_161614/append_latencies.csv deleted file mode 100644 index 931fe64f1..000000000 --- a/newtests/20140716_161614/append_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.150837, 0.150837, 0, 0, 0, 0, 0, 0, 0, 0, 7 diff --git a/newtests/20140716_161614/console.log b/newtests/20140716_161614/console.log deleted file mode 100644 index 2ba22ed4b..000000000 --- a/newtests/20140716_161614/console.log +++ /dev/null @@ -1,93 +0,0 @@ -2014-07-16 16:16:14.604 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_161614/error.log"} into lager_event -2014-07-16 16:16:14.604 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_161614/console.log"} into lager_event -2014-07-16 16:16:14.604 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-16 16:16:14.642 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-16 16:16:14.642 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-16 16:16:14.642 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-16 16:16:14.642 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-16 16:16:15.078 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-16 16:16:15.396 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-16 16:16:15.398 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_161614/console.log to debug -2014-07-16 16:16:15.404 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} -2014-07-16 16:16:15.477 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-16 16:16:15.477 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-16 16:16:15.478 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-16 16:16:15.491 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-16 16:16:15.491 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-16 16:16:15.577 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-16 16:16:15.578 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-16 16:16:15.606 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-16 16:16:15.612 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-16 16:16:15.617 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-16 16:16:15.617 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-16 16:16:15.653 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-16 16:16:15.721 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> -2014-07-16 16:16:15.728 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> -2014-07-16 16:16:15.741 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-16 16:16:15.741 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> -2014-07-16 16:16:15.742 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> -2014-07-16 16:16:15.756 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> -2014-07-16 16:16:15.756 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> -2014-07-16 16:16:15.770 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:16:15.770 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:16:15.771 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-16 16:16:15.805 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:16:15.805 [info] <0.108.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:16:15.806 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> -2014-07-16 16:16:15.806 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> -2014-07-16 16:16:15.812 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> -2014-07-16 16:16:15.812 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> -2014-07-16 16:16:15.813 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-16 16:16:15.813 [debug] <0.108.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,length,[{ok,[increment]}],[]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,150}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:16:15.813 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash -2014-07-16 16:16:15.813 [debug] <0.95.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,length,[{ok,[add]}],[]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,150}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:16:15.813 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash -2014-07-16 16:16:15.813 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-16 16:16:15.840 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:16:15.840 [info] <0.111.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:16:15.840 [warning] <0.110.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:16:15.840 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> -2014-07-16 16:16:15.841 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.110.0> -2014-07-16 16:16:15.841 [debug] <0.111.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,length,[{ok,[increment]}],[]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,150}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:16:15.841 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash -2014-07-16 16:16:15.841 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 16:16:15.867 [info] <0.113.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:16:15.867 [info] <0.113.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:16:15.867 [warning] <0.112.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:16:15.867 [info] <0.113.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.113.0> -2014-07-16 16:16:15.867 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.112.0> -2014-07-16 16:16:15.867 [debug] <0.113.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,length,[{ok,[increment]}],[]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,150}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:16:15.867 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash -2014-07-16 16:16:15.868 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated -2014-07-16 16:16:15.900 [info] <0.115.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:16:15.900 [info] <0.115.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:16:15.900 [warning] <0.114.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:16:15.900 [info] <0.115.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.115.0> -2014-07-16 16:16:15.901 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.114.0> -2014-07-16 16:16:15.901 [debug] <0.115.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,length,[{ok,[add]}],[]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,150}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:16:15.901 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash -2014-07-16 16:16:15.901 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.112.0> exit with reason normal in context child_terminated -2014-07-16 16:16:15.929 [info] <0.117.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:16:15.929 [info] <0.117.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:16:15.929 [warning] <0.116.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:16:15.929 [info] <0.117.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.117.0> -2014-07-16 16:16:15.929 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.116.0> -2014-07-16 16:16:15.930 [debug] <0.117.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,length,[{ok,[add]}],[]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,150}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:16:15.930 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash -2014-07-16 16:16:15.930 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.114.0> exit with reason normal in context child_terminated -2014-07-16 16:16:15.956 [info] <0.119.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:16:15.956 [info] <0.119.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:16:15.956 [warning] <0.118.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:16:15.956 [info] <0.119.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.119.0> -2014-07-16 16:16:15.956 [debug] <0.119.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,length,[{ok,[increment]}],[]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,150}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,107}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:16:15.957 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.118.0> -2014-07-16 16:16:15.957 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason normal in context child_terminated -2014-07-16 16:16:15.958 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-16 16:16:15.970 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {append,append} -2014-07-16 16:16:15.970 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} -2014-07-16 16:16:15.970 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{append,append},7},{{{append,append},crash},7}] -2014-07-16 16:16:15.970 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: -2014-07-16 16:16:15.970 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{append,append},crash}: 7 -2014-07-16 16:16:15.971 [info] <0.2.0>@basho_bench:wait_for_stop:191 Test stopped: shutdown diff --git a/newtests/20140716_161614/crash.log b/newtests/20140716_161614/crash.log deleted file mode 100644 index d68c6f822..000000000 --- a/newtests/20140716_161614/crash.log +++ /dev/null @@ -1,42 +0,0 @@ -2014-07-16 16:16:15 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:16:15 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:16:15 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:16:15 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.112.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:16:15 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.114.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:16:15 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.116.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:16:15 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.116.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140716_161614/error.log b/newtests/20140716_161614/error.log deleted file mode 100644 index 63d43e316..000000000 --- a/newtests/20140716_161614/error.log +++ /dev/null @@ -1,13 +0,0 @@ -2014-07-16 16:16:15.813 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash -2014-07-16 16:16:15.813 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash -2014-07-16 16:16:15.813 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-16 16:16:15.841 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash -2014-07-16 16:16:15.841 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 16:16:15.867 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash -2014-07-16 16:16:15.868 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated -2014-07-16 16:16:15.901 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash -2014-07-16 16:16:15.901 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.112.0> exit with reason normal in context child_terminated -2014-07-16 16:16:15.930 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with crash -2014-07-16 16:16:15.930 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.114.0> exit with reason normal in context child_terminated -2014-07-16 16:16:15.957 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason normal in context child_terminated -2014-07-16 16:16:15.958 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_161614/errors.csv b/newtests/20140716_161614/errors.csv deleted file mode 100644 index a31ba014e..000000000 --- a/newtests/20140716_161614/errors.csv +++ /dev/null @@ -1,2 +0,0 @@ -"error","count" -"{{append,append},crash}","7" diff --git a/newtests/20140716_161614/floppstore.config b/newtests/20140716_161614/floppstore.config deleted file mode 100644 index 55db32761..000000000 --- a/newtests/20140716_161614/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. - -{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. - -{operations, [{append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_161614/log.sasl.txt b/newtests/20140716_161614/log.sasl.txt deleted file mode 100644 index 26c21c397..000000000 --- a/newtests/20140716_161614/log.sasl.txt +++ /dev/null @@ -1,336 +0,0 @@ - -=PROGRESS REPORT==== 16-Jul-2014::16:16:15 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:16:15 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:16:15 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::16:16:15 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:16:15 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::16:16:15 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:16:15 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::16:16:15 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::16:16:15 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:16:15 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:16:15 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::16:16:15 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:16:15 === - supervisor: {local,net_sup} - started: [{pid,<0.97.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:16:15 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:16:15 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:16:15 === - supervisor: {local,kernel_sup} - started: [{pid,<0.96.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::16:16:15 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 16-Jul-2014::16:16:15 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.103.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:16:15 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:16:15 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:16:15 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.109.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:16:15 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 16-Jul-2014::16:16:15 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:16:15 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.110.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:16:15 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:16:15 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.112.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:16:15 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:16:15 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.114.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:16:15 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.112.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:16:15 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.116.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:16:15 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.114.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:16:15 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.118.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:16:15 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.116.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 16-Jul-2014::16:16:15 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.116.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140716_161614/read_latencies.csv b/newtests/20140716_161614/read_latencies.csv deleted file mode 100644 index 5b5704dbb..000000000 --- a/newtests/20140716_161614/read_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.150837, 0.150837, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140716_161614/summary.csv b/newtests/20140716_161614/summary.csv deleted file mode 100644 index 59f6041aa..000000000 --- a/newtests/20140716_161614/summary.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, total, successful, failed -0.150837, 0.150837, 7, 0, 7 diff --git a/newtests/20140716_162007/append_latencies.csv b/newtests/20140716_162007/append_latencies.csv deleted file mode 100644 index 544ef91b5..000000000 --- a/newtests/20140716_162007/append_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.258733, 0.258733, 13, 1748, 15072.5, 6979, 59609, 63205, 63205, 63205, 0 diff --git a/newtests/20140716_162007/console.log b/newtests/20140716_162007/console.log deleted file mode 100644 index 597ff8dec..000000000 --- a/newtests/20140716_162007/console.log +++ /dev/null @@ -1,100 +0,0 @@ -2014-07-16 16:20:07.905 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_162007/error.log"} into lager_event -2014-07-16 16:20:07.905 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_162007/console.log"} into lager_event -2014-07-16 16:20:07.905 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-16 16:20:07.937 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-16 16:20:07.937 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-16 16:20:07.937 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-16 16:20:07.937 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-16 16:20:08.382 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-16 16:20:08.689 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-16 16:20:08.690 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_162007/console.log to debug -2014-07-16 16:20:08.696 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} -2014-07-16 16:20:08.768 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-16 16:20:08.768 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-16 16:20:08.769 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-16 16:20:08.782 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-16 16:20:08.782 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-16 16:20:08.860 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-16 16:20:08.860 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-16 16:20:08.887 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-16 16:20:08.891 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-16 16:20:08.895 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-16 16:20:08.895 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-16 16:20:08.929 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-16 16:20:08.992 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> -2014-07-16 16:20:08.998 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> -2014-07-16 16:20:09.010 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-16 16:20:09.010 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> -2014-07-16 16:20:09.010 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> -2014-07-16 16:20:09.024 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> -2014-07-16 16:20:09.024 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> -2014-07-16 16:20:09.039 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:20:09.039 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:20:09.039 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-16 16:20:09.072 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:20:09.072 [info] <0.108.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:20:09.072 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> -2014-07-16 16:20:09.073 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> -2014-07-16 16:20:09.079 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> -2014-07-16 16:20:09.079 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> -2014-07-16 16:20:09.079 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-16 16:20:09.154 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:20:09.154 [error] emulator Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:20:09.154 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 16:20:09.159 [error] emulator Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:20:09.159 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:20:09.191 [info] <0.115.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:20:09.191 [info] <0.115.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:20:09.191 [warning] <0.114.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:20:09.191 [info] <0.115.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.115.0> -2014-07-16 16:20:09.191 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.114.0> -2014-07-16 16:20:09.192 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-16 16:20:09.215 [error] emulator Error in process <0.115.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:20:09.215 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:20:09.226 [info] <0.117.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:20:09.226 [info] <0.117.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:20:09.226 [warning] <0.116.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:20:09.226 [info] <0.117.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.117.0> -2014-07-16 16:20:09.226 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.116.0> -2014-07-16 16:20:09.227 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.114.0> exit with reason normal in context child_terminated -2014-07-16 16:20:09.235 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:20:09.235 [error] emulator Error in process <0.117.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:20:09.259 [info] <0.123.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:20:09.259 [info] <0.123.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:20:09.259 [warning] <0.122.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:20:09.259 [info] <0.123.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.123.0> -2014-07-16 16:20:09.260 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.122.0> -2014-07-16 16:20:09.260 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.116.0> exit with reason normal in context child_terminated -2014-07-16 16:20:09.282 [error] emulator Error in process <0.123.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:20:09.282 [error] <0.122.0>@basho_bench_worker:handle_info:149 Worker <0.123.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:20:09.293 [info] <0.128.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:20:09.293 [info] <0.128.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:20:09.294 [warning] <0.126.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:20:09.294 [info] <0.128.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.128.0> -2014-07-16 16:20:09.294 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.126.0> -2014-07-16 16:20:09.295 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.122.0> exit with reason normal in context child_terminated -2014-07-16 16:20:09.325 [error] emulator Error in process <0.128.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:20:09.325 [error] <0.126.0>@basho_bench_worker:handle_info:149 Worker <0.128.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:20:09.330 [info] <0.133.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:20:09.330 [info] <0.133.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:20:09.330 [warning] <0.131.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:20:09.330 [info] <0.133.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.133.0> -2014-07-16 16:20:09.331 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.131.0> -2014-07-16 16:20:09.332 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.126.0> exit with reason normal in context child_terminated -2014-07-16 16:20:09.333 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.126.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-16 16:20:09.340 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} -2014-07-16 16:20:09.340 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. diff --git a/newtests/20140716_162007/crash.log b/newtests/20140716_162007/crash.log deleted file mode 100644 index 788abaf2f..000000000 --- a/newtests/20140716_162007/crash.log +++ /dev/null @@ -1,60 +0,0 @@ -2014-07-16 16:20:09 =ERROR REPORT==== -Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - -2014-07-16 16:20:09 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:20:09 =ERROR REPORT==== -Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - -2014-07-16 16:20:09 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:20:09 =ERROR REPORT==== -Error in process <0.115.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - -2014-07-16 16:20:09 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.114.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:20:09 =ERROR REPORT==== -Error in process <0.117.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - -2014-07-16 16:20:09 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.116.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:20:09 =ERROR REPORT==== -Error in process <0.123.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - -2014-07-16 16:20:09 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.122.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:20:09 =ERROR REPORT==== -Error in process <0.128.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - -2014-07-16 16:20:09 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.126.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:20:09 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.126.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140716_162007/error.log b/newtests/20140716_162007/error.log deleted file mode 100644 index 3aab4fd03..000000000 --- a/newtests/20140716_162007/error.log +++ /dev/null @@ -1,31 +0,0 @@ -2014-07-16 16:20:09.154 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:20:09.154 [error] emulator Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:20:09.154 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 16:20:09.159 [error] emulator Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:20:09.159 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:20:09.192 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-16 16:20:09.215 [error] emulator Error in process <0.115.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:20:09.215 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:20:09.227 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.114.0> exit with reason normal in context child_terminated -2014-07-16 16:20:09.235 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:20:09.235 [error] emulator Error in process <0.117.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:20:09.260 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.116.0> exit with reason normal in context child_terminated -2014-07-16 16:20:09.282 [error] emulator Error in process <0.123.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:20:09.282 [error] <0.122.0>@basho_bench_worker:handle_info:149 Worker <0.123.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:20:09.295 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.122.0> exit with reason normal in context child_terminated -2014-07-16 16:20:09.325 [error] emulator Error in process <0.128.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:20:09.325 [error] <0.126.0>@basho_bench_worker:handle_info:149 Worker <0.128.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:20:09.332 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.126.0> exit with reason normal in context child_terminated -2014-07-16 16:20:09.333 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.126.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_162007/errors.csv b/newtests/20140716_162007/errors.csv deleted file mode 100644 index 29210b502..000000000 --- a/newtests/20140716_162007/errors.csv +++ /dev/null @@ -1 +0,0 @@ -"error","count" diff --git a/newtests/20140716_162007/floppstore.config b/newtests/20140716_162007/floppstore.config deleted file mode 100644 index 55db32761..000000000 --- a/newtests/20140716_162007/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. - -{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. - -{operations, [{append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_162007/log.sasl.txt b/newtests/20140716_162007/log.sasl.txt deleted file mode 100644 index 12354c11a..000000000 --- a/newtests/20140716_162007/log.sasl.txt +++ /dev/null @@ -1,336 +0,0 @@ - -=PROGRESS REPORT==== 16-Jul-2014::16:20:08 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:20:08 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:20:08 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::16:20:08 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:20:08 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::16:20:08 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:20:08 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::16:20:08 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::16:20:08 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:20:08 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:20:08 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::16:20:08 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:20:08 === - supervisor: {local,net_sup} - started: [{pid,<0.97.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:20:08 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:20:09 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:20:09 === - supervisor: {local,kernel_sup} - started: [{pid,<0.96.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::16:20:09 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 16-Jul-2014::16:20:09 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.103.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:20:09 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:20:09 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:20:09 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.109.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:20:09 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 16-Jul-2014::16:20:09 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:20:09 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.114.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:20:09 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:20:09 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.116.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:20:09 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.114.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:20:09 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.122.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:20:09 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.116.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:20:09 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.126.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:20:09 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.122.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:20:09 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.131.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:20:09 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.126.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 16-Jul-2014::16:20:09 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.126.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140716_162007/read_latencies.csv b/newtests/20140716_162007/read_latencies.csv deleted file mode 100644 index 1d89dfc54..000000000 --- a/newtests/20140716_162007/read_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.258733, 0.258733, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140716_162007/summary.csv b/newtests/20140716_162007/summary.csv deleted file mode 100644 index 45f2a75b3..000000000 --- a/newtests/20140716_162007/summary.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, total, successful, failed -0.258733, 0.258733, 13, 13, 0 diff --git a/newtests/20140716_162303/append_latencies.csv b/newtests/20140716_162303/append_latencies.csv deleted file mode 100644 index 6a2110650..000000000 --- a/newtests/20140716_162303/append_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.227162, 0.227162, 15, 1767, 6891.1, 2569, 17324, 30866, 30866, 30866, 0 diff --git a/newtests/20140716_162303/console.log b/newtests/20140716_162303/console.log deleted file mode 100644 index fa0902a4b..000000000 --- a/newtests/20140716_162303/console.log +++ /dev/null @@ -1,101 +0,0 @@ -2014-07-16 16:23:04.139 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_162303/error.log"} into lager_event -2014-07-16 16:23:04.139 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_162303/console.log"} into lager_event -2014-07-16 16:23:04.139 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-16 16:23:04.171 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-16 16:23:04.171 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-16 16:23:04.171 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-16 16:23:04.171 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-16 16:23:04.616 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-16 16:23:04.917 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-16 16:23:04.918 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_162303/console.log to debug -2014-07-16 16:23:04.924 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} -2014-07-16 16:23:04.999 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-16 16:23:04.999 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-16 16:23:05.000 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-16 16:23:05.013 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-16 16:23:05.013 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-16 16:23:05.092 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-16 16:23:05.093 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-16 16:23:05.120 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-16 16:23:05.124 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-16 16:23:05.129 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-16 16:23:05.129 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-16 16:23:05.166 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-16 16:23:05.230 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> -2014-07-16 16:23:05.236 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> -2014-07-16 16:23:05.249 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-16 16:23:05.249 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> -2014-07-16 16:23:05.250 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> -2014-07-16 16:23:05.262 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> -2014-07-16 16:23:05.262 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> -2014-07-16 16:23:05.277 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:23:05.277 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:23:05.277 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-16 16:23:05.310 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:23:05.310 [info] <0.108.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:23:05.310 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> -2014-07-16 16:23:05.311 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> -2014-07-16 16:23:05.318 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> -2014-07-16 16:23:05.318 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> -2014-07-16 16:23:05.319 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-16 16:23:05.369 [error] emulator Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:23:05.369 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:23:05.370 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 16:23:05.374 [error] emulator Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:23:05.374 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:23:05.404 [info] <0.117.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:23:05.404 [info] <0.117.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:23:05.404 [warning] <0.116.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:23:05.404 [info] <0.117.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.117.0> -2014-07-16 16:23:05.405 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.116.0> -2014-07-16 16:23:05.405 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-16 16:23:05.420 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:23:05.420 [error] emulator Error in process <0.117.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:23:05.437 [info] <0.119.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:23:05.437 [info] <0.119.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:23:05.437 [warning] <0.118.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:23:05.437 [info] <0.119.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.119.0> -2014-07-16 16:23:05.438 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.118.0> -2014-07-16 16:23:05.438 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason normal in context child_terminated -2014-07-16 16:23:05.470 [error] <0.118.0>@basho_bench_worker:handle_info:149 Worker <0.119.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:23:05.470 [error] emulator Error in process <0.119.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:23:05.470 [info] <0.124.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:23:05.470 [info] <0.124.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:23:05.470 [warning] <0.123.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:23:05.470 [info] <0.124.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.124.0> -2014-07-16 16:23:05.471 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.123.0> -2014-07-16 16:23:05.471 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.118.0> exit with reason normal in context child_terminated -2014-07-16 16:23:05.495 [error] <0.123.0>@basho_bench_worker:handle_info:149 Worker <0.124.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:23:05.495 [error] emulator Error in process <0.124.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:23:05.509 [info] <0.130.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:23:05.509 [info] <0.130.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:23:05.509 [warning] <0.129.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:23:05.509 [info] <0.130.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.130.0> -2014-07-16 16:23:05.510 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.129.0> -2014-07-16 16:23:05.510 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.123.0> exit with reason normal in context child_terminated -2014-07-16 16:23:05.517 [error] emulator Error in process <0.130.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:23:05.517 [error] <0.129.0>@basho_bench_worker:handle_info:149 Worker <0.130.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:23:05.537 [info] <0.138.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:23:05.537 [info] <0.138.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:23:05.537 [warning] <0.136.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:23:05.537 [info] <0.138.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.138.0> -2014-07-16 16:23:05.538 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.136.0> -2014-07-16 16:23:05.538 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.129.0> exit with reason normal in context child_terminated -2014-07-16 16:23:05.539 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.129.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-16 16:23:05.545 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} -2014-07-16 16:23:05.545 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. -2014-07-16 16:23:05.545 [info] <0.2.0>@basho_bench:wait_for_stop:191 Test stopped: shutdown diff --git a/newtests/20140716_162303/crash.log b/newtests/20140716_162303/crash.log deleted file mode 100644 index f90553a61..000000000 --- a/newtests/20140716_162303/crash.log +++ /dev/null @@ -1,60 +0,0 @@ -2014-07-16 16:23:05 =ERROR REPORT==== -Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - -2014-07-16 16:23:05 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:23:05 =ERROR REPORT==== -Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - -2014-07-16 16:23:05 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:23:05 =ERROR REPORT==== -Error in process <0.117.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - -2014-07-16 16:23:05 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.116.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:23:05 =ERROR REPORT==== -Error in process <0.119.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - -2014-07-16 16:23:05 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.118.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:23:05 =ERROR REPORT==== -Error in process <0.124.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - -2014-07-16 16:23:05 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.123.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:23:05 =ERROR REPORT==== -Error in process <0.130.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - -2014-07-16 16:23:05 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.129.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:23:05 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.129.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140716_162303/error.log b/newtests/20140716_162303/error.log deleted file mode 100644 index bb83e5e1f..000000000 --- a/newtests/20140716_162303/error.log +++ /dev/null @@ -1,31 +0,0 @@ -2014-07-16 16:23:05.369 [error] emulator Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:23:05.369 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:23:05.370 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 16:23:05.374 [error] emulator Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:23:05.374 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:23:05.405 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-16 16:23:05.420 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:23:05.420 [error] emulator Error in process <0.117.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:23:05.438 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason normal in context child_terminated -2014-07-16 16:23:05.470 [error] <0.118.0>@basho_bench_worker:handle_info:149 Worker <0.119.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:23:05.470 [error] emulator Error in process <0.119.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:23:05.471 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.118.0> exit with reason normal in context child_terminated -2014-07-16 16:23:05.495 [error] <0.123.0>@basho_bench_worker:handle_info:149 Worker <0.124.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:23:05.495 [error] emulator Error in process <0.124.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:23:05.510 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.123.0> exit with reason normal in context child_terminated -2014-07-16 16:23:05.517 [error] emulator Error in process <0.130.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:23:05.517 [error] <0.129.0>@basho_bench_worker:handle_info:149 Worker <0.130.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:23:05.538 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.129.0> exit with reason normal in context child_terminated -2014-07-16 16:23:05.539 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.129.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_162303/errors.csv b/newtests/20140716_162303/errors.csv deleted file mode 100644 index 29210b502..000000000 --- a/newtests/20140716_162303/errors.csv +++ /dev/null @@ -1 +0,0 @@ -"error","count" diff --git a/newtests/20140716_162303/floppstore.config b/newtests/20140716_162303/floppstore.config deleted file mode 100644 index 55db32761..000000000 --- a/newtests/20140716_162303/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. - -{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. - -{operations, [{append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_162303/log.sasl.txt b/newtests/20140716_162303/log.sasl.txt deleted file mode 100644 index 630e3dc84..000000000 --- a/newtests/20140716_162303/log.sasl.txt +++ /dev/null @@ -1,336 +0,0 @@ - -=PROGRESS REPORT==== 16-Jul-2014::16:23:04 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:23:04 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:23:04 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::16:23:05 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:23:05 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::16:23:05 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:23:05 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::16:23:05 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::16:23:05 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:23:05 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:23:05 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::16:23:05 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:23:05 === - supervisor: {local,net_sup} - started: [{pid,<0.97.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:23:05 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:23:05 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:23:05 === - supervisor: {local,kernel_sup} - started: [{pid,<0.96.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::16:23:05 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 16-Jul-2014::16:23:05 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.103.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:23:05 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:23:05 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:23:05 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.109.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:23:05 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 16-Jul-2014::16:23:05 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:23:05 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.116.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:23:05 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:23:05 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.118.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:23:05 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.116.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:23:05 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.123.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:23:05 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.118.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:23:05 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.129.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:23:05 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.123.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:23:05 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.136.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:23:05 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.129.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 16-Jul-2014::16:23:05 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.129.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140716_162303/read_latencies.csv b/newtests/20140716_162303/read_latencies.csv deleted file mode 100644 index e4b609ce5..000000000 --- a/newtests/20140716_162303/read_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.227162, 0.227162, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140716_162303/summary.csv b/newtests/20140716_162303/summary.csv deleted file mode 100644 index 7471f51be..000000000 --- a/newtests/20140716_162303/summary.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, total, successful, failed -0.227162, 0.227162, 15, 15, 0 diff --git a/newtests/20140716_162722/append_latencies.csv b/newtests/20140716_162722/append_latencies.csv deleted file mode 100644 index 2e6fe0e85..000000000 --- a/newtests/20140716_162722/append_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.213608, 0.213608, 11, 1602, 9623.4, 1968, 38610, 38610, 38610, 38610, 0 diff --git a/newtests/20140716_162722/console.log b/newtests/20140716_162722/console.log deleted file mode 100644 index 767908b7f..000000000 --- a/newtests/20140716_162722/console.log +++ /dev/null @@ -1,100 +0,0 @@ -2014-07-16 16:27:22.284 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_162722/error.log"} into lager_event -2014-07-16 16:27:22.284 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_162722/console.log"} into lager_event -2014-07-16 16:27:22.284 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-16 16:27:22.318 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-16 16:27:22.318 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-16 16:27:22.318 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-16 16:27:22.318 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-16 16:27:22.760 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-16 16:27:23.140 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-16 16:27:23.142 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_162722/console.log to debug -2014-07-16 16:27:23.148 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} -2014-07-16 16:27:23.227 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-16 16:27:23.227 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-16 16:27:23.227 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-16 16:27:23.242 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-16 16:27:23.242 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-16 16:27:23.331 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-16 16:27:23.331 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-16 16:27:23.362 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-16 16:27:23.367 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-16 16:27:23.371 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-16 16:27:23.372 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-16 16:27:23.410 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-16 16:27:23.476 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> -2014-07-16 16:27:23.483 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> -2014-07-16 16:27:23.495 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-16 16:27:23.495 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> -2014-07-16 16:27:23.496 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> -2014-07-16 16:27:23.510 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> -2014-07-16 16:27:23.511 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> -2014-07-16 16:27:23.526 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:27:23.526 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:27:23.526 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-16 16:27:23.559 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:27:23.559 [info] <0.108.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:27:23.559 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> -2014-07-16 16:27:23.560 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> -2014-07-16 16:27:23.567 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> -2014-07-16 16:27:23.567 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> -2014-07-16 16:27:23.567 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-16 16:27:23.615 [error] emulator Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:27:23.615 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:27:23.616 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 16:27:23.619 [error] emulator Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:27:23.619 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:27:23.646 [info] <0.115.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:27:23.646 [info] <0.115.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:27:23.646 [warning] <0.114.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:27:23.646 [info] <0.115.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.115.0> -2014-07-16 16:27:23.647 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.114.0> -2014-07-16 16:27:23.647 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-16 16:27:23.671 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:27:23.671 [error] emulator Error in process <0.115.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:27:23.682 [info] <0.117.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:27:23.682 [info] <0.117.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:27:23.682 [warning] <0.116.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:27:23.682 [info] <0.117.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.117.0> -2014-07-16 16:27:23.683 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.116.0> -2014-07-16 16:27:23.683 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.114.0> exit with reason normal in context child_terminated -2014-07-16 16:27:23.691 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:27:23.691 [error] emulator Error in process <0.117.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:27:23.712 [info] <0.125.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:27:23.712 [info] <0.125.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:27:23.712 [warning] <0.123.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:27:23.712 [info] <0.125.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.125.0> -2014-07-16 16:27:23.712 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.123.0> -2014-07-16 16:27:23.713 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.116.0> exit with reason normal in context child_terminated -2014-07-16 16:27:23.721 [error] <0.123.0>@basho_bench_worker:handle_info:149 Worker <0.125.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:27:23.721 [error] emulator Error in process <0.125.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:27:23.744 [info] <0.129.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:27:23.744 [info] <0.129.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:27:23.744 [warning] <0.128.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:27:23.744 [info] <0.129.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.129.0> -2014-07-16 16:27:23.745 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.128.0> -2014-07-16 16:27:23.745 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.123.0> exit with reason normal in context child_terminated -2014-07-16 16:27:23.753 [error] emulator Error in process <0.129.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:27:23.753 [error] <0.128.0>@basho_bench_worker:handle_info:149 Worker <0.129.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:27:23.772 [info] <0.133.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:27:23.772 [info] <0.133.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:27:23.772 [warning] <0.132.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:27:23.772 [info] <0.133.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.133.0> -2014-07-16 16:27:23.773 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.132.0> -2014-07-16 16:27:23.773 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.128.0> exit with reason normal in context child_terminated -2014-07-16 16:27:23.774 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.128.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-16 16:27:23.781 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} -2014-07-16 16:27:23.781 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. diff --git a/newtests/20140716_162722/crash.log b/newtests/20140716_162722/crash.log deleted file mode 100644 index cf2ebaab1..000000000 --- a/newtests/20140716_162722/crash.log +++ /dev/null @@ -1,60 +0,0 @@ -2014-07-16 16:27:23 =ERROR REPORT==== -Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - -2014-07-16 16:27:23 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:27:23 =ERROR REPORT==== -Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - -2014-07-16 16:27:23 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:27:23 =ERROR REPORT==== -Error in process <0.115.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - -2014-07-16 16:27:23 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.114.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:27:23 =ERROR REPORT==== -Error in process <0.117.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - -2014-07-16 16:27:23 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.116.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:27:23 =ERROR REPORT==== -Error in process <0.125.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - -2014-07-16 16:27:23 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.123.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:27:23 =ERROR REPORT==== -Error in process <0.129.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - -2014-07-16 16:27:23 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.128.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:27:23 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.128.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140716_162722/error.log b/newtests/20140716_162722/error.log deleted file mode 100644 index 601d92587..000000000 --- a/newtests/20140716_162722/error.log +++ /dev/null @@ -1,31 +0,0 @@ -2014-07-16 16:27:23.615 [error] emulator Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:27:23.615 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:27:23.616 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 16:27:23.619 [error] emulator Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:27:23.619 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:27:23.647 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-16 16:27:23.671 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:27:23.671 [error] emulator Error in process <0.115.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:27:23.683 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.114.0> exit with reason normal in context child_terminated -2014-07-16 16:27:23.691 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:27:23.691 [error] emulator Error in process <0.117.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:27:23.713 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.116.0> exit with reason normal in context child_terminated -2014-07-16 16:27:23.721 [error] <0.123.0>@basho_bench_worker:handle_info:149 Worker <0.125.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:27:23.721 [error] emulator Error in process <0.125.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:27:23.745 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.123.0> exit with reason normal in context child_terminated -2014-07-16 16:27:23.753 [error] emulator Error in process <0.129.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:27:23.753 [error] <0.128.0>@basho_bench_worker:handle_info:149 Worker <0.129.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:27:23.773 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.128.0> exit with reason normal in context child_terminated -2014-07-16 16:27:23.774 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.128.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_162722/errors.csv b/newtests/20140716_162722/errors.csv deleted file mode 100644 index 29210b502..000000000 --- a/newtests/20140716_162722/errors.csv +++ /dev/null @@ -1 +0,0 @@ -"error","count" diff --git a/newtests/20140716_162722/floppstore.config b/newtests/20140716_162722/floppstore.config deleted file mode 100644 index 55db32761..000000000 --- a/newtests/20140716_162722/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. - -{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. - -{operations, [{append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_162722/log.sasl.txt b/newtests/20140716_162722/log.sasl.txt deleted file mode 100644 index ea44d72fe..000000000 --- a/newtests/20140716_162722/log.sasl.txt +++ /dev/null @@ -1,336 +0,0 @@ - -=PROGRESS REPORT==== 16-Jul-2014::16:27:23 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:27:23 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:27:23 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::16:27:23 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:27:23 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::16:27:23 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:27:23 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::16:27:23 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::16:27:23 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:27:23 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:27:23 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::16:27:23 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:27:23 === - supervisor: {local,net_sup} - started: [{pid,<0.97.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:27:23 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:27:23 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:27:23 === - supervisor: {local,kernel_sup} - started: [{pid,<0.96.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::16:27:23 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 16-Jul-2014::16:27:23 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.103.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:27:23 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:27:23 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:27:23 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.109.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:27:23 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 16-Jul-2014::16:27:23 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:27:23 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.114.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:27:23 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:27:23 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.116.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:27:23 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.114.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:27:23 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.123.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:27:23 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.116.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:27:23 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.128.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:27:23 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.123.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:27:23 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.132.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:27:23 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.128.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 16-Jul-2014::16:27:23 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.128.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140716_162722/read_latencies.csv b/newtests/20140716_162722/read_latencies.csv deleted file mode 100644 index 329ff6db8..000000000 --- a/newtests/20140716_162722/read_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.213608, 0.213608, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140716_162722/summary.csv b/newtests/20140716_162722/summary.csv deleted file mode 100644 index a1d9733b7..000000000 --- a/newtests/20140716_162722/summary.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, total, successful, failed -0.213608, 0.213608, 11, 11, 0 diff --git a/newtests/20140716_163000/append_latencies.csv b/newtests/20140716_163000/append_latencies.csv deleted file mode 100644 index f17aabb92..000000000 --- a/newtests/20140716_163000/append_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.239068, 0.239068, 12, 1714, 12061.4, 2123, 48490, 50550, 50550, 50550, 0 diff --git a/newtests/20140716_163000/console.log b/newtests/20140716_163000/console.log deleted file mode 100644 index 1184227f1..000000000 --- a/newtests/20140716_163000/console.log +++ /dev/null @@ -1,100 +0,0 @@ -2014-07-16 16:30:00.841 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_163000/error.log"} into lager_event -2014-07-16 16:30:00.841 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_163000/console.log"} into lager_event -2014-07-16 16:30:00.841 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-16 16:30:00.874 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-16 16:30:00.874 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-16 16:30:00.874 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-16 16:30:00.874 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-16 16:30:01.315 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-16 16:30:01.651 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-16 16:30:01.652 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_163000/console.log to debug -2014-07-16 16:30:01.659 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} -2014-07-16 16:30:01.733 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-16 16:30:01.733 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-16 16:30:01.734 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-16 16:30:01.747 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-16 16:30:01.747 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-16 16:30:01.821 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-16 16:30:01.821 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-16 16:30:01.846 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-16 16:30:01.850 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-16 16:30:01.854 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-16 16:30:01.854 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-16 16:30:01.882 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-16 16:30:01.947 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> -2014-07-16 16:30:01.954 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> -2014-07-16 16:30:01.971 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-16 16:30:01.971 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> -2014-07-16 16:30:01.972 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> -2014-07-16 16:30:01.986 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> -2014-07-16 16:30:01.986 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> -2014-07-16 16:30:02.000 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:30:02.000 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:30:02.001 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-16 16:30:02.029 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:30:02.029 [info] <0.108.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:30:02.029 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> -2014-07-16 16:30:02.030 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> -2014-07-16 16:30:02.036 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> -2014-07-16 16:30:02.036 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> -2014-07-16 16:30:02.037 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-16 16:30:02.107 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:30:02.108 [error] emulator Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:30:02.108 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 16:30:02.112 [error] emulator Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:30:02.112 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:30:02.140 [info] <0.118.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:30:02.140 [info] <0.118.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:30:02.141 [warning] <0.117.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:30:02.141 [info] <0.118.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.118.0> -2014-07-16 16:30:02.141 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.117.0> -2014-07-16 16:30:02.141 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-16 16:30:02.149 [error] <0.117.0>@basho_bench_worker:handle_info:149 Worker <0.118.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:30:02.149 [error] emulator Error in process <0.118.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:30:02.169 [info] <0.120.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:30:02.169 [info] <0.120.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:30:02.169 [warning] <0.119.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:30:02.169 [info] <0.120.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.120.0> -2014-07-16 16:30:02.170 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.119.0> -2014-07-16 16:30:02.170 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.117.0> exit with reason normal in context child_terminated -2014-07-16 16:30:02.185 [error] emulator Error in process <0.120.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:30:02.185 [error] <0.119.0>@basho_bench_worker:handle_info:149 Worker <0.120.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:30:02.206 [info] <0.124.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:30:02.206 [info] <0.124.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:30:02.206 [warning] <0.123.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:30:02.206 [info] <0.124.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.124.0> -2014-07-16 16:30:02.207 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.123.0> -2014-07-16 16:30:02.207 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.119.0> exit with reason normal in context child_terminated -2014-07-16 16:30:02.215 [error] <0.123.0>@basho_bench_worker:handle_info:149 Worker <0.124.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:30:02.215 [error] emulator Error in process <0.124.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:30:02.237 [info] <0.129.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:30:02.237 [info] <0.129.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:30:02.237 [warning] <0.128.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:30:02.237 [info] <0.129.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.129.0> -2014-07-16 16:30:02.238 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.128.0> -2014-07-16 16:30:02.238 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.123.0> exit with reason normal in context child_terminated -2014-07-16 16:30:02.252 [error] emulator Error in process <0.129.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:30:02.252 [error] <0.128.0>@basho_bench_worker:handle_info:149 Worker <0.129.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:30:02.268 [info] <0.134.0>@basho_bench_driver_floppystore:ping_each:133 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:30:02.268 [info] <0.134.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:30:02.268 [warning] <0.132.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:30:02.268 [info] <0.134.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.134.0> -2014-07-16 16:30:02.268 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.132.0> -2014-07-16 16:30:02.269 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.128.0> exit with reason normal in context child_terminated -2014-07-16 16:30:02.269 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.128.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-16 16:30:02.280 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} -2014-07-16 16:30:02.280 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. diff --git a/newtests/20140716_163000/crash.log b/newtests/20140716_163000/crash.log deleted file mode 100644 index d80e64b2b..000000000 --- a/newtests/20140716_163000/crash.log +++ /dev/null @@ -1,60 +0,0 @@ -2014-07-16 16:30:02 =ERROR REPORT==== -Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - -2014-07-16 16:30:02 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:30:02 =ERROR REPORT==== -Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - -2014-07-16 16:30:02 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:30:02 =ERROR REPORT==== -Error in process <0.118.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - -2014-07-16 16:30:02 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.117.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:30:02 =ERROR REPORT==== -Error in process <0.120.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - -2014-07-16 16:30:02 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.119.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:30:02 =ERROR REPORT==== -Error in process <0.124.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - -2014-07-16 16:30:02 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.123.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:30:02 =ERROR REPORT==== -Error in process <0.129.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - -2014-07-16 16:30:02 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.128.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:30:02 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.128.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140716_163000/error.log b/newtests/20140716_163000/error.log deleted file mode 100644 index e117159df..000000000 --- a/newtests/20140716_163000/error.log +++ /dev/null @@ -1,31 +0,0 @@ -2014-07-16 16:30:02.107 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:30:02.108 [error] emulator Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:30:02.108 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 16:30:02.112 [error] emulator Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:30:02.112 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:30:02.141 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-16 16:30:02.149 [error] <0.117.0>@basho_bench_worker:handle_info:149 Worker <0.118.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:30:02.149 [error] emulator Error in process <0.118.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:30:02.170 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.117.0> exit with reason normal in context child_terminated -2014-07-16 16:30:02.185 [error] emulator Error in process <0.120.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:30:02.185 [error] <0.119.0>@basho_bench_worker:handle_info:149 Worker <0.120.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:30:02.207 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.119.0> exit with reason normal in context child_terminated -2014-07-16 16:30:02.215 [error] <0.123.0>@basho_bench_worker:handle_info:149 Worker <0.124.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:30:02.215 [error] emulator Error in process <0.124.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:30:02.238 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.123.0> exit with reason normal in context child_terminated -2014-07-16 16:30:02.252 [error] emulator Error in process <0.129.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:30:02.252 [error] <0.128.0>@basho_bench_worker:handle_info:149 Worker <0.129.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:30:02.269 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.128.0> exit with reason normal in context child_terminated -2014-07-16 16:30:02.269 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.128.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_163000/errors.csv b/newtests/20140716_163000/errors.csv deleted file mode 100644 index 29210b502..000000000 --- a/newtests/20140716_163000/errors.csv +++ /dev/null @@ -1 +0,0 @@ -"error","count" diff --git a/newtests/20140716_163000/floppstore.config b/newtests/20140716_163000/floppstore.config deleted file mode 100644 index 55db32761..000000000 --- a/newtests/20140716_163000/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. - -{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. - -{operations, [{append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_163000/log.sasl.txt b/newtests/20140716_163000/log.sasl.txt deleted file mode 100644 index f691fae72..000000000 --- a/newtests/20140716_163000/log.sasl.txt +++ /dev/null @@ -1,336 +0,0 @@ - -=PROGRESS REPORT==== 16-Jul-2014::16:30:01 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:30:01 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:30:01 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::16:30:01 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:30:01 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::16:30:01 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:30:01 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::16:30:01 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::16:30:01 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:30:01 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:30:01 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::16:30:01 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:30:01 === - supervisor: {local,net_sup} - started: [{pid,<0.97.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:30:01 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:30:01 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:30:01 === - supervisor: {local,kernel_sup} - started: [{pid,<0.96.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::16:30:01 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 16-Jul-2014::16:30:01 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.103.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:30:02 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:30:02 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:30:02 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.109.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:30:02 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 16-Jul-2014::16:30:02 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:30:02 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.117.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:30:02 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:30:02 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.119.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:30:02 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.117.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:30:02 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.123.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:30:02 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.119.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:30:02 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.128.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:30:02 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.123.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:30:02 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.132.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:30:02 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.128.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 16-Jul-2014::16:30:02 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.128.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140716_163000/read_latencies.csv b/newtests/20140716_163000/read_latencies.csv deleted file mode 100644 index 25bd5d40f..000000000 --- a/newtests/20140716_163000/read_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.239068, 0.239068, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140716_163000/summary.csv b/newtests/20140716_163000/summary.csv deleted file mode 100644 index e175e6226..000000000 --- a/newtests/20140716_163000/summary.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, total, successful, failed -0.239068, 0.239068, 12, 12, 0 diff --git a/newtests/20140716_163347/append_latencies.csv b/newtests/20140716_163347/append_latencies.csv deleted file mode 100644 index 367e2259c..000000000 --- a/newtests/20140716_163347/append_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.250647, 0.250647, 10, 1627, 15953.0, 7248, 58147, 58147, 58147, 58147, 0 diff --git a/newtests/20140716_163347/console.log b/newtests/20140716_163347/console.log deleted file mode 100644 index 940d48f99..000000000 --- a/newtests/20140716_163347/console.log +++ /dev/null @@ -1,100 +0,0 @@ -2014-07-16 16:33:47.317 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_163347/error.log"} into lager_event -2014-07-16 16:33:47.317 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_163347/console.log"} into lager_event -2014-07-16 16:33:47.317 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-16 16:33:47.353 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-16 16:33:47.354 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-16 16:33:47.354 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-16 16:33:47.354 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-16 16:33:47.793 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-16 16:33:48.170 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-16 16:33:48.172 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_163347/console.log to debug -2014-07-16 16:33:48.179 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} -2014-07-16 16:33:48.269 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-16 16:33:48.269 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-16 16:33:48.270 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-16 16:33:48.284 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-16 16:33:48.285 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-16 16:33:48.374 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-16 16:33:48.374 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-16 16:33:48.401 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-16 16:33:48.406 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-16 16:33:48.412 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-16 16:33:48.412 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-16 16:33:48.450 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-16 16:33:48.512 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> -2014-07-16 16:33:48.521 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> -2014-07-16 16:33:48.535 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-16 16:33:48.535 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> -2014-07-16 16:33:48.536 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> -2014-07-16 16:33:48.551 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> -2014-07-16 16:33:48.552 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> -2014-07-16 16:33:48.567 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:33:48.567 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:33:48.568 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-16 16:33:48.596 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:33:48.596 [info] <0.108.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:33:48.596 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> -2014-07-16 16:33:48.596 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> -2014-07-16 16:33:48.602 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> -2014-07-16 16:33:48.602 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> -2014-07-16 16:33:48.603 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-16 16:33:48.636 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:33:48.636 [error] emulator Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:33:48.637 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 16:33:48.640 [error] emulator Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:33:48.640 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:33:48.670 [info] <0.115.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:33:48.670 [info] <0.115.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:33:48.670 [warning] <0.114.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:33:48.670 [info] <0.115.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.115.0> -2014-07-16 16:33:48.671 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.114.0> -2014-07-16 16:33:48.671 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-16 16:33:48.678 [error] emulator Error in process <0.115.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:33:48.678 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:33:48.704 [info] <0.118.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:33:48.704 [info] <0.118.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:33:48.704 [warning] <0.117.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:33:48.704 [info] <0.118.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.118.0> -2014-07-16 16:33:48.705 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.117.0> -2014-07-16 16:33:48.705 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.114.0> exit with reason normal in context child_terminated -2014-07-16 16:33:48.736 [info] <0.122.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:33:48.736 [info] <0.122.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:33:48.737 [warning] <0.120.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:33:48.737 [info] <0.122.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.122.0> -2014-07-16 16:33:48.737 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.120.0> -2014-07-16 16:33:48.782 [error] emulator Error in process <0.122.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:33:48.782 [error] <0.120.0>@basho_bench_worker:handle_info:149 Worker <0.122.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:33:48.783 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.120.0> exit with reason normal in context child_terminated -2014-07-16 16:33:48.788 [error] emulator Error in process <0.118.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:33:48.788 [error] <0.117.0>@basho_bench_worker:handle_info:149 Worker <0.118.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:33:48.818 [info] <0.130.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:33:48.818 [info] <0.130.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:33:48.818 [warning] <0.129.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:33:48.818 [info] <0.130.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.130.0> -2014-07-16 16:33:48.818 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.129.0> -2014-07-16 16:33:48.819 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.117.0> exit with reason normal in context child_terminated -2014-07-16 16:33:48.826 [error] emulator Error in process <0.130.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:33:48.826 [error] <0.129.0>@basho_bench_worker:handle_info:149 Worker <0.130.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:33:48.846 [info] <0.133.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:33:48.846 [info] <0.133.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:33:48.846 [warning] <0.131.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:33:48.846 [info] <0.133.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.133.0> -2014-07-16 16:33:48.847 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.131.0> -2014-07-16 16:33:48.847 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.129.0> exit with reason normal in context child_terminated -2014-07-16 16:33:48.848 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.129.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-16 16:33:48.855 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} -2014-07-16 16:33:48.855 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. diff --git a/newtests/20140716_163347/crash.log b/newtests/20140716_163347/crash.log deleted file mode 100644 index e3343912d..000000000 --- a/newtests/20140716_163347/crash.log +++ /dev/null @@ -1,60 +0,0 @@ -2014-07-16 16:33:48 =ERROR REPORT==== -Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - -2014-07-16 16:33:48 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:33:48 =ERROR REPORT==== -Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - -2014-07-16 16:33:48 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:33:48 =ERROR REPORT==== -Error in process <0.115.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - -2014-07-16 16:33:48 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.114.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:33:48 =ERROR REPORT==== -Error in process <0.122.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - -2014-07-16 16:33:48 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.120.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:33:48 =ERROR REPORT==== -Error in process <0.118.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - -2014-07-16 16:33:48 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.117.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:33:48 =ERROR REPORT==== -Error in process <0.130.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - -2014-07-16 16:33:48 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.129.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:33:48 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.129.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140716_163347/error.log b/newtests/20140716_163347/error.log deleted file mode 100644 index 514dc41a3..000000000 --- a/newtests/20140716_163347/error.log +++ /dev/null @@ -1,31 +0,0 @@ -2014-07-16 16:33:48.636 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:33:48.636 [error] emulator Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:33:48.637 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 16:33:48.640 [error] emulator Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:33:48.640 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:33:48.671 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-16 16:33:48.678 [error] emulator Error in process <0.115.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:33:48.678 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:33:48.705 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.114.0> exit with reason normal in context child_terminated -2014-07-16 16:33:48.782 [error] emulator Error in process <0.122.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:33:48.782 [error] <0.120.0>@basho_bench_worker:handle_info:149 Worker <0.122.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:33:48.783 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.120.0> exit with reason normal in context child_terminated -2014-07-16 16:33:48.788 [error] emulator Error in process <0.118.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:33:48.788 [error] <0.117.0>@basho_bench_worker:handle_info:149 Worker <0.118.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:33:48.819 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.117.0> exit with reason normal in context child_terminated -2014-07-16 16:33:48.826 [error] emulator Error in process <0.130.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:33:48.826 [error] <0.129.0>@basho_bench_worker:handle_info:149 Worker <0.130.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:33:48.847 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.129.0> exit with reason normal in context child_terminated -2014-07-16 16:33:48.848 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.129.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_163347/errors.csv b/newtests/20140716_163347/errors.csv deleted file mode 100644 index 29210b502..000000000 --- a/newtests/20140716_163347/errors.csv +++ /dev/null @@ -1 +0,0 @@ -"error","count" diff --git a/newtests/20140716_163347/floppstore.config b/newtests/20140716_163347/floppstore.config deleted file mode 100644 index 55db32761..000000000 --- a/newtests/20140716_163347/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. - -{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. - -{operations, [{append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_163347/log.sasl.txt b/newtests/20140716_163347/log.sasl.txt deleted file mode 100644 index 168228b8e..000000000 --- a/newtests/20140716_163347/log.sasl.txt +++ /dev/null @@ -1,336 +0,0 @@ - -=PROGRESS REPORT==== 16-Jul-2014::16:33:48 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:33:48 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:33:48 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::16:33:48 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:33:48 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::16:33:48 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:33:48 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::16:33:48 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::16:33:48 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:33:48 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:33:48 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::16:33:48 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:33:48 === - supervisor: {local,net_sup} - started: [{pid,<0.97.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:33:48 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:33:48 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:33:48 === - supervisor: {local,kernel_sup} - started: [{pid,<0.96.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::16:33:48 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 16-Jul-2014::16:33:48 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.103.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:33:48 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:33:48 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:33:48 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.109.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:33:48 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 16-Jul-2014::16:33:48 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:33:48 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.114.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:33:48 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:33:48 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.117.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:33:48 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.114.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:33:48 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.120.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:33:48 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.120.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:33:48 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.129.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:33:48 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.117.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:33:48 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.131.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:33:48 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.129.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 16-Jul-2014::16:33:48 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.129.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140716_163347/read_latencies.csv b/newtests/20140716_163347/read_latencies.csv deleted file mode 100644 index 714dbc67a..000000000 --- a/newtests/20140716_163347/read_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.250647, 0.250647, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140716_163347/summary.csv b/newtests/20140716_163347/summary.csv deleted file mode 100644 index 40f5277b4..000000000 --- a/newtests/20140716_163347/summary.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, total, successful, failed -0.250647, 0.250647, 10, 10, 0 diff --git a/newtests/20140716_163407/append_latencies.csv b/newtests/20140716_163407/append_latencies.csv deleted file mode 100644 index 74322ee6a..000000000 --- a/newtests/20140716_163407/append_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.244133, 0.244133, 14, 1402, 7715.2, 1981, 7116, 55474, 55474, 55474, 0 diff --git a/newtests/20140716_163407/console.log b/newtests/20140716_163407/console.log deleted file mode 100644 index d841f69d4..000000000 --- a/newtests/20140716_163407/console.log +++ /dev/null @@ -1,100 +0,0 @@ -2014-07-16 16:34:07.482 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_163407/error.log"} into lager_event -2014-07-16 16:34:07.482 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_163407/console.log"} into lager_event -2014-07-16 16:34:07.482 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-16 16:34:07.515 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-16 16:34:07.515 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-16 16:34:07.515 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-16 16:34:07.515 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-16 16:34:07.956 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-16 16:34:08.367 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-16 16:34:08.369 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_163407/console.log to debug -2014-07-16 16:34:08.376 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} -2014-07-16 16:34:08.455 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-16 16:34:08.455 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-16 16:34:08.456 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-16 16:34:08.473 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-16 16:34:08.473 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-16 16:34:08.558 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-16 16:34:08.558 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-16 16:34:08.586 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-16 16:34:08.590 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-16 16:34:08.594 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-16 16:34:08.595 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-16 16:34:08.626 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-16 16:34:08.691 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> -2014-07-16 16:34:08.698 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> -2014-07-16 16:34:08.711 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-16 16:34:08.712 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> -2014-07-16 16:34:08.712 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> -2014-07-16 16:34:08.728 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> -2014-07-16 16:34:08.728 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> -2014-07-16 16:34:08.742 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:34:08.742 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:34:08.743 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-16 16:34:08.768 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:34:08.768 [info] <0.108.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:34:08.769 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> -2014-07-16 16:34:08.769 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> -2014-07-16 16:34:08.774 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> -2014-07-16 16:34:08.774 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> -2014-07-16 16:34:08.775 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-16 16:34:08.844 [error] emulator Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:34:08.844 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:34:08.845 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 16:34:08.849 [error] emulator Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:34:08.849 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:34:08.872 [info] <0.116.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:34:08.872 [info] <0.116.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:34:08.872 [warning] <0.115.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:34:08.872 [info] <0.116.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.116.0> -2014-07-16 16:34:08.873 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.115.0> -2014-07-16 16:34:08.874 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-16 16:34:08.895 [error] <0.115.0>@basho_bench_worker:handle_info:149 Worker <0.116.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:34:08.895 [error] emulator Error in process <0.116.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:34:08.910 [info] <0.119.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:34:08.910 [info] <0.119.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:34:08.910 [warning] <0.117.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:34:08.910 [info] <0.119.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.119.0> -2014-07-16 16:34:08.910 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.117.0> -2014-07-16 16:34:08.911 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.115.0> exit with reason normal in context child_terminated -2014-07-16 16:34:08.918 [error] emulator Error in process <0.119.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:34:08.918 [error] <0.117.0>@basho_bench_worker:handle_info:149 Worker <0.119.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:34:08.943 [info] <0.125.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:34:08.943 [info] <0.125.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:34:08.943 [warning] <0.123.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:34:08.943 [info] <0.125.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.125.0> -2014-07-16 16:34:08.944 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.123.0> -2014-07-16 16:34:08.944 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.117.0> exit with reason normal in context child_terminated -2014-07-16 16:34:08.951 [error] emulator Error in process <0.125.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:34:08.951 [error] <0.123.0>@basho_bench_worker:handle_info:149 Worker <0.125.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:34:08.973 [info] <0.129.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:34:08.973 [info] <0.129.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:34:08.973 [warning] <0.127.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:34:08.973 [info] <0.129.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.129.0> -2014-07-16 16:34:08.973 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.127.0> -2014-07-16 16:34:08.974 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.123.0> exit with reason normal in context child_terminated -2014-07-16 16:34:09.003 [error] emulator Error in process <0.129.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:34:09.003 [error] <0.127.0>@basho_bench_worker:handle_info:149 Worker <0.129.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:34:09.012 [info] <0.133.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:34:09.012 [info] <0.133.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:34:09.012 [warning] <0.131.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:34:09.012 [info] <0.133.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.133.0> -2014-07-16 16:34:09.013 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.131.0> -2014-07-16 16:34:09.014 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.127.0> exit with reason normal in context child_terminated -2014-07-16 16:34:09.014 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.127.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-16 16:34:09.021 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} -2014-07-16 16:34:09.021 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. diff --git a/newtests/20140716_163407/crash.log b/newtests/20140716_163407/crash.log deleted file mode 100644 index f6b3d38c3..000000000 --- a/newtests/20140716_163407/crash.log +++ /dev/null @@ -1,60 +0,0 @@ -2014-07-16 16:34:08 =ERROR REPORT==== -Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - -2014-07-16 16:34:08 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:34:08 =ERROR REPORT==== -Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - -2014-07-16 16:34:08 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:34:08 =ERROR REPORT==== -Error in process <0.116.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - -2014-07-16 16:34:08 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.115.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:34:08 =ERROR REPORT==== -Error in process <0.119.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - -2014-07-16 16:34:08 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.117.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:34:08 =ERROR REPORT==== -Error in process <0.125.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - -2014-07-16 16:34:08 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.123.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:34:09 =ERROR REPORT==== -Error in process <0.129.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - -2014-07-16 16:34:09 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.127.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:34:09 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.127.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140716_163407/error.log b/newtests/20140716_163407/error.log deleted file mode 100644 index 1f50ecdb4..000000000 --- a/newtests/20140716_163407/error.log +++ /dev/null @@ -1,31 +0,0 @@ -2014-07-16 16:34:08.844 [error] emulator Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:34:08.844 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:34:08.845 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 16:34:08.849 [error] emulator Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:34:08.849 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:34:08.874 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-16 16:34:08.895 [error] <0.115.0>@basho_bench_worker:handle_info:149 Worker <0.116.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:34:08.895 [error] emulator Error in process <0.116.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:34:08.911 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.115.0> exit with reason normal in context child_terminated -2014-07-16 16:34:08.918 [error] emulator Error in process <0.119.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:34:08.918 [error] <0.117.0>@basho_bench_worker:handle_info:149 Worker <0.119.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:34:08.944 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.117.0> exit with reason normal in context child_terminated -2014-07-16 16:34:08.951 [error] emulator Error in process <0.125.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:34:08.951 [error] <0.123.0>@basho_bench_worker:handle_info:149 Worker <0.125.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:34:08.974 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.123.0> exit with reason normal in context child_terminated -2014-07-16 16:34:09.003 [error] emulator Error in process <0.129.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 16:34:09.003 [error] <0.127.0>@basho_bench_worker:handle_info:149 Worker <0.129.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:34:09.014 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.127.0> exit with reason normal in context child_terminated -2014-07-16 16:34:09.014 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.127.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_163407/errors.csv b/newtests/20140716_163407/errors.csv deleted file mode 100644 index 29210b502..000000000 --- a/newtests/20140716_163407/errors.csv +++ /dev/null @@ -1 +0,0 @@ -"error","count" diff --git a/newtests/20140716_163407/floppstore.config b/newtests/20140716_163407/floppstore.config deleted file mode 100644 index 55db32761..000000000 --- a/newtests/20140716_163407/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. - -{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. - -{operations, [{append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_163407/log.sasl.txt b/newtests/20140716_163407/log.sasl.txt deleted file mode 100644 index e85c7452e..000000000 --- a/newtests/20140716_163407/log.sasl.txt +++ /dev/null @@ -1,336 +0,0 @@ - -=PROGRESS REPORT==== 16-Jul-2014::16:34:08 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:34:08 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:34:08 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::16:34:08 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:34:08 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::16:34:08 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:34:08 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::16:34:08 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::16:34:08 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:34:08 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:34:08 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::16:34:08 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:34:08 === - supervisor: {local,net_sup} - started: [{pid,<0.97.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:34:08 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:34:08 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:34:08 === - supervisor: {local,kernel_sup} - started: [{pid,<0.96.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::16:34:08 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 16-Jul-2014::16:34:08 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.103.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:34:08 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:34:08 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:34:08 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.109.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:34:08 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 16-Jul-2014::16:34:08 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:34:08 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.115.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:34:08 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:34:08 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.117.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:34:08 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.115.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:34:08 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.123.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:34:08 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.117.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:34:08 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.127.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:34:08 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.123.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:34:09 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.131.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:34:09 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.127.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 16-Jul-2014::16:34:09 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.127.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140716_163407/read_latencies.csv b/newtests/20140716_163407/read_latencies.csv deleted file mode 100644 index 0138ea5b7..000000000 --- a/newtests/20140716_163407/read_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.244133, 0.244133, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140716_163407/summary.csv b/newtests/20140716_163407/summary.csv deleted file mode 100644 index 58b1cb6a9..000000000 --- a/newtests/20140716_163407/summary.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, total, successful, failed -0.244133, 0.244133, 14, 14, 0 diff --git a/newtests/20140716_164802/append_latencies.csv b/newtests/20140716_164802/append_latencies.csv deleted file mode 100644 index 88ab9dcab..000000000 --- a/newtests/20140716_164802/append_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -4.26656, 4.26656, 2088, 1004, 2154.4, 1676, 3533, 9776, 19339, 44735, 6 diff --git a/newtests/20140716_164802/console.log b/newtests/20140716_164802/console.log deleted file mode 100644 index 4761b399f..000000000 --- a/newtests/20140716_164802/console.log +++ /dev/null @@ -1,89 +0,0 @@ -2014-07-16 16:48:02.214 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_164802/error.log"} into lager_event -2014-07-16 16:48:02.214 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_164802/console.log"} into lager_event -2014-07-16 16:48:02.214 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-16 16:48:02.246 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-16 16:48:02.246 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-16 16:48:02.247 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-16 16:48:02.247 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-16 16:48:02.691 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-16 16:48:03.012 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-16 16:48:03.013 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_164802/console.log to debug -2014-07-16 16:48:03.019 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} -2014-07-16 16:48:03.095 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-16 16:48:03.096 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-16 16:48:03.096 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-16 16:48:03.110 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-16 16:48:03.110 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-16 16:48:03.193 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-16 16:48:03.194 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-16 16:48:03.221 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-16 16:48:03.226 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-16 16:48:03.230 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-16 16:48:03.230 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-16 16:48:03.268 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-16 16:48:03.330 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> -2014-07-16 16:48:03.336 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> -2014-07-16 16:48:03.351 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-16 16:48:03.351 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> -2014-07-16 16:48:03.352 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> -2014-07-16 16:48:03.365 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> -2014-07-16 16:48:03.365 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> -2014-07-16 16:48:03.379 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:48:03.379 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:48:03.380 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-16 16:48:03.413 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:48:03.413 [info] <0.108.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:48:03.413 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> -2014-07-16 16:48:03.414 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> -2014-07-16 16:48:03.420 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> -2014-07-16 16:48:03.420 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> -2014-07-16 16:48:03.420 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-16 16:48:05.698 [debug] <0.108.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{dict,fetch,[[riak_dt_gcounter],{dict,2,16,16,8,80,48,{[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]},{{[],[],[[riak_dt_gcounter,increment]],[],[[riak_dt_gset,add]],[],[],[],[],[],[],[],[],[],[],[]}}}],[{file,"dict.erl"},{line,126}]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,146}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,101}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:48:05.698 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash -2014-07-16 16:48:05.698 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-16 16:48:05.752 [info] <0.2147.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:48:05.752 [info] <0.2147.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:48:05.752 [warning] <0.2146.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:48:05.752 [info] <0.2147.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.2147.0> -2014-07-16 16:48:05.753 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.2146.0> -2014-07-16 16:48:06.233 [debug] <0.2147.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{dict,fetch,[[riak_dt_gset],{dict,2,16,16,8,80,48,{[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]},{{[],[],[[riak_dt_gcounter,increment]],[],[[riak_dt_gset,add]],[],[],[],[],[],[],[],[],[],[],[]}}}],[{file,"dict.erl"},{line,126}]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,146}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,101}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:48:06.233 [error] <0.2146.0>@basho_bench_worker:handle_info:149 Worker <0.2147.0> exited with crash -2014-07-16 16:48:06.234 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.2146.0> exit with reason normal in context child_terminated -2014-07-16 16:48:06.287 [info] <0.2722.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:48:06.287 [info] <0.2722.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:48:06.287 [warning] <0.2720.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:48:06.287 [info] <0.2722.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.2722.0> -2014-07-16 16:48:06.288 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.2720.0> -2014-07-16 16:48:06.823 [debug] <0.2722.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{dict,fetch,[[riak_dt_gset],{dict,2,16,16,8,80,48,{[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]},{{[],[],[[riak_dt_gcounter,increment]],[],[[riak_dt_gset,add]],[],[],[],[],[],[],[],[],[],[],[]}}}],[{file,"dict.erl"},{line,126}]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,146}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,101}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:48:06.823 [error] <0.2720.0>@basho_bench_worker:handle_info:149 Worker <0.2722.0> exited with crash -2014-07-16 16:48:06.824 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.2720.0> exit with reason normal in context child_terminated -2014-07-16 16:48:06.871 [info] <0.3369.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:48:06.871 [info] <0.3369.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:48:06.871 [warning] <0.3368.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:48:06.871 [info] <0.3369.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.3369.0> -2014-07-16 16:48:06.872 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.3368.0> -2014-07-16 16:48:06.896 [debug] <0.95.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{dict,fetch,[[riak_dt_gcounter],{dict,2,16,16,8,80,48,{[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]},{{[],[],[[riak_dt_gcounter,increment]],[],[[riak_dt_gset,add]],[],[],[],[],[],[],[],[],[],[],[]}}}],[{file,"dict.erl"},{line,126}]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,146}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,101}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:48:06.896 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash -2014-07-16 16:48:06.897 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 16:48:06.938 [info] <0.3432.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:48:06.938 [info] <0.3432.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:48:06.939 [warning] <0.3431.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:48:06.939 [info] <0.3432.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.3432.0> -2014-07-16 16:48:06.939 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.3431.0> -2014-07-16 16:48:06.986 [debug] <0.3369.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{dict,fetch,[[riak_dt_gset],{dict,2,16,16,8,80,48,{[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]},{{[],[],[[riak_dt_gcounter,increment]],[],[[riak_dt_gset,add]],[],[],[],[],[],[],[],[],[],[],[]}}}],[{file,"dict.erl"},{line,126}]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,146}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,101}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:48:06.986 [error] <0.3368.0>@basho_bench_worker:handle_info:149 Worker <0.3369.0> exited with crash -2014-07-16 16:48:06.987 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.3368.0> exit with reason normal in context child_terminated -2014-07-16 16:48:07.034 [info] <0.3514.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:48:07.034 [info] <0.3514.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:48:07.034 [warning] <0.3512.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:48:07.034 [info] <0.3514.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.3514.0> -2014-07-16 16:48:07.034 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.3512.0> -2014-07-16 16:48:07.679 [debug] <0.3432.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{dict,fetch,[[riak_dt_gcounter],{dict,2,16,16,8,80,48,{[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]},{{[],[],[[riak_dt_gcounter,increment]],[],[[riak_dt_gset,add]],[],[],[],[],[],[],[],[],[],[],[]}}}],[{file,"dict.erl"},{line,126}]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,146}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,101}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:48:07.679 [error] <0.3431.0>@basho_bench_worker:handle_info:149 Worker <0.3432.0> exited with crash -2014-07-16 16:48:07.680 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.3431.0> exit with reason normal in context child_terminated -2014-07-16 16:48:07.681 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.3431.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-16 16:48:07.697 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{append,append},6},{{{append,append},crash},6}] -2014-07-16 16:48:07.697 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: -2014-07-16 16:48:07.697 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{append,append},crash}: 6 diff --git a/newtests/20140716_164802/crash.log b/newtests/20140716_164802/crash.log deleted file mode 100644 index 1f14540ef..000000000 --- a/newtests/20140716_164802/crash.log +++ /dev/null @@ -1,42 +0,0 @@ -2014-07-16 16:48:05 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:48:06 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.2146.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:48:06 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.2720.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:48:06 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:48:06 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.3368.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:48:07 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.3431.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:48:07 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.3431.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140716_164802/error.log b/newtests/20140716_164802/error.log deleted file mode 100644 index 09928cf80..000000000 --- a/newtests/20140716_164802/error.log +++ /dev/null @@ -1,13 +0,0 @@ -2014-07-16 16:48:05.698 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash -2014-07-16 16:48:05.698 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-16 16:48:06.233 [error] <0.2146.0>@basho_bench_worker:handle_info:149 Worker <0.2147.0> exited with crash -2014-07-16 16:48:06.234 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.2146.0> exit with reason normal in context child_terminated -2014-07-16 16:48:06.823 [error] <0.2720.0>@basho_bench_worker:handle_info:149 Worker <0.2722.0> exited with crash -2014-07-16 16:48:06.824 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.2720.0> exit with reason normal in context child_terminated -2014-07-16 16:48:06.896 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash -2014-07-16 16:48:06.897 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 16:48:06.986 [error] <0.3368.0>@basho_bench_worker:handle_info:149 Worker <0.3369.0> exited with crash -2014-07-16 16:48:06.987 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.3368.0> exit with reason normal in context child_terminated -2014-07-16 16:48:07.679 [error] <0.3431.0>@basho_bench_worker:handle_info:149 Worker <0.3432.0> exited with crash -2014-07-16 16:48:07.680 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.3431.0> exit with reason normal in context child_terminated -2014-07-16 16:48:07.681 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.3431.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_164802/errors.csv b/newtests/20140716_164802/errors.csv deleted file mode 100644 index dc786eb57..000000000 --- a/newtests/20140716_164802/errors.csv +++ /dev/null @@ -1,2 +0,0 @@ -"error","count" -"{{append,append},crash}","6" diff --git a/newtests/20140716_164802/floppstore.config b/newtests/20140716_164802/floppstore.config deleted file mode 100644 index 55db32761..000000000 --- a/newtests/20140716_164802/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. - -{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. - -{operations, [{append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_164802/log.sasl.txt b/newtests/20140716_164802/log.sasl.txt deleted file mode 100644 index 9abd86368..000000000 --- a/newtests/20140716_164802/log.sasl.txt +++ /dev/null @@ -1,336 +0,0 @@ - -=PROGRESS REPORT==== 16-Jul-2014::16:48:03 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:48:03 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:48:03 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::16:48:03 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:48:03 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::16:48:03 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:48:03 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::16:48:03 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::16:48:03 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:48:03 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:48:03 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::16:48:03 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:48:03 === - supervisor: {local,net_sup} - started: [{pid,<0.97.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:48:03 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:48:03 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:48:03 === - supervisor: {local,kernel_sup} - started: [{pid,<0.96.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::16:48:03 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 16-Jul-2014::16:48:03 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.103.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:48:03 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:48:03 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:48:03 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.109.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:48:03 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 16-Jul-2014::16:48:05 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:48:05 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.2146.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:48:06 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.2146.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:48:06 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.2720.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:48:06 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.2720.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:48:06 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.3368.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:48:06 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:48:06 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.3431.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:48:06 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.3368.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:48:07 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.3512.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:48:07 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.3431.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 16-Jul-2014::16:48:07 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.3431.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140716_164802/read_latencies.csv b/newtests/20140716_164802/read_latencies.csv deleted file mode 100644 index 29d0b4351..000000000 --- a/newtests/20140716_164802/read_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -4.26656, 4.26656, 2078, 905, 1769.3, 1436, 2555, 5912, 44323, 48794, 0 diff --git a/newtests/20140716_164802/summary.csv b/newtests/20140716_164802/summary.csv deleted file mode 100644 index a93bf37de..000000000 --- a/newtests/20140716_164802/summary.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, total, successful, failed -4.26656, 4.26656, 4172, 4166, 6 diff --git a/newtests/20140716_165104/append_latencies.csv b/newtests/20140716_165104/append_latencies.csv deleted file mode 100644 index ff1f5ab35..000000000 --- a/newtests/20140716_165104/append_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -2.751539, 2.751539, 1492, 939, 1796.4, 1581, 2592, 2970, 9077, 11182, 6 diff --git a/newtests/20140716_165104/console.log b/newtests/20140716_165104/console.log deleted file mode 100644 index 4d4eb9bfc..000000000 --- a/newtests/20140716_165104/console.log +++ /dev/null @@ -1,89 +0,0 @@ -2014-07-16 16:51:04.372 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_165104/error.log"} into lager_event -2014-07-16 16:51:04.372 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_165104/console.log"} into lager_event -2014-07-16 16:51:04.372 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-16 16:51:04.405 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-16 16:51:04.405 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-16 16:51:04.405 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-16 16:51:04.405 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-16 16:51:04.849 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-16 16:51:05.210 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-16 16:51:05.211 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_165104/console.log to debug -2014-07-16 16:51:05.218 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} -2014-07-16 16:51:05.296 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-16 16:51:05.296 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-16 16:51:05.296 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-16 16:51:05.310 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-16 16:51:05.310 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-16 16:51:05.400 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-16 16:51:05.400 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-16 16:51:05.433 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-16 16:51:05.437 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-16 16:51:05.441 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-16 16:51:05.441 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-16 16:51:05.471 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-16 16:51:05.536 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> -2014-07-16 16:51:05.543 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> -2014-07-16 16:51:05.555 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-16 16:51:05.555 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> -2014-07-16 16:51:05.556 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> -2014-07-16 16:51:05.574 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> -2014-07-16 16:51:05.574 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> -2014-07-16 16:51:05.590 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:51:05.590 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:51:05.591 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-16 16:51:05.617 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:51:05.617 [info] <0.108.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:51:05.618 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> -2014-07-16 16:51:05.618 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> -2014-07-16 16:51:05.623 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> -2014-07-16 16:51:05.623 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> -2014-07-16 16:51:05.623 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-16 16:51:05.954 [debug] <0.95.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{dict,fetch,[[riak_dt_gset],{dict,2,16,16,8,80,48,{[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]},{{[],[],[[riak_dt_gcounter,increment]],[],[[riak_dt_gset,add]],[],[],[],[],[],[],[],[],[],[],[]}}}],[{file,"dict.erl"},{line,126}]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,146}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,101}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:51:05.954 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash -2014-07-16 16:51:05.955 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 16:51:06.001 [info] <0.485.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:51:06.001 [info] <0.485.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:51:06.001 [warning] <0.484.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:51:06.001 [info] <0.485.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.485.0> -2014-07-16 16:51:06.002 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.484.0> -2014-07-16 16:51:06.368 [debug] <0.485.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{dict,fetch,[[riak_dt_gset],{dict,2,16,16,8,80,48,{[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]},{{[],[],[[riak_dt_gcounter,increment]],[],[[riak_dt_gset,add]],[],[],[],[],[],[],[],[],[],[],[]}}}],[{file,"dict.erl"},{line,126}]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,146}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,101}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:51:06.368 [error] <0.484.0>@basho_bench_worker:handle_info:149 Worker <0.485.0> exited with crash -2014-07-16 16:51:06.374 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.484.0> exit with reason normal in context child_terminated -2014-07-16 16:51:06.421 [info] <0.950.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:51:06.421 [info] <0.950.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:51:06.421 [warning] <0.949.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:51:06.422 [info] <0.950.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.950.0> -2014-07-16 16:51:06.422 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.949.0> -2014-07-16 16:51:06.773 [debug] <0.108.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{dict,fetch,[[riak_dt_gset],{dict,2,16,16,8,80,48,{[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]},{{[],[],[[riak_dt_gcounter,increment]],[],[[riak_dt_gset,add]],[],[],[],[],[],[],[],[],[],[],[]}}}],[{file,"dict.erl"},{line,126}]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,146}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,101}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:51:06.773 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash -2014-07-16 16:51:06.779 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-16 16:51:06.824 [info] <0.1365.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:51:06.824 [info] <0.1365.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:51:06.824 [warning] <0.1364.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:51:06.824 [info] <0.1365.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.1365.0> -2014-07-16 16:51:06.825 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.1364.0> -2014-07-16 16:51:07.672 [debug] <0.950.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{dict,fetch,[[riak_dt_gcounter],{dict,2,16,16,8,80,48,{[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]},{{[],[],[[riak_dt_gcounter,increment]],[],[[riak_dt_gset,add]],[],[],[],[],[],[],[],[],[],[],[]}}}],[{file,"dict.erl"},{line,126}]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,146}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,101}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:51:07.672 [error] <0.949.0>@basho_bench_worker:handle_info:149 Worker <0.950.0> exited with crash -2014-07-16 16:51:07.679 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.949.0> exit with reason normal in context child_terminated -2014-07-16 16:51:07.725 [info] <0.2391.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:51:07.725 [info] <0.2391.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:51:07.725 [warning] <0.2390.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:51:07.725 [info] <0.2391.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.2391.0> -2014-07-16 16:51:07.726 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.2390.0> -2014-07-16 16:51:08.213 [debug] <0.2391.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{dict,fetch,[[riak_dt_gcounter],{dict,2,16,16,8,80,48,{[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]},{{[],[],[[riak_dt_gcounter,increment]],[],[[riak_dt_gset,add]],[],[],[],[],[],[],[],[],[],[],[]}}}],[{file,"dict.erl"},{line,126}]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,146}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,101}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:51:08.213 [error] <0.2390.0>@basho_bench_worker:handle_info:149 Worker <0.2391.0> exited with crash -2014-07-16 16:51:08.220 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.2390.0> exit with reason normal in context child_terminated -2014-07-16 16:51:08.264 [info] <0.3002.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:51:08.264 [info] <0.3002.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:51:08.264 [warning] <0.3001.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:51:08.264 [info] <0.3002.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.3002.0> -2014-07-16 16:51:08.264 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.3001.0> -2014-07-16 16:51:08.368 [debug] <0.1365.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{dict,fetch,[[riak_dt_gset],{dict,2,16,16,8,80,48,{[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]},{{[],[],[[riak_dt_gcounter,increment]],[],[[riak_dt_gset,add]],[],[],[],[],[],[],[],[],[],[],[]}}}],[{file,"dict.erl"},{line,126}]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,146}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,101}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:51:08.369 [error] <0.1364.0>@basho_bench_worker:handle_info:149 Worker <0.1365.0> exited with crash -2014-07-16 16:51:08.369 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.1364.0> exit with reason normal in context child_terminated -2014-07-16 16:51:08.370 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.1364.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-16 16:51:08.383 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{append,append},6},{{{append,append},crash},6}] -2014-07-16 16:51:08.383 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: -2014-07-16 16:51:08.383 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{append,append},crash}: 6 diff --git a/newtests/20140716_165104/crash.log b/newtests/20140716_165104/crash.log deleted file mode 100644 index 0cde45917..000000000 --- a/newtests/20140716_165104/crash.log +++ /dev/null @@ -1,42 +0,0 @@ -2014-07-16 16:51:05 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:51:06 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.484.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:51:06 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:51:07 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.949.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:51:08 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.2390.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:51:08 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.1364.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:51:08 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.1364.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140716_165104/error.log b/newtests/20140716_165104/error.log deleted file mode 100644 index 51d5447ba..000000000 --- a/newtests/20140716_165104/error.log +++ /dev/null @@ -1,13 +0,0 @@ -2014-07-16 16:51:05.954 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash -2014-07-16 16:51:05.955 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 16:51:06.368 [error] <0.484.0>@basho_bench_worker:handle_info:149 Worker <0.485.0> exited with crash -2014-07-16 16:51:06.374 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.484.0> exit with reason normal in context child_terminated -2014-07-16 16:51:06.773 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash -2014-07-16 16:51:06.779 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-16 16:51:07.672 [error] <0.949.0>@basho_bench_worker:handle_info:149 Worker <0.950.0> exited with crash -2014-07-16 16:51:07.679 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.949.0> exit with reason normal in context child_terminated -2014-07-16 16:51:08.213 [error] <0.2390.0>@basho_bench_worker:handle_info:149 Worker <0.2391.0> exited with crash -2014-07-16 16:51:08.220 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.2390.0> exit with reason normal in context child_terminated -2014-07-16 16:51:08.369 [error] <0.1364.0>@basho_bench_worker:handle_info:149 Worker <0.1365.0> exited with crash -2014-07-16 16:51:08.369 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.1364.0> exit with reason normal in context child_terminated -2014-07-16 16:51:08.370 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.1364.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_165104/errors.csv b/newtests/20140716_165104/errors.csv deleted file mode 100644 index dc786eb57..000000000 --- a/newtests/20140716_165104/errors.csv +++ /dev/null @@ -1,2 +0,0 @@ -"error","count" -"{{append,append},crash}","6" diff --git a/newtests/20140716_165104/floppstore.config b/newtests/20140716_165104/floppstore.config deleted file mode 100644 index 55db32761..000000000 --- a/newtests/20140716_165104/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. - -{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. - -{operations, [{append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_165104/log.sasl.txt b/newtests/20140716_165104/log.sasl.txt deleted file mode 100644 index bbfc6e171..000000000 --- a/newtests/20140716_165104/log.sasl.txt +++ /dev/null @@ -1,336 +0,0 @@ - -=PROGRESS REPORT==== 16-Jul-2014::16:51:05 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:51:05 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:51:05 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::16:51:05 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:51:05 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::16:51:05 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:51:05 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::16:51:05 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::16:51:05 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:51:05 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:51:05 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::16:51:05 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:51:05 === - supervisor: {local,net_sup} - started: [{pid,<0.97.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:51:05 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:51:05 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:51:05 === - supervisor: {local,kernel_sup} - started: [{pid,<0.96.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::16:51:05 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 16-Jul-2014::16:51:05 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.103.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:51:05 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:51:05 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:51:05 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.109.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:51:05 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 16-Jul-2014::16:51:05 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:51:06 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.484.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:51:06 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.484.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:51:06 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.949.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:51:06 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:51:06 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.1364.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:51:07 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.949.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:51:07 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.2390.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:51:08 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.2390.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:51:08 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.3001.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:51:08 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.1364.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 16-Jul-2014::16:51:08 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.1364.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140716_165104/read_latencies.csv b/newtests/20140716_165104/read_latencies.csv deleted file mode 100644 index d74c41794..000000000 --- a/newtests/20140716_165104/read_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -2.751539, 2.751539, 1552, 856, 1599.0, 1399, 2402, 2690, 4097, 9238, 0 diff --git a/newtests/20140716_165104/summary.csv b/newtests/20140716_165104/summary.csv deleted file mode 100644 index 36876970a..000000000 --- a/newtests/20140716_165104/summary.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, total, successful, failed -2.751539, 2.751539, 3050, 3044, 6 diff --git a/newtests/20140716_165306/append_latencies.csv b/newtests/20140716_165306/append_latencies.csv deleted file mode 100644 index d2eaab382..000000000 --- a/newtests/20140716_165306/append_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -2.696005, 2.696005, 1497, 1024, 1808.2, 1632, 2619, 3025, 4504, 4506, 5 diff --git a/newtests/20140716_165306/console.log b/newtests/20140716_165306/console.log deleted file mode 100644 index fbc0cc3fc..000000000 --- a/newtests/20140716_165306/console.log +++ /dev/null @@ -1,91 +0,0 @@ -2014-07-16 16:53:06.289 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_165306/error.log"} into lager_event -2014-07-16 16:53:06.289 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_165306/console.log"} into lager_event -2014-07-16 16:53:06.289 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-16 16:53:06.323 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-16 16:53:06.323 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-16 16:53:06.323 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-16 16:53:06.323 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-16 16:53:06.765 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-16 16:53:07.059 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-16 16:53:07.060 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_165306/console.log to debug -2014-07-16 16:53:07.066 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} -2014-07-16 16:53:07.134 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-16 16:53:07.134 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-16 16:53:07.134 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-16 16:53:07.147 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-16 16:53:07.148 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-16 16:53:07.222 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-16 16:53:07.222 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-16 16:53:07.253 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-16 16:53:07.257 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-16 16:53:07.262 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-16 16:53:07.263 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-16 16:53:07.300 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-16 16:53:07.362 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> -2014-07-16 16:53:07.370 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> -2014-07-16 16:53:07.384 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-16 16:53:07.384 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> -2014-07-16 16:53:07.385 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> -2014-07-16 16:53:07.398 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> -2014-07-16 16:53:07.398 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> -2014-07-16 16:53:07.412 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:53:07.412 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:53:07.413 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-16 16:53:07.443 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:53:07.443 [info] <0.108.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:53:07.443 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> -2014-07-16 16:53:07.444 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> -2014-07-16 16:53:07.450 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> -2014-07-16 16:53:07.450 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> -2014-07-16 16:53:07.450 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-16 16:53:08.417 [debug] <0.108.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{dict,fetch,[[riak_dt_gcounter],{dict,2,16,16,8,80,48,{[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]},{{[],[],[[riak_dt_gcounter,increment]],[],[[riak_dt_gset,add]],[],[],[],[],[],[],[],[],[],[],[]}}}],[{file,"dict.erl"},{line,126}]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,147}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,101}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:53:08.417 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash -2014-07-16 16:53:08.418 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-16 16:53:08.503 [info] <0.1238.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:53:08.503 [info] <0.1238.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:53:08.503 [warning] <0.1237.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:53:08.503 [info] <0.1238.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.1238.0> -2014-07-16 16:53:08.504 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.1237.0> -2014-07-16 16:53:08.599 [debug] <0.95.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{dict,fetch,[[riak_dt_gcounter],{dict,2,16,16,8,80,48,{[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]},{{[],[],[[riak_dt_gcounter,increment]],[],[[riak_dt_gset,add]],[],[],[],[],[],[],[],[],[],[],[]}}}],[{file,"dict.erl"},{line,126}]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,147}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,101}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:53:08.599 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash -2014-07-16 16:53:08.600 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 16:53:08.645 [info] <0.1366.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:53:08.645 [info] <0.1366.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:53:08.645 [warning] <0.1365.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:53:08.645 [info] <0.1366.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.1366.0> -2014-07-16 16:53:08.646 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.1365.0> -2014-07-16 16:53:09.299 [debug] <0.1238.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{dict,fetch,[[riak_dt_gset],{dict,2,16,16,8,80,48,{[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]},{{[],[],[[riak_dt_gcounter,increment]],[],[[riak_dt_gset,add]],[],[],[],[],[],[],[],[],[],[],[]}}}],[{file,"dict.erl"},{line,126}]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,147}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,101}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:53:09.299 [error] <0.1237.0>@basho_bench_worker:handle_info:149 Worker <0.1238.0> exited with crash -2014-07-16 16:53:09.299 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.1237.0> exit with reason normal in context child_terminated -2014-07-16 16:53:09.348 [info] <0.2157.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:53:09.348 [info] <0.2157.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:53:09.348 [warning] <0.2155.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:53:09.349 [info] <0.2157.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.2157.0> -2014-07-16 16:53:09.349 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.2155.0> -2014-07-16 16:53:09.751 [debug] <0.1366.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{dict,fetch,[[riak_dt_gcounter],{dict,2,16,16,8,80,48,{[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]},{{[],[],[[riak_dt_gcounter,increment]],[],[[riak_dt_gset,add]],[],[],[],[],[],[],[],[],[],[],[]}}}],[{file,"dict.erl"},{line,126}]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,147}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,101}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:53:09.751 [error] <0.1365.0>@basho_bench_worker:handle_info:149 Worker <0.1366.0> exited with crash -2014-07-16 16:53:09.752 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.1365.0> exit with reason normal in context child_terminated -2014-07-16 16:53:09.800 [info] <0.2658.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:53:09.800 [info] <0.2658.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:53:09.800 [warning] <0.2657.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:53:09.800 [info] <0.2658.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.2658.0> -2014-07-16 16:53:09.801 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.2657.0> -2014-07-16 16:53:09.875 [error] emulator Error in process <0.2658.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,1505},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 16:53:09.875 [error] <0.2657.0>@basho_bench_worker:handle_info:149 Worker <0.2658.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,1505},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:53:09.876 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.2657.0> exit with reason normal in context child_terminated -2014-07-16 16:53:09.923 [info] <0.2785.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:53:09.923 [info] <0.2785.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:53:09.923 [warning] <0.2784.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:53:09.923 [info] <0.2785.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.2785.0> -2014-07-16 16:53:09.924 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.2784.0> -2014-07-16 16:53:10.138 [debug] <0.2157.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{dict,fetch,[[riak_dt_gcounter],{dict,2,16,16,8,80,48,{[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]},{{[],[],[[riak_dt_gcounter,increment]],[],[[riak_dt_gset,add]],[],[],[],[],[],[],[],[],[],[],[]}}}],[{file,"dict.erl"},{line,126}]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,147}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,101}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:53:10.139 [error] <0.2155.0>@basho_bench_worker:handle_info:149 Worker <0.2157.0> exited with crash -2014-07-16 16:53:10.139 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.2155.0> exit with reason normal in context child_terminated -2014-07-16 16:53:10.140 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.2155.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-16 16:53:10.151 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{append,append},5},{{{append,append},crash},5}] -2014-07-16 16:53:10.152 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: -2014-07-16 16:53:10.152 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{append,append},crash}: 5 diff --git a/newtests/20140716_165306/crash.log b/newtests/20140716_165306/crash.log deleted file mode 100644 index 24afefa73..000000000 --- a/newtests/20140716_165306/crash.log +++ /dev/null @@ -1,45 +0,0 @@ -2014-07-16 16:53:08 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:53:08 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:53:09 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.1237.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:53:09 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.1365.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:53:09 =ERROR REPORT==== -Error in process <0.2658.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,1505},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - -2014-07-16 16:53:09 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.2657.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:53:10 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.2155.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:53:10 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.2155.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140716_165306/error.log b/newtests/20140716_165306/error.log deleted file mode 100644 index 15ea9e5bd..000000000 --- a/newtests/20140716_165306/error.log +++ /dev/null @@ -1,16 +0,0 @@ -2014-07-16 16:53:08.417 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash -2014-07-16 16:53:08.418 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-16 16:53:08.599 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash -2014-07-16 16:53:08.600 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 16:53:09.299 [error] <0.1237.0>@basho_bench_worker:handle_info:149 Worker <0.1238.0> exited with crash -2014-07-16 16:53:09.299 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.1237.0> exit with reason normal in context child_terminated -2014-07-16 16:53:09.751 [error] <0.1365.0>@basho_bench_worker:handle_info:149 Worker <0.1366.0> exited with crash -2014-07-16 16:53:09.752 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.1365.0> exit with reason normal in context child_terminated -2014-07-16 16:53:09.875 [error] emulator Error in process <0.2658.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,1505},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 16:53:09.875 [error] <0.2657.0>@basho_bench_worker:handle_info:149 Worker <0.2658.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,1505},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:53:09.876 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.2657.0> exit with reason normal in context child_terminated -2014-07-16 16:53:10.139 [error] <0.2155.0>@basho_bench_worker:handle_info:149 Worker <0.2157.0> exited with crash -2014-07-16 16:53:10.139 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.2155.0> exit with reason normal in context child_terminated -2014-07-16 16:53:10.140 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.2155.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_165306/errors.csv b/newtests/20140716_165306/errors.csv deleted file mode 100644 index cdd6dd5c6..000000000 --- a/newtests/20140716_165306/errors.csv +++ /dev/null @@ -1,2 +0,0 @@ -"error","count" -"{{append,append},crash}","5" diff --git a/newtests/20140716_165306/floppstore.config b/newtests/20140716_165306/floppstore.config deleted file mode 100644 index 55db32761..000000000 --- a/newtests/20140716_165306/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. - -{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. - -{operations, [{append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_165306/log.sasl.txt b/newtests/20140716_165306/log.sasl.txt deleted file mode 100644 index ec9316b5a..000000000 --- a/newtests/20140716_165306/log.sasl.txt +++ /dev/null @@ -1,336 +0,0 @@ - -=PROGRESS REPORT==== 16-Jul-2014::16:53:07 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:53:07 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:53:07 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::16:53:07 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:53:07 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::16:53:07 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:53:07 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::16:53:07 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::16:53:07 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:53:07 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:53:07 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::16:53:07 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:53:07 === - supervisor: {local,net_sup} - started: [{pid,<0.97.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:53:07 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:53:07 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:53:07 === - supervisor: {local,kernel_sup} - started: [{pid,<0.96.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::16:53:07 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 16-Jul-2014::16:53:07 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.103.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:53:07 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:53:07 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:53:07 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.109.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:53:07 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 16-Jul-2014::16:53:08 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:53:08 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.1237.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:53:08 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:53:08 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.1365.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:53:09 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.1237.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:53:09 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.2155.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:53:09 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.1365.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:53:09 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.2657.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:53:09 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.2657.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:53:09 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.2784.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:53:10 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.2155.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 16-Jul-2014::16:53:10 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.2155.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140716_165306/read_latencies.csv b/newtests/20140716_165306/read_latencies.csv deleted file mode 100644 index e5e42f3d8..000000000 --- a/newtests/20140716_165306/read_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -2.696005, 2.696005, 1452, 919, 1599.0, 1416, 2413, 2809, 4604, 4668, 0 diff --git a/newtests/20140716_165306/summary.csv b/newtests/20140716_165306/summary.csv deleted file mode 100644 index b33310947..000000000 --- a/newtests/20140716_165306/summary.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, total, successful, failed -2.696005, 2.696005, 2954, 2949, 5 diff --git a/newtests/20140716_165356/append_latencies.csv b/newtests/20140716_165356/append_latencies.csv deleted file mode 100644 index 55f68fcb4..000000000 --- a/newtests/20140716_165356/append_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -4.243242, 4.243242, 2303, 1023, 1849.7, 1653, 2662, 3268, 5306, 7347, 5 diff --git a/newtests/20140716_165356/console.log b/newtests/20140716_165356/console.log deleted file mode 100644 index 983904dd8..000000000 --- a/newtests/20140716_165356/console.log +++ /dev/null @@ -1,91 +0,0 @@ -2014-07-16 16:53:56.356 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_165356/error.log"} into lager_event -2014-07-16 16:53:56.356 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_165356/console.log"} into lager_event -2014-07-16 16:53:56.356 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-16 16:53:56.388 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-16 16:53:56.388 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-16 16:53:56.388 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-16 16:53:56.389 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-16 16:53:56.833 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-16 16:53:57.209 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-16 16:53:57.210 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_165356/console.log to debug -2014-07-16 16:53:57.217 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} -2014-07-16 16:53:57.297 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-16 16:53:57.297 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-16 16:53:57.298 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-16 16:53:57.312 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-16 16:53:57.312 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-16 16:53:57.398 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-16 16:53:57.398 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-16 16:53:57.429 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-16 16:53:57.435 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-16 16:53:57.440 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-16 16:53:57.441 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-16 16:53:57.482 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-16 16:53:57.544 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> -2014-07-16 16:53:57.551 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> -2014-07-16 16:53:57.564 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-16 16:53:57.565 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> -2014-07-16 16:53:57.565 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> -2014-07-16 16:53:57.579 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> -2014-07-16 16:53:57.579 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> -2014-07-16 16:53:57.593 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:53:57.593 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:53:57.593 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-16 16:53:57.626 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:53:57.626 [info] <0.108.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:53:57.626 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> -2014-07-16 16:53:57.627 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> -2014-07-16 16:53:57.633 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> -2014-07-16 16:53:57.633 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> -2014-07-16 16:53:57.633 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-16 16:53:57.825 [debug] <0.95.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{dict,fetch,[[riak_dt_gset],{dict,2,16,16,8,80,48,{[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]},{{[],[],[[riak_dt_gcounter,increment]],[],[[riak_dt_gset,add]],[],[],[],[],[],[],[],[],[],[],[]}}}],[{file,"dict.erl"},{line,126}]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,147}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,101}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:53:57.825 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash -2014-07-16 16:53:57.825 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 16:53:57.874 [info] <0.325.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:53:57.874 [info] <0.325.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:53:57.874 [warning] <0.323.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:53:57.874 [info] <0.325.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.325.0> -2014-07-16 16:53:57.875 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.323.0> -2014-07-16 16:53:58.487 [debug] <0.108.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{dict,fetch,[[riak_dt_gset],{dict,2,16,16,8,80,48,{[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]},{{[],[],[[riak_dt_gcounter,increment]],[],[[riak_dt_gset,add]],[],[],[],[],[],[],[],[],[],[],[]}}}],[{file,"dict.erl"},{line,126}]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,147}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,101}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:53:58.487 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash -2014-07-16 16:53:58.493 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-16 16:53:58.539 [info] <0.1071.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:53:58.539 [info] <0.1071.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:53:58.539 [warning] <0.1070.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:53:58.539 [info] <0.1071.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.1071.0> -2014-07-16 16:53:58.539 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.1070.0> -2014-07-16 16:53:59.717 [debug] <0.1071.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{dict,fetch,[[riak_dt_gcounter],{dict,2,16,16,8,80,48,{[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]},{{[],[],[[riak_dt_gcounter,increment]],[],[[riak_dt_gset,add]],[],[],[],[],[],[],[],[],[],[],[]}}}],[{file,"dict.erl"},{line,126}]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,147}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,101}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:53:59.718 [error] <0.1070.0>@basho_bench_worker:handle_info:149 Worker <0.1071.0> exited with crash -2014-07-16 16:53:59.718 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.1070.0> exit with reason normal in context child_terminated -2014-07-16 16:53:59.763 [info] <0.2469.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:53:59.763 [info] <0.2469.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:53:59.763 [warning] <0.2468.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:53:59.763 [info] <0.2469.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.2469.0> -2014-07-16 16:53:59.764 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.2468.0> -2014-07-16 16:54:00.365 [debug] <0.325.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{dict,fetch,[[riak_dt_gset],{dict,2,16,16,8,80,48,{[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]},{{[],[],[[riak_dt_gcounter,increment]],[],[[riak_dt_gset,add]],[],[],[],[],[],[],[],[],[],[],[]}}}],[{file,"dict.erl"},{line,126}]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,147}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,101}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:54:00.365 [error] <0.323.0>@basho_bench_worker:handle_info:149 Worker <0.325.0> exited with crash -2014-07-16 16:54:00.372 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.323.0> exit with reason normal in context child_terminated -2014-07-16 16:54:00.420 [info] <0.3182.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:54:00.420 [info] <0.3182.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 16:54:00.420 [warning] <0.3181.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:54:00.420 [info] <0.3182.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.3182.0> -2014-07-16 16:54:00.420 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.3181.0> -2014-07-16 16:54:00.827 [debug] <0.2469.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{dict,fetch,[[riak_dt_gcounter],{dict,2,16,16,8,80,48,{[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]},{{[],[],[[riak_dt_gcounter,increment]],[],[[riak_dt_gset,add]],[],[],[],[],[],[],[],[],[],[],[]}}}],[{file,"dict.erl"},{line,126}]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,147}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,101}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:54:00.827 [error] <0.2468.0>@basho_bench_worker:handle_info:149 Worker <0.2469.0> exited with crash -2014-07-16 16:54:00.834 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.2468.0> exit with reason normal in context child_terminated -2014-07-16 16:54:00.879 [info] <0.3695.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 16:54:00.879 [info] <0.3695.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 16:54:00.879 [warning] <0.3694.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 16:54:00.879 [info] <0.3695.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.3695.0> -2014-07-16 16:54:00.879 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.3694.0> -2014-07-16 16:54:01.869 [error] emulator Error in process <0.3695.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gset],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-'... - - -2014-07-16 16:54:01.869 [error] <0.3694.0>@basho_bench_worker:handle_info:149 Worker <0.3695.0> exited with {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gset],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:54:01.870 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.3694.0> exit with reason normal in context child_terminated -2014-07-16 16:54:01.876 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.3694.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-16 16:54:01.892 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{append,append},5},{{{append,append},crash},5}] -2014-07-16 16:54:01.892 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: -2014-07-16 16:54:01.892 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{append,append},crash}: 5 diff --git a/newtests/20140716_165356/crash.log b/newtests/20140716_165356/crash.log deleted file mode 100644 index 44cf2029f..000000000 --- a/newtests/20140716_165356/crash.log +++ /dev/null @@ -1,45 +0,0 @@ -2014-07-16 16:53:57 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:53:58 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:53:59 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.1070.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:54:00 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.323.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:54:00 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.2468.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:54:01 =ERROR REPORT==== -Error in process <0.3695.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gset],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-'... - -2014-07-16 16:54:01 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.3694.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 16:54:01 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.3694.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140716_165356/error.log b/newtests/20140716_165356/error.log deleted file mode 100644 index 18f1d7842..000000000 --- a/newtests/20140716_165356/error.log +++ /dev/null @@ -1,16 +0,0 @@ -2014-07-16 16:53:57.825 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash -2014-07-16 16:53:57.825 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 16:53:58.487 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash -2014-07-16 16:53:58.493 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-16 16:53:59.718 [error] <0.1070.0>@basho_bench_worker:handle_info:149 Worker <0.1071.0> exited with crash -2014-07-16 16:53:59.718 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.1070.0> exit with reason normal in context child_terminated -2014-07-16 16:54:00.365 [error] <0.323.0>@basho_bench_worker:handle_info:149 Worker <0.325.0> exited with crash -2014-07-16 16:54:00.372 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.323.0> exit with reason normal in context child_terminated -2014-07-16 16:54:00.827 [error] <0.2468.0>@basho_bench_worker:handle_info:149 Worker <0.2469.0> exited with crash -2014-07-16 16:54:00.834 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.2468.0> exit with reason normal in context child_terminated -2014-07-16 16:54:01.869 [error] emulator Error in process <0.3695.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gset],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-'... - - -2014-07-16 16:54:01.869 [error] <0.3694.0>@basho_bench_worker:handle_info:149 Worker <0.3695.0> exited with {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gset],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 16:54:01.870 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.3694.0> exit with reason normal in context child_terminated -2014-07-16 16:54:01.876 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.3694.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_165356/errors.csv b/newtests/20140716_165356/errors.csv deleted file mode 100644 index cdd6dd5c6..000000000 --- a/newtests/20140716_165356/errors.csv +++ /dev/null @@ -1,2 +0,0 @@ -"error","count" -"{{append,append},crash}","5" diff --git a/newtests/20140716_165356/floppstore.config b/newtests/20140716_165356/floppstore.config deleted file mode 100644 index 55db32761..000000000 --- a/newtests/20140716_165356/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. - -{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. - -{operations, [{append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_165356/log.sasl.txt b/newtests/20140716_165356/log.sasl.txt deleted file mode 100644 index d4bcd8786..000000000 --- a/newtests/20140716_165356/log.sasl.txt +++ /dev/null @@ -1,336 +0,0 @@ - -=PROGRESS REPORT==== 16-Jul-2014::16:53:57 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:53:57 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:53:57 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::16:53:57 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:53:57 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::16:53:57 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:53:57 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::16:53:57 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::16:53:57 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:53:57 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:53:57 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::16:53:57 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:53:57 === - supervisor: {local,net_sup} - started: [{pid,<0.97.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:53:57 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:53:57 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:53:57 === - supervisor: {local,kernel_sup} - started: [{pid,<0.96.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::16:53:57 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 16-Jul-2014::16:53:57 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.103.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:53:57 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:53:57 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:53:57 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.109.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::16:53:57 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 16-Jul-2014::16:53:57 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:53:57 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.323.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:53:58 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:53:58 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.1070.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:53:59 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.1070.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:53:59 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.2468.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:54:00 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.323.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:54:00 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.3181.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:54:00 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.2468.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::16:54:00 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.3694.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::16:54:01 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.3694.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 16-Jul-2014::16:54:01 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.3694.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140716_165356/read_latencies.csv b/newtests/20140716_165356/read_latencies.csv deleted file mode 100644 index fe3c4f324..000000000 --- a/newtests/20140716_165356/read_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -4.243242, 4.243242, 2365, 834, 1628.5, 1440, 2450, 2831, 3582, 5758, 0 diff --git a/newtests/20140716_165356/summary.csv b/newtests/20140716_165356/summary.csv deleted file mode 100644 index ce255f87e..000000000 --- a/newtests/20140716_165356/summary.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, total, successful, failed -4.243242, 4.243242, 4673, 4668, 5 diff --git a/newtests/20140716_170644/append_latencies.csv b/newtests/20140716_170644/append_latencies.csv deleted file mode 100644 index a4f6c7163..000000000 --- a/newtests/20140716_170644/append_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -3.654499, 3.654499, 1599, 1070, 2487.3, 1704, 6139, 17497, 41011, 48648, 5 diff --git a/newtests/20140716_170644/console.log b/newtests/20140716_170644/console.log deleted file mode 100644 index aceea35d4..000000000 --- a/newtests/20140716_170644/console.log +++ /dev/null @@ -1,92 +0,0 @@ -2014-07-16 17:06:44.936 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_170644/error.log"} into lager_event -2014-07-16 17:06:44.936 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_170644/console.log"} into lager_event -2014-07-16 17:06:44.936 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-16 17:06:44.971 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-16 17:06:44.971 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-16 17:06:44.971 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-16 17:06:44.971 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-16 17:06:45.412 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-16 17:06:45.750 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-16 17:06:45.752 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_170644/console.log to debug -2014-07-16 17:06:45.758 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} -2014-07-16 17:06:45.840 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-16 17:06:45.841 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-16 17:06:45.841 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-16 17:06:45.858 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-16 17:06:45.859 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-16 17:06:45.940 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-16 17:06:45.941 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-16 17:06:45.972 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-16 17:06:45.976 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-16 17:06:45.981 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-16 17:06:45.981 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-16 17:06:46.018 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-16 17:06:46.083 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> -2014-07-16 17:06:46.090 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> -2014-07-16 17:06:46.102 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-16 17:06:46.103 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> -2014-07-16 17:06:46.103 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> -2014-07-16 17:06:46.116 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> -2014-07-16 17:06:46.117 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> -2014-07-16 17:06:46.130 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:135 Finished pinging 'floppy@127.0.0.1' -2014-07-16 17:06:46.130 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 17:06:46.131 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-16 17:06:46.166 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:135 Finished pinging 'floppy@127.0.0.1' -2014-07-16 17:06:46.166 [info] <0.108.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 17:06:46.167 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> -2014-07-16 17:06:46.167 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> -2014-07-16 17:06:46.173 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> -2014-07-16 17:06:46.174 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> -2014-07-16 17:06:46.174 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-16 17:06:47.914 [debug] <0.108.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{dict,fetch,[[riak_dt_gset],{dict,2,16,16,8,80,48,{[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]},{{[],[],[[riak_dt_gcounter,increment]],[],[[riak_dt_gset,add]],[],[],[],[],[],[],[],[],[],[],[]}}}],[{file,"dict.erl"},{line,126}]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,148}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,101}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 17:06:47.914 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash -2014-07-16 17:06:47.915 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-16 17:06:47.971 [info] <0.1345.0>@basho_bench_driver_floppystore:ping_each:135 Finished pinging 'floppy@127.0.0.1' -2014-07-16 17:06:47.971 [info] <0.1345.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 17:06:47.971 [warning] <0.1344.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 17:06:47.971 [info] <0.1345.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.1345.0> -2014-07-16 17:06:47.971 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.1344.0> -2014-07-16 17:06:48.062 [debug] <0.95.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{dict,fetch,[[riak_dt_gcounter],{dict,2,16,16,8,80,48,{[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]},{{[],[],[[riak_dt_gcounter,increment]],[],[[riak_dt_gset,add]],[],[],[],[],[],[],[],[],[],[],[]}}}],[{file,"dict.erl"},{line,126}]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,148}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,101}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 17:06:48.062 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash -2014-07-16 17:06:48.063 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 17:06:48.109 [info] <0.1488.0>@basho_bench_driver_floppystore:ping_each:135 Finished pinging 'floppy@127.0.0.1' -2014-07-16 17:06:48.109 [info] <0.1488.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 17:06:48.109 [warning] <0.1487.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 17:06:48.110 [info] <0.1488.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.1488.0> -2014-07-16 17:06:48.110 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.1487.0> -2014-07-16 17:06:48.385 [debug] <0.1488.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{dict,fetch,[[riak_dt_gset],{dict,2,16,16,8,80,48,{[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]},{{[],[],[[riak_dt_gcounter,increment]],[],[[riak_dt_gset,add]],[],[],[],[],[],[],[],[],[],[],[]}}}],[{file,"dict.erl"},{line,126}]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,148}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,101}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 17:06:48.385 [error] <0.1487.0>@basho_bench_worker:handle_info:149 Worker <0.1488.0> exited with crash -2014-07-16 17:06:48.392 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.1487.0> exit with reason normal in context child_terminated -2014-07-16 17:06:48.439 [info] <0.1832.0>@basho_bench_driver_floppystore:ping_each:135 Finished pinging 'floppy@127.0.0.1' -2014-07-16 17:06:48.439 [info] <0.1832.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 17:06:48.439 [warning] <0.1831.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 17:06:48.440 [info] <0.1832.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.1832.0> -2014-07-16 17:06:48.440 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.1831.0> -2014-07-16 17:06:48.917 [error] emulator Error in process <0.1832.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,3539},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 17:06:48.917 [error] <0.1831.0>@basho_bench_worker:handle_info:149 Worker <0.1832.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,3539},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 17:06:48.924 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.1831.0> exit with reason normal in context child_terminated -2014-07-16 17:06:48.970 [info] <0.2400.0>@basho_bench_driver_floppystore:ping_each:135 Finished pinging 'floppy@127.0.0.1' -2014-07-16 17:06:48.970 [info] <0.2400.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 17:06:48.970 [warning] <0.2398.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 17:06:48.970 [info] <0.2400.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.2400.0> -2014-07-16 17:06:48.971 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.2398.0> -2014-07-16 17:06:49.420 [debug] <0.1345.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{dict,fetch,[[riak_dt_gset],{dict,2,16,16,8,80,48,{[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]},{{[],[],[[riak_dt_gcounter,increment]],[],[[riak_dt_gset,add]],[],[],[],[],[],[],[],[],[],[],[]}}}],[{file,"dict.erl"},{line,126}]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,148}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,101}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 17:06:49.420 [error] <0.1344.0>@basho_bench_worker:handle_info:149 Worker <0.1345.0> exited with crash -2014-07-16 17:06:49.421 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.1344.0> exit with reason normal in context child_terminated -2014-07-16 17:06:49.468 [info] <0.2939.0>@basho_bench_driver_floppystore:ping_each:135 Finished pinging 'floppy@127.0.0.1' -2014-07-16 17:06:49.468 [info] <0.2939.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 17:06:49.469 [warning] <0.2938.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 17:06:49.469 [info] <0.2939.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.2939.0> -2014-07-16 17:06:49.469 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.2938.0> -2014-07-16 17:06:49.820 [debug] <0.2400.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{dict,fetch,[[riak_dt_gset],{dict,2,16,16,8,80,48,{[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]},{{[],[],[[riak_dt_gcounter,increment]],[],[[riak_dt_gset,add]],[],[],[],[],[],[],[],[],[],[],[]}}}],[{file,"dict.erl"},{line,126}]},{basho_bench_driver_floppystore,get_random_param,3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,148}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,101}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 17:06:49.820 [error] <0.2398.0>@basho_bench_worker:handle_info:149 Worker <0.2400.0> exited with crash -2014-07-16 17:06:49.827 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.2398.0> exit with reason normal in context child_terminated -2014-07-16 17:06:49.827 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.2398.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-16 17:06:49.843 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{append,append},5},{{{append,append},crash},5}] -2014-07-16 17:06:49.843 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: -2014-07-16 17:06:49.843 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{append,append},crash}: 5 -2014-07-16 17:06:49.844 [info] <0.2.0>@basho_bench:wait_for_stop:191 Test stopped: shutdown diff --git a/newtests/20140716_170644/crash.log b/newtests/20140716_170644/crash.log deleted file mode 100644 index c6411f8dd..000000000 --- a/newtests/20140716_170644/crash.log +++ /dev/null @@ -1,45 +0,0 @@ -2014-07-16 17:06:47 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 17:06:48 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 17:06:48 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.1487.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 17:06:48 =ERROR REPORT==== -Error in process <0.1832.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,3539},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - -2014-07-16 17:06:48 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.1831.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 17:06:49 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.1344.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 17:06:49 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.2398.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 17:06:49 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.2398.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140716_170644/error.log b/newtests/20140716_170644/error.log deleted file mode 100644 index 2b0840d3b..000000000 --- a/newtests/20140716_170644/error.log +++ /dev/null @@ -1,16 +0,0 @@ -2014-07-16 17:06:47.914 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with crash -2014-07-16 17:06:47.915 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-16 17:06:48.062 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with crash -2014-07-16 17:06:48.063 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 17:06:48.385 [error] <0.1487.0>@basho_bench_worker:handle_info:149 Worker <0.1488.0> exited with crash -2014-07-16 17:06:48.392 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.1487.0> exit with reason normal in context child_terminated -2014-07-16 17:06:48.917 [error] emulator Error in process <0.1832.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,3539},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 17:06:48.917 [error] <0.1831.0>@basho_bench_worker:handle_info:149 Worker <0.1832.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,3539},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 17:06:48.924 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.1831.0> exit with reason normal in context child_terminated -2014-07-16 17:06:49.420 [error] <0.1344.0>@basho_bench_worker:handle_info:149 Worker <0.1345.0> exited with crash -2014-07-16 17:06:49.421 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.1344.0> exit with reason normal in context child_terminated -2014-07-16 17:06:49.820 [error] <0.2398.0>@basho_bench_worker:handle_info:149 Worker <0.2400.0> exited with crash -2014-07-16 17:06:49.827 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.2398.0> exit with reason normal in context child_terminated -2014-07-16 17:06:49.827 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.2398.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_170644/errors.csv b/newtests/20140716_170644/errors.csv deleted file mode 100644 index cdd6dd5c6..000000000 --- a/newtests/20140716_170644/errors.csv +++ /dev/null @@ -1,2 +0,0 @@ -"error","count" -"{{append,append},crash}","5" diff --git a/newtests/20140716_170644/floppstore.config b/newtests/20140716_170644/floppstore.config deleted file mode 100644 index 55db32761..000000000 --- a/newtests/20140716_170644/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. - -{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. - -{operations, [{append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_170644/log.sasl.txt b/newtests/20140716_170644/log.sasl.txt deleted file mode 100644 index adeb7b133..000000000 --- a/newtests/20140716_170644/log.sasl.txt +++ /dev/null @@ -1,336 +0,0 @@ - -=PROGRESS REPORT==== 16-Jul-2014::17:06:45 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::17:06:45 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::17:06:45 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::17:06:45 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::17:06:45 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::17:06:45 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::17:06:45 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::17:06:45 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::17:06:45 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::17:06:45 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::17:06:45 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::17:06:46 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::17:06:46 === - supervisor: {local,net_sup} - started: [{pid,<0.97.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::17:06:46 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::17:06:46 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::17:06:46 === - supervisor: {local,kernel_sup} - started: [{pid,<0.96.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::17:06:46 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 16-Jul-2014::17:06:46 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.103.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::17:06:46 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::17:06:46 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::17:06:46 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.109.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::17:06:46 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 16-Jul-2014::17:06:47 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::17:06:47 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.1344.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::17:06:48 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::17:06:48 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.1487.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::17:06:48 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.1487.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::17:06:48 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.1831.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::17:06:48 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.1831.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::17:06:48 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.2398.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::17:06:49 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.1344.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::17:06:49 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.2938.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::17:06:49 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.2398.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 16-Jul-2014::17:06:49 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.2398.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140716_170644/read_latencies.csv b/newtests/20140716_170644/read_latencies.csv deleted file mode 100644 index 45bfcc047..000000000 --- a/newtests/20140716_170644/read_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -3.654499, 3.654499, 1645, 856, 1808.7, 1471, 2715, 7089, 17159, 23367, 0 diff --git a/newtests/20140716_170644/summary.csv b/newtests/20140716_170644/summary.csv deleted file mode 100644 index 6ad668ea4..000000000 --- a/newtests/20140716_170644/summary.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, total, successful, failed -3.654499, 3.654499, 3249, 3244, 5 diff --git a/newtests/20140716_170806/append_latencies.csv b/newtests/20140716_170806/append_latencies.csv deleted file mode 100644 index e22d2decc..000000000 --- a/newtests/20140716_170806/append_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -4.074618, 4.074618, 2276, 1016, 1870.3, 1680, 2656, 3105, 6199, 8798, 0 diff --git a/newtests/20140716_170806/console.log b/newtests/20140716_170806/console.log deleted file mode 100644 index 1798dfba1..000000000 --- a/newtests/20140716_170806/console.log +++ /dev/null @@ -1,99 +0,0 @@ -2014-07-16 17:08:06.968 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_170806/error.log"} into lager_event -2014-07-16 17:08:06.968 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_170806/console.log"} into lager_event -2014-07-16 17:08:06.968 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-16 17:08:07.002 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-16 17:08:07.002 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-16 17:08:07.002 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-16 17:08:07.003 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-16 17:08:07.443 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-16 17:08:07.844 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-16 17:08:07.845 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_170806/console.log to debug -2014-07-16 17:08:07.852 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} -2014-07-16 17:08:07.933 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-16 17:08:07.933 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-16 17:08:07.934 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-16 17:08:07.947 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-16 17:08:07.948 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-16 17:08:08.034 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-16 17:08:08.035 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-16 17:08:08.065 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-16 17:08:08.070 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-16 17:08:08.075 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-16 17:08:08.075 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-16 17:08:08.112 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-16 17:08:08.179 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> -2014-07-16 17:08:08.186 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> -2014-07-16 17:08:08.198 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-16 17:08:08.199 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> -2014-07-16 17:08:08.199 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> -2014-07-16 17:08:08.213 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> -2014-07-16 17:08:08.213 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> -2014-07-16 17:08:08.231 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 17:08:08.231 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 17:08:08.232 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-16 17:08:08.263 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 17:08:08.263 [info] <0.108.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 17:08:08.264 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> -2014-07-16 17:08:08.264 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> -2014-07-16 17:08:08.269 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> -2014-07-16 17:08:08.269 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> -2014-07-16 17:08:08.269 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-16 17:08:09.583 [error] emulator Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,4980},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 17:08:09.583 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,4980},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 17:08:09.583 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 17:08:09.638 [info] <0.1575.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 17:08:09.638 [info] <0.1575.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 17:08:09.638 [warning] <0.1574.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 17:08:09.638 [info] <0.1575.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.1575.0> -2014-07-16 17:08:09.638 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.1574.0> -2014-07-16 17:08:10.112 [error] emulator Error in process <0.1575.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5611},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 17:08:10.113 [error] <0.1574.0>@basho_bench_worker:handle_info:149 Worker <0.1575.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5611},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 17:08:10.113 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.1574.0> exit with reason normal in context child_terminated -2014-07-16 17:08:10.164 [info] <0.2161.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 17:08:10.164 [info] <0.2161.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 17:08:10.164 [warning] <0.2160.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 17:08:10.164 [info] <0.2161.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.2161.0> -2014-07-16 17:08:10.164 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.2160.0> -2014-07-16 17:08:10.866 [error] emulator Error in process <0.2161.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,8079},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 17:08:10.866 [error] <0.2160.0>@basho_bench_worker:handle_info:149 Worker <0.2161.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,8079},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 17:08:10.867 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.2160.0> exit with reason normal in context child_terminated -2014-07-16 17:08:10.917 [info] <0.2952.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 17:08:10.917 [info] <0.2952.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 17:08:10.917 [warning] <0.2951.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 17:08:10.917 [info] <0.2952.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.2952.0> -2014-07-16 17:08:10.918 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.2951.0> -2014-07-16 17:08:11.143 [error] emulator Error in process <0.2952.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,8963},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 17:08:11.143 [error] <0.2951.0>@basho_bench_worker:handle_info:149 Worker <0.2952.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,8963},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 17:08:11.143 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.2951.0> exit with reason normal in context child_terminated -2014-07-16 17:08:11.187 [info] <0.3245.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 17:08:11.187 [info] <0.3245.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 17:08:11.187 [warning] <0.3244.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 17:08:11.187 [info] <0.3245.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.3245.0> -2014-07-16 17:08:11.188 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.3244.0> -2014-07-16 17:08:12.263 [error] emulator Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,3082},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 17:08:12.263 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,3082},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 17:08:12.264 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-16 17:08:12.315 [info] <0.4490.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 17:08:12.315 [info] <0.4490.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 17:08:12.316 [warning] <0.4489.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 17:08:12.316 [info] <0.4490.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.4490.0> -2014-07-16 17:08:12.316 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.4489.0> -2014-07-16 17:08:12.337 [error] emulator Error in process <0.4490.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5915},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 17:08:12.338 [error] <0.4489.0>@basho_bench_worker:handle_info:149 Worker <0.4490.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5915},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 17:08:12.338 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.4489.0> exit with reason normal in context child_terminated -2014-07-16 17:08:12.339 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.4489.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-16 17:08:12.355 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. diff --git a/newtests/20140716_170806/crash.log b/newtests/20140716_170806/crash.log deleted file mode 100644 index 4a75b05ce..000000000 --- a/newtests/20140716_170806/crash.log +++ /dev/null @@ -1,60 +0,0 @@ -2014-07-16 17:08:09 =ERROR REPORT==== -Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,4980},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - -2014-07-16 17:08:09 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 17:08:10 =ERROR REPORT==== -Error in process <0.1575.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5611},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - -2014-07-16 17:08:10 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.1574.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 17:08:10 =ERROR REPORT==== -Error in process <0.2161.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,8079},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - -2014-07-16 17:08:10 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.2160.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 17:08:11 =ERROR REPORT==== -Error in process <0.2952.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,8963},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - -2014-07-16 17:08:11 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.2951.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 17:08:12 =ERROR REPORT==== -Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,3082},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - -2014-07-16 17:08:12 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 17:08:12 =ERROR REPORT==== -Error in process <0.4490.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5915},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - -2014-07-16 17:08:12 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.4489.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 17:08:12 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.4489.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140716_170806/error.log b/newtests/20140716_170806/error.log deleted file mode 100644 index c7d2b10b6..000000000 --- a/newtests/20140716_170806/error.log +++ /dev/null @@ -1,31 +0,0 @@ -2014-07-16 17:08:09.583 [error] emulator Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,4980},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 17:08:09.583 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,4980},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 17:08:09.583 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 17:08:10.112 [error] emulator Error in process <0.1575.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5611},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 17:08:10.113 [error] <0.1574.0>@basho_bench_worker:handle_info:149 Worker <0.1575.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5611},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 17:08:10.113 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.1574.0> exit with reason normal in context child_terminated -2014-07-16 17:08:10.866 [error] emulator Error in process <0.2161.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,8079},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 17:08:10.866 [error] <0.2160.0>@basho_bench_worker:handle_info:149 Worker <0.2161.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,8079},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 17:08:10.867 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.2160.0> exit with reason normal in context child_terminated -2014-07-16 17:08:11.143 [error] emulator Error in process <0.2952.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,8963},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 17:08:11.143 [error] <0.2951.0>@basho_bench_worker:handle_info:149 Worker <0.2952.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,8963},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 17:08:11.143 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.2951.0> exit with reason normal in context child_terminated -2014-07-16 17:08:12.263 [error] emulator Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,3082},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 17:08:12.263 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,3082},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 17:08:12.264 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-16 17:08:12.337 [error] emulator Error in process <0.4490.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5915},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 17:08:12.338 [error] <0.4489.0>@basho_bench_worker:handle_info:149 Worker <0.4490.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5915},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 17:08:12.338 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.4489.0> exit with reason normal in context child_terminated -2014-07-16 17:08:12.339 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.4489.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_170806/errors.csv b/newtests/20140716_170806/errors.csv deleted file mode 100644 index 29210b502..000000000 --- a/newtests/20140716_170806/errors.csv +++ /dev/null @@ -1 +0,0 @@ -"error","count" diff --git a/newtests/20140716_170806/floppstore.config b/newtests/20140716_170806/floppstore.config deleted file mode 100644 index 55db32761..000000000 --- a/newtests/20140716_170806/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. - -{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. - -{operations, [{append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_170806/log.sasl.txt b/newtests/20140716_170806/log.sasl.txt deleted file mode 100644 index ee497a94c..000000000 --- a/newtests/20140716_170806/log.sasl.txt +++ /dev/null @@ -1,336 +0,0 @@ - -=PROGRESS REPORT==== 16-Jul-2014::17:08:07 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::17:08:07 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::17:08:07 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::17:08:07 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::17:08:07 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::17:08:08 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::17:08:08 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::17:08:08 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::17:08:08 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::17:08:08 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::17:08:08 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::17:08:08 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::17:08:08 === - supervisor: {local,net_sup} - started: [{pid,<0.97.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::17:08:08 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::17:08:08 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::17:08:08 === - supervisor: {local,kernel_sup} - started: [{pid,<0.96.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::17:08:08 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 16-Jul-2014::17:08:08 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.103.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::17:08:08 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::17:08:08 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::17:08:08 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.109.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::17:08:08 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 16-Jul-2014::17:08:09 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::17:08:09 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.1574.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::17:08:10 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.1574.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::17:08:10 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.2160.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::17:08:10 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.2160.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::17:08:10 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.2951.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::17:08:11 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.2951.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::17:08:11 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.3244.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::17:08:12 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::17:08:12 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.4489.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::17:08:12 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.4489.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 16-Jul-2014::17:08:12 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.4489.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140716_170806/read_latencies.csv b/newtests/20140716_170806/read_latencies.csv deleted file mode 100644 index 6021e81d6..000000000 --- a/newtests/20140716_170806/read_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -4.074618, 4.074618, 2152, 902, 1632.3, 1437, 2449, 2841, 5769, 12029, 0 diff --git a/newtests/20140716_170806/summary.csv b/newtests/20140716_170806/summary.csv deleted file mode 100644 index 8685655f2..000000000 --- a/newtests/20140716_170806/summary.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, total, successful, failed -4.074618, 4.074618, 4428, 4428, 0 diff --git a/newtests/20140716_202737/append_latencies.csv b/newtests/20140716_202737/append_latencies.csv deleted file mode 100644 index 2b6400522..000000000 --- a/newtests/20140716_202737/append_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -5.925941, 5.925941, 2890, 993, 2169.2, 1690, 2860, 10936, 27683, 88686, 0 diff --git a/newtests/20140716_202737/console.log b/newtests/20140716_202737/console.log deleted file mode 100644 index 46a74e193..000000000 --- a/newtests/20140716_202737/console.log +++ /dev/null @@ -1,99 +0,0 @@ -2014-07-16 20:27:37.666 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_202737/error.log"} into lager_event -2014-07-16 20:27:37.666 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_202737/console.log"} into lager_event -2014-07-16 20:27:37.666 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-16 20:27:37.703 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-16 20:27:37.703 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-16 20:27:37.704 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-16 20:27:37.704 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-16 20:27:38.139 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-16 20:27:38.506 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-16 20:27:38.507 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_202737/console.log to debug -2014-07-16 20:27:38.513 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} -2014-07-16 20:27:38.591 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-16 20:27:38.592 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-16 20:27:38.592 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-16 20:27:38.606 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-16 20:27:38.607 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-16 20:27:38.701 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-16 20:27:38.701 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-16 20:27:38.730 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-16 20:27:38.734 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-16 20:27:38.738 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-16 20:27:38.738 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-16 20:27:38.775 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-16 20:27:38.841 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> -2014-07-16 20:27:38.848 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> -2014-07-16 20:27:38.863 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-16 20:27:38.863 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> -2014-07-16 20:27:38.863 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> -2014-07-16 20:27:38.889 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> -2014-07-16 20:27:38.889 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> -2014-07-16 20:27:38.905 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 20:27:38.905 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 20:27:38.906 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-16 20:27:38.937 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 20:27:38.937 [info] <0.108.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 20:27:38.937 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> -2014-07-16 20:27:38.938 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> -2014-07-16 20:27:38.945 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> -2014-07-16 20:27:38.945 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> -2014-07-16 20:27:38.945 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-16 20:27:39.933 [error] emulator Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,3517},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:27:39.933 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,3517},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:27:39.933 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 20:27:39.982 [info] <0.679.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 20:27:39.982 [info] <0.679.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 20:27:39.982 [warning] <0.678.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 20:27:39.982 [info] <0.679.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.679.0> -2014-07-16 20:27:39.983 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.678.0> -2014-07-16 20:27:42.052 [error] emulator Error in process <0.679.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,4694},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:27:42.052 [error] <0.678.0>@basho_bench_worker:handle_info:149 Worker <0.679.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,4694},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:27:42.053 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.678.0> exit with reason normal in context child_terminated -2014-07-16 20:27:42.111 [info] <0.2869.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 20:27:42.111 [info] <0.2869.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 20:27:42.111 [warning] <0.2868.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 20:27:42.111 [info] <0.2869.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.2869.0> -2014-07-16 20:27:42.111 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.2868.0> -2014-07-16 20:27:42.461 [error] emulator Error in process <0.2869.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,4406},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:27:42.462 [error] <0.2868.0>@basho_bench_worker:handle_info:149 Worker <0.2869.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,4406},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:27:42.462 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.2868.0> exit with reason normal in context child_terminated -2014-07-16 20:27:42.505 [info] <0.3295.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 20:27:42.505 [info] <0.3295.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 20:27:42.506 [warning] <0.3294.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 20:27:42.506 [info] <0.3295.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.3295.0> -2014-07-16 20:27:42.506 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.3294.0> -2014-07-16 20:27:44.182 [error] emulator Error in process <0.3295.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,8079},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:27:44.182 [error] <0.3294.0>@basho_bench_worker:handle_info:149 Worker <0.3295.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,8079},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:27:44.183 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.3294.0> exit with reason normal in context child_terminated -2014-07-16 20:27:44.237 [info] <0.5205.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 20:27:44.237 [info] <0.5205.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 20:27:44.237 [warning] <0.5204.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 20:27:44.237 [info] <0.5205.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.5205.0> -2014-07-16 20:27:44.238 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.5204.0> -2014-07-16 20:27:44.821 [error] emulator Error in process <0.5205.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,2853},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:27:44.821 [error] <0.5204.0>@basho_bench_worker:handle_info:149 Worker <0.5205.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,2853},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:27:44.822 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.5204.0> exit with reason normal in context child_terminated -2014-07-16 20:27:44.847 [error] emulator Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,7178},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:27:44.847 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,7178},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:27:44.863 [info] <0.5916.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 20:27:44.863 [info] <0.5916.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 20:27:44.863 [warning] <0.5915.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 20:27:44.863 [info] <0.5916.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.5916.0> -2014-07-16 20:27:44.864 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.5915.0> -2014-07-16 20:27:44.864 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-16 20:27:44.865 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-16 20:27:44.883 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. diff --git a/newtests/20140716_202737/crash.log b/newtests/20140716_202737/crash.log deleted file mode 100644 index b3ad44a55..000000000 --- a/newtests/20140716_202737/crash.log +++ /dev/null @@ -1,60 +0,0 @@ -2014-07-16 20:27:39 =ERROR REPORT==== -Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,3517},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - -2014-07-16 20:27:39 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 20:27:42 =ERROR REPORT==== -Error in process <0.679.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,4694},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - -2014-07-16 20:27:42 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.678.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 20:27:42 =ERROR REPORT==== -Error in process <0.2869.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,4406},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - -2014-07-16 20:27:42 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.2868.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 20:27:44 =ERROR REPORT==== -Error in process <0.3295.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,8079},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - -2014-07-16 20:27:44 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.3294.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 20:27:44 =ERROR REPORT==== -Error in process <0.5205.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,2853},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - -2014-07-16 20:27:44 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.5204.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 20:27:44 =ERROR REPORT==== -Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,7178},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - -2014-07-16 20:27:44 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 20:27:44 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140716_202737/error.log b/newtests/20140716_202737/error.log deleted file mode 100644 index 6b25a517d..000000000 --- a/newtests/20140716_202737/error.log +++ /dev/null @@ -1,31 +0,0 @@ -2014-07-16 20:27:39.933 [error] emulator Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,3517},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:27:39.933 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,3517},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:27:39.933 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 20:27:42.052 [error] emulator Error in process <0.679.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,4694},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:27:42.052 [error] <0.678.0>@basho_bench_worker:handle_info:149 Worker <0.679.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,4694},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:27:42.053 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.678.0> exit with reason normal in context child_terminated -2014-07-16 20:27:42.461 [error] emulator Error in process <0.2869.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,4406},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:27:42.462 [error] <0.2868.0>@basho_bench_worker:handle_info:149 Worker <0.2869.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,4406},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:27:42.462 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.2868.0> exit with reason normal in context child_terminated -2014-07-16 20:27:44.182 [error] emulator Error in process <0.3295.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,8079},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:27:44.182 [error] <0.3294.0>@basho_bench_worker:handle_info:149 Worker <0.3295.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,8079},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:27:44.183 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.3294.0> exit with reason normal in context child_terminated -2014-07-16 20:27:44.821 [error] emulator Error in process <0.5205.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,2853},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:27:44.821 [error] <0.5204.0>@basho_bench_worker:handle_info:149 Worker <0.5205.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,2853},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:27:44.822 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.5204.0> exit with reason normal in context child_terminated -2014-07-16 20:27:44.847 [error] emulator Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,7178},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:27:44.847 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,7178},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:27:44.864 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-16 20:27:44.865 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_202737/errors.csv b/newtests/20140716_202737/errors.csv deleted file mode 100644 index 29210b502..000000000 --- a/newtests/20140716_202737/errors.csv +++ /dev/null @@ -1 +0,0 @@ -"error","count" diff --git a/newtests/20140716_202737/floppstore.config b/newtests/20140716_202737/floppstore.config deleted file mode 100644 index 55db32761..000000000 --- a/newtests/20140716_202737/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. - -{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. - -{operations, [{append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_202737/log.sasl.txt b/newtests/20140716_202737/log.sasl.txt deleted file mode 100644 index 728f0d041..000000000 --- a/newtests/20140716_202737/log.sasl.txt +++ /dev/null @@ -1,336 +0,0 @@ - -=PROGRESS REPORT==== 16-Jul-2014::20:27:38 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:27:38 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:27:38 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::20:27:38 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:27:38 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::20:27:38 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:27:38 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::20:27:38 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::20:27:38 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:27:38 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:27:38 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::20:27:38 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:27:38 === - supervisor: {local,net_sup} - started: [{pid,<0.97.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:27:38 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:27:38 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:27:38 === - supervisor: {local,kernel_sup} - started: [{pid,<0.96.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::20:27:38 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 16-Jul-2014::20:27:38 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.103.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:27:38 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:27:38 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:27:38 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.109.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:27:38 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 16-Jul-2014::20:27:39 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::20:27:39 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.678.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::20:27:42 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.678.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::20:27:42 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.2868.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::20:27:42 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.2868.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::20:27:42 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.3294.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::20:27:44 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.3294.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::20:27:44 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.5204.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::20:27:44 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.5204.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::20:27:44 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.5915.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::20:27:44 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 16-Jul-2014::20:27:44 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140716_202737/read_latencies.csv b/newtests/20140716_202737/read_latencies.csv deleted file mode 100644 index 1a112476c..000000000 --- a/newtests/20140716_202737/read_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -5.925941, 5.925941, 2920, 865, 1766.6, 1508, 2601, 4743, 12908, 47766, 0 diff --git a/newtests/20140716_202737/summary.csv b/newtests/20140716_202737/summary.csv deleted file mode 100644 index a3f81cb7e..000000000 --- a/newtests/20140716_202737/summary.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, total, successful, failed -5.925941, 5.925941, 5810, 5810, 0 diff --git a/newtests/20140716_202950/append_latencies.csv b/newtests/20140716_202950/append_latencies.csv deleted file mode 100644 index 51b00380a..000000000 --- a/newtests/20140716_202950/append_latencies.csv +++ /dev/null @@ -1,5 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -10.000722, 10.000722, 5154, 1012, 1997.1, 1769, 2909, 4313, 10051, 33191, 0 -20.0017, 10.000978, 4988, 1021, 2077.2, 1885, 3033, 3799, 7743, 19904, 0 -30.001687, 9.999987, 4940, 1129, 2083.0, 1885, 2991, 3799, 8583, 17189, 0 -33.572753, 3.571066, 1725, 1079, 2055.6, 1851, 2957, 3913, 9151, 17189, 0 diff --git a/newtests/20140716_202950/console.log b/newtests/20140716_202950/console.log deleted file mode 100644 index 5b990c64e..000000000 --- a/newtests/20140716_202950/console.log +++ /dev/null @@ -1,149 +0,0 @@ -2014-07-16 20:29:50.871 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_202950/error.log"} into lager_event -2014-07-16 20:29:50.871 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_202950/console.log"} into lager_event -2014-07-16 20:29:50.871 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-16 20:29:50.955 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-16 20:29:50.955 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-16 20:29:50.955 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-16 20:29:50.955 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-16 20:29:51.309 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-16 20:29:51.803 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-16 20:29:51.804 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_202950/console.log to debug -2014-07-16 20:29:51.811 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} -2014-07-16 20:29:51.892 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-16 20:29:51.893 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-16 20:29:51.893 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-16 20:29:51.909 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-16 20:29:51.909 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-16 20:29:51.997 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-16 20:29:51.997 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-16 20:29:52.027 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-16 20:29:52.032 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-16 20:29:52.037 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-16 20:29:52.038 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-16 20:29:52.071 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-16 20:29:52.141 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> -2014-07-16 20:29:52.148 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> -2014-07-16 20:29:52.161 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-16 20:29:52.161 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> -2014-07-16 20:29:52.162 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> -2014-07-16 20:29:52.176 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> -2014-07-16 20:29:52.176 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> -2014-07-16 20:29:52.193 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 20:29:52.193 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 20:29:52.194 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-16 20:29:52.226 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 20:29:52.226 [info] <0.108.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 20:29:52.226 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> -2014-07-16 20:29:52.227 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> -2014-07-16 20:29:52.233 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> -2014-07-16 20:29:52.233 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> -2014-07-16 20:29:52.233 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-16 20:29:57.439 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gset],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:29:57.439 [error] emulator Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gset],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-'... - - -2014-07-16 20:29:57.440 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-16 20:29:57.501 [info] <0.5604.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 20:29:57.501 [info] <0.5604.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 20:29:57.501 [warning] <0.5603.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 20:29:57.501 [info] <0.5604.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.5604.0> -2014-07-16 20:29:57.502 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.5603.0> -2014-07-16 20:30:01.713 [error] emulator Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gcounter],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-'... - - -2014-07-16 20:30:01.713 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gcounter],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:30:01.714 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 20:30:01.769 [info] <0.9952.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 20:30:01.769 [info] <0.9952.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 20:30:01.769 [warning] <0.9951.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 20:30:01.769 [info] <0.9952.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.9952.0> -2014-07-16 20:30:01.770 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.9951.0> -2014-07-16 20:30:06.097 [error] emulator Error in process <0.9952.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,4231},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:30:06.097 [error] <0.9951.0>@basho_bench_worker:handle_info:149 Worker <0.9952.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,4231},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:30:06.103 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.9951.0> exit with reason normal in context child_terminated -2014-07-16 20:30:06.150 [info] <0.14396.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 20:30:06.150 [info] <0.14396.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 20:30:06.150 [warning] <0.14395.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 20:30:06.151 [info] <0.14396.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.14396.0> -2014-07-16 20:30:06.151 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.14395.0> -2014-07-16 20:30:06.903 [error] emulator Error in process <0.5604.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,6510},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:30:06.903 [error] <0.5603.0>@basho_bench_worker:handle_info:149 Worker <0.5604.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,6510},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:30:06.909 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.5603.0> exit with reason normal in context child_terminated -2014-07-16 20:30:06.959 [info] <0.15205.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 20:30:06.959 [info] <0.15205.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 20:30:06.959 [warning] <0.15204.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 20:30:06.959 [info] <0.15205.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.15205.0> -2014-07-16 20:30:06.960 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.15204.0> -2014-07-16 20:30:12.241 [error] emulator Error in process <0.14396.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,503},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:30:12.241 [error] <0.14395.0>@basho_bench_worker:handle_info:149 Worker <0.14396.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,503},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:30:12.242 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.14395.0> exit with reason normal in context child_terminated -2014-07-16 20:30:12.309 [info] <0.20472.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 20:30:12.309 [info] <0.20472.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 20:30:12.309 [warning] <0.20470.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 20:30:12.309 [info] <0.20472.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.20472.0> -2014-07-16 20:30:12.310 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.20470.0> -2014-07-16 20:30:16.566 [error] emulator Error in process <0.15205.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,6983},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:30:16.566 [error] <0.15204.0>@basho_bench_worker:handle_info:149 Worker <0.15205.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,6983},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:30:16.567 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.15204.0> exit with reason normal in context child_terminated -2014-07-16 20:30:16.620 [info] <0.24713.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 20:30:16.620 [info] <0.24713.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 20:30:16.620 [warning] <0.24712.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 20:30:16.620 [info] <0.24713.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.24713.0> -2014-07-16 20:30:16.621 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.24712.0> -2014-07-16 20:30:20.482 [error] emulator Error in process <0.24713.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5403},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:30:20.482 [error] <0.24712.0>@basho_bench_worker:handle_info:149 Worker <0.24713.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5403},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:30:20.484 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.24712.0> exit with reason normal in context child_terminated -2014-07-16 20:30:20.538 [info] <0.28645.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 20:30:20.538 [info] <0.28645.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 20:30:20.538 [warning] <0.28644.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 20:30:20.538 [info] <0.28645.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.28645.0> -2014-07-16 20:30:20.539 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.28644.0> -2014-07-16 20:30:21.336 [error] emulator Error in process <0.20472.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,1860},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:30:21.336 [error] <0.20470.0>@basho_bench_worker:handle_info:149 Worker <0.20472.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,1860},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:30:21.337 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.20470.0> exit with reason normal in context child_terminated -2014-07-16 20:30:21.385 [info] <0.29486.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 20:30:21.385 [info] <0.29486.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 20:30:21.385 [warning] <0.29484.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 20:30:21.385 [info] <0.29486.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.29486.0> -2014-07-16 20:30:21.386 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.29484.0> -2014-07-16 20:30:25.199 [error] emulator Error in process <0.28645.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,2055},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:30:25.199 [error] <0.28644.0>@basho_bench_worker:handle_info:149 Worker <0.28645.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,2055},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:30:25.200 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.28644.0> exit with reason normal in context child_terminated -2014-07-16 20:30:25.254 [info] <0.575.1>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 20:30:25.254 [info] <0.575.1>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 20:30:25.254 [warning] <0.574.1>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 20:30:25.254 [info] <0.575.1>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.575.1> -2014-07-16 20:30:25.254 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.574.1> -2014-07-16 20:30:25.333 [error] emulator Error in process <0.29486.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,627},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:30:25.333 [error] <0.29484.0>@basho_bench_worker:handle_info:149 Worker <0.29486.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,627},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:30:25.334 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.29484.0> exit with reason normal in context child_terminated -2014-07-16 20:30:25.389 [info] <0.698.1>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 20:30:25.389 [info] <0.698.1>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 20:30:25.389 [warning] <0.697.1>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 20:30:25.389 [info] <0.698.1>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.698.1> -2014-07-16 20:30:25.390 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.697.1> -2014-07-16 20:30:25.798 [error] emulator Error in process <0.575.1> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,2438},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:30:25.798 [error] <0.574.1>@basho_bench_worker:handle_info:149 Worker <0.575.1> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,2438},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:30:25.805 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.574.1> exit with reason normal in context child_terminated -2014-07-16 20:30:25.806 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.574.1> exit with reason reached_max_restart_intensity in context shutdown -2014-07-16 20:30:25.826 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. diff --git a/newtests/20140716_202950/crash.log b/newtests/20140716_202950/crash.log deleted file mode 100644 index 2f49187fc..000000000 --- a/newtests/20140716_202950/crash.log +++ /dev/null @@ -1,105 +0,0 @@ -2014-07-16 20:29:57 =ERROR REPORT==== -Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gset],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-'... - -2014-07-16 20:29:57 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 20:30:01 =ERROR REPORT==== -Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gcounter],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-'... - -2014-07-16 20:30:01 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 20:30:06 =ERROR REPORT==== -Error in process <0.9952.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,4231},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - -2014-07-16 20:30:06 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.9951.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 20:30:06 =ERROR REPORT==== -Error in process <0.5604.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,6510},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - -2014-07-16 20:30:06 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.5603.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 20:30:12 =ERROR REPORT==== -Error in process <0.14396.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,503},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - -2014-07-16 20:30:12 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.14395.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 20:30:16 =ERROR REPORT==== -Error in process <0.15205.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,6983},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - -2014-07-16 20:30:16 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.15204.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 20:30:20 =ERROR REPORT==== -Error in process <0.24713.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5403},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - -2014-07-16 20:30:20 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.24712.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 20:30:21 =ERROR REPORT==== -Error in process <0.20472.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,1860},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - -2014-07-16 20:30:21 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.20470.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 20:30:25 =ERROR REPORT==== -Error in process <0.28645.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,2055},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - -2014-07-16 20:30:25 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.28644.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 20:30:25 =ERROR REPORT==== -Error in process <0.29486.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,627},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - -2014-07-16 20:30:25 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.29484.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 20:30:25 =ERROR REPORT==== -Error in process <0.575.1> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,2438},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - -2014-07-16 20:30:25 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.574.1>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 20:30:25 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.574.1>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140716_202950/error.log b/newtests/20140716_202950/error.log deleted file mode 100644 index 27a4bc0ff..000000000 --- a/newtests/20140716_202950/error.log +++ /dev/null @@ -1,56 +0,0 @@ -2014-07-16 20:29:57.439 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gset],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:29:57.439 [error] emulator Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gset],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-'... - - -2014-07-16 20:29:57.440 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-16 20:30:01.713 [error] emulator Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gcounter],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-'... - - -2014-07-16 20:30:01.713 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gcounter],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:30:01.714 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 20:30:06.097 [error] emulator Error in process <0.9952.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,4231},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:30:06.097 [error] <0.9951.0>@basho_bench_worker:handle_info:149 Worker <0.9952.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,4231},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:30:06.103 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.9951.0> exit with reason normal in context child_terminated -2014-07-16 20:30:06.903 [error] emulator Error in process <0.5604.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,6510},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:30:06.903 [error] <0.5603.0>@basho_bench_worker:handle_info:149 Worker <0.5604.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,6510},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:30:06.909 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.5603.0> exit with reason normal in context child_terminated -2014-07-16 20:30:12.241 [error] emulator Error in process <0.14396.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,503},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:30:12.241 [error] <0.14395.0>@basho_bench_worker:handle_info:149 Worker <0.14396.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,503},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:30:12.242 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.14395.0> exit with reason normal in context child_terminated -2014-07-16 20:30:16.566 [error] emulator Error in process <0.15205.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,6983},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:30:16.566 [error] <0.15204.0>@basho_bench_worker:handle_info:149 Worker <0.15205.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,6983},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:30:16.567 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.15204.0> exit with reason normal in context child_terminated -2014-07-16 20:30:20.482 [error] emulator Error in process <0.24713.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5403},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:30:20.482 [error] <0.24712.0>@basho_bench_worker:handle_info:149 Worker <0.24713.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5403},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:30:20.484 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.24712.0> exit with reason normal in context child_terminated -2014-07-16 20:30:21.336 [error] emulator Error in process <0.20472.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,1860},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:30:21.336 [error] <0.20470.0>@basho_bench_worker:handle_info:149 Worker <0.20472.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,1860},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:30:21.337 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.20470.0> exit with reason normal in context child_terminated -2014-07-16 20:30:25.199 [error] emulator Error in process <0.28645.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,2055},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:30:25.199 [error] <0.28644.0>@basho_bench_worker:handle_info:149 Worker <0.28645.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,2055},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:30:25.200 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.28644.0> exit with reason normal in context child_terminated -2014-07-16 20:30:25.333 [error] emulator Error in process <0.29486.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,627},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:30:25.333 [error] <0.29484.0>@basho_bench_worker:handle_info:149 Worker <0.29486.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,627},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:30:25.334 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.29484.0> exit with reason normal in context child_terminated -2014-07-16 20:30:25.798 [error] emulator Error in process <0.575.1> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,2438},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:30:25.798 [error] <0.574.1>@basho_bench_worker:handle_info:149 Worker <0.575.1> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,2438},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:30:25.805 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.574.1> exit with reason normal in context child_terminated -2014-07-16 20:30:25.806 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.574.1> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_202950/errors.csv b/newtests/20140716_202950/errors.csv deleted file mode 100644 index 29210b502..000000000 --- a/newtests/20140716_202950/errors.csv +++ /dev/null @@ -1 +0,0 @@ -"error","count" diff --git a/newtests/20140716_202950/floppstore.config b/newtests/20140716_202950/floppstore.config deleted file mode 100644 index 55db32761..000000000 --- a/newtests/20140716_202950/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. - -{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. - -{operations, [{append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_202950/log.sasl.txt b/newtests/20140716_202950/log.sasl.txt deleted file mode 100644 index d1f2ea6fe..000000000 --- a/newtests/20140716_202950/log.sasl.txt +++ /dev/null @@ -1,461 +0,0 @@ - -=PROGRESS REPORT==== 16-Jul-2014::20:29:51 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:29:51 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:29:51 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::20:29:51 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:29:51 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::20:29:51 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:29:51 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::20:29:52 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::20:29:52 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:29:52 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:29:52 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::20:29:52 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:29:52 === - supervisor: {local,net_sup} - started: [{pid,<0.97.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:29:52 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:29:52 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:29:52 === - supervisor: {local,kernel_sup} - started: [{pid,<0.96.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::20:29:52 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 16-Jul-2014::20:29:52 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.103.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:29:52 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:29:52 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:29:52 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.109.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:29:52 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 16-Jul-2014::20:29:57 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::20:29:57 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.5603.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::20:30:01 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::20:30:01 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.9951.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::20:30:06 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.9951.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::20:30:06 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.14395.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::20:30:06 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.5603.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::20:30:06 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.15204.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::20:30:12 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.14395.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::20:30:12 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.20470.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::20:30:16 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.15204.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::20:30:16 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.24712.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::20:30:20 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.24712.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::20:30:20 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.28644.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::20:30:21 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.20470.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::20:30:21 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.29484.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::20:30:25 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.28644.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::20:30:25 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.574.1>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::20:30:25 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.29484.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::20:30:25 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.697.1>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::20:30:25 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.574.1>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 16-Jul-2014::20:30:25 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.574.1>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140716_202950/read_latencies.csv b/newtests/20140716_202950/read_latencies.csv deleted file mode 100644 index 33378e216..000000000 --- a/newtests/20140716_202950/read_latencies.csv +++ /dev/null @@ -1,5 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -10.000722, 10.000722, 5210, 857, 1805.1, 1559, 2715, 4084, 11226, 16536, 0 -20.0017, 10.000978, 4998, 934, 1858.6, 1635, 2814, 3587, 10542, 14673, 0 -30.001687, 9.999987, 4965, 929, 1867.2, 1654, 2786, 3412, 10812, 23261, 0 -33.572753, 3.571066, 1799, 929, 1845.0, 1626, 2758, 3655, 10812, 23261, 0 diff --git a/newtests/20140716_202950/summary.csv b/newtests/20140716_202950/summary.csv deleted file mode 100644 index b4a8ff31d..000000000 --- a/newtests/20140716_202950/summary.csv +++ /dev/null @@ -1,5 +0,0 @@ -elapsed, window, total, successful, failed -10.000722, 10.000722, 10364, 10364, 0 -20.0017, 10.000978, 9986, 9986, 0 -30.001687, 9.999987, 9905, 9905, 0 -33.572753, 3.571066, 3524, 3524, 0 diff --git a/newtests/20140716_203343/append_latencies.csv b/newtests/20140716_203343/append_latencies.csv deleted file mode 100644 index 75411b8b7..000000000 --- a/newtests/20140716_203343/append_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -10.001115, 10.001115, 5214, 1038, 1991.8, 1739, 2832, 4103, 16729, 34095, 0 diff --git a/newtests/20140716_203343/console.log b/newtests/20140716_203343/console.log deleted file mode 100644 index 28fe0ff39..000000000 --- a/newtests/20140716_203343/console.log +++ /dev/null @@ -1,52 +0,0 @@ -2014-07-16 20:33:43.710 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_203343/error.log"} into lager_event -2014-07-16 20:33:43.710 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_203343/console.log"} into lager_event -2014-07-16 20:33:43.710 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-16 20:33:43.746 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-16 20:33:43.746 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-16 20:33:43.746 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-16 20:33:43.746 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-16 20:33:44.182 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-16 20:33:44.610 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-16 20:33:44.611 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_203343/console.log to debug -2014-07-16 20:33:44.618 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} -2014-07-16 20:33:44.699 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-16 20:33:44.700 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-16 20:33:44.701 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-16 20:33:44.716 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-16 20:33:44.716 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-16 20:33:44.810 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-16 20:33:44.810 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-16 20:33:44.838 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-16 20:33:44.841 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-16 20:33:44.845 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-16 20:33:44.846 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-16 20:33:44.885 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-16 20:33:44.951 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> -2014-07-16 20:33:44.958 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> -2014-07-16 20:33:44.971 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-16 20:33:44.971 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> -2014-07-16 20:33:44.972 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> -2014-07-16 20:33:44.985 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> -2014-07-16 20:33:44.986 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> -2014-07-16 20:33:45.003 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 20:33:45.003 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 20:33:45.004 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-16 20:33:45.053 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 20:33:45.053 [info] <0.108.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 20:33:45.054 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> -2014-07-16 20:33:45.054 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> -2014-07-16 20:33:45.062 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> -2014-07-16 20:33:45.062 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> -2014-07-16 20:33:45.062 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-16 20:33:50.490 [error] emulator Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gcounter],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-'... - - -2014-07-16 20:33:50.490 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gcounter],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:33:50.491 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-16 20:33:50.535 [info] <0.5689.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 20:33:50.535 [info] <0.5689.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-16 20:33:50.535 [warning] <0.5688.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 20:33:50.535 [info] <0.5689.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.5689.0> -2014-07-16 20:33:50.536 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.5688.0> diff --git a/newtests/20140716_203343/crash.log b/newtests/20140716_203343/crash.log deleted file mode 100644 index 7f3bf9d15..000000000 --- a/newtests/20140716_203343/crash.log +++ /dev/null @@ -1,9 +0,0 @@ -2014-07-16 20:33:50 =ERROR REPORT==== -Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gcounter],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-'... - -2014-07-16 20:33:50 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140716_203343/error.log b/newtests/20140716_203343/error.log deleted file mode 100644 index a1c9e068c..000000000 --- a/newtests/20140716_203343/error.log +++ /dev/null @@ -1,5 +0,0 @@ -2014-07-16 20:33:50.490 [error] emulator Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gcounter],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-'... - - -2014-07-16 20:33:50.490 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gcounter],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:33:50.491 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated diff --git a/newtests/20140716_203343/errors.csv b/newtests/20140716_203343/errors.csv deleted file mode 100644 index 29210b502..000000000 --- a/newtests/20140716_203343/errors.csv +++ /dev/null @@ -1 +0,0 @@ -"error","count" diff --git a/newtests/20140716_203343/floppstore.config b/newtests/20140716_203343/floppstore.config deleted file mode 100644 index 55db32761..000000000 --- a/newtests/20140716_203343/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. - -{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. - -{operations, [{append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_203343/log.sasl.txt b/newtests/20140716_203343/log.sasl.txt deleted file mode 100644 index 7c02b9daf..000000000 --- a/newtests/20140716_203343/log.sasl.txt +++ /dev/null @@ -1,208 +0,0 @@ - -=PROGRESS REPORT==== 16-Jul-2014::20:33:44 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:33:44 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:33:44 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::20:33:44 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:33:44 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::20:33:44 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:33:44 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::20:33:44 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::20:33:44 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:33:44 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:33:44 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::20:33:44 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:33:44 === - supervisor: {local,net_sup} - started: [{pid,<0.97.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:33:44 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:33:44 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:33:44 === - supervisor: {local,kernel_sup} - started: [{pid,<0.96.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::20:33:44 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 16-Jul-2014::20:33:44 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.103.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:33:45 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:33:45 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:33:45 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.109.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:33:45 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 16-Jul-2014::20:33:50 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::20:33:50 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.5688.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] diff --git a/newtests/20140716_203343/read_latencies.csv b/newtests/20140716_203343/read_latencies.csv deleted file mode 100644 index 4159fb699..000000000 --- a/newtests/20140716_203343/read_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -10.001115, 10.001115, 5214, 936, 1796.5, 1558, 2631, 3616, 11995, 27396, 0 diff --git a/newtests/20140716_203343/summary.csv b/newtests/20140716_203343/summary.csv deleted file mode 100644 index 08f6b4a64..000000000 --- a/newtests/20140716_203343/summary.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, total, successful, failed -10.001115, 10.001115, 10428, 10428, 0 diff --git a/newtests/20140716_203731/append_latencies.csv b/newtests/20140716_203731/append_latencies.csv deleted file mode 100644 index 2390c4025..000000000 --- a/newtests/20140716_203731/append_latencies.csv +++ /dev/null @@ -1,4 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -10.000141, 10.000141, 4299, 801, 1207.5, 1164, 1448, 2316, 6432, 33151, 0 -20.001154, 10.001013, 4243, 797, 1183.9, 1165, 1476, 1751, 2201, 3601, 0 -26.188973, 6.187819, 2616, 797, 1184.4, 1166, 1443, 1712, 2733, 4770, 0 diff --git a/newtests/20140716_203731/console.log b/newtests/20140716_203731/console.log deleted file mode 100644 index a3e522413..000000000 --- a/newtests/20140716_203731/console.log +++ /dev/null @@ -1,105 +0,0 @@ -2014-07-16 20:37:31.294 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_203731/error.log"} into lager_event -2014-07-16 20:37:31.294 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_203731/console.log"} into lager_event -2014-07-16 20:37:31.294 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-16 20:37:31.330 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-16 20:37:31.330 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-16 20:37:31.330 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-16 20:37:31.330 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-16 20:37:31.771 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-16 20:37:32.150 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-16 20:37:32.151 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_203731/console.log to debug -2014-07-16 20:37:32.158 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} -2014-07-16 20:37:32.238 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-16 20:37:32.239 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-16 20:37:32.239 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-16 20:37:32.253 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-16 20:37:32.253 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-16 20:37:32.343 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-16 20:37:32.343 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-16 20:37:32.372 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-16 20:37:32.378 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-16 20:37:32.384 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-16 20:37:32.384 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-16 20:37:32.420 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-16 20:37:32.489 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> -2014-07-16 20:37:32.496 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> -2014-07-16 20:37:32.513 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-16 20:37:32.513 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> -2014-07-16 20:37:32.514 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> -2014-07-16 20:37:32.530 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> -2014-07-16 20:37:32.531 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> -2014-07-16 20:37:32.548 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 20:37:32.548 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 20:37:32.549 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-16 20:37:32.549 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.107.0> -2014-07-16 20:37:32.556 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> -2014-07-16 20:37:32.557 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-16 20:37:43.401 [error] emulator Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gcounter],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-'... - - -2014-07-16 20:37:43.402 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gcounter],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:37:43.402 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 20:37:43.444 [info] <0.9526.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 20:37:43.444 [info] <0.9526.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 20:37:43.444 [warning] <0.9525.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 20:37:43.444 [info] <0.9526.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.9526.0> -2014-07-16 20:37:43.445 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.9525.0> -2014-07-16 20:37:51.631 [error] <0.9525.0>@basho_bench_worker:handle_info:149 Worker <0.9526.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,7781},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:37:51.631 [error] emulator Error in process <0.9526.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,7781},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:37:51.632 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.9525.0> exit with reason normal in context child_terminated -2014-07-16 20:37:51.659 [info] <0.16630.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 20:37:51.659 [info] <0.16630.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 20:37:51.659 [warning] <0.16629.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 20:37:51.659 [info] <0.16630.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.16630.0> -2014-07-16 20:37:51.659 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.16629.0> -2014-07-16 20:37:54.256 [error] emulator Error in process <0.16630.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,7619},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:37:54.256 [error] <0.16629.0>@basho_bench_worker:handle_info:149 Worker <0.16630.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,7619},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:37:54.257 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.16629.0> exit with reason normal in context child_terminated -2014-07-16 20:37:54.289 [info] <0.18880.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 20:37:54.289 [info] <0.18880.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 20:37:54.289 [warning] <0.18879.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 20:37:54.289 [info] <0.18880.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.18880.0> -2014-07-16 20:37:54.289 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.18879.0> -2014-07-16 20:37:55.235 [error] emulator Error in process <0.18880.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gset],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-'... - - -2014-07-16 20:37:55.235 [error] <0.18879.0>@basho_bench_worker:handle_info:149 Worker <0.18880.0> exited with {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gset],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:37:55.236 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.18879.0> exit with reason normal in context child_terminated -2014-07-16 20:37:55.266 [info] <0.19755.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 20:37:55.266 [info] <0.19755.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 20:37:55.266 [warning] <0.19754.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 20:37:55.266 [info] <0.19755.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.19755.0> -2014-07-16 20:37:55.266 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.19754.0> -2014-07-16 20:37:56.374 [error] emulator Error in process <0.19755.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,3579},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:37:56.374 [error] <0.19754.0>@basho_bench_worker:handle_info:149 Worker <0.19755.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,3579},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:37:56.374 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.19754.0> exit with reason normal in context child_terminated -2014-07-16 20:37:56.412 [info] <0.20686.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 20:37:56.412 [info] <0.20686.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 20:37:56.412 [warning] <0.20685.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 20:37:56.412 [info] <0.20686.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.20686.0> -2014-07-16 20:37:56.412 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.20685.0> -2014-07-16 20:37:56.426 [error] emulator Error in process <0.20686.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,7092},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:37:56.426 [error] <0.20685.0>@basho_bench_worker:handle_info:149 Worker <0.20686.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,7092},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:37:56.427 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.20685.0> exit with reason normal in context child_terminated -2014-07-16 20:37:56.464 [info] <0.20699.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 20:37:56.464 [info] <0.20699.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 20:37:56.465 [warning] <0.20698.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 20:37:56.465 [info] <0.20699.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.20699.0> -2014-07-16 20:37:56.465 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.20698.0> -2014-07-16 20:37:58.737 [error] emulator Error in process <0.20699.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5784},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:37:58.737 [error] <0.20698.0>@basho_bench_worker:handle_info:149 Worker <0.20699.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5784},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:37:58.738 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.20698.0> exit with reason normal in context child_terminated -2014-07-16 20:37:58.739 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.20698.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-16 20:37:58.754 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. diff --git a/newtests/20140716_203731/crash.log b/newtests/20140716_203731/crash.log deleted file mode 100644 index 3e08ee527..000000000 --- a/newtests/20140716_203731/crash.log +++ /dev/null @@ -1,69 +0,0 @@ -2014-07-16 20:37:43 =ERROR REPORT==== -Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gcounter],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-'... - -2014-07-16 20:37:43 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 20:37:51 =ERROR REPORT==== -Error in process <0.9526.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,7781},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - -2014-07-16 20:37:51 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.9525.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 20:37:54 =ERROR REPORT==== -Error in process <0.16630.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,7619},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - -2014-07-16 20:37:54 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.16629.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 20:37:55 =ERROR REPORT==== -Error in process <0.18880.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gset],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-'... - -2014-07-16 20:37:55 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.18879.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 20:37:56 =ERROR REPORT==== -Error in process <0.19755.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,3579},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - -2014-07-16 20:37:56 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.19754.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 20:37:56 =ERROR REPORT==== -Error in process <0.20686.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,7092},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - -2014-07-16 20:37:56 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.20685.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 20:37:58 =ERROR REPORT==== -Error in process <0.20699.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5784},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - -2014-07-16 20:37:58 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.20698.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 20:37:58 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.20698.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140716_203731/error.log b/newtests/20140716_203731/error.log deleted file mode 100644 index f382cd6f7..000000000 --- a/newtests/20140716_203731/error.log +++ /dev/null @@ -1,36 +0,0 @@ -2014-07-16 20:37:43.401 [error] emulator Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gcounter],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-'... - - -2014-07-16 20:37:43.402 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gcounter],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:37:43.402 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 20:37:51.631 [error] <0.9525.0>@basho_bench_worker:handle_info:149 Worker <0.9526.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,7781},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:37:51.631 [error] emulator Error in process <0.9526.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,7781},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:37:51.632 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.9525.0> exit with reason normal in context child_terminated -2014-07-16 20:37:54.256 [error] emulator Error in process <0.16630.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,7619},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:37:54.256 [error] <0.16629.0>@basho_bench_worker:handle_info:149 Worker <0.16630.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,7619},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:37:54.257 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.16629.0> exit with reason normal in context child_terminated -2014-07-16 20:37:55.235 [error] emulator Error in process <0.18880.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gset],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-'... - - -2014-07-16 20:37:55.235 [error] <0.18879.0>@basho_bench_worker:handle_info:149 Worker <0.18880.0> exited with {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gset],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:37:55.236 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.18879.0> exit with reason normal in context child_terminated -2014-07-16 20:37:56.374 [error] emulator Error in process <0.19755.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,3579},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:37:56.374 [error] <0.19754.0>@basho_bench_worker:handle_info:149 Worker <0.19755.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,3579},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:37:56.374 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.19754.0> exit with reason normal in context child_terminated -2014-07-16 20:37:56.426 [error] emulator Error in process <0.20686.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,7092},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:37:56.426 [error] <0.20685.0>@basho_bench_worker:handle_info:149 Worker <0.20686.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,7092},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:37:56.427 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.20685.0> exit with reason normal in context child_terminated -2014-07-16 20:37:58.737 [error] emulator Error in process <0.20699.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5784},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:37:58.737 [error] <0.20698.0>@basho_bench_worker:handle_info:149 Worker <0.20699.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5784},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:37:58.738 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.20698.0> exit with reason normal in context child_terminated -2014-07-16 20:37:58.739 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.20698.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_203731/errors.csv b/newtests/20140716_203731/errors.csv deleted file mode 100644 index 29210b502..000000000 --- a/newtests/20140716_203731/errors.csv +++ /dev/null @@ -1 +0,0 @@ -"error","count" diff --git a/newtests/20140716_203731/floppstore.config b/newtests/20140716_203731/floppstore.config deleted file mode 100644 index ff45d1b34..000000000 --- a/newtests/20140716_203731/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 1}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. - -{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. - -{operations, [{append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_203731/log.sasl.txt b/newtests/20140716_203731/log.sasl.txt deleted file mode 100644 index 76bbe1c24..000000000 --- a/newtests/20140716_203731/log.sasl.txt +++ /dev/null @@ -1,350 +0,0 @@ - -=PROGRESS REPORT==== 16-Jul-2014::20:37:32 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:37:32 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:37:32 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::20:37:32 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:37:32 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::20:37:32 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:37:32 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::20:37:32 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::20:37:32 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:37:32 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:37:32 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::20:37:32 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:37:32 === - supervisor: {local,net_sup} - started: [{pid,<0.97.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:37:32 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:37:32 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:37:32 === - supervisor: {local,kernel_sup} - started: [{pid,<0.96.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::20:37:32 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 16-Jul-2014::20:37:32 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.103.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:37:32 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:37:32 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.107.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:37:32 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 16-Jul-2014::20:37:43 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::20:37:43 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.9525.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::20:37:51 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.9525.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::20:37:51 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.16629.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::20:37:54 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.16629.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::20:37:54 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.18879.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::20:37:55 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.18879.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::20:37:55 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.19754.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::20:37:56 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.19754.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::20:37:56 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.20685.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::20:37:56 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.20685.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::20:37:56 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.20698.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::20:37:58 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.20698.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 16-Jul-2014::20:37:58 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.20698.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140716_203731/read_latencies.csv b/newtests/20140716_203731/read_latencies.csv deleted file mode 100644 index ae5f7f342..000000000 --- a/newtests/20140716_203731/read_latencies.csv +++ /dev/null @@ -1,4 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -10.000141, 10.000141, 4354, 720, 1063.7, 1034, 1294, 1578, 5407, 11281, 0 -20.001154, 10.001013, 4387, 705, 1068.1, 1047, 1324, 1614, 2403, 7705, 0 -26.188973, 6.187819, 2600, 705, 1066.4, 1049, 1307, 1512, 2176, 3205, 0 diff --git a/newtests/20140716_203731/summary.csv b/newtests/20140716_203731/summary.csv deleted file mode 100644 index 5d923be9c..000000000 --- a/newtests/20140716_203731/summary.csv +++ /dev/null @@ -1,4 +0,0 @@ -elapsed, window, total, successful, failed -10.000141, 10.000141, 8653, 8653, 0 -20.001154, 10.001013, 8630, 8630, 0 -26.188973, 6.187819, 5216, 5216, 0 diff --git a/newtests/20140716_204925/append_latencies.csv b/newtests/20140716_204925/append_latencies.csv deleted file mode 100644 index 9ec51711b..000000000 --- a/newtests/20140716_204925/append_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.320309, 0.320309, 10, 1381, 7403.6, 1920, 34991, 34991, 34991, 34991, 0 diff --git a/newtests/20140716_204925/console.log b/newtests/20140716_204925/console.log deleted file mode 100644 index bf858e5b2..000000000 --- a/newtests/20140716_204925/console.log +++ /dev/null @@ -1,96 +0,0 @@ -2014-07-16 20:49:25.916 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_204925/error.log"} into lager_event -2014-07-16 20:49:25.916 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_204925/console.log"} into lager_event -2014-07-16 20:49:25.916 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-16 20:49:25.950 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-16 20:49:25.950 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-16 20:49:25.950 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-16 20:49:25.950 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-16 20:49:26.387 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-16 20:49:26.742 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-16 20:49:26.743 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_204925/console.log to debug -2014-07-16 20:49:26.749 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} -2014-07-16 20:49:26.831 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-16 20:49:26.832 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-16 20:49:26.832 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-16 20:49:26.845 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-16 20:49:26.845 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-16 20:49:26.932 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-16 20:49:26.932 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-16 20:49:26.960 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-16 20:49:26.965 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-16 20:49:26.971 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-16 20:49:26.971 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-16 20:49:27.012 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-16 20:49:27.078 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> -2014-07-16 20:49:27.085 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> -2014-07-16 20:49:27.099 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-16 20:49:27.099 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> -2014-07-16 20:49:27.100 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> -2014-07-16 20:49:27.115 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> -2014-07-16 20:49:27.115 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> -2014-07-16 20:49:27.135 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 20:49:27.135 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 20:49:27.135 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-16 20:49:27.136 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.107.0> -2014-07-16 20:49:27.143 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> -2014-07-16 20:49:27.143 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-16 20:49:27.196 [error] emulator Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 20:49:27.196 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:49:27.197 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 20:49:27.232 [info] <0.112.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 20:49:27.232 [info] <0.112.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 20:49:27.232 [warning] <0.111.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 20:49:27.232 [info] <0.112.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.112.0> -2014-07-16 20:49:27.232 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.111.0> -2014-07-16 20:49:27.245 [error] emulator Error in process <0.112.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 20:49:27.245 [error] <0.111.0>@basho_bench_worker:handle_info:149 Worker <0.112.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:49:27.245 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.111.0> exit with reason normal in context child_terminated -2014-07-16 20:49:27.273 [info] <0.117.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 20:49:27.273 [info] <0.117.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 20:49:27.273 [warning] <0.116.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 20:49:27.273 [info] <0.117.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.117.0> -2014-07-16 20:49:27.274 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.116.0> -2014-07-16 20:49:27.281 [error] emulator Error in process <0.117.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 20:49:27.281 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:49:27.281 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason normal in context child_terminated -2014-07-16 20:49:27.319 [info] <0.121.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 20:49:27.319 [info] <0.121.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 20:49:27.319 [warning] <0.120.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 20:49:27.319 [info] <0.121.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.121.0> -2014-07-16 20:49:27.320 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.120.0> -2014-07-16 20:49:27.343 [error] emulator Error in process <0.121.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 20:49:27.343 [error] <0.120.0>@basho_bench_worker:handle_info:149 Worker <0.121.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:49:27.343 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.120.0> exit with reason normal in context child_terminated -2014-07-16 20:49:27.390 [info] <0.127.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 20:49:27.390 [info] <0.127.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 20:49:27.390 [warning] <0.126.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 20:49:27.390 [info] <0.127.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.127.0> -2014-07-16 20:49:27.390 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.126.0> -2014-07-16 20:49:27.399 [error] <0.126.0>@basho_bench_worker:handle_info:149 Worker <0.127.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:49:27.399 [error] emulator Error in process <0.127.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 20:49:27.400 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.126.0> exit with reason normal in context child_terminated -2014-07-16 20:49:27.445 [info] <0.131.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 20:49:27.445 [info] <0.131.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 20:49:27.445 [warning] <0.130.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 20:49:27.445 [info] <0.131.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.131.0> -2014-07-16 20:49:27.446 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.130.0> -2014-07-16 20:49:27.455 [error] emulator Error in process <0.131.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 20:49:27.455 [error] <0.130.0>@basho_bench_worker:handle_info:149 Worker <0.131.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:49:27.456 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.130.0> exit with reason normal in context child_terminated -2014-07-16 20:49:27.456 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.130.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-16 20:49:27.465 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} -2014-07-16 20:49:27.466 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. diff --git a/newtests/20140716_204925/crash.log b/newtests/20140716_204925/crash.log deleted file mode 100644 index 811c35c6b..000000000 --- a/newtests/20140716_204925/crash.log +++ /dev/null @@ -1,60 +0,0 @@ -2014-07-16 20:49:27 =ERROR REPORT==== -Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - -2014-07-16 20:49:27 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 20:49:27 =ERROR REPORT==== -Error in process <0.112.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - -2014-07-16 20:49:27 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.111.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 20:49:27 =ERROR REPORT==== -Error in process <0.117.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - -2014-07-16 20:49:27 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.116.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 20:49:27 =ERROR REPORT==== -Error in process <0.121.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - -2014-07-16 20:49:27 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.120.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 20:49:27 =ERROR REPORT==== -Error in process <0.127.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - -2014-07-16 20:49:27 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.126.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 20:49:27 =ERROR REPORT==== -Error in process <0.131.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - -2014-07-16 20:49:27 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.130.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 20:49:27 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.130.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140716_204925/error.log b/newtests/20140716_204925/error.log deleted file mode 100644 index 03f02e917..000000000 --- a/newtests/20140716_204925/error.log +++ /dev/null @@ -1,31 +0,0 @@ -2014-07-16 20:49:27.196 [error] emulator Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 20:49:27.196 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:49:27.197 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 20:49:27.245 [error] emulator Error in process <0.112.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 20:49:27.245 [error] <0.111.0>@basho_bench_worker:handle_info:149 Worker <0.112.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:49:27.245 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.111.0> exit with reason normal in context child_terminated -2014-07-16 20:49:27.281 [error] emulator Error in process <0.117.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 20:49:27.281 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:49:27.281 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.116.0> exit with reason normal in context child_terminated -2014-07-16 20:49:27.343 [error] emulator Error in process <0.121.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 20:49:27.343 [error] <0.120.0>@basho_bench_worker:handle_info:149 Worker <0.121.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:49:27.343 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.120.0> exit with reason normal in context child_terminated -2014-07-16 20:49:27.399 [error] <0.126.0>@basho_bench_worker:handle_info:149 Worker <0.127.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:49:27.399 [error] emulator Error in process <0.127.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 20:49:27.400 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.126.0> exit with reason normal in context child_terminated -2014-07-16 20:49:27.455 [error] emulator Error in process <0.131.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/bash... - - -2014-07-16 20:49:27.455 [error] <0.130.0>@basho_bench_worker:handle_info:149 Worker <0.131.0> exited with {{case_clause,{badrpc,{'EXIT',{undef,[{error,new,[],[]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:49:27.456 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.130.0> exit with reason normal in context child_terminated -2014-07-16 20:49:27.456 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.130.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_204925/errors.csv b/newtests/20140716_204925/errors.csv deleted file mode 100644 index 29210b502..000000000 --- a/newtests/20140716_204925/errors.csv +++ /dev/null @@ -1 +0,0 @@ -"error","count" diff --git a/newtests/20140716_204925/floppstore.config b/newtests/20140716_204925/floppstore.config deleted file mode 100644 index ff45d1b34..000000000 --- a/newtests/20140716_204925/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 1}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. - -{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. - -{operations, [{append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_204925/log.sasl.txt b/newtests/20140716_204925/log.sasl.txt deleted file mode 100644 index 22eb452a0..000000000 --- a/newtests/20140716_204925/log.sasl.txt +++ /dev/null @@ -1,325 +0,0 @@ - -=PROGRESS REPORT==== 16-Jul-2014::20:49:26 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:49:26 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:49:26 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::20:49:26 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:49:26 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::20:49:26 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:49:26 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::20:49:26 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::20:49:26 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:49:26 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:49:26 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::20:49:27 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:49:27 === - supervisor: {local,net_sup} - started: [{pid,<0.97.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:49:27 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:49:27 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:49:27 === - supervisor: {local,kernel_sup} - started: [{pid,<0.96.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::20:49:27 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 16-Jul-2014::20:49:27 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.103.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:49:27 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:49:27 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.107.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:49:27 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 16-Jul-2014::20:49:27 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::20:49:27 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.111.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::20:49:27 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.111.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::20:49:27 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.116.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::20:49:27 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.116.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::20:49:27 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.120.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::20:49:27 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.120.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::20:49:27 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.126.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::20:49:27 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.126.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::20:49:27 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.130.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::20:49:27 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.130.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 16-Jul-2014::20:49:27 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.130.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140716_204925/read_latencies.csv b/newtests/20140716_204925/read_latencies.csv deleted file mode 100644 index 9c4399063..000000000 --- a/newtests/20140716_204925/read_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.320309, 0.320309, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140716_204925/summary.csv b/newtests/20140716_204925/summary.csv deleted file mode 100644 index 539ff87ea..000000000 --- a/newtests/20140716_204925/summary.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, total, successful, failed -0.320309, 0.320309, 10, 10, 0 diff --git a/newtests/20140716_205022/append_latencies.csv b/newtests/20140716_205022/append_latencies.csv deleted file mode 100644 index 779b683ce..000000000 --- a/newtests/20140716_205022/append_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -10.000267, 10.000267, 4161, 801, 1288.3, 1154, 1551, 6815, 14415, 28462, 0 diff --git a/newtests/20140716_205022/console.log b/newtests/20140716_205022/console.log deleted file mode 100644 index 276fc8d18..000000000 --- a/newtests/20140716_205022/console.log +++ /dev/null @@ -1,88 +0,0 @@ -2014-07-16 20:50:23.016 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_205022/error.log"} into lager_event -2014-07-16 20:50:23.016 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_205022/console.log"} into lager_event -2014-07-16 20:50:23.016 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-16 20:50:23.049 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-16 20:50:23.049 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-16 20:50:23.050 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-16 20:50:23.050 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-16 20:50:23.489 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-16 20:50:23.842 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-16 20:50:23.844 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_205022/console.log to debug -2014-07-16 20:50:23.850 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} -2014-07-16 20:50:23.928 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-16 20:50:23.929 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-16 20:50:23.929 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-16 20:50:23.942 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-16 20:50:23.943 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-16 20:50:24.022 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-16 20:50:24.023 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-16 20:50:24.048 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-16 20:50:24.052 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-16 20:50:24.056 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-16 20:50:24.057 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-16 20:50:24.095 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-16 20:50:24.156 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> -2014-07-16 20:50:24.163 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> -2014-07-16 20:50:24.176 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-16 20:50:24.176 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> -2014-07-16 20:50:24.177 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> -2014-07-16 20:50:24.192 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> -2014-07-16 20:50:24.192 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> -2014-07-16 20:50:24.206 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 20:50:24.206 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 20:50:24.207 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-16 20:50:24.207 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.107.0> -2014-07-16 20:50:24.213 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> -2014-07-16 20:50:24.213 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-16 20:50:29.410 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gset],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:50:29.410 [error] emulator Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gset],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-'... - - -2014-07-16 20:50:29.411 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 20:50:29.440 [info] <0.4181.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 20:50:29.440 [info] <0.4181.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 20:50:29.440 [warning] <0.4180.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 20:50:29.440 [info] <0.4181.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.4181.0> -2014-07-16 20:50:29.440 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.4180.0> -2014-07-16 20:50:32.067 [error] emulator Error in process <0.4181.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,8102},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:50:32.068 [error] <0.4180.0>@basho_bench_worker:handle_info:149 Worker <0.4181.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,8102},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:50:32.068 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.4180.0> exit with reason normal in context child_terminated -2014-07-16 20:50:32.103 [info] <0.6580.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 20:50:32.103 [info] <0.6580.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 20:50:32.103 [warning] <0.6579.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 20:50:32.103 [info] <0.6580.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.6580.0> -2014-07-16 20:50:32.103 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.6579.0> -2014-07-16 20:50:32.725 [error] emulator Error in process <0.6580.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,560},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:50:32.725 [error] <0.6579.0>@basho_bench_worker:handle_info:149 Worker <0.6580.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,560},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:50:32.732 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.6579.0> exit with reason normal in context child_terminated -2014-07-16 20:50:32.763 [info] <0.7132.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 20:50:32.763 [info] <0.7132.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 20:50:32.763 [warning] <0.7131.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 20:50:32.763 [info] <0.7132.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.7132.0> -2014-07-16 20:50:32.763 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.7131.0> -2014-07-16 20:50:38.337 [error] emulator Error in process <0.7132.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gset],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-'... - - -2014-07-16 20:50:38.337 [error] <0.7131.0>@basho_bench_worker:handle_info:149 Worker <0.7132.0> exited with {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gset],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:50:38.338 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.7131.0> exit with reason normal in context child_terminated -2014-07-16 20:50:38.382 [info] <0.12038.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 20:50:38.382 [info] <0.12038.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 20:50:38.382 [warning] <0.12037.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 20:50:38.382 [info] <0.12038.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.12038.0> -2014-07-16 20:50:38.383 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.12037.0> -2014-07-16 20:50:38.430 [error] <0.12037.0>@basho_bench_worker:handle_info:149 Worker <0.12038.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,7745},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:50:38.430 [error] emulator Error in process <0.12038.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,7745},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:50:38.431 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.12037.0> exit with reason normal in context child_terminated -2014-07-16 20:50:38.463 [info] <0.12072.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 20:50:38.463 [info] <0.12072.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 20:50:38.463 [warning] <0.12071.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 20:50:38.463 [info] <0.12072.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.12072.0> -2014-07-16 20:50:38.464 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.12071.0> diff --git a/newtests/20140716_205022/crash.log b/newtests/20140716_205022/crash.log deleted file mode 100644 index 6c45d11f5..000000000 --- a/newtests/20140716_205022/crash.log +++ /dev/null @@ -1,45 +0,0 @@ -2014-07-16 20:50:29 =ERROR REPORT==== -Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gset],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-'... - -2014-07-16 20:50:29 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 20:50:32 =ERROR REPORT==== -Error in process <0.4181.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,8102},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - -2014-07-16 20:50:32 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.4180.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 20:50:32 =ERROR REPORT==== -Error in process <0.6580.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,560},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - -2014-07-16 20:50:32 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.6579.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 20:50:38 =ERROR REPORT==== -Error in process <0.7132.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gset],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-'... - -2014-07-16 20:50:38 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.7131.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 20:50:38 =ERROR REPORT==== -Error in process <0.12038.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,7745},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - -2014-07-16 20:50:38 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.12037.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140716_205022/error.log b/newtests/20140716_205022/error.log deleted file mode 100644 index cb23e469c..000000000 --- a/newtests/20140716_205022/error.log +++ /dev/null @@ -1,25 +0,0 @@ -2014-07-16 20:50:29.410 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gset],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:50:29.410 [error] emulator Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gset],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-'... - - -2014-07-16 20:50:29.411 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 20:50:32.067 [error] emulator Error in process <0.4181.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,8102},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:50:32.068 [error] <0.4180.0>@basho_bench_worker:handle_info:149 Worker <0.4181.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,8102},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:50:32.068 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.4180.0> exit with reason normal in context child_terminated -2014-07-16 20:50:32.725 [error] emulator Error in process <0.6580.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,560},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:50:32.725 [error] <0.6579.0>@basho_bench_worker:handle_info:149 Worker <0.6580.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,560},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:50:32.732 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.6579.0> exit with reason normal in context child_terminated -2014-07-16 20:50:38.337 [error] emulator Error in process <0.7132.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gset],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-'... - - -2014-07-16 20:50:38.337 [error] <0.7131.0>@basho_bench_worker:handle_info:149 Worker <0.7132.0> exited with {{case_clause,{badrpc,{'EXIT',{badarg,[{erlang,apply,[[riak_dt_gset],new,[]],[]},{materializer,create_snapshot,1,[{file,"src/materializer.erl"},{line,14}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,30}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:50:38.338 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.7131.0> exit with reason normal in context child_terminated -2014-07-16 20:50:38.430 [error] <0.12037.0>@basho_bench_worker:handle_info:149 Worker <0.12038.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,7745},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:50:38.430 [error] emulator Error in process <0.12038.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,7745},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:50:38.431 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.12037.0> exit with reason normal in context child_terminated diff --git a/newtests/20140716_205022/errors.csv b/newtests/20140716_205022/errors.csv deleted file mode 100644 index 29210b502..000000000 --- a/newtests/20140716_205022/errors.csv +++ /dev/null @@ -1 +0,0 @@ -"error","count" diff --git a/newtests/20140716_205022/floppstore.config b/newtests/20140716_205022/floppstore.config deleted file mode 100644 index ff45d1b34..000000000 --- a/newtests/20140716_205022/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 1}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. - -{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. - -{operations, [{append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_205022/log.sasl.txt b/newtests/20140716_205022/log.sasl.txt deleted file mode 100644 index d937a4687..000000000 --- a/newtests/20140716_205022/log.sasl.txt +++ /dev/null @@ -1,297 +0,0 @@ - -=PROGRESS REPORT==== 16-Jul-2014::20:50:23 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:50:23 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:50:23 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::20:50:23 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:50:23 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::20:50:24 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:50:24 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::20:50:24 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::20:50:24 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:50:24 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:50:24 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::20:50:24 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:50:24 === - supervisor: {local,net_sup} - started: [{pid,<0.97.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:50:24 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:50:24 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:50:24 === - supervisor: {local,kernel_sup} - started: [{pid,<0.96.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::20:50:24 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 16-Jul-2014::20:50:24 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.103.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:50:24 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:50:24 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.107.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:50:24 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 16-Jul-2014::20:50:29 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::20:50:29 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.4180.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::20:50:32 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.4180.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::20:50:32 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.6579.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::20:50:32 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.6579.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::20:50:32 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.7131.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::20:50:38 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.7131.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::20:50:38 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.12037.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::20:50:38 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.12037.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::20:50:38 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.12071.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] diff --git a/newtests/20140716_205022/read_latencies.csv b/newtests/20140716_205022/read_latencies.csv deleted file mode 100644 index 3aff799ae..000000000 --- a/newtests/20140716_205022/read_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -10.000267, 10.000267, 4117, 707, 1059.6, 1034, 1330, 1677, 3138, 3952, 0 diff --git a/newtests/20140716_205022/summary.csv b/newtests/20140716_205022/summary.csv deleted file mode 100644 index c364fe348..000000000 --- a/newtests/20140716_205022/summary.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, total, successful, failed -10.000267, 10.000267, 8278, 8278, 0 diff --git a/newtests/20140716_205202/append_latencies.csv b/newtests/20140716_205202/append_latencies.csv deleted file mode 100644 index 1c3e75123..000000000 --- a/newtests/20140716_205202/append_latencies.csv +++ /dev/null @@ -1,3 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -10.00107, 10.00107, 4331, 791, 1164.8, 1141, 1454, 1797, 2700, 4647, 0 -15.376694, 5.375624, 2188, 837, 1238.1, 1206, 1570, 2015, 3089, 22541, 0 diff --git a/newtests/20140716_205202/console.log b/newtests/20140716_205202/console.log deleted file mode 100644 index 3fe192eb0..000000000 --- a/newtests/20140716_205202/console.log +++ /dev/null @@ -1,105 +0,0 @@ -2014-07-16 20:52:02.936 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_205202/error.log"} into lager_event -2014-07-16 20:52:02.936 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_205202/console.log"} into lager_event -2014-07-16 20:52:02.936 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-16 20:52:02.971 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-16 20:52:02.971 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-16 20:52:02.971 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-16 20:52:02.972 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-16 20:52:03.413 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-16 20:52:03.791 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-16 20:52:03.792 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_205202/console.log to debug -2014-07-16 20:52:03.799 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} -2014-07-16 20:52:03.881 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-16 20:52:03.882 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-16 20:52:03.882 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-16 20:52:03.897 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-16 20:52:03.897 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-16 20:52:03.986 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-16 20:52:03.986 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-16 20:52:04.014 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-16 20:52:04.018 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-16 20:52:04.022 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-16 20:52:04.022 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-16 20:52:04.063 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-16 20:52:04.126 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> -2014-07-16 20:52:04.134 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> -2014-07-16 20:52:04.148 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-16 20:52:04.148 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> -2014-07-16 20:52:04.149 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> -2014-07-16 20:52:04.166 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> -2014-07-16 20:52:04.167 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> -2014-07-16 20:52:04.181 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 20:52:04.181 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 20:52:04.182 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-16 20:52:04.182 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.107.0> -2014-07-16 20:52:04.189 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> -2014-07-16 20:52:04.189 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-16 20:52:08.578 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,6370},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:52:08.578 [error] emulator Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,6370},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:52:08.578 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 20:52:08.604 [info] <0.4074.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 20:52:08.604 [info] <0.4074.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 20:52:08.604 [warning] <0.4073.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 20:52:08.604 [info] <0.4074.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.4074.0> -2014-07-16 20:52:08.605 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.4073.0> -2014-07-16 20:52:10.284 [error] emulator Error in process <0.4074.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,8687},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:52:10.284 [error] <0.4073.0>@basho_bench_worker:handle_info:149 Worker <0.4074.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,8687},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:52:10.285 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.4073.0> exit with reason normal in context child_terminated -2014-07-16 20:52:10.317 [info] <0.5595.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 20:52:10.317 [info] <0.5595.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 20:52:10.317 [warning] <0.5594.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 20:52:10.317 [info] <0.5595.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.5595.0> -2014-07-16 20:52:10.318 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.5594.0> -2014-07-16 20:52:10.693 [error] emulator Error in process <0.5595.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,1946},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:52:10.693 [error] <0.5594.0>@basho_bench_worker:handle_info:149 Worker <0.5595.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,1946},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:52:10.700 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.5594.0> exit with reason normal in context child_terminated -2014-07-16 20:52:10.726 [info] <0.5941.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 20:52:10.726 [info] <0.5941.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 20:52:10.726 [warning] <0.5940.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 20:52:10.726 [info] <0.5941.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.5941.0> -2014-07-16 20:52:10.727 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.5940.0> -2014-07-16 20:52:16.958 [error] emulator Error in process <0.5941.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5820},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:52:16.958 [error] <0.5940.0>@basho_bench_worker:handle_info:149 Worker <0.5941.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5820},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:52:16.958 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.5940.0> exit with reason normal in context child_terminated -2014-07-16 20:52:16.994 [info] <0.11137.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 20:52:16.994 [info] <0.11137.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 20:52:16.994 [warning] <0.11136.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 20:52:16.994 [info] <0.11137.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.11137.0> -2014-07-16 20:52:16.994 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.11136.0> -2014-07-16 20:52:18.638 [error] emulator Error in process <0.11137.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5342},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:52:18.638 [error] <0.11136.0>@basho_bench_worker:handle_info:149 Worker <0.11137.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5342},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:52:18.644 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.11136.0> exit with reason normal in context child_terminated -2014-07-16 20:52:18.676 [info] <0.12394.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 20:52:18.676 [info] <0.12394.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 20:52:18.676 [warning] <0.12393.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 20:52:18.677 [info] <0.12394.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.12394.0> -2014-07-16 20:52:18.677 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.12393.0> -2014-07-16 20:52:19.466 [error] emulator Error in process <0.12394.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,2844},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:52:19.466 [error] <0.12393.0>@basho_bench_worker:handle_info:149 Worker <0.12394.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,2844},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:52:19.466 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.12393.0> exit with reason normal in context child_terminated -2014-07-16 20:52:19.494 [info] <0.13041.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 20:52:19.494 [info] <0.13041.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 20:52:19.494 [warning] <0.13040.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-16 20:52:19.494 [info] <0.13041.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.13041.0> -2014-07-16 20:52:19.495 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.13040.0> -2014-07-16 20:52:19.558 [error] emulator Error in process <0.13041.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,6445},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:52:19.558 [error] <0.13040.0>@basho_bench_worker:handle_info:149 Worker <0.13041.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,6445},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:52:19.559 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.13040.0> exit with reason normal in context child_terminated -2014-07-16 20:52:19.559 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.13040.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-16 20:52:19.575 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. diff --git a/newtests/20140716_205202/crash.log b/newtests/20140716_205202/crash.log deleted file mode 100644 index 3467e8d34..000000000 --- a/newtests/20140716_205202/crash.log +++ /dev/null @@ -1,69 +0,0 @@ -2014-07-16 20:52:08 =ERROR REPORT==== -Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,6370},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - -2014-07-16 20:52:08 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 20:52:10 =ERROR REPORT==== -Error in process <0.4074.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,8687},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - -2014-07-16 20:52:10 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.4073.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 20:52:10 =ERROR REPORT==== -Error in process <0.5595.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,1946},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - -2014-07-16 20:52:10 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.5594.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 20:52:16 =ERROR REPORT==== -Error in process <0.5941.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5820},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - -2014-07-16 20:52:16 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.5940.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 20:52:18 =ERROR REPORT==== -Error in process <0.11137.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5342},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - -2014-07-16 20:52:18 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.11136.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 20:52:19 =ERROR REPORT==== -Error in process <0.12394.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,2844},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - -2014-07-16 20:52:19 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.12393.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 20:52:19 =ERROR REPORT==== -Error in process <0.13041.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,6445},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - -2014-07-16 20:52:19 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.13040.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-16 20:52:19 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.13040.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140716_205202/error.log b/newtests/20140716_205202/error.log deleted file mode 100644 index 3c5cf6efc..000000000 --- a/newtests/20140716_205202/error.log +++ /dev/null @@ -1,36 +0,0 @@ -2014-07-16 20:52:08.578 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,6370},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:52:08.578 [error] emulator Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,6370},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:52:08.578 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-16 20:52:10.284 [error] emulator Error in process <0.4074.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,8687},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:52:10.284 [error] <0.4073.0>@basho_bench_worker:handle_info:149 Worker <0.4074.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,8687},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:52:10.285 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.4073.0> exit with reason normal in context child_terminated -2014-07-16 20:52:10.693 [error] emulator Error in process <0.5595.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,1946},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:52:10.693 [error] <0.5594.0>@basho_bench_worker:handle_info:149 Worker <0.5595.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,1946},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:52:10.700 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.5594.0> exit with reason normal in context child_terminated -2014-07-16 20:52:16.958 [error] emulator Error in process <0.5941.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5820},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:52:16.958 [error] <0.5940.0>@basho_bench_worker:handle_info:149 Worker <0.5941.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5820},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:52:16.958 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.5940.0> exit with reason normal in context child_terminated -2014-07-16 20:52:18.638 [error] emulator Error in process <0.11137.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5342},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:52:18.638 [error] <0.11136.0>@basho_bench_worker:handle_info:149 Worker <0.11137.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,5342},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:52:18.644 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.11136.0> exit with reason normal in context child_terminated -2014-07-16 20:52:19.466 [error] emulator Error in process <0.12394.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,2844},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:52:19.466 [error] <0.12393.0>@basho_bench_worker:handle_info:149 Worker <0.12394.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,2844},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:52:19.466 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.12393.0> exit with reason normal in context child_terminated -2014-07-16 20:52:19.558 [error] emulator Error in process <0.13041.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,6445},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-16 20:52:19.558 [error] <0.13040.0>@basho_bench_worker:handle_info:149 Worker <0.13041.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,6445},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-16 20:52:19.559 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.13040.0> exit with reason normal in context child_terminated -2014-07-16 20:52:19.559 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.13040.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140716_205202/errors.csv b/newtests/20140716_205202/errors.csv deleted file mode 100644 index 29210b502..000000000 --- a/newtests/20140716_205202/errors.csv +++ /dev/null @@ -1 +0,0 @@ -"error","count" diff --git a/newtests/20140716_205202/floppstore.config b/newtests/20140716_205202/floppstore.config deleted file mode 100644 index ff45d1b34..000000000 --- a/newtests/20140716_205202/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 1}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. - -{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. - -{operations, [{append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_205202/log.sasl.txt b/newtests/20140716_205202/log.sasl.txt deleted file mode 100644 index 234bd3e22..000000000 --- a/newtests/20140716_205202/log.sasl.txt +++ /dev/null @@ -1,350 +0,0 @@ - -=PROGRESS REPORT==== 16-Jul-2014::20:52:03 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:52:03 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:52:03 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::20:52:03 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:52:03 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::20:52:03 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:52:03 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::20:52:04 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::20:52:04 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:52:04 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:52:04 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::20:52:04 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:52:04 === - supervisor: {local,net_sup} - started: [{pid,<0.97.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:52:04 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:52:04 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:52:04 === - supervisor: {local,kernel_sup} - started: [{pid,<0.96.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::20:52:04 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 16-Jul-2014::20:52:04 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.103.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:52:04 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:52:04 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.107.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:52:04 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 16-Jul-2014::20:52:08 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::20:52:08 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.4073.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::20:52:10 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.4073.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::20:52:10 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.5594.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::20:52:10 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.5594.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::20:52:10 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.5940.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::20:52:16 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.5940.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::20:52:16 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.11136.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::20:52:18 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.11136.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::20:52:18 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.12393.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::20:52:19 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.12393.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 16-Jul-2014::20:52:19 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.13040.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 16-Jul-2014::20:52:19 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.13040.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 16-Jul-2014::20:52:19 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.13040.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140716_205202/read_latencies.csv b/newtests/20140716_205202/read_latencies.csv deleted file mode 100644 index a6fcbe170..000000000 --- a/newtests/20140716_205202/read_latencies.csv +++ /dev/null @@ -1,3 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -10.00107, 10.00107, 4405, 726, 1062.1, 1033, 1345, 1642, 2964, 7026, 0 -15.376694, 5.375624, 2035, 754, 1117.2, 1088, 1438, 1762, 2964, 7026, 0 diff --git a/newtests/20140716_205202/summary.csv b/newtests/20140716_205202/summary.csv deleted file mode 100644 index 039dabe4e..000000000 --- a/newtests/20140716_205202/summary.csv +++ /dev/null @@ -1,3 +0,0 @@ -elapsed, window, total, successful, failed -10.00107, 10.00107, 8736, 8736, 0 -15.376694, 5.375624, 4223, 4223, 0 diff --git a/newtests/20140716_205355/append_latencies.csv b/newtests/20140716_205355/append_latencies.csv deleted file mode 100644 index 06dfe6602..000000000 --- a/newtests/20140716_205355/append_latencies.csv +++ /dev/null @@ -1,8 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -10.001095, 10.001095, 4279, 793, 1224.4, 1171, 1524, 2396, 6206, 31969, 0 -20.001128, 10.000033, 4176, 833, 1236.1, 1212, 1498, 1815, 3340, 5367, 0 -30.001085, 9.999957, 4183, 841, 1244.0, 1221, 1506, 1839, 3123, 4138, 0 -40.001091, 10.000006, 4149, 853, 1277.4, 1233, 1551, 2431, 4940, 29665, 0 -50.00109, 9.999999, 4071, 873, 1262.5, 1226, 1534, 2308, 4305, 6554, 0 -60.00108, 9.99999, 4033, 838, 1262.0, 1232, 1547, 1976, 3341, 5098, 0 -61.00915, 1.00807, 394, 838, 1262.6, 1233, 1551, 1940, 3176, 5098, 0 diff --git a/newtests/20140716_205355/console.log b/newtests/20140716_205355/console.log deleted file mode 100644 index f03614248..000000000 --- a/newtests/20140716_205355/console.log +++ /dev/null @@ -1,39 +0,0 @@ -2014-07-16 20:53:55.247 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_205355/error.log"} into lager_event -2014-07-16 20:53:55.247 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_205355/console.log"} into lager_event -2014-07-16 20:53:55.247 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-16 20:53:55.280 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-16 20:53:55.280 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-16 20:53:55.280 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-16 20:53:55.280 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-16 20:53:55.712 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-16 20:53:56.069 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-16 20:53:56.070 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140716_205355/console.log to debug -2014-07-16 20:53:56.079 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} -2014-07-16 20:53:56.148 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-16 20:53:56.148 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-16 20:53:56.149 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-16 20:53:56.164 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-16 20:53:56.164 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-16 20:53:56.251 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-16 20:53:56.251 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-16 20:53:56.278 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-16 20:53:56.282 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-16 20:53:56.287 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-16 20:53:56.287 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-16 20:53:56.325 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-16 20:53:56.388 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> -2014-07-16 20:53:56.395 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> -2014-07-16 20:53:56.409 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-16 20:53:56.409 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> -2014-07-16 20:53:56.410 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> -2014-07-16 20:53:56.424 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> -2014-07-16 20:53:56.424 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> -2014-07-16 20:53:56.440 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:134 Finished pinging 'floppy@127.0.0.1' -2014-07-16 20:53:56.440 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-16 20:53:56.441 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-16 20:53:56.441 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.107.0> -2014-07-16 20:53:56.449 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> -2014-07-16 20:53:56.449 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-16 20:54:57.465 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. diff --git a/newtests/20140716_205355/crash.log b/newtests/20140716_205355/crash.log deleted file mode 100644 index e69de29bb..000000000 diff --git a/newtests/20140716_205355/error.log b/newtests/20140716_205355/error.log deleted file mode 100644 index e69de29bb..000000000 diff --git a/newtests/20140716_205355/errors.csv b/newtests/20140716_205355/errors.csv deleted file mode 100644 index 29210b502..000000000 --- a/newtests/20140716_205355/errors.csv +++ /dev/null @@ -1 +0,0 @@ -"error","count" diff --git a/newtests/20140716_205355/floppstore.config b/newtests/20140716_205355/floppstore.config deleted file mode 100644 index ff45d1b34..000000000 --- a/newtests/20140716_205355/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 1}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. - -{value_generator, {function, basho_bench_driver_floppystore, floppy_valgen, []}}. - -{operations, [{append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140716_205355/log.sasl.txt b/newtests/20140716_205355/log.sasl.txt deleted file mode 100644 index 34ea5f278..000000000 --- a/newtests/20140716_205355/log.sasl.txt +++ /dev/null @@ -1,172 +0,0 @@ - -=PROGRESS REPORT==== 16-Jul-2014::20:53:56 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:53:56 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:53:56 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::20:53:56 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:53:56 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::20:53:56 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:53:56 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::20:53:56 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::20:53:56 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:53:56 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:53:56 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 16-Jul-2014::20:53:56 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:53:56 === - supervisor: {local,net_sup} - started: [{pid,<0.97.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:53:56 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:53:56 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:53:56 === - supervisor: {local,kernel_sup} - started: [{pid,<0.96.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 16-Jul-2014::20:53:56 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 16-Jul-2014::20:53:56 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.103.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:53:56 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:53:56 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.107.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 16-Jul-2014::20:53:56 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' diff --git a/newtests/20140716_205355/read_latencies.csv b/newtests/20140716_205355/read_latencies.csv deleted file mode 100644 index 4fc42d09e..000000000 --- a/newtests/20140716_205355/read_latencies.csv +++ /dev/null @@ -1,8 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -10.001095, 10.001095, 4169, 709, 1100.0, 1048, 1367, 2096, 5743, 23809, 0 -20.001128, 10.000033, 4195, 747, 1108.0, 1084, 1353, 1634, 3283, 4770, 0 -30.001085, 9.999957, 4080, 752, 1125.0, 1097, 1384, 1735, 3202, 9588, 0 -40.001091, 10.000006, 3946, 790, 1143.0, 1113, 1395, 2031, 3426, 3938, 0 -50.00109, 9.999999, 4090, 778, 1143.3, 1104, 1397, 2040, 4583, 8703, 0 -60.00108, 9.99999, 4140, 782, 1137.6, 1115, 1394, 1683, 3519, 5522, 0 -61.00915, 1.00807, 433, 782, 1137.3, 1114, 1392, 1688, 3519, 5522, 0 diff --git a/newtests/20140716_205355/summary.csv b/newtests/20140716_205355/summary.csv deleted file mode 100644 index 34c119329..000000000 --- a/newtests/20140716_205355/summary.csv +++ /dev/null @@ -1,8 +0,0 @@ -elapsed, window, total, successful, failed -10.001095, 10.001095, 8448, 8448, 0 -20.001128, 10.000033, 8371, 8371, 0 -30.001085, 9.999957, 8263, 8263, 0 -40.001091, 10.000006, 8095, 8095, 0 -50.00109, 9.999999, 8161, 8161, 0 -60.00108, 9.99999, 8173, 8173, 0 -61.00915, 1.00807, 827, 827, 0 diff --git a/newtests/20140717_145625/append_latencies.csv b/newtests/20140717_145625/append_latencies.csv deleted file mode 100644 index 39e08695e..000000000 --- a/newtests/20140717_145625/append_latencies.csv +++ /dev/null @@ -1,3 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -10.000489, 10.000489, 4297, 798, 1244.3, 1221, 1571, 1864, 3184, 17861, 0 -20.001412, 10.000923, 4083, 799, 1319.1, 1295, 1650, 2073, 4354, 5140, 0 diff --git a/newtests/20140717_145625/console.log b/newtests/20140717_145625/console.log deleted file mode 100644 index 462d5db8b..000000000 --- a/newtests/20140717_145625/console.log +++ /dev/null @@ -1,39 +0,0 @@ -2014-07-17 14:56:25.668 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_145625/error.log"} into lager_event -2014-07-17 14:56:25.668 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_145625/console.log"} into lager_event -2014-07-17 14:56:25.668 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-17 14:56:25.703 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-17 14:56:25.703 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-17 14:56:25.703 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-17 14:56:25.703 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-17 14:56:26.142 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-17 14:56:26.538 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-17 14:56:26.540 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_145625/console.log to debug -2014-07-17 14:56:26.547 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} -2014-07-17 14:56:26.630 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-17 14:56:26.631 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-17 14:56:26.631 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-17 14:56:26.646 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-17 14:56:26.646 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-17 14:56:26.729 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-17 14:56:26.730 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-17 14:56:26.757 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-17 14:56:26.761 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-17 14:56:26.766 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-17 14:56:26.766 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-17 14:56:26.804 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-17 14:56:26.816 [debug] <0.94.0>@basho_bench_valgen:init_source:85 random source -2014-07-17 14:56:26.953 [debug] <0.97.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.98.0> -2014-07-17 14:56:26.961 [debug] <0.97.0> Supervisor net_sup started auth:start_link() at pid <0.99.0> -2014-07-17 14:56:26.978 [info] <0.96.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-17 14:56:26.979 [debug] <0.97.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.100.0> -2014-07-17 14:56:26.979 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.97.0> -2014-07-17 14:56:26.996 [debug] <0.104.0> Supervisor inet_gethost_native_sup started undefined at pid <0.105.0> -2014-07-17 14:56:26.996 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.104.0> -2014-07-17 14:56:27.014 [info] <0.96.0>@basho_bench_driver_floppystore:ping_each:129 Finished pinging 'floppy@127.0.0.1' -2014-07-17 14:56:27.014 [info] <0.96.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-17 14:56:27.015 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-17 14:56:27.015 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.108.0> -2014-07-17 14:56:27.021 [info] <0.96.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.96.0> -2014-07-17 14:56:27.022 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' diff --git a/newtests/20140717_145625/crash.log b/newtests/20140717_145625/crash.log deleted file mode 100644 index e69de29bb..000000000 diff --git a/newtests/20140717_145625/error.log b/newtests/20140717_145625/error.log deleted file mode 100644 index e69de29bb..000000000 diff --git a/newtests/20140717_145625/errors.csv b/newtests/20140717_145625/errors.csv deleted file mode 100644 index 29210b502..000000000 --- a/newtests/20140717_145625/errors.csv +++ /dev/null @@ -1 +0,0 @@ -"error","count" diff --git a/newtests/20140717_145625/floppstore.config b/newtests/20140717_145625/floppstore.config deleted file mode 100644 index 7c3f34ccc..000000000 --- a/newtests/20140717_145625/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 1}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. - -{value_generator, {fixed_bin, 100}}. - -{operations, [{append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140717_145625/log.sasl.txt b/newtests/20140717_145625/log.sasl.txt deleted file mode 100644 index 6b717c6e0..000000000 --- a/newtests/20140717_145625/log.sasl.txt +++ /dev/null @@ -1,172 +0,0 @@ - -=PROGRESS REPORT==== 17-Jul-2014::14:56:26 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::14:56:26 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::14:56:26 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 17-Jul-2014::14:56:26 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::14:56:26 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 17-Jul-2014::14:56:26 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::14:56:26 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 17-Jul-2014::14:56:26 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 17-Jul-2014::14:56:26 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::14:56:26 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::14:56:26 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 17-Jul-2014::14:56:26 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::14:56:26 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::14:56:26 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::14:56:26 === - supervisor: {local,net_sup} - started: [{pid,<0.100.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::14:56:26 === - supervisor: {local,kernel_sup} - started: [{pid,<0.97.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 17-Jul-2014::14:56:26 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.105.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 17-Jul-2014::14:56:26 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.104.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::14:56:27 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::14:56:27 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.108.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::14:56:27 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' diff --git a/newtests/20140717_145625/read_latencies.csv b/newtests/20140717_145625/read_latencies.csv deleted file mode 100644 index 14f727ca3..000000000 --- a/newtests/20140717_145625/read_latencies.csv +++ /dev/null @@ -1,3 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -10.000489, 10.000489, 4346, 726, 1030.4, 1006, 1290, 1525, 2383, 5158, 0 -20.001412, 10.000923, 4020, 733, 1096.4, 1076, 1350, 1609, 2492, 3624, 0 diff --git a/newtests/20140717_145625/summary.csv b/newtests/20140717_145625/summary.csv deleted file mode 100644 index b0482d816..000000000 --- a/newtests/20140717_145625/summary.csv +++ /dev/null @@ -1,3 +0,0 @@ -elapsed, window, total, successful, failed -10.000489, 10.000489, 8643, 8643, 0 -20.001412, 10.000923, 8103, 8103, 0 diff --git a/newtests/20140717_145733/append_latencies.csv b/newtests/20140717_145733/append_latencies.csv deleted file mode 100644 index 2cee6f0d8..000000000 --- a/newtests/20140717_145733/append_latencies.csv +++ /dev/null @@ -1 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors diff --git a/newtests/20140717_145733/console.log b/newtests/20140717_145733/console.log deleted file mode 100644 index ebca30a20..000000000 --- a/newtests/20140717_145733/console.log +++ /dev/null @@ -1,36 +0,0 @@ -2014-07-17 14:57:33.811 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_145733/error.log"} into lager_event -2014-07-17 14:57:33.811 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_145733/console.log"} into lager_event -2014-07-17 14:57:33.811 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-17 14:57:33.845 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-17 14:57:33.845 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-17 14:57:33.846 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-17 14:57:33.846 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-17 14:57:34.287 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-17 14:57:34.643 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-17 14:57:34.644 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_145733/console.log to debug -2014-07-17 14:57:34.651 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} -2014-07-17 14:57:34.733 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-17 14:57:34.734 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-17 14:57:34.734 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-17 14:57:34.748 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-17 14:57:34.749 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-17 14:57:34.834 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-17 14:57:34.835 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-17 14:57:34.865 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-17 14:57:34.872 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-17 14:57:34.878 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-17 14:57:34.878 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-17 14:57:34.909 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-17 14:57:34.920 [debug] <0.94.0>@basho_bench_valgen:init_source:85 random source -2014-07-17 14:57:35.054 [debug] <0.97.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.98.0> -2014-07-17 14:57:35.061 [debug] <0.97.0> Supervisor net_sup started auth:start_link() at pid <0.99.0> -2014-07-17 14:57:35.074 [info] <0.96.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-17 14:57:35.074 [debug] <0.97.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.100.0> -2014-07-17 14:57:35.075 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.97.0> -2014-07-17 14:57:35.089 [debug] <0.104.0> Supervisor inet_gethost_native_sup started undefined at pid <0.105.0> -2014-07-17 14:57:35.089 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.104.0> -2014-07-17 14:57:35.104 [error] <0.96.0>@basho_bench_driver_floppystore:ping_each:132 Failed to ping node 'floppy@127.0.0.1' -2014-07-17 14:57:35.104 [info] <0.96.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-17 14:57:35.153 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> diff --git a/newtests/20140717_145733/crash.log b/newtests/20140717_145733/crash.log deleted file mode 100644 index e69de29bb..000000000 diff --git a/newtests/20140717_145733/error.log b/newtests/20140717_145733/error.log deleted file mode 100644 index 1dcc03bd5..000000000 --- a/newtests/20140717_145733/error.log +++ /dev/null @@ -1 +0,0 @@ -2014-07-17 14:57:35.104 [error] <0.96.0>@basho_bench_driver_floppystore:ping_each:132 Failed to ping node 'floppy@127.0.0.1' diff --git a/newtests/20140717_145733/errors.csv b/newtests/20140717_145733/errors.csv deleted file mode 100644 index 29210b502..000000000 --- a/newtests/20140717_145733/errors.csv +++ /dev/null @@ -1 +0,0 @@ -"error","count" diff --git a/newtests/20140717_145733/floppstore.config b/newtests/20140717_145733/floppstore.config deleted file mode 100644 index 43b12a499..000000000 --- a/newtests/20140717_145733/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. - -{value_generator, {fixed_bin, 100}}. - -{operations, [{append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140717_145733/log.sasl.txt b/newtests/20140717_145733/log.sasl.txt deleted file mode 100644 index 3a743a59e..000000000 --- a/newtests/20140717_145733/log.sasl.txt +++ /dev/null @@ -1,159 +0,0 @@ - -=PROGRESS REPORT==== 17-Jul-2014::14:57:34 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::14:57:34 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::14:57:34 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 17-Jul-2014::14:57:34 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::14:57:34 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 17-Jul-2014::14:57:34 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::14:57:34 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 17-Jul-2014::14:57:34 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 17-Jul-2014::14:57:34 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::14:57:34 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::14:57:34 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 17-Jul-2014::14:57:34 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::14:57:35 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::14:57:35 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::14:57:35 === - supervisor: {local,net_sup} - started: [{pid,<0.100.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::14:57:35 === - supervisor: {local,kernel_sup} - started: [{pid,<0.97.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 17-Jul-2014::14:57:35 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.105.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 17-Jul-2014::14:57:35 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.104.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::14:57:35 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] diff --git a/newtests/20140717_145733/read_latencies.csv b/newtests/20140717_145733/read_latencies.csv deleted file mode 100644 index 2cee6f0d8..000000000 --- a/newtests/20140717_145733/read_latencies.csv +++ /dev/null @@ -1 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors diff --git a/newtests/20140717_145733/summary.csv b/newtests/20140717_145733/summary.csv deleted file mode 100644 index fa9e41e5d..000000000 --- a/newtests/20140717_145733/summary.csv +++ /dev/null @@ -1 +0,0 @@ -elapsed, window, total, successful, failed diff --git a/newtests/20140717_145743/append_latencies.csv b/newtests/20140717_145743/append_latencies.csv deleted file mode 100644 index a966ea155..000000000 --- a/newtests/20140717_145743/append_latencies.csv +++ /dev/null @@ -1,5 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -10.000371, 10.000371, 5028, 997, 2101.1, 1902, 3043, 5024, 14654, 31112, 0 -20.001459, 10.001088, 5127, 1050, 2018.4, 1843, 2959, 3726, 7104, 18862, 0 -30.001361, 9.999902, 4951, 1014, 2045.6, 1843, 2981, 4080, 10047, 52558, 0 -31.77629, 1.774929, 907, 1076, 2021.0, 1830, 2960, 3807, 8992, 52558, 0 diff --git a/newtests/20140717_145743/console.log b/newtests/20140717_145743/console.log deleted file mode 100644 index b5ce6976b..000000000 --- a/newtests/20140717_145743/console.log +++ /dev/null @@ -1,103 +0,0 @@ -2014-07-17 14:57:43.574 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_145743/error.log"} into lager_event -2014-07-17 14:57:43.574 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_145743/console.log"} into lager_event -2014-07-17 14:57:43.574 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-17 14:57:43.617 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-17 14:57:43.617 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-17 14:57:43.617 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-17 14:57:43.617 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-17 14:57:44.044 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-17 14:57:44.449 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-17 14:57:44.450 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_145743/console.log to debug -2014-07-17 14:57:44.456 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} -2014-07-17 14:57:44.531 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-17 14:57:44.532 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-17 14:57:44.532 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-17 14:57:44.547 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-17 14:57:44.547 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-17 14:57:44.634 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-17 14:57:44.634 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-17 14:57:44.677 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-17 14:57:44.682 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-17 14:57:44.689 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-17 14:57:44.689 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-17 14:57:44.723 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-17 14:57:44.735 [debug] <0.94.0>@basho_bench_valgen:init_source:85 random source -2014-07-17 14:57:44.869 [debug] <0.97.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.98.0> -2014-07-17 14:57:44.877 [debug] <0.97.0> Supervisor net_sup started auth:start_link() at pid <0.99.0> -2014-07-17 14:57:44.890 [info] <0.96.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-17 14:57:44.890 [debug] <0.97.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.100.0> -2014-07-17 14:57:44.891 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.97.0> -2014-07-17 14:57:44.907 [debug] <0.104.0> Supervisor inet_gethost_native_sup started undefined at pid <0.105.0> -2014-07-17 14:57:44.907 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.104.0> -2014-07-17 14:57:44.923 [info] <0.96.0>@basho_bench_driver_floppystore:ping_each:129 Finished pinging 'floppy@127.0.0.1' -2014-07-17 14:57:44.923 [info] <0.96.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-17 14:57:44.924 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-17 14:57:45.006 [info] <0.109.0>@basho_bench_driver_floppystore:ping_each:129 Finished pinging 'floppy@127.0.0.1' -2014-07-17 14:57:45.006 [info] <0.109.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-17 14:57:45.007 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.108.0> -2014-07-17 14:57:45.007 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.110.0> -2014-07-17 14:57:45.012 [info] <0.109.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.109.0> -2014-07-17 14:57:45.012 [info] <0.96.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.96.0> -2014-07-17 14:57:45.013 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-17 14:58:09.728 [error] emulator Error in process <0.96.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<100 bytes>>},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-17 14:58:09.728 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<108,51,81,123,192,193,145,96,71,122,152,182,197,197,186,4,207,156,17,120,18,118,35,122,99,10,159,210,231,6,154,77,71,177,83,209,149,55,216,183,115,222,86,244,38,118,121,2,135,79,50,209,167,255,14,149,238,170,188,217,247,231,13,244,114,180,43,231,93,225,115,242,203,185,131,29,179,219,46,45,103,255,83,184,213,247,41,122,88,4,85,168,133,61,49,19,231,234,26,63>>},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-17 14:58:09.729 [debug] <0.25275.0>@basho_bench_valgen:init_source:85 random source -2014-07-17 14:58:09.729 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-17 14:58:09.838 [info] <0.25276.0>@basho_bench_driver_floppystore:ping_each:129 Finished pinging 'floppy@127.0.0.1' -2014-07-17 14:58:09.838 [info] <0.25276.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-17 14:58:09.838 [warning] <0.25275.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-17 14:58:09.838 [info] <0.25276.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.25276.0> -2014-07-17 14:58:09.839 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.25275.0> -2014-07-17 14:58:10.975 [error] emulator Error in process <0.25276.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<100 bytes>>},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-17 14:58:10.975 [error] <0.25275.0>@basho_bench_worker:handle_info:149 Worker <0.25276.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<53,204,234,191,233,98,32,250,105,234,186,65,9,144,217,208,88,50,215,230,255,175,196,18,205,106,254,230,104,69,7,39,81,136,140,112,185,199,222,120,97,192,156,36,72,89,245,68,95,112,182,52,94,4,24,17,30,205,104,37,127,135,223,11,39,202,67,162,231,19,25,170,42,207,4,243,81,46,238,21,36,67,47,52,72,79,237,84,117,62,221,67,32,232,86,160,73,64,94,201>>},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-17 14:58:10.975 [debug] <0.26513.0>@basho_bench_valgen:init_source:85 random source -2014-07-17 14:58:10.976 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.25275.0> exit with reason normal in context child_terminated -2014-07-17 14:58:11.091 [info] <0.26567.0>@basho_bench_driver_floppystore:ping_each:129 Finished pinging 'floppy@127.0.0.1' -2014-07-17 14:58:11.091 [info] <0.26567.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-17 14:58:11.091 [warning] <0.26513.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-17 14:58:11.091 [info] <0.26567.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.26567.0> -2014-07-17 14:58:11.092 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.26513.0> -2014-07-17 14:58:12.866 [error] emulator Error in process <0.26567.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<100 bytes>>},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-17 14:58:12.866 [error] <0.26513.0>@basho_bench_worker:handle_info:149 Worker <0.26567.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<82,249,164,225,43,95,222,186,105,151,30,106,244,98,132,249,194,101,7,196,76,225,130,221,150,108,9,2,140,80,156,152,253,7,33,173,168,166,115,74,168,131,74,52,35,221,236,129,245,98,91,15,153,140,250,75,196,25,164,8,8,184,144,2,234,120,123,104,255,255,151,62,228,52,166,68,145,69,176,115,42,72,196,116,9,203,247,134,10,109,5,148,164,54,18,188,88,145,167,50>>},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-17 14:58:12.866 [debug] <0.28437.0>@basho_bench_valgen:init_source:85 random source -2014-07-17 14:58:12.867 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.26513.0> exit with reason normal in context child_terminated -2014-07-17 14:58:12.985 [info] <0.28491.0>@basho_bench_driver_floppystore:ping_each:129 Finished pinging 'floppy@127.0.0.1' -2014-07-17 14:58:12.985 [info] <0.28491.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-17 14:58:12.985 [warning] <0.28437.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-17 14:58:12.985 [info] <0.28491.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.28491.0> -2014-07-17 14:58:12.985 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.28437.0> -2014-07-17 14:58:14.202 [error] emulator Error in process <0.109.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<100 bytes>>},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-17 14:58:14.202 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<216,154,192,206,109,106,23,2,144,239,219,20,109,83,92,170,1,49,240,18,115,237,46,14,90,98,26,79,210,230,114,250,235,214,181,100,212,144,200,252,4,216,30,85,47,123,32,108,182,24,117,221,159,154,233,3,205,128,29,122,240,251,41,254,134,26,19,161,11,181,138,205,127,101,82,24,208,80,148,198,29,40,200,165,240,68,203,57,68,149,73,147,132,72,195,210,22,184,21,181>>},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-17 14:58:14.203 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated -2014-07-17 14:58:14.325 [info] <0.29808.0>@basho_bench_driver_floppystore:ping_each:129 Finished pinging 'floppy@127.0.0.1' -2014-07-17 14:58:14.325 [info] <0.29808.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-17 14:58:14.325 [warning] <0.29752.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-17 14:58:14.325 [info] <0.29808.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.29808.0> -2014-07-17 14:58:14.326 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.29752.0> -2014-07-17 14:58:16.534 [error] emulator Error in process <0.29808.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<100 bytes>>},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-17 14:58:16.535 [error] <0.29752.0>@basho_bench_worker:handle_info:149 Worker <0.29808.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<60,129,207,233,157,110,188,78,88,11,162,3,42,141,147,20,147,24,199,180,3,172,193,203,176,165,214,34,199,115,195,181,30,185,166,190,149,227,29,195,49,155,222,87,102,166,54,226,18,164,67,10,42,51,112,195,47,200,241,98,131,146,8,35,135,120,3,20,90,121,84,119,45,120,6,43,207,160,47,158,82,207,242,86,46,57,49,231,168,184,236,39,238,17,169,180,250,2,190,91>>},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-17 14:58:16.535 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.29752.0> exit with reason normal in context child_terminated -2014-07-17 14:58:16.652 [info] <0.32200.0>@basho_bench_driver_floppystore:ping_each:129 Finished pinging 'floppy@127.0.0.1' -2014-07-17 14:58:16.652 [info] <0.32200.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-17 14:58:16.652 [warning] <0.32148.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-17 14:58:16.652 [info] <0.32200.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.32200.0> -2014-07-17 14:58:16.652 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.32148.0> -2014-07-17 14:58:16.782 [error] emulator Error in process <0.32200.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<100 bytes>>},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-17 14:58:16.782 [error] <0.32148.0>@basho_bench_worker:handle_info:149 Worker <0.32200.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<133,61,3,52,10,237,229,42,120,88,78,226,44,60,99,210,186,254,54,192,119,212,205,123,6,86,125,8,146,245,199,174,99,212,174,142,181,91,87,97,118,249,226,193,163,107,95,206,169,237,57,201,173,189,35,74,103,221,232,213,17,108,64,198,6,237,44,31,211,112,79,207,119,34,152,199,57,118,195,70,29,182,197,110,158,150,195,219,162,223,233,56,144,172,210,163,249,183,40,63>>},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-17 14:58:16.783 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.32148.0> exit with reason normal in context child_terminated -2014-07-17 14:58:16.784 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.32148.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-17 14:58:16.807 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. diff --git a/newtests/20140717_145743/crash.log b/newtests/20140717_145743/crash.log deleted file mode 100644 index ef3094d6e..000000000 --- a/newtests/20140717_145743/crash.log +++ /dev/null @@ -1,60 +0,0 @@ -2014-07-17 14:58:09 =ERROR REPORT==== -Error in process <0.96.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<100 bytes>>},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - -2014-07-17 14:58:09 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-17 14:58:10 =ERROR REPORT==== -Error in process <0.25276.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<100 bytes>>},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - -2014-07-17 14:58:10 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.25275.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-17 14:58:12 =ERROR REPORT==== -Error in process <0.26567.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<100 bytes>>},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - -2014-07-17 14:58:12 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.26513.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-17 14:58:14 =ERROR REPORT==== -Error in process <0.109.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<100 bytes>>},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - -2014-07-17 14:58:14 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.108.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-17 14:58:16 =ERROR REPORT==== -Error in process <0.29808.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<100 bytes>>},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - -2014-07-17 14:58:16 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.29752.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-17 14:58:16 =ERROR REPORT==== -Error in process <0.32200.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<100 bytes>>},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - -2014-07-17 14:58:16 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.32148.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-17 14:58:16 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.32148.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140717_145743/error.log b/newtests/20140717_145743/error.log deleted file mode 100644 index d3f8679d0..000000000 --- a/newtests/20140717_145743/error.log +++ /dev/null @@ -1,31 +0,0 @@ -2014-07-17 14:58:09.728 [error] emulator Error in process <0.96.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<100 bytes>>},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-17 14:58:09.728 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<108,51,81,123,192,193,145,96,71,122,152,182,197,197,186,4,207,156,17,120,18,118,35,122,99,10,159,210,231,6,154,77,71,177,83,209,149,55,216,183,115,222,86,244,38,118,121,2,135,79,50,209,167,255,14,149,238,170,188,217,247,231,13,244,114,180,43,231,93,225,115,242,203,185,131,29,179,219,46,45,103,255,83,184,213,247,41,122,88,4,85,168,133,61,49,19,231,234,26,63>>},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-17 14:58:09.729 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-17 14:58:10.975 [error] emulator Error in process <0.25276.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<100 bytes>>},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-17 14:58:10.975 [error] <0.25275.0>@basho_bench_worker:handle_info:149 Worker <0.25276.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<53,204,234,191,233,98,32,250,105,234,186,65,9,144,217,208,88,50,215,230,255,175,196,18,205,106,254,230,104,69,7,39,81,136,140,112,185,199,222,120,97,192,156,36,72,89,245,68,95,112,182,52,94,4,24,17,30,205,104,37,127,135,223,11,39,202,67,162,231,19,25,170,42,207,4,243,81,46,238,21,36,67,47,52,72,79,237,84,117,62,221,67,32,232,86,160,73,64,94,201>>},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-17 14:58:10.976 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.25275.0> exit with reason normal in context child_terminated -2014-07-17 14:58:12.866 [error] emulator Error in process <0.26567.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<100 bytes>>},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-17 14:58:12.866 [error] <0.26513.0>@basho_bench_worker:handle_info:149 Worker <0.26567.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<82,249,164,225,43,95,222,186,105,151,30,106,244,98,132,249,194,101,7,196,76,225,130,221,150,108,9,2,140,80,156,152,253,7,33,173,168,166,115,74,168,131,74,52,35,221,236,129,245,98,91,15,153,140,250,75,196,25,164,8,8,184,144,2,234,120,123,104,255,255,151,62,228,52,166,68,145,69,176,115,42,72,196,116,9,203,247,134,10,109,5,148,164,54,18,188,88,145,167,50>>},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-17 14:58:12.867 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.26513.0> exit with reason normal in context child_terminated -2014-07-17 14:58:14.202 [error] emulator Error in process <0.109.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<100 bytes>>},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-17 14:58:14.202 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<216,154,192,206,109,106,23,2,144,239,219,20,109,83,92,170,1,49,240,18,115,237,46,14,90,98,26,79,210,230,114,250,235,214,181,100,212,144,200,252,4,216,30,85,47,123,32,108,182,24,117,221,159,154,233,3,205,128,29,122,240,251,41,254,134,26,19,161,11,181,138,205,127,101,82,24,208,80,148,198,29,40,200,165,240,68,203,57,68,149,73,147,132,72,195,210,22,184,21,181>>},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-17 14:58:14.203 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated -2014-07-17 14:58:16.534 [error] emulator Error in process <0.29808.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<100 bytes>>},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-17 14:58:16.535 [error] <0.29752.0>@basho_bench_worker:handle_info:149 Worker <0.29808.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<60,129,207,233,157,110,188,78,88,11,162,3,42,141,147,20,147,24,199,180,3,172,193,203,176,165,214,34,199,115,195,181,30,185,166,190,149,227,29,195,49,155,222,87,102,166,54,226,18,164,67,10,42,51,112,195,47,200,241,98,131,146,8,35,135,120,3,20,90,121,84,119,45,120,6,43,207,160,47,158,82,207,242,86,46,57,49,231,168,184,236,39,238,17,169,180,250,2,190,91>>},2,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-17 14:58:16.535 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.29752.0> exit with reason normal in context child_terminated -2014-07-17 14:58:16.782 [error] emulator Error in process <0.32200.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<100 bytes>>},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[... - - -2014-07-17 14:58:16.782 [error] <0.32148.0>@basho_bench_worker:handle_info:149 Worker <0.32200.0> exited with {{case_clause,{badrpc,{'EXIT',{function_clause,[{riak_dt_gcounter,update,[{add,<<133,61,3,52,10,237,229,42,120,88,78,226,44,60,99,210,186,254,54,192,119,212,205,123,6,86,125,8,146,245,199,174,99,212,174,142,181,91,87,97,118,249,226,193,163,107,95,206,169,237,57,201,173,189,35,74,103,221,232,213,17,108,64,198,6,237,44,31,211,112,79,207,119,34,152,199,57,118,195,70,29,182,197,110,158,150,195,219,162,223,233,56,144,172,210,163,249,183,40,63>>},1,[]],[{file,"src/riak_dt_gcounter.erl"},{line,82}]},{materializer,update_snapshot,3,[{file,"src/materializer.erl"},{line,24}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,31}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-17 14:58:16.783 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.32148.0> exit with reason normal in context child_terminated -2014-07-17 14:58:16.784 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.32148.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140717_145743/errors.csv b/newtests/20140717_145743/errors.csv deleted file mode 100644 index 29210b502..000000000 --- a/newtests/20140717_145743/errors.csv +++ /dev/null @@ -1 +0,0 @@ -"error","count" diff --git a/newtests/20140717_145743/floppstore.config b/newtests/20140717_145743/floppstore.config deleted file mode 100644 index 43b12a499..000000000 --- a/newtests/20140717_145743/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. - -{value_generator, {fixed_bin, 100}}. - -{operations, [{append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140717_145743/log.sasl.txt b/newtests/20140717_145743/log.sasl.txt deleted file mode 100644 index eac6bf1af..000000000 --- a/newtests/20140717_145743/log.sasl.txt +++ /dev/null @@ -1,336 +0,0 @@ - -=PROGRESS REPORT==== 17-Jul-2014::14:57:44 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::14:57:44 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::14:57:44 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 17-Jul-2014::14:57:44 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::14:57:44 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 17-Jul-2014::14:57:44 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::14:57:44 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 17-Jul-2014::14:57:44 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 17-Jul-2014::14:57:44 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::14:57:44 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::14:57:44 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 17-Jul-2014::14:57:44 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::14:57:44 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::14:57:44 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::14:57:44 === - supervisor: {local,net_sup} - started: [{pid,<0.100.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::14:57:44 === - supervisor: {local,kernel_sup} - started: [{pid,<0.97.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 17-Jul-2014::14:57:44 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.105.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 17-Jul-2014::14:57:44 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.104.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::14:57:44 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::14:57:45 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.108.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::14:57:45 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.110.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::14:57:45 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 17-Jul-2014::14:58:09 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 17-Jul-2014::14:58:09 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.25275.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 17-Jul-2014::14:58:10 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.25275.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 17-Jul-2014::14:58:11 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.26513.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 17-Jul-2014::14:58:12 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.26513.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 17-Jul-2014::14:58:12 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.28437.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 17-Jul-2014::14:58:14 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.108.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 17-Jul-2014::14:58:14 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.29752.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 17-Jul-2014::14:58:16 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.29752.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 17-Jul-2014::14:58:16 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.32148.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 17-Jul-2014::14:58:16 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.32148.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 17-Jul-2014::14:58:16 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.32148.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140717_145743/read_latencies.csv b/newtests/20140717_145743/read_latencies.csv deleted file mode 100644 index e6a75620b..000000000 --- a/newtests/20140717_145743/read_latencies.csv +++ /dev/null @@ -1,5 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -10.000371, 10.000371, 5039, 807, 1834.2, 1602, 2747, 4195, 10483, 19562, 0 -20.001459, 10.001088, 5206, 939, 1808.9, 1566, 2676, 3350, 10060, 27986, 0 -30.001361, 9.999902, 5092, 924, 1799.0, 1561, 2685, 3561, 8732, 24277, 0 -31.77629, 1.774929, 887, 924, 1783.9, 1555, 2674, 3268, 6952, 9469, 0 diff --git a/newtests/20140717_145743/summary.csv b/newtests/20140717_145743/summary.csv deleted file mode 100644 index a1eeb6264..000000000 --- a/newtests/20140717_145743/summary.csv +++ /dev/null @@ -1,5 +0,0 @@ -elapsed, window, total, successful, failed -10.000371, 10.000371, 10067, 10067, 0 -20.001459, 10.001088, 10333, 10333, 0 -30.001361, 9.999902, 10043, 10043, 0 -31.77629, 1.774929, 1794, 1794, 0 diff --git a/newtests/20140717_151128/append_latencies.csv b/newtests/20140717_151128/append_latencies.csv deleted file mode 100644 index eb16445e9..000000000 --- a/newtests/20140717_151128/append_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.383697, 0.383697, 0, 0, 0, 0, 0, 0, 0, 0, 7 diff --git a/newtests/20140717_151128/console.log b/newtests/20140717_151128/console.log deleted file mode 100644 index 0e3dfa4e6..000000000 --- a/newtests/20140717_151128/console.log +++ /dev/null @@ -1,96 +0,0 @@ -2014-07-17 15:11:28.664 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_151128/error.log"} into lager_event -2014-07-17 15:11:28.664 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_151128/console.log"} into lager_event -2014-07-17 15:11:28.664 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-17 15:11:28.698 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-17 15:11:28.698 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-17 15:11:28.698 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-17 15:11:28.698 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-17 15:11:29.141 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-17 15:11:29.656 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-17 15:11:29.657 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_151128/console.log to debug -2014-07-17 15:11:29.666 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} -2014-07-17 15:11:29.757 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-17 15:11:29.757 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-17 15:11:29.758 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-17 15:11:29.773 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-17 15:11:29.773 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-17 15:11:29.861 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-17 15:11:29.861 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-17 15:11:29.889 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-17 15:11:29.893 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-17 15:11:29.899 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-17 15:11:29.899 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-17 15:11:29.937 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-17 15:11:29.949 [debug] <0.94.0>@basho_bench_valgen:init_source:85 random source -2014-07-17 15:11:30.089 [debug] <0.97.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.98.0> -2014-07-17 15:11:30.096 [debug] <0.97.0> Supervisor net_sup started auth:start_link() at pid <0.99.0> -2014-07-17 15:11:30.109 [info] <0.96.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-17 15:11:30.109 [debug] <0.97.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.100.0> -2014-07-17 15:11:30.110 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.97.0> -2014-07-17 15:11:30.123 [debug] <0.104.0> Supervisor inet_gethost_native_sup started undefined at pid <0.105.0> -2014-07-17 15:11:30.124 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.104.0> -2014-07-17 15:11:30.144 [info] <0.96.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' -2014-07-17 15:11:30.144 [info] <0.96.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-17 15:11:30.144 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-17 15:11:30.223 [info] <0.109.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' -2014-07-17 15:11:30.223 [info] <0.109.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-17 15:11:30.224 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.108.0> -2014-07-17 15:11:30.224 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.110.0> -2014-07-17 15:11:30.231 [info] <0.96.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.96.0> -2014-07-17 15:11:30.231 [info] <0.109.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.109.0> -2014-07-17 15:11:30.232 [debug] <0.96.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarith,[{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-17 15:11:30.232 [debug] <0.109.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarith,[{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-17 15:11:30.232 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with crash -2014-07-17 15:11:30.232 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with crash -2014-07-17 15:11:30.232 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-17 15:11:30.232 [debug] <0.111.0>@basho_bench_valgen:init_source:85 random source -2014-07-17 15:11:30.232 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-17 15:11:30.310 [info] <0.112.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' -2014-07-17 15:11:30.310 [info] <0.112.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-17 15:11:30.310 [warning] <0.111.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-17 15:11:30.310 [info] <0.112.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.112.0> -2014-07-17 15:11:30.310 [debug] <0.112.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarith,[{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-17 15:11:30.310 [error] <0.111.0>@basho_bench_worker:handle_info:149 Worker <0.112.0> exited with crash -2014-07-17 15:11:30.311 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.111.0> -2014-07-17 15:11:30.311 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated -2014-07-17 15:11:30.383 [info] <0.114.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' -2014-07-17 15:11:30.383 [info] <0.114.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-17 15:11:30.383 [warning] <0.113.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-17 15:11:30.383 [info] <0.114.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.114.0> -2014-07-17 15:11:30.383 [debug] <0.115.0>@basho_bench_valgen:init_source:85 random source -2014-07-17 15:11:30.384 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.113.0> -2014-07-17 15:11:30.384 [debug] <0.114.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarith,[{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-17 15:11:30.384 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.111.0> exit with reason normal in context child_terminated -2014-07-17 15:11:30.385 [error] <0.113.0>@basho_bench_worker:handle_info:149 Worker <0.114.0> exited with crash -2014-07-17 15:11:30.459 [info] <0.116.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' -2014-07-17 15:11:30.459 [info] <0.116.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-17 15:11:30.459 [warning] <0.115.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-17 15:11:30.459 [info] <0.116.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.116.0> -2014-07-17 15:11:30.459 [debug] <0.116.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarith,[{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-17 15:11:30.459 [error] <0.115.0>@basho_bench_worker:handle_info:149 Worker <0.116.0> exited with crash -2014-07-17 15:11:30.460 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.115.0> -2014-07-17 15:11:30.460 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.113.0> exit with reason normal in context child_terminated -2014-07-17 15:11:30.533 [info] <0.118.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' -2014-07-17 15:11:30.533 [info] <0.118.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-17 15:11:30.533 [warning] <0.117.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-17 15:11:30.533 [info] <0.118.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.118.0> -2014-07-17 15:11:30.533 [debug] <0.118.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarith,[{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-17 15:11:30.533 [error] <0.117.0>@basho_bench_worker:handle_info:149 Worker <0.118.0> exited with crash -2014-07-17 15:11:30.533 [debug] <0.119.0>@basho_bench_valgen:init_source:85 random source -2014-07-17 15:11:30.533 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.117.0> -2014-07-17 15:11:30.534 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.115.0> exit with reason normal in context child_terminated -2014-07-17 15:11:30.607 [info] <0.120.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' -2014-07-17 15:11:30.607 [info] <0.120.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-17 15:11:30.607 [warning] <0.119.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-17 15:11:30.607 [info] <0.120.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.120.0> -2014-07-17 15:11:30.607 [debug] <0.120.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarith,[{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-17 15:11:30.608 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.119.0> -2014-07-17 15:11:30.608 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.117.0> exit with reason normal in context child_terminated -2014-07-17 15:11:30.608 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.117.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-17 15:11:30.619 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {append,append} -2014-07-17 15:11:30.619 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} -2014-07-17 15:11:30.619 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{append,append},7},{{{append,append},crash},7}] -2014-07-17 15:11:30.619 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: -2014-07-17 15:11:30.619 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{append,append},crash}: 7 diff --git a/newtests/20140717_151128/crash.log b/newtests/20140717_151128/crash.log deleted file mode 100644 index b28ec55e6..000000000 --- a/newtests/20140717_151128/crash.log +++ /dev/null @@ -1,42 +0,0 @@ -2014-07-17 15:11:30 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-17 15:11:30 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.108.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-17 15:11:30 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.111.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-17 15:11:30 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.113.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-17 15:11:30 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.115.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-17 15:11:30 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.117.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-17 15:11:30 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.117.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140717_151128/error.log b/newtests/20140717_151128/error.log deleted file mode 100644 index 3f08a014c..000000000 --- a/newtests/20140717_151128/error.log +++ /dev/null @@ -1,13 +0,0 @@ -2014-07-17 15:11:30.232 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with crash -2014-07-17 15:11:30.232 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with crash -2014-07-17 15:11:30.232 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-17 15:11:30.310 [error] <0.111.0>@basho_bench_worker:handle_info:149 Worker <0.112.0> exited with crash -2014-07-17 15:11:30.311 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated -2014-07-17 15:11:30.384 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.111.0> exit with reason normal in context child_terminated -2014-07-17 15:11:30.385 [error] <0.113.0>@basho_bench_worker:handle_info:149 Worker <0.114.0> exited with crash -2014-07-17 15:11:30.459 [error] <0.115.0>@basho_bench_worker:handle_info:149 Worker <0.116.0> exited with crash -2014-07-17 15:11:30.460 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.113.0> exit with reason normal in context child_terminated -2014-07-17 15:11:30.533 [error] <0.117.0>@basho_bench_worker:handle_info:149 Worker <0.118.0> exited with crash -2014-07-17 15:11:30.534 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.115.0> exit with reason normal in context child_terminated -2014-07-17 15:11:30.608 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.117.0> exit with reason normal in context child_terminated -2014-07-17 15:11:30.608 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.117.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140717_151128/errors.csv b/newtests/20140717_151128/errors.csv deleted file mode 100644 index a31ba014e..000000000 --- a/newtests/20140717_151128/errors.csv +++ /dev/null @@ -1,2 +0,0 @@ -"error","count" -"{{append,append},crash}","7" diff --git a/newtests/20140717_151128/floppstore.config b/newtests/20140717_151128/floppstore.config deleted file mode 100644 index 43b12a499..000000000 --- a/newtests/20140717_151128/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. - -{value_generator, {fixed_bin, 100}}. - -{operations, [{append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140717_151128/log.sasl.txt b/newtests/20140717_151128/log.sasl.txt deleted file mode 100644 index 62f6c8707..000000000 --- a/newtests/20140717_151128/log.sasl.txt +++ /dev/null @@ -1,336 +0,0 @@ - -=PROGRESS REPORT==== 17-Jul-2014::15:11:29 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:11:29 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:11:29 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 17-Jul-2014::15:11:29 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:11:29 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 17-Jul-2014::15:11:29 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:11:29 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 17-Jul-2014::15:11:29 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 17-Jul-2014::15:11:29 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:11:29 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:11:29 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 17-Jul-2014::15:11:29 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:11:30 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:11:30 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:11:30 === - supervisor: {local,net_sup} - started: [{pid,<0.100.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:11:30 === - supervisor: {local,kernel_sup} - started: [{pid,<0.97.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 17-Jul-2014::15:11:30 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.105.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 17-Jul-2014::15:11:30 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.104.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:11:30 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:11:30 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.108.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:11:30 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.110.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:11:30 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 17-Jul-2014::15:11:30 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 17-Jul-2014::15:11:30 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.111.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 17-Jul-2014::15:11:30 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.108.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 17-Jul-2014::15:11:30 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.113.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 17-Jul-2014::15:11:30 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.111.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 17-Jul-2014::15:11:30 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.115.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 17-Jul-2014::15:11:30 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.113.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 17-Jul-2014::15:11:30 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.117.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 17-Jul-2014::15:11:30 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.115.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 17-Jul-2014::15:11:30 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.119.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 17-Jul-2014::15:11:30 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.117.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 17-Jul-2014::15:11:30 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.117.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140717_151128/read_latencies.csv b/newtests/20140717_151128/read_latencies.csv deleted file mode 100644 index 110cbd0b2..000000000 --- a/newtests/20140717_151128/read_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.383697, 0.383697, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140717_151128/summary.csv b/newtests/20140717_151128/summary.csv deleted file mode 100644 index 8baac6712..000000000 --- a/newtests/20140717_151128/summary.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, total, successful, failed -0.383697, 0.383697, 7, 0, 7 diff --git a/newtests/20140717_151250/append_latencies.csv b/newtests/20140717_151250/append_latencies.csv deleted file mode 100644 index cdae4a7c6..000000000 --- a/newtests/20140717_151250/append_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.422422, 0.422422, 0, 0, 0, 0, 0, 0, 0, 0, 6 diff --git a/newtests/20140717_151250/console.log b/newtests/20140717_151250/console.log deleted file mode 100644 index 9a04d6387..000000000 --- a/newtests/20140717_151250/console.log +++ /dev/null @@ -1,94 +0,0 @@ -2014-07-17 15:12:50.983 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_151250/error.log"} into lager_event -2014-07-17 15:12:50.983 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_151250/console.log"} into lager_event -2014-07-17 15:12:50.983 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-17 15:12:51.018 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-17 15:12:51.018 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-17 15:12:51.018 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-17 15:12:51.018 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-17 15:12:51.458 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-17 15:12:51.818 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-17 15:12:51.819 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_151250/console.log to debug -2014-07-17 15:12:51.825 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} -2014-07-17 15:12:51.909 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-17 15:12:51.909 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-17 15:12:51.910 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-17 15:12:51.925 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-17 15:12:51.925 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-17 15:12:52.016 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-17 15:12:52.016 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-17 15:12:52.045 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-17 15:12:52.050 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-17 15:12:52.054 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-17 15:12:52.055 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-17 15:12:52.089 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-17 15:12:52.101 [debug] <0.94.0>@basho_bench_valgen:init_source:85 random source -2014-07-17 15:12:52.232 [debug] <0.97.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.98.0> -2014-07-17 15:12:52.240 [debug] <0.97.0> Supervisor net_sup started auth:start_link() at pid <0.99.0> -2014-07-17 15:12:52.256 [info] <0.96.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-17 15:12:52.256 [debug] <0.97.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.100.0> -2014-07-17 15:12:52.257 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.97.0> -2014-07-17 15:12:52.272 [debug] <0.104.0> Supervisor inet_gethost_native_sup started undefined at pid <0.105.0> -2014-07-17 15:12:52.272 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.104.0> -2014-07-17 15:12:52.289 [info] <0.96.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' -2014-07-17 15:12:52.289 [info] <0.96.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-17 15:12:52.290 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-17 15:12:52.364 [info] <0.109.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' -2014-07-17 15:12:52.365 [info] <0.109.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-17 15:12:52.365 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.108.0> -2014-07-17 15:12:52.366 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.110.0> -2014-07-17 15:12:52.373 [info] <0.109.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.109.0> -2014-07-17 15:12:52.373 [info] <0.96.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.96.0> -2014-07-17 15:12:52.373 [debug] <0.109.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,list_to_integer,[<<0,11,65,114>>],[]},{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-17 15:12:52.373 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with crash -2014-07-17 15:12:52.373 [debug] <0.96.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,list_to_integer,[<<0,19,63,68>>],[]},{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-17 15:12:52.373 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-17 15:12:52.373 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with crash -2014-07-17 15:12:52.374 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated -2014-07-17 15:12:52.458 [info] <0.112.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' -2014-07-17 15:12:52.458 [info] <0.112.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-17 15:12:52.458 [warning] <0.111.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-17 15:12:52.458 [info] <0.112.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.112.0> -2014-07-17 15:12:52.458 [debug] <0.113.0>@basho_bench_valgen:init_source:85 random source -2014-07-17 15:12:52.459 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.111.0> -2014-07-17 15:12:52.459 [debug] <0.112.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,list_to_integer,[<<0,11,65,114>>],[]},{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-17 15:12:52.459 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-17 15:12:52.460 [error] <0.111.0>@basho_bench_worker:handle_info:149 Worker <0.112.0> exited with crash -2014-07-17 15:12:52.540 [info] <0.114.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' -2014-07-17 15:12:52.540 [info] <0.114.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-17 15:12:52.540 [warning] <0.113.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-17 15:12:52.540 [info] <0.114.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.114.0> -2014-07-17 15:12:52.541 [debug] <0.114.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,list_to_integer,[<<0,19,63,68>>],[]},{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-17 15:12:52.541 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.113.0> -2014-07-17 15:12:52.541 [error] <0.113.0>@basho_bench_worker:handle_info:149 Worker <0.114.0> exited with crash -2014-07-17 15:12:52.542 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.111.0> exit with reason normal in context child_terminated -2014-07-17 15:12:52.623 [info] <0.116.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' -2014-07-17 15:12:52.623 [info] <0.116.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-17 15:12:52.623 [warning] <0.115.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-17 15:12:52.623 [info] <0.116.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.116.0> -2014-07-17 15:12:52.623 [debug] <0.117.0>@basho_bench_valgen:init_source:85 random source -2014-07-17 15:12:52.623 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.115.0> -2014-07-17 15:12:52.623 [debug] <0.116.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,list_to_integer,[<<0,11,65,114>>],[]},{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-17 15:12:52.623 [error] <0.115.0>@basho_bench_worker:handle_info:149 Worker <0.116.0> exited with crash -2014-07-17 15:12:52.624 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.113.0> exit with reason normal in context child_terminated -2014-07-17 15:12:52.706 [info] <0.118.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' -2014-07-17 15:12:52.706 [info] <0.118.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-17 15:12:52.706 [warning] <0.117.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-17 15:12:52.706 [info] <0.118.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.118.0> -2014-07-17 15:12:52.706 [debug] <0.118.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,list_to_integer,[<<0,19,63,68>>],[]},{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-17 15:12:52.706 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.117.0> -2014-07-17 15:12:52.706 [error] <0.117.0>@basho_bench_worker:handle_info:149 Worker <0.118.0> exited with crash -2014-07-17 15:12:52.707 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.115.0> exit with reason normal in context child_terminated -2014-07-17 15:12:52.787 [info] <0.120.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' -2014-07-17 15:12:52.787 [info] <0.120.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-17 15:12:52.787 [warning] <0.119.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-17 15:12:52.787 [info] <0.120.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.120.0> -2014-07-17 15:12:52.788 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.119.0> -2014-07-17 15:12:52.788 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.117.0> exit with reason normal in context child_terminated -2014-07-17 15:12:52.788 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.117.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-17 15:12:52.802 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {append,append} -2014-07-17 15:12:52.803 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} -2014-07-17 15:12:52.803 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{append,append},6},{{{append,append},crash},6}] -2014-07-17 15:12:52.803 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: -2014-07-17 15:12:52.803 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{append,append},crash}: 6 diff --git a/newtests/20140717_151250/crash.log b/newtests/20140717_151250/crash.log deleted file mode 100644 index 5c5b28baa..000000000 --- a/newtests/20140717_151250/crash.log +++ /dev/null @@ -1,42 +0,0 @@ -2014-07-17 15:12:52 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.108.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-17 15:12:52 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-17 15:12:52 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.111.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-17 15:12:52 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.113.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-17 15:12:52 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.115.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-17 15:12:52 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.117.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-17 15:12:52 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.117.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140717_151250/error.log b/newtests/20140717_151250/error.log deleted file mode 100644 index c3b448c24..000000000 --- a/newtests/20140717_151250/error.log +++ /dev/null @@ -1,13 +0,0 @@ -2014-07-17 15:12:52.373 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with crash -2014-07-17 15:12:52.373 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with crash -2014-07-17 15:12:52.374 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated -2014-07-17 15:12:52.459 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-17 15:12:52.460 [error] <0.111.0>@basho_bench_worker:handle_info:149 Worker <0.112.0> exited with crash -2014-07-17 15:12:52.541 [error] <0.113.0>@basho_bench_worker:handle_info:149 Worker <0.114.0> exited with crash -2014-07-17 15:12:52.542 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.111.0> exit with reason normal in context child_terminated -2014-07-17 15:12:52.623 [error] <0.115.0>@basho_bench_worker:handle_info:149 Worker <0.116.0> exited with crash -2014-07-17 15:12:52.624 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.113.0> exit with reason normal in context child_terminated -2014-07-17 15:12:52.706 [error] <0.117.0>@basho_bench_worker:handle_info:149 Worker <0.118.0> exited with crash -2014-07-17 15:12:52.707 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.115.0> exit with reason normal in context child_terminated -2014-07-17 15:12:52.788 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.117.0> exit with reason normal in context child_terminated -2014-07-17 15:12:52.788 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.117.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140717_151250/errors.csv b/newtests/20140717_151250/errors.csv deleted file mode 100644 index dc786eb57..000000000 --- a/newtests/20140717_151250/errors.csv +++ /dev/null @@ -1,2 +0,0 @@ -"error","count" -"{{append,append},crash}","6" diff --git a/newtests/20140717_151250/floppstore.config b/newtests/20140717_151250/floppstore.config deleted file mode 100644 index 43b12a499..000000000 --- a/newtests/20140717_151250/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. - -{value_generator, {fixed_bin, 100}}. - -{operations, [{append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140717_151250/log.sasl.txt b/newtests/20140717_151250/log.sasl.txt deleted file mode 100644 index c18ea4c15..000000000 --- a/newtests/20140717_151250/log.sasl.txt +++ /dev/null @@ -1,336 +0,0 @@ - -=PROGRESS REPORT==== 17-Jul-2014::15:12:51 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:12:51 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:12:51 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 17-Jul-2014::15:12:51 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:12:51 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 17-Jul-2014::15:12:52 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:12:52 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 17-Jul-2014::15:12:52 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 17-Jul-2014::15:12:52 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:12:52 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:12:52 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 17-Jul-2014::15:12:52 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:12:52 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:12:52 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:12:52 === - supervisor: {local,net_sup} - started: [{pid,<0.100.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:12:52 === - supervisor: {local,kernel_sup} - started: [{pid,<0.97.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 17-Jul-2014::15:12:52 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.105.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 17-Jul-2014::15:12:52 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.104.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:12:52 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:12:52 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.108.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:12:52 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.110.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:12:52 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 17-Jul-2014::15:12:52 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.108.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 17-Jul-2014::15:12:52 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.111.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 17-Jul-2014::15:12:52 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 17-Jul-2014::15:12:52 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.113.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 17-Jul-2014::15:12:52 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.111.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 17-Jul-2014::15:12:52 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.115.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 17-Jul-2014::15:12:52 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.113.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 17-Jul-2014::15:12:52 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.117.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 17-Jul-2014::15:12:52 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.115.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 17-Jul-2014::15:12:52 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.119.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 17-Jul-2014::15:12:52 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.117.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 17-Jul-2014::15:12:52 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.117.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140717_151250/read_latencies.csv b/newtests/20140717_151250/read_latencies.csv deleted file mode 100644 index 5737f34c0..000000000 --- a/newtests/20140717_151250/read_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.422422, 0.422422, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140717_151250/summary.csv b/newtests/20140717_151250/summary.csv deleted file mode 100644 index 6d54d174e..000000000 --- a/newtests/20140717_151250/summary.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, total, successful, failed -0.422422, 0.422422, 6, 0, 6 diff --git a/newtests/20140717_151444/append_latencies.csv b/newtests/20140717_151444/append_latencies.csv deleted file mode 100644 index 874e34c5f..000000000 --- a/newtests/20140717_151444/append_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.39581, 0.39581, 0, 0, 0, 0, 0, 0, 0, 0, 6 diff --git a/newtests/20140717_151444/console.log b/newtests/20140717_151444/console.log deleted file mode 100644 index f4db670c0..000000000 --- a/newtests/20140717_151444/console.log +++ /dev/null @@ -1,94 +0,0 @@ -2014-07-17 15:14:44.460 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_151444/error.log"} into lager_event -2014-07-17 15:14:44.460 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_151444/console.log"} into lager_event -2014-07-17 15:14:44.460 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-17 15:14:44.492 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-17 15:14:44.493 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-17 15:14:44.493 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-17 15:14:44.493 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-17 15:14:44.937 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-17 15:14:45.296 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-17 15:14:45.297 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_151444/console.log to debug -2014-07-17 15:14:45.304 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} -2014-07-17 15:14:45.384 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-17 15:14:45.384 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-17 15:14:45.385 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-17 15:14:45.399 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-17 15:14:45.400 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-17 15:14:45.485 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-17 15:14:45.485 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-17 15:14:45.513 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-17 15:14:45.518 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-17 15:14:45.524 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-17 15:14:45.524 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-17 15:14:45.560 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-17 15:14:45.571 [debug] <0.94.0>@basho_bench_valgen:init_source:85 random source -2014-07-17 15:14:45.697 [debug] <0.97.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.98.0> -2014-07-17 15:14:45.704 [debug] <0.97.0> Supervisor net_sup started auth:start_link() at pid <0.99.0> -2014-07-17 15:14:45.717 [info] <0.96.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-17 15:14:45.717 [debug] <0.97.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.100.0> -2014-07-17 15:14:45.717 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.97.0> -2014-07-17 15:14:45.731 [debug] <0.104.0> Supervisor inet_gethost_native_sup started undefined at pid <0.105.0> -2014-07-17 15:14:45.731 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.104.0> -2014-07-17 15:14:45.747 [info] <0.96.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' -2014-07-17 15:14:45.747 [info] <0.96.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-17 15:14:45.748 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-17 15:14:45.829 [info] <0.109.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' -2014-07-17 15:14:45.829 [info] <0.109.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-17 15:14:45.830 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.108.0> -2014-07-17 15:14:45.830 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.110.0> -2014-07-17 15:14:45.837 [info] <0.109.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.109.0> -2014-07-17 15:14:45.837 [info] <0.96.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.96.0> -2014-07-17 15:14:45.837 [debug] <0.109.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,list_to_integer,[[0,11,65,114]],[]},{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-17 15:14:45.837 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with crash -2014-07-17 15:14:45.837 [debug] <0.96.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,list_to_integer,[[0,19,63,68]],[]},{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-17 15:14:45.837 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with crash -2014-07-17 15:14:45.837 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-17 15:14:45.838 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated -2014-07-17 15:14:45.913 [info] <0.112.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' -2014-07-17 15:14:45.913 [info] <0.112.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-17 15:14:45.913 [warning] <0.111.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-17 15:14:45.913 [info] <0.112.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.112.0> -2014-07-17 15:14:45.913 [debug] <0.113.0>@basho_bench_valgen:init_source:85 random source -2014-07-17 15:14:45.914 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.111.0> -2014-07-17 15:14:45.915 [debug] <0.112.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,list_to_integer,[[0,11,65,114]],[]},{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-17 15:14:45.915 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-17 15:14:45.915 [error] <0.111.0>@basho_bench_worker:handle_info:149 Worker <0.112.0> exited with crash -2014-07-17 15:14:45.991 [info] <0.114.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' -2014-07-17 15:14:45.991 [info] <0.114.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-17 15:14:45.991 [warning] <0.113.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-17 15:14:45.991 [info] <0.114.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.114.0> -2014-07-17 15:14:45.992 [debug] <0.114.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,list_to_integer,[[0,19,63,68]],[]},{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-17 15:14:45.992 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.113.0> -2014-07-17 15:14:45.992 [error] <0.113.0>@basho_bench_worker:handle_info:149 Worker <0.114.0> exited with crash -2014-07-17 15:14:45.992 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.111.0> exit with reason normal in context child_terminated -2014-07-17 15:14:46.073 [info] <0.116.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' -2014-07-17 15:14:46.074 [info] <0.116.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-17 15:14:46.074 [warning] <0.115.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-17 15:14:46.074 [info] <0.116.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.116.0> -2014-07-17 15:14:46.074 [debug] <0.117.0>@basho_bench_valgen:init_source:85 random source -2014-07-17 15:14:46.074 [debug] <0.116.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,list_to_integer,[[0,11,65,114]],[]},{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-17 15:14:46.074 [error] <0.115.0>@basho_bench_worker:handle_info:149 Worker <0.116.0> exited with crash -2014-07-17 15:14:46.074 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.115.0> -2014-07-17 15:14:46.075 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.113.0> exit with reason normal in context child_terminated -2014-07-17 15:14:46.148 [info] <0.118.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' -2014-07-17 15:14:46.148 [info] <0.118.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-17 15:14:46.148 [warning] <0.117.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-17 15:14:46.148 [info] <0.118.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.118.0> -2014-07-17 15:14:46.149 [debug] <0.118.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,list_to_integer,[[0,19,63,68]],[]},{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-17 15:14:46.149 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.117.0> -2014-07-17 15:14:46.149 [error] <0.117.0>@basho_bench_worker:handle_info:149 Worker <0.118.0> exited with crash -2014-07-17 15:14:46.149 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.115.0> exit with reason normal in context child_terminated -2014-07-17 15:14:46.225 [info] <0.120.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' -2014-07-17 15:14:46.225 [info] <0.120.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-17 15:14:46.225 [warning] <0.119.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-17 15:14:46.225 [info] <0.120.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.120.0> -2014-07-17 15:14:46.226 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.119.0> -2014-07-17 15:14:46.226 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.117.0> exit with reason normal in context child_terminated -2014-07-17 15:14:46.227 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.117.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-17 15:14:46.239 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {append,append} -2014-07-17 15:14:46.239 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} -2014-07-17 15:14:46.239 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{append,append},6},{{{append,append},crash},6}] -2014-07-17 15:14:46.239 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: -2014-07-17 15:14:46.239 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{append,append},crash}: 6 diff --git a/newtests/20140717_151444/crash.log b/newtests/20140717_151444/crash.log deleted file mode 100644 index 82765d5fa..000000000 --- a/newtests/20140717_151444/crash.log +++ /dev/null @@ -1,42 +0,0 @@ -2014-07-17 15:14:45 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.108.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-17 15:14:45 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-17 15:14:45 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.111.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-17 15:14:46 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.113.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-17 15:14:46 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.115.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-17 15:14:46 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.117.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-17 15:14:46 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.117.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140717_151444/error.log b/newtests/20140717_151444/error.log deleted file mode 100644 index 8e939f763..000000000 --- a/newtests/20140717_151444/error.log +++ /dev/null @@ -1,13 +0,0 @@ -2014-07-17 15:14:45.837 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with crash -2014-07-17 15:14:45.837 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with crash -2014-07-17 15:14:45.838 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated -2014-07-17 15:14:45.915 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-17 15:14:45.915 [error] <0.111.0>@basho_bench_worker:handle_info:149 Worker <0.112.0> exited with crash -2014-07-17 15:14:45.992 [error] <0.113.0>@basho_bench_worker:handle_info:149 Worker <0.114.0> exited with crash -2014-07-17 15:14:45.992 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.111.0> exit with reason normal in context child_terminated -2014-07-17 15:14:46.074 [error] <0.115.0>@basho_bench_worker:handle_info:149 Worker <0.116.0> exited with crash -2014-07-17 15:14:46.075 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.113.0> exit with reason normal in context child_terminated -2014-07-17 15:14:46.149 [error] <0.117.0>@basho_bench_worker:handle_info:149 Worker <0.118.0> exited with crash -2014-07-17 15:14:46.149 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.115.0> exit with reason normal in context child_terminated -2014-07-17 15:14:46.226 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.117.0> exit with reason normal in context child_terminated -2014-07-17 15:14:46.227 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.117.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140717_151444/errors.csv b/newtests/20140717_151444/errors.csv deleted file mode 100644 index dc786eb57..000000000 --- a/newtests/20140717_151444/errors.csv +++ /dev/null @@ -1,2 +0,0 @@ -"error","count" -"{{append,append},crash}","6" diff --git a/newtests/20140717_151444/floppstore.config b/newtests/20140717_151444/floppstore.config deleted file mode 100644 index 43b12a499..000000000 --- a/newtests/20140717_151444/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. - -{value_generator, {fixed_bin, 100}}. - -{operations, [{append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140717_151444/log.sasl.txt b/newtests/20140717_151444/log.sasl.txt deleted file mode 100644 index 55f0b5e8d..000000000 --- a/newtests/20140717_151444/log.sasl.txt +++ /dev/null @@ -1,336 +0,0 @@ - -=PROGRESS REPORT==== 17-Jul-2014::15:14:45 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:14:45 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:14:45 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 17-Jul-2014::15:14:45 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:14:45 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 17-Jul-2014::15:14:45 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:14:45 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 17-Jul-2014::15:14:45 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 17-Jul-2014::15:14:45 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:14:45 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:14:45 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 17-Jul-2014::15:14:45 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:14:45 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:14:45 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:14:45 === - supervisor: {local,net_sup} - started: [{pid,<0.100.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:14:45 === - supervisor: {local,kernel_sup} - started: [{pid,<0.97.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 17-Jul-2014::15:14:45 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.105.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 17-Jul-2014::15:14:45 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.104.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:14:45 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:14:45 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.108.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:14:45 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.110.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:14:45 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 17-Jul-2014::15:14:45 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.108.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 17-Jul-2014::15:14:45 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.111.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 17-Jul-2014::15:14:45 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 17-Jul-2014::15:14:45 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.113.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 17-Jul-2014::15:14:45 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.111.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 17-Jul-2014::15:14:46 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.115.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 17-Jul-2014::15:14:46 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.113.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 17-Jul-2014::15:14:46 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.117.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 17-Jul-2014::15:14:46 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.115.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 17-Jul-2014::15:14:46 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.119.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 17-Jul-2014::15:14:46 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.117.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 17-Jul-2014::15:14:46 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.117.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140717_151444/read_latencies.csv b/newtests/20140717_151444/read_latencies.csv deleted file mode 100644 index 7bc01c622..000000000 --- a/newtests/20140717_151444/read_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.39581, 0.39581, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140717_151444/summary.csv b/newtests/20140717_151444/summary.csv deleted file mode 100644 index 6960faa3f..000000000 --- a/newtests/20140717_151444/summary.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, total, successful, failed -0.39581, 0.39581, 6, 0, 6 diff --git a/newtests/20140717_151946/append_latencies.csv b/newtests/20140717_151946/append_latencies.csv deleted file mode 100644 index 665d73181..000000000 --- a/newtests/20140717_151946/append_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.400549, 0.400549, 0, 0, 0, 0, 0, 0, 0, 0, 6 diff --git a/newtests/20140717_151946/console.log b/newtests/20140717_151946/console.log deleted file mode 100644 index 2f607421e..000000000 --- a/newtests/20140717_151946/console.log +++ /dev/null @@ -1,94 +0,0 @@ -2014-07-17 15:19:46.848 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_151946/error.log"} into lager_event -2014-07-17 15:19:46.848 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_151946/console.log"} into lager_event -2014-07-17 15:19:46.848 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-17 15:19:46.884 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-17 15:19:46.884 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-17 15:19:46.884 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-17 15:19:46.885 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-17 15:19:47.324 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-17 15:19:47.668 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-17 15:19:47.669 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_151946/console.log to debug -2014-07-17 15:19:47.677 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} -2014-07-17 15:19:47.756 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-17 15:19:47.756 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-17 15:19:47.756 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-17 15:19:47.770 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-17 15:19:47.770 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-17 15:19:47.853 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-17 15:19:47.853 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-17 15:19:47.878 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-17 15:19:47.882 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-17 15:19:47.886 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-17 15:19:47.887 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-17 15:19:47.920 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-17 15:19:47.930 [debug] <0.94.0>@basho_bench_valgen:init_source:85 random source -2014-07-17 15:19:48.050 [debug] <0.97.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.98.0> -2014-07-17 15:19:48.057 [debug] <0.97.0> Supervisor net_sup started auth:start_link() at pid <0.99.0> -2014-07-17 15:19:48.069 [info] <0.96.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-17 15:19:48.069 [debug] <0.97.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.100.0> -2014-07-17 15:19:48.069 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.97.0> -2014-07-17 15:19:48.083 [debug] <0.104.0> Supervisor inet_gethost_native_sup started undefined at pid <0.105.0> -2014-07-17 15:19:48.084 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.104.0> -2014-07-17 15:19:48.098 [info] <0.96.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' -2014-07-17 15:19:48.098 [info] <0.96.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-17 15:19:48.098 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-17 15:19:48.176 [info] <0.109.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' -2014-07-17 15:19:48.176 [info] <0.109.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-17 15:19:48.177 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.108.0> -2014-07-17 15:19:48.177 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.110.0> -2014-07-17 15:19:48.184 [info] <0.109.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.109.0> -2014-07-17 15:19:48.184 [info] <0.96.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.96.0> -2014-07-17 15:19:48.184 [debug] <0.109.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,list_to_integer,[[0,11,65,114]],[]},{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-17 15:19:48.185 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-17 15:19:48.185 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with crash -2014-07-17 15:19:48.185 [debug] <0.96.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,list_to_integer,[[0,19,63,68]],[]},{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-17 15:19:48.185 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with crash -2014-07-17 15:19:48.191 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated -2014-07-17 15:19:48.268 [info] <0.112.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' -2014-07-17 15:19:48.268 [info] <0.112.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-17 15:19:48.268 [warning] <0.111.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-17 15:19:48.268 [info] <0.112.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.112.0> -2014-07-17 15:19:48.268 [debug] <0.113.0>@basho_bench_valgen:init_source:85 random source -2014-07-17 15:19:48.269 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.111.0> -2014-07-17 15:19:48.269 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-17 15:19:48.270 [debug] <0.112.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,list_to_integer,[[0,11,65,114]],[]},{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-17 15:19:48.270 [error] <0.111.0>@basho_bench_worker:handle_info:149 Worker <0.112.0> exited with crash -2014-07-17 15:19:48.345 [info] <0.114.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' -2014-07-17 15:19:48.345 [info] <0.114.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-17 15:19:48.345 [warning] <0.113.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-17 15:19:48.345 [info] <0.114.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.114.0> -2014-07-17 15:19:48.345 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.113.0> -2014-07-17 15:19:48.346 [debug] <0.114.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,list_to_integer,[[0,19,63,68]],[]},{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-17 15:19:48.346 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.111.0> exit with reason normal in context child_terminated -2014-07-17 15:19:48.346 [error] <0.113.0>@basho_bench_worker:handle_info:149 Worker <0.114.0> exited with crash -2014-07-17 15:19:48.422 [info] <0.116.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' -2014-07-17 15:19:48.422 [info] <0.116.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-17 15:19:48.422 [warning] <0.115.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-17 15:19:48.422 [info] <0.116.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.116.0> -2014-07-17 15:19:48.422 [debug] <0.117.0>@basho_bench_valgen:init_source:85 random source -2014-07-17 15:19:48.423 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.115.0> -2014-07-17 15:19:48.423 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.113.0> exit with reason normal in context child_terminated -2014-07-17 15:19:48.424 [debug] <0.116.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,list_to_integer,[[0,11,65,114]],[]},{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-17 15:19:48.424 [error] <0.115.0>@basho_bench_worker:handle_info:149 Worker <0.116.0> exited with crash -2014-07-17 15:19:48.500 [info] <0.118.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' -2014-07-17 15:19:48.500 [info] <0.118.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-17 15:19:48.500 [warning] <0.117.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-17 15:19:48.500 [info] <0.118.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.118.0> -2014-07-17 15:19:48.500 [debug] <0.118.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,list_to_integer,[[0,19,63,68]],[]},{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-17 15:19:48.500 [error] <0.117.0>@basho_bench_worker:handle_info:149 Worker <0.118.0> exited with crash -2014-07-17 15:19:48.500 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.117.0> -2014-07-17 15:19:48.501 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.115.0> exit with reason normal in context child_terminated -2014-07-17 15:19:48.577 [info] <0.120.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' -2014-07-17 15:19:48.577 [info] <0.120.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-17 15:19:48.577 [warning] <0.119.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-17 15:19:48.577 [info] <0.120.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.120.0> -2014-07-17 15:19:48.577 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.119.0> -2014-07-17 15:19:48.578 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.117.0> exit with reason normal in context child_terminated -2014-07-17 15:19:48.578 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.117.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-17 15:19:48.589 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {append,append} -2014-07-17 15:19:48.589 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} -2014-07-17 15:19:48.589 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{append,append},6},{{{append,append},crash},6}] -2014-07-17 15:19:48.589 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: -2014-07-17 15:19:48.589 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{append,append},crash}: 6 diff --git a/newtests/20140717_151946/crash.log b/newtests/20140717_151946/crash.log deleted file mode 100644 index 1ec8e0bcb..000000000 --- a/newtests/20140717_151946/crash.log +++ /dev/null @@ -1,42 +0,0 @@ -2014-07-17 15:19:48 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.108.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-17 15:19:48 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-17 15:19:48 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.111.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-17 15:19:48 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.113.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-17 15:19:48 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.115.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-17 15:19:48 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.117.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-17 15:19:48 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.117.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140717_151946/error.log b/newtests/20140717_151946/error.log deleted file mode 100644 index 1b7a80134..000000000 --- a/newtests/20140717_151946/error.log +++ /dev/null @@ -1,13 +0,0 @@ -2014-07-17 15:19:48.185 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with crash -2014-07-17 15:19:48.185 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with crash -2014-07-17 15:19:48.191 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated -2014-07-17 15:19:48.269 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-17 15:19:48.270 [error] <0.111.0>@basho_bench_worker:handle_info:149 Worker <0.112.0> exited with crash -2014-07-17 15:19:48.346 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.111.0> exit with reason normal in context child_terminated -2014-07-17 15:19:48.346 [error] <0.113.0>@basho_bench_worker:handle_info:149 Worker <0.114.0> exited with crash -2014-07-17 15:19:48.423 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.113.0> exit with reason normal in context child_terminated -2014-07-17 15:19:48.424 [error] <0.115.0>@basho_bench_worker:handle_info:149 Worker <0.116.0> exited with crash -2014-07-17 15:19:48.500 [error] <0.117.0>@basho_bench_worker:handle_info:149 Worker <0.118.0> exited with crash -2014-07-17 15:19:48.501 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.115.0> exit with reason normal in context child_terminated -2014-07-17 15:19:48.578 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.117.0> exit with reason normal in context child_terminated -2014-07-17 15:19:48.578 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.117.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140717_151946/errors.csv b/newtests/20140717_151946/errors.csv deleted file mode 100644 index dc786eb57..000000000 --- a/newtests/20140717_151946/errors.csv +++ /dev/null @@ -1,2 +0,0 @@ -"error","count" -"{{append,append},crash}","6" diff --git a/newtests/20140717_151946/floppstore.config b/newtests/20140717_151946/floppstore.config deleted file mode 100644 index 43b12a499..000000000 --- a/newtests/20140717_151946/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. - -{value_generator, {fixed_bin, 100}}. - -{operations, [{append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140717_151946/log.sasl.txt b/newtests/20140717_151946/log.sasl.txt deleted file mode 100644 index f42a71afa..000000000 --- a/newtests/20140717_151946/log.sasl.txt +++ /dev/null @@ -1,336 +0,0 @@ - -=PROGRESS REPORT==== 17-Jul-2014::15:19:47 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:19:47 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:19:47 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 17-Jul-2014::15:19:47 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:19:47 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 17-Jul-2014::15:19:47 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:19:47 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 17-Jul-2014::15:19:47 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 17-Jul-2014::15:19:47 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:19:47 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:19:47 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 17-Jul-2014::15:19:47 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:19:48 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:19:48 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:19:48 === - supervisor: {local,net_sup} - started: [{pid,<0.100.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:19:48 === - supervisor: {local,kernel_sup} - started: [{pid,<0.97.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 17-Jul-2014::15:19:48 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.105.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 17-Jul-2014::15:19:48 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.104.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:19:48 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:19:48 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.108.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:19:48 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.110.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:19:48 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 17-Jul-2014::15:19:48 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.108.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 17-Jul-2014::15:19:48 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.111.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 17-Jul-2014::15:19:48 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 17-Jul-2014::15:19:48 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.113.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 17-Jul-2014::15:19:48 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.111.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 17-Jul-2014::15:19:48 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.115.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 17-Jul-2014::15:19:48 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.113.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 17-Jul-2014::15:19:48 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.117.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 17-Jul-2014::15:19:48 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.115.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 17-Jul-2014::15:19:48 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.119.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 17-Jul-2014::15:19:48 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.117.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 17-Jul-2014::15:19:48 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.117.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140717_151946/read_latencies.csv b/newtests/20140717_151946/read_latencies.csv deleted file mode 100644 index 5f3009e57..000000000 --- a/newtests/20140717_151946/read_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.400549, 0.400549, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140717_151946/summary.csv b/newtests/20140717_151946/summary.csv deleted file mode 100644 index 6bfe1daa1..000000000 --- a/newtests/20140717_151946/summary.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, total, successful, failed -0.400549, 0.400549, 6, 0, 6 diff --git a/newtests/20140717_152313/append_latencies.csv b/newtests/20140717_152313/append_latencies.csv deleted file mode 100644 index 2d93da351..000000000 --- a/newtests/20140717_152313/append_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.391637, 0.391637, 0, 0, 0, 0, 0, 0, 0, 0, 7 diff --git a/newtests/20140717_152313/console.log b/newtests/20140717_152313/console.log deleted file mode 100644 index 8e03a3fec..000000000 --- a/newtests/20140717_152313/console.log +++ /dev/null @@ -1,95 +0,0 @@ -2014-07-17 15:23:13.624 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_152313/error.log"} into lager_event -2014-07-17 15:23:13.624 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_152313/console.log"} into lager_event -2014-07-17 15:23:13.624 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-17 15:23:13.662 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-17 15:23:13.662 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-17 15:23:13.662 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-17 15:23:13.662 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-17 15:23:14.100 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-17 15:23:14.414 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-17 15:23:14.415 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_152313/console.log to debug -2014-07-17 15:23:14.422 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} -2014-07-17 15:23:14.498 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-17 15:23:14.498 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-17 15:23:14.499 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-17 15:23:14.516 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-17 15:23:14.516 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-17 15:23:14.606 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-17 15:23:14.606 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-17 15:23:14.634 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-17 15:23:14.638 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-17 15:23:14.644 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-17 15:23:14.644 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-17 15:23:14.686 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-17 15:23:14.696 [debug] <0.94.0>@basho_bench_valgen:init_source:85 random source -2014-07-17 15:23:14.820 [debug] <0.97.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.98.0> -2014-07-17 15:23:14.827 [debug] <0.97.0> Supervisor net_sup started auth:start_link() at pid <0.99.0> -2014-07-17 15:23:14.840 [info] <0.96.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-17 15:23:14.841 [debug] <0.97.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.100.0> -2014-07-17 15:23:14.841 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.97.0> -2014-07-17 15:23:14.858 [debug] <0.104.0> Supervisor inet_gethost_native_sup started undefined at pid <0.105.0> -2014-07-17 15:23:14.858 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.104.0> -2014-07-17 15:23:14.875 [info] <0.96.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' -2014-07-17 15:23:14.875 [info] <0.96.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-17 15:23:14.876 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-17 15:23:14.954 [info] <0.109.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' -2014-07-17 15:23:14.954 [info] <0.109.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-17 15:23:14.954 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.108.0> -2014-07-17 15:23:14.955 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.110.0> -2014-07-17 15:23:14.963 [info] <0.109.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.109.0> -2014-07-17 15:23:14.963 [info] <0.96.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.96.0> -2014-07-17 15:23:14.963 [debug] <0.109.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarith,[{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-17 15:23:14.963 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with crash -2014-07-17 15:23:14.963 [debug] <0.96.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarith,[{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-17 15:23:14.963 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with crash -2014-07-17 15:23:14.963 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-17 15:23:14.964 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated -2014-07-17 15:23:15.039 [info] <0.112.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' -2014-07-17 15:23:15.039 [info] <0.112.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-17 15:23:15.039 [warning] <0.111.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-17 15:23:15.039 [info] <0.112.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.112.0> -2014-07-17 15:23:15.040 [debug] <0.113.0>@basho_bench_valgen:init_source:85 random source -2014-07-17 15:23:15.040 [debug] <0.112.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarith,[{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-17 15:23:15.040 [error] <0.111.0>@basho_bench_worker:handle_info:149 Worker <0.112.0> exited with crash -2014-07-17 15:23:15.040 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.111.0> -2014-07-17 15:23:15.041 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-17 15:23:15.115 [info] <0.114.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' -2014-07-17 15:23:15.115 [info] <0.114.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-17 15:23:15.115 [warning] <0.113.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-17 15:23:15.115 [info] <0.114.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.114.0> -2014-07-17 15:23:15.116 [debug] <0.114.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarith,[{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-17 15:23:15.116 [error] <0.113.0>@basho_bench_worker:handle_info:149 Worker <0.114.0> exited with crash -2014-07-17 15:23:15.116 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.113.0> -2014-07-17 15:23:15.117 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.111.0> exit with reason normal in context child_terminated -2014-07-17 15:23:15.200 [info] <0.116.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' -2014-07-17 15:23:15.200 [info] <0.116.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-17 15:23:15.200 [warning] <0.115.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-17 15:23:15.200 [info] <0.116.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.116.0> -2014-07-17 15:23:15.200 [debug] <0.117.0>@basho_bench_valgen:init_source:85 random source -2014-07-17 15:23:15.200 [debug] <0.116.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarith,[{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-17 15:23:15.201 [error] <0.115.0>@basho_bench_worker:handle_info:149 Worker <0.116.0> exited with crash -2014-07-17 15:23:15.201 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.115.0> -2014-07-17 15:23:15.201 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.113.0> exit with reason normal in context child_terminated -2014-07-17 15:23:15.274 [info] <0.118.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' -2014-07-17 15:23:15.274 [info] <0.118.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-17 15:23:15.274 [warning] <0.117.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-17 15:23:15.274 [info] <0.118.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.118.0> -2014-07-17 15:23:15.274 [debug] <0.118.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarith,[{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-17 15:23:15.274 [error] <0.117.0>@basho_bench_worker:handle_info:149 Worker <0.118.0> exited with crash -2014-07-17 15:23:15.274 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.117.0> -2014-07-17 15:23:15.275 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.115.0> exit with reason normal in context child_terminated -2014-07-17 15:23:15.345 [info] <0.120.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' -2014-07-17 15:23:15.345 [info] <0.120.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-17 15:23:15.345 [warning] <0.119.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-17 15:23:15.345 [info] <0.120.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.120.0> -2014-07-17 15:23:15.346 [debug] <0.120.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarith,[{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-17 15:23:15.346 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.119.0> -2014-07-17 15:23:15.346 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.117.0> exit with reason normal in context child_terminated -2014-07-17 15:23:15.347 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.117.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-17 15:23:15.358 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {append,append} -2014-07-17 15:23:15.358 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} -2014-07-17 15:23:15.358 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{append,append},7},{{{append,append},crash},7}] -2014-07-17 15:23:15.359 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: -2014-07-17 15:23:15.359 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{append,append},crash}: 7 diff --git a/newtests/20140717_152313/crash.log b/newtests/20140717_152313/crash.log deleted file mode 100644 index ddee12c93..000000000 --- a/newtests/20140717_152313/crash.log +++ /dev/null @@ -1,42 +0,0 @@ -2014-07-17 15:23:14 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.108.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-17 15:23:15 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-17 15:23:15 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.111.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-17 15:23:15 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.113.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-17 15:23:15 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.115.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-17 15:23:15 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.117.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-17 15:23:15 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.117.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140717_152313/error.log b/newtests/20140717_152313/error.log deleted file mode 100644 index d59c3e58d..000000000 --- a/newtests/20140717_152313/error.log +++ /dev/null @@ -1,13 +0,0 @@ -2014-07-17 15:23:14.963 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with crash -2014-07-17 15:23:14.963 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with crash -2014-07-17 15:23:14.964 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated -2014-07-17 15:23:15.040 [error] <0.111.0>@basho_bench_worker:handle_info:149 Worker <0.112.0> exited with crash -2014-07-17 15:23:15.041 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-17 15:23:15.116 [error] <0.113.0>@basho_bench_worker:handle_info:149 Worker <0.114.0> exited with crash -2014-07-17 15:23:15.117 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.111.0> exit with reason normal in context child_terminated -2014-07-17 15:23:15.201 [error] <0.115.0>@basho_bench_worker:handle_info:149 Worker <0.116.0> exited with crash -2014-07-17 15:23:15.201 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.113.0> exit with reason normal in context child_terminated -2014-07-17 15:23:15.274 [error] <0.117.0>@basho_bench_worker:handle_info:149 Worker <0.118.0> exited with crash -2014-07-17 15:23:15.275 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.115.0> exit with reason normal in context child_terminated -2014-07-17 15:23:15.346 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.117.0> exit with reason normal in context child_terminated -2014-07-17 15:23:15.347 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.117.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140717_152313/errors.csv b/newtests/20140717_152313/errors.csv deleted file mode 100644 index a31ba014e..000000000 --- a/newtests/20140717_152313/errors.csv +++ /dev/null @@ -1,2 +0,0 @@ -"error","count" -"{{append,append},crash}","7" diff --git a/newtests/20140717_152313/floppstore.config b/newtests/20140717_152313/floppstore.config deleted file mode 100644 index 43b12a499..000000000 --- a/newtests/20140717_152313/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. - -{value_generator, {fixed_bin, 100}}. - -{operations, [{append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140717_152313/log.sasl.txt b/newtests/20140717_152313/log.sasl.txt deleted file mode 100644 index fbb561998..000000000 --- a/newtests/20140717_152313/log.sasl.txt +++ /dev/null @@ -1,336 +0,0 @@ - -=PROGRESS REPORT==== 17-Jul-2014::15:23:14 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:23:14 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:23:14 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 17-Jul-2014::15:23:14 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:23:14 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 17-Jul-2014::15:23:14 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:23:14 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 17-Jul-2014::15:23:14 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 17-Jul-2014::15:23:14 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:23:14 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:23:14 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 17-Jul-2014::15:23:14 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:23:14 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:23:14 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:23:14 === - supervisor: {local,net_sup} - started: [{pid,<0.100.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:23:14 === - supervisor: {local,kernel_sup} - started: [{pid,<0.97.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 17-Jul-2014::15:23:14 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.105.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 17-Jul-2014::15:23:14 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.104.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:23:14 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:23:14 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.108.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:23:14 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.110.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:23:14 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 17-Jul-2014::15:23:14 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.108.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 17-Jul-2014::15:23:15 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.111.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 17-Jul-2014::15:23:15 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 17-Jul-2014::15:23:15 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.113.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 17-Jul-2014::15:23:15 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.111.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 17-Jul-2014::15:23:15 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.115.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 17-Jul-2014::15:23:15 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.113.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 17-Jul-2014::15:23:15 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.117.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 17-Jul-2014::15:23:15 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.115.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 17-Jul-2014::15:23:15 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.119.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 17-Jul-2014::15:23:15 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.117.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 17-Jul-2014::15:23:15 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.117.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140717_152313/read_latencies.csv b/newtests/20140717_152313/read_latencies.csv deleted file mode 100644 index 1bea7fbc7..000000000 --- a/newtests/20140717_152313/read_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.391637, 0.391637, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140717_152313/summary.csv b/newtests/20140717_152313/summary.csv deleted file mode 100644 index 0b78216cd..000000000 --- a/newtests/20140717_152313/summary.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, total, successful, failed -0.391637, 0.391637, 7, 0, 7 diff --git a/newtests/20140717_152423/append_latencies.csv b/newtests/20140717_152423/append_latencies.csv deleted file mode 100644 index 9166399c8..000000000 --- a/newtests/20140717_152423/append_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.410836, 0.410836, 0, 0, 0, 0, 0, 0, 0, 0, 6 diff --git a/newtests/20140717_152423/console.log b/newtests/20140717_152423/console.log deleted file mode 100644 index 64fd35cfd..000000000 --- a/newtests/20140717_152423/console.log +++ /dev/null @@ -1,95 +0,0 @@ -2014-07-17 15:24:23.871 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_152423/error.log"} into lager_event -2014-07-17 15:24:23.871 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_152423/console.log"} into lager_event -2014-07-17 15:24:23.871 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-17 15:24:23.905 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-17 15:24:23.905 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-17 15:24:23.905 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-17 15:24:23.905 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-17 15:24:24.347 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-17 15:24:24.742 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-17 15:24:24.744 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_152423/console.log to debug -2014-07-17 15:24:24.751 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} -2014-07-17 15:24:24.837 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-17 15:24:24.838 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-17 15:24:24.838 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-17 15:24:24.853 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-17 15:24:24.853 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-17 15:24:24.948 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-17 15:24:24.948 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-17 15:24:24.979 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-17 15:24:24.984 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-17 15:24:24.989 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-17 15:24:24.989 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-17 15:24:25.022 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-17 15:24:25.034 [debug] <0.94.0>@basho_bench_valgen:init_source:85 random source -2014-07-17 15:24:25.167 [debug] <0.97.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.98.0> -2014-07-17 15:24:25.174 [debug] <0.97.0> Supervisor net_sup started auth:start_link() at pid <0.99.0> -2014-07-17 15:24:25.188 [info] <0.96.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-17 15:24:25.189 [debug] <0.97.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.100.0> -2014-07-17 15:24:25.189 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.97.0> -2014-07-17 15:24:25.204 [debug] <0.104.0> Supervisor inet_gethost_native_sup started undefined at pid <0.105.0> -2014-07-17 15:24:25.204 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.104.0> -2014-07-17 15:24:25.219 [info] <0.96.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' -2014-07-17 15:24:25.219 [info] <0.96.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-17 15:24:25.220 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-17 15:24:25.308 [info] <0.109.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' -2014-07-17 15:24:25.308 [info] <0.109.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-17 15:24:25.309 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.108.0> -2014-07-17 15:24:25.309 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.110.0> -2014-07-17 15:24:25.315 [info] <0.96.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.96.0> -2014-07-17 15:24:25.315 [info] <0.109.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.109.0> -2014-07-17 15:24:25.315 [debug] <0.96.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarith,[{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,125}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-17 15:24:25.315 [debug] <0.109.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarith,[{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,125}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-17 15:24:25.315 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with crash -2014-07-17 15:24:25.315 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-17 15:24:25.315 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with crash -2014-07-17 15:24:25.316 [debug] <0.111.0>@basho_bench_valgen:init_source:85 random source -2014-07-17 15:24:25.316 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-17 15:24:25.400 [info] <0.112.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' -2014-07-17 15:24:25.400 [info] <0.112.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-17 15:24:25.400 [warning] <0.111.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-17 15:24:25.401 [info] <0.112.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.112.0> -2014-07-17 15:24:25.401 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.111.0> -2014-07-17 15:24:25.401 [debug] <0.112.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarith,[{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,125}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-17 15:24:25.401 [error] <0.111.0>@basho_bench_worker:handle_info:149 Worker <0.112.0> exited with crash -2014-07-17 15:24:25.402 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated -2014-07-17 15:24:25.478 [info] <0.114.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' -2014-07-17 15:24:25.478 [info] <0.114.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-17 15:24:25.478 [warning] <0.113.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-17 15:24:25.478 [info] <0.114.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.114.0> -2014-07-17 15:24:25.478 [debug] <0.115.0>@basho_bench_valgen:init_source:85 random source -2014-07-17 15:24:25.478 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.113.0> -2014-07-17 15:24:25.479 [debug] <0.114.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarith,[{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,125}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-17 15:24:25.479 [error] <0.113.0>@basho_bench_worker:handle_info:149 Worker <0.114.0> exited with crash -2014-07-17 15:24:25.479 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.111.0> exit with reason normal in context child_terminated -2014-07-17 15:24:25.558 [info] <0.116.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' -2014-07-17 15:24:25.558 [info] <0.116.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-17 15:24:25.558 [warning] <0.115.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-17 15:24:25.558 [info] <0.116.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.116.0> -2014-07-17 15:24:25.558 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.115.0> -2014-07-17 15:24:25.559 [debug] <0.116.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarith,[{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,125}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-17 15:24:25.559 [error] <0.115.0>@basho_bench_worker:handle_info:149 Worker <0.116.0> exited with crash -2014-07-17 15:24:25.559 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.113.0> exit with reason normal in context child_terminated -2014-07-17 15:24:25.642 [info] <0.118.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' -2014-07-17 15:24:25.642 [info] <0.118.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-17 15:24:25.642 [warning] <0.117.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-17 15:24:25.642 [info] <0.118.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.118.0> -2014-07-17 15:24:25.642 [debug] <0.119.0>@basho_bench_valgen:init_source:85 random source -2014-07-17 15:24:25.642 [debug] <0.118.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarith,[{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,125}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-17 15:24:25.642 [error] <0.117.0>@basho_bench_worker:handle_info:149 Worker <0.118.0> exited with crash -2014-07-17 15:24:25.642 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.117.0> -2014-07-17 15:24:25.643 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.115.0> exit with reason normal in context child_terminated -2014-07-17 15:24:25.719 [info] <0.120.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' -2014-07-17 15:24:25.719 [info] <0.120.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-17 15:24:25.719 [warning] <0.119.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-17 15:24:25.719 [info] <0.120.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.120.0> -2014-07-17 15:24:25.720 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.119.0> -2014-07-17 15:24:25.720 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.117.0> exit with reason normal in context child_terminated -2014-07-17 15:24:25.721 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.117.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-17 15:24:25.733 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {append,append} -2014-07-17 15:24:25.734 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} -2014-07-17 15:24:25.734 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{append,append},6},{{{append,append},crash},6}] -2014-07-17 15:24:25.734 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: -2014-07-17 15:24:25.734 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{append,append},crash}: 6 diff --git a/newtests/20140717_152423/crash.log b/newtests/20140717_152423/crash.log deleted file mode 100644 index 5411c4299..000000000 --- a/newtests/20140717_152423/crash.log +++ /dev/null @@ -1,42 +0,0 @@ -2014-07-17 15:24:25 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-17 15:24:25 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.108.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-17 15:24:25 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.111.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-17 15:24:25 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.113.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-17 15:24:25 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.115.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-17 15:24:25 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.117.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-17 15:24:25 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.117.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140717_152423/error.log b/newtests/20140717_152423/error.log deleted file mode 100644 index ecf968a89..000000000 --- a/newtests/20140717_152423/error.log +++ /dev/null @@ -1,13 +0,0 @@ -2014-07-17 15:24:25.315 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with crash -2014-07-17 15:24:25.315 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with crash -2014-07-17 15:24:25.316 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-17 15:24:25.401 [error] <0.111.0>@basho_bench_worker:handle_info:149 Worker <0.112.0> exited with crash -2014-07-17 15:24:25.402 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated -2014-07-17 15:24:25.479 [error] <0.113.0>@basho_bench_worker:handle_info:149 Worker <0.114.0> exited with crash -2014-07-17 15:24:25.479 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.111.0> exit with reason normal in context child_terminated -2014-07-17 15:24:25.559 [error] <0.115.0>@basho_bench_worker:handle_info:149 Worker <0.116.0> exited with crash -2014-07-17 15:24:25.559 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.113.0> exit with reason normal in context child_terminated -2014-07-17 15:24:25.642 [error] <0.117.0>@basho_bench_worker:handle_info:149 Worker <0.118.0> exited with crash -2014-07-17 15:24:25.643 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.115.0> exit with reason normal in context child_terminated -2014-07-17 15:24:25.720 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.117.0> exit with reason normal in context child_terminated -2014-07-17 15:24:25.721 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.117.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140717_152423/errors.csv b/newtests/20140717_152423/errors.csv deleted file mode 100644 index dc786eb57..000000000 --- a/newtests/20140717_152423/errors.csv +++ /dev/null @@ -1,2 +0,0 @@ -"error","count" -"{{append,append},crash}","6" diff --git a/newtests/20140717_152423/floppstore.config b/newtests/20140717_152423/floppstore.config deleted file mode 100644 index 43b12a499..000000000 --- a/newtests/20140717_152423/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. - -{value_generator, {fixed_bin, 100}}. - -{operations, [{append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140717_152423/log.sasl.txt b/newtests/20140717_152423/log.sasl.txt deleted file mode 100644 index d365dffd1..000000000 --- a/newtests/20140717_152423/log.sasl.txt +++ /dev/null @@ -1,336 +0,0 @@ - -=PROGRESS REPORT==== 17-Jul-2014::15:24:24 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:24:24 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:24:24 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 17-Jul-2014::15:24:24 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:24:24 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 17-Jul-2014::15:24:24 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:24:24 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 17-Jul-2014::15:24:24 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 17-Jul-2014::15:24:24 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:24:24 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:24:24 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 17-Jul-2014::15:24:25 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:24:25 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:24:25 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:24:25 === - supervisor: {local,net_sup} - started: [{pid,<0.100.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:24:25 === - supervisor: {local,kernel_sup} - started: [{pid,<0.97.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 17-Jul-2014::15:24:25 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.105.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 17-Jul-2014::15:24:25 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.104.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:24:25 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:24:25 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.108.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:24:25 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.110.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:24:25 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 17-Jul-2014::15:24:25 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 17-Jul-2014::15:24:25 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.111.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 17-Jul-2014::15:24:25 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.108.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 17-Jul-2014::15:24:25 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.113.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 17-Jul-2014::15:24:25 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.111.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 17-Jul-2014::15:24:25 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.115.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 17-Jul-2014::15:24:25 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.113.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 17-Jul-2014::15:24:25 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.117.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 17-Jul-2014::15:24:25 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.115.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 17-Jul-2014::15:24:25 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.119.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 17-Jul-2014::15:24:25 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.117.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 17-Jul-2014::15:24:25 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.117.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140717_152423/read_latencies.csv b/newtests/20140717_152423/read_latencies.csv deleted file mode 100644 index 3fcafe1a1..000000000 --- a/newtests/20140717_152423/read_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.410836, 0.410836, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140717_152423/summary.csv b/newtests/20140717_152423/summary.csv deleted file mode 100644 index fa4aa4b25..000000000 --- a/newtests/20140717_152423/summary.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, total, successful, failed -0.410836, 0.410836, 6, 0, 6 diff --git a/newtests/20140717_153010/append_latencies.csv b/newtests/20140717_153010/append_latencies.csv deleted file mode 100644 index 2b74d1edd..000000000 --- a/newtests/20140717_153010/append_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.397305, 0.397305, 0, 0, 0, 0, 0, 0, 0, 0, 7 diff --git a/newtests/20140717_153010/console.log b/newtests/20140717_153010/console.log deleted file mode 100644 index 894267bbe..000000000 --- a/newtests/20140717_153010/console.log +++ /dev/null @@ -1,96 +0,0 @@ -2014-07-17 15:30:10.995 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_153010/error.log"} into lager_event -2014-07-17 15:30:10.995 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_153010/console.log"} into lager_event -2014-07-17 15:30:10.995 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-17 15:30:11.029 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-17 15:30:11.029 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-17 15:30:11.030 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-17 15:30:11.030 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-17 15:30:11.472 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-17 15:30:11.870 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-17 15:30:11.871 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_153010/console.log to debug -2014-07-17 15:30:11.878 [info] <0.2.0>@basho_bench_keygen:dimension:138 No dimension available for key generator: {int_to_bin_bigendian,{uniform_int,5000000}} -2014-07-17 15:30:11.960 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-17 15:30:11.960 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-17 15:30:11.960 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-17 15:30:11.975 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-17 15:30:11.975 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-17 15:30:12.061 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-17 15:30:12.061 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-17 15:30:12.089 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-17 15:30:12.093 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-17 15:30:12.099 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-17 15:30:12.099 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-17 15:30:12.137 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-17 15:30:12.148 [debug] <0.94.0>@basho_bench_valgen:init_source:85 random source -2014-07-17 15:30:12.271 [debug] <0.97.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.98.0> -2014-07-17 15:30:12.277 [debug] <0.97.0> Supervisor net_sup started auth:start_link() at pid <0.99.0> -2014-07-17 15:30:12.290 [info] <0.96.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-17 15:30:12.290 [debug] <0.97.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.100.0> -2014-07-17 15:30:12.290 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.97.0> -2014-07-17 15:30:12.304 [debug] <0.104.0> Supervisor inet_gethost_native_sup started undefined at pid <0.105.0> -2014-07-17 15:30:12.304 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.104.0> -2014-07-17 15:30:12.319 [info] <0.96.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' -2014-07-17 15:30:12.319 [info] <0.96.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-17 15:30:12.319 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-17 15:30:12.396 [info] <0.109.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' -2014-07-17 15:30:12.396 [info] <0.109.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-17 15:30:12.397 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.108.0> -2014-07-17 15:30:12.397 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.110.0> -2014-07-17 15:30:12.404 [info] <0.109.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.109.0> -2014-07-17 15:30:12.404 [info] <0.96.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.96.0> -2014-07-17 15:30:12.404 [debug] <0.96.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,list_to_integer,[[0,19,63,68]],[]},{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-17 15:30:12.404 [debug] <0.109.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,list_to_integer,[[0,11,65,114]],[]},{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-17 15:30:12.404 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with crash -2014-07-17 15:30:12.404 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-17 15:30:12.404 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with crash -2014-07-17 15:30:12.404 [debug] <0.111.0>@basho_bench_valgen:init_source:85 random source -2014-07-17 15:30:12.411 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-17 15:30:12.486 [info] <0.112.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' -2014-07-17 15:30:12.486 [info] <0.112.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-17 15:30:12.486 [warning] <0.111.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-17 15:30:12.486 [info] <0.112.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.112.0> -2014-07-17 15:30:12.486 [debug] <0.112.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,list_to_integer,[[0,19,63,68]],[]},{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-17 15:30:12.486 [error] <0.111.0>@basho_bench_worker:handle_info:149 Worker <0.112.0> exited with crash -2014-07-17 15:30:12.486 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.111.0> -2014-07-17 15:30:12.487 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated -2014-07-17 15:30:12.569 [info] <0.114.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' -2014-07-17 15:30:12.569 [info] <0.114.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-17 15:30:12.569 [warning] <0.113.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-17 15:30:12.569 [info] <0.114.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.114.0> -2014-07-17 15:30:12.569 [debug] <0.114.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,list_to_integer,[[0,11,65,114]],[]},{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-17 15:30:12.570 [error] <0.113.0>@basho_bench_worker:handle_info:149 Worker <0.114.0> exited with crash -2014-07-17 15:30:12.570 [debug] <0.115.0>@basho_bench_valgen:init_source:85 random source -2014-07-17 15:30:12.570 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.113.0> -2014-07-17 15:30:12.571 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.111.0> exit with reason normal in context child_terminated -2014-07-17 15:30:12.645 [info] <0.116.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' -2014-07-17 15:30:12.645 [info] <0.116.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-17 15:30:12.645 [warning] <0.115.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-17 15:30:12.645 [info] <0.116.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.116.0> -2014-07-17 15:30:12.645 [debug] <0.116.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,list_to_integer,[[0,19,63,68]],[]},{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-17 15:30:12.645 [error] <0.115.0>@basho_bench_worker:handle_info:149 Worker <0.116.0> exited with crash -2014-07-17 15:30:12.645 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.115.0> -2014-07-17 15:30:12.646 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.113.0> exit with reason normal in context child_terminated -2014-07-17 15:30:12.722 [info] <0.118.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' -2014-07-17 15:30:12.722 [info] <0.118.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-17 15:30:12.722 [warning] <0.117.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-17 15:30:12.722 [info] <0.118.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.118.0> -2014-07-17 15:30:12.722 [debug] <0.119.0>@basho_bench_valgen:init_source:85 random source -2014-07-17 15:30:12.722 [debug] <0.118.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,list_to_integer,[[0,11,65,114]],[]},{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-17 15:30:12.722 [error] <0.117.0>@basho_bench_worker:handle_info:149 Worker <0.118.0> exited with crash -2014-07-17 15:30:12.723 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.117.0> -2014-07-17 15:30:12.723 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.115.0> exit with reason normal in context child_terminated -2014-07-17 15:30:12.794 [info] <0.120.0>@basho_bench_driver_floppystore:ping_each:117 Finished pinging 'floppy@127.0.0.1' -2014-07-17 15:30:12.794 [info] <0.120.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-17 15:30:12.794 [warning] <0.119.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-17 15:30:12.794 [info] <0.120.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.120.0> -2014-07-17 15:30:12.794 [debug] <0.120.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {badarg,[{erlang,list_to_integer,[[0,19,63,68]],[]},{basho_bench_driver_floppystore,get_key_type,1,[{file,"src/basho_bench_driver_floppystore.erl"},{line,124}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,96}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-17 15:30:12.794 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.119.0> -2014-07-17 15:30:12.795 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.117.0> exit with reason normal in context child_terminated -2014-07-17 15:30:12.795 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.117.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-17 15:30:12.808 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {append,append} -2014-07-17 15:30:12.809 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} -2014-07-17 15:30:12.809 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{append,append},7},{{{append,append},crash},7}] -2014-07-17 15:30:12.809 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: -2014-07-17 15:30:12.809 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{append,append},crash}: 7 diff --git a/newtests/20140717_153010/crash.log b/newtests/20140717_153010/crash.log deleted file mode 100644 index 256edd629..000000000 --- a/newtests/20140717_153010/crash.log +++ /dev/null @@ -1,42 +0,0 @@ -2014-07-17 15:30:12 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-17 15:30:12 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.108.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-17 15:30:12 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.111.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-17 15:30:12 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.113.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-17 15:30:12 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.115.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-17 15:30:12 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.117.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-17 15:30:12 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.117.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140717_153010/error.log b/newtests/20140717_153010/error.log deleted file mode 100644 index c4977a2b1..000000000 --- a/newtests/20140717_153010/error.log +++ /dev/null @@ -1,13 +0,0 @@ -2014-07-17 15:30:12.404 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with crash -2014-07-17 15:30:12.404 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with crash -2014-07-17 15:30:12.411 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-17 15:30:12.486 [error] <0.111.0>@basho_bench_worker:handle_info:149 Worker <0.112.0> exited with crash -2014-07-17 15:30:12.487 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated -2014-07-17 15:30:12.570 [error] <0.113.0>@basho_bench_worker:handle_info:149 Worker <0.114.0> exited with crash -2014-07-17 15:30:12.571 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.111.0> exit with reason normal in context child_terminated -2014-07-17 15:30:12.645 [error] <0.115.0>@basho_bench_worker:handle_info:149 Worker <0.116.0> exited with crash -2014-07-17 15:30:12.646 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.113.0> exit with reason normal in context child_terminated -2014-07-17 15:30:12.722 [error] <0.117.0>@basho_bench_worker:handle_info:149 Worker <0.118.0> exited with crash -2014-07-17 15:30:12.723 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.115.0> exit with reason normal in context child_terminated -2014-07-17 15:30:12.795 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.117.0> exit with reason normal in context child_terminated -2014-07-17 15:30:12.795 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.117.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140717_153010/errors.csv b/newtests/20140717_153010/errors.csv deleted file mode 100644 index a31ba014e..000000000 --- a/newtests/20140717_153010/errors.csv +++ /dev/null @@ -1,2 +0,0 @@ -"error","count" -"{{append,append},crash}","7" diff --git a/newtests/20140717_153010/floppstore.config b/newtests/20140717_153010/floppstore.config deleted file mode 100644 index 43b12a499..000000000 --- a/newtests/20140717_153010/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {int_to_bin_bigendian,{uniform_int, 5000000}}}. - -{value_generator, {fixed_bin, 100}}. - -{operations, [{append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140717_153010/log.sasl.txt b/newtests/20140717_153010/log.sasl.txt deleted file mode 100644 index 9b7264088..000000000 --- a/newtests/20140717_153010/log.sasl.txt +++ /dev/null @@ -1,336 +0,0 @@ - -=PROGRESS REPORT==== 17-Jul-2014::15:30:11 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:30:11 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:30:11 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 17-Jul-2014::15:30:11 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:30:11 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 17-Jul-2014::15:30:12 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:30:12 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 17-Jul-2014::15:30:12 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 17-Jul-2014::15:30:12 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:30:12 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:30:12 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 17-Jul-2014::15:30:12 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:30:12 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:30:12 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:30:12 === - supervisor: {local,net_sup} - started: [{pid,<0.100.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:30:12 === - supervisor: {local,kernel_sup} - started: [{pid,<0.97.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 17-Jul-2014::15:30:12 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.105.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 17-Jul-2014::15:30:12 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.104.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:30:12 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:30:12 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.108.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:30:12 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.110.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:30:12 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 17-Jul-2014::15:30:12 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 17-Jul-2014::15:30:12 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.111.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 17-Jul-2014::15:30:12 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.108.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 17-Jul-2014::15:30:12 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.113.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 17-Jul-2014::15:30:12 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.111.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 17-Jul-2014::15:30:12 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.115.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 17-Jul-2014::15:30:12 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.113.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 17-Jul-2014::15:30:12 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.117.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 17-Jul-2014::15:30:12 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.115.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 17-Jul-2014::15:30:12 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.119.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 17-Jul-2014::15:30:12 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.117.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 17-Jul-2014::15:30:12 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.117.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140717_153010/read_latencies.csv b/newtests/20140717_153010/read_latencies.csv deleted file mode 100644 index b102d3c74..000000000 --- a/newtests/20140717_153010/read_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.397305, 0.397305, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140717_153010/summary.csv b/newtests/20140717_153010/summary.csv deleted file mode 100644 index 07446be0f..000000000 --- a/newtests/20140717_153010/summary.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, total, successful, failed -0.397305, 0.397305, 7, 0, 7 diff --git a/newtests/20140717_154723/console.log b/newtests/20140717_154723/console.log deleted file mode 100644 index 2af6edd7f..000000000 --- a/newtests/20140717_154723/console.log +++ /dev/null @@ -1,12 +0,0 @@ -2014-07-17 15:47:23.719 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_154723/error.log"} into lager_event -2014-07-17 15:47:23.719 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_154723/console.log"} into lager_event -2014-07-17 15:47:23.719 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-17 15:47:23.754 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-17 15:47:23.754 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-17 15:47:23.754 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-17 15:47:23.754 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-17 15:47:24.196 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-17 15:47:24.567 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-17 15:47:24.568 [error] <0.2.0>@basho_bench_config:load:41 Failed to parse config file examples/floppstore.config: {9,erl_parse,["syntax error before: ","'}'"]} diff --git a/newtests/20140717_154723/crash.log b/newtests/20140717_154723/crash.log deleted file mode 100644 index e69de29bb..000000000 diff --git a/newtests/20140717_154723/error.log b/newtests/20140717_154723/error.log deleted file mode 100644 index 93888474d..000000000 --- a/newtests/20140717_154723/error.log +++ /dev/null @@ -1 +0,0 @@ -2014-07-17 15:47:24.568 [error] <0.2.0>@basho_bench_config:load:41 Failed to parse config file examples/floppstore.config: {9,erl_parse,["syntax error before: ","'}'"]} diff --git a/newtests/20140717_154801/append_latencies.csv b/newtests/20140717_154801/append_latencies.csv deleted file mode 100644 index f22e53cb1..000000000 --- a/newtests/20140717_154801/append_latencies.csv +++ /dev/null @@ -1,8 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -10.001, 10.001, 5008, 985, 2169.6, 1844, 3041, 8001, 16303, 87498, 0 -20.002017, 10.001017, 4955, 1075, 2120.5, 1941, 3090, 4113, 11596, 35047, 0 -30.001994, 9.999977, 5039, 1082, 2126.9, 1943, 3069, 3814, 9642, 21954, 0 -40.002015, 10.000021, 4789, 1189, 2208.3, 2018, 3238, 4374, 9134, 21954, 0 -50.002017, 10.000002, 4576, 1006, 2238.7, 2048, 3277, 4139, 8732, 14235, 0 -60.002009, 9.999992, 4612, 1117, 2264.1, 2074, 3298, 4041, 9211, 25590, 0 -61.007114, 1.005105, 451, 1117, 2250.8, 2067, 3283, 3955, 7069, 25590, 0 diff --git a/newtests/20140717_154801/console.log b/newtests/20140717_154801/console.log deleted file mode 100644 index 8fad5edb8..000000000 --- a/newtests/20140717_154801/console.log +++ /dev/null @@ -1,44 +0,0 @@ -2014-07-17 15:48:01.340 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_154801/error.log"} into lager_event -2014-07-17 15:48:01.340 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_154801/console.log"} into lager_event -2014-07-17 15:48:01.340 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-17 15:48:01.378 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-17 15:48:01.378 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-17 15:48:01.378 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-17 15:48:01.378 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-17 15:48:01.816 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-17 15:48:02.244 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-17 15:48:02.247 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140717_154801/console.log to debug -2014-07-17 15:48:02.261 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 476.84 MB -2014-07-17 15:48:02.345 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-17 15:48:02.345 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-17 15:48:02.345 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-17 15:48:02.364 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-17 15:48:02.364 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-17 15:48:02.453 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-17 15:48:02.453 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-17 15:48:02.482 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-17 15:48:02.486 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-17 15:48:02.492 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-17 15:48:02.492 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-17 15:48:02.531 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-17 15:48:02.536 [debug] <0.94.0>@basho_bench_valgen:init_source:85 random source -2014-07-17 15:48:02.670 [debug] <0.97.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.98.0> -2014-07-17 15:48:02.678 [debug] <0.97.0> Supervisor net_sup started auth:start_link() at pid <0.99.0> -2014-07-17 15:48:02.691 [info] <0.96.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-17 15:48:02.692 [debug] <0.97.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.100.0> -2014-07-17 15:48:02.692 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.97.0> -2014-07-17 15:48:02.706 [debug] <0.104.0> Supervisor inet_gethost_native_sup started undefined at pid <0.105.0> -2014-07-17 15:48:02.707 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.104.0> -2014-07-17 15:48:02.723 [info] <0.96.0>@basho_bench_driver_floppystore:ping_each:119 Finished pinging 'floppy@127.0.0.1' -2014-07-17 15:48:02.723 [info] <0.96.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-17 15:48:02.724 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-17 15:48:02.802 [info] <0.109.0>@basho_bench_driver_floppystore:ping_each:119 Finished pinging 'floppy@127.0.0.1' -2014-07-17 15:48:02.802 [info] <0.109.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-17 15:48:02.803 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.108.0> -2014-07-17 15:48:02.803 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.110.0> -2014-07-17 15:48:02.809 [info] <0.109.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.109.0> -2014-07-17 15:48:02.809 [info] <0.96.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.96.0> -2014-07-17 15:48:02.809 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-17 15:49:03.838 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. diff --git a/newtests/20140717_154801/crash.log b/newtests/20140717_154801/crash.log deleted file mode 100644 index e69de29bb..000000000 diff --git a/newtests/20140717_154801/error.log b/newtests/20140717_154801/error.log deleted file mode 100644 index e69de29bb..000000000 diff --git a/newtests/20140717_154801/errors.csv b/newtests/20140717_154801/errors.csv deleted file mode 100644 index 29210b502..000000000 --- a/newtests/20140717_154801/errors.csv +++ /dev/null @@ -1 +0,0 @@ -"error","count" diff --git a/newtests/20140717_154801/floppstore.config b/newtests/20140717_154801/floppstore.config deleted file mode 100644 index df5fa1a99..000000000 --- a/newtests/20140717_154801/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {uniform_int, 5000000}}. - -{value_generator, {fixed_bin, 100}}. - -{operations, [{append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140717_154801/log.sasl.txt b/newtests/20140717_154801/log.sasl.txt deleted file mode 100644 index 394bd50dc..000000000 --- a/newtests/20140717_154801/log.sasl.txt +++ /dev/null @@ -1,183 +0,0 @@ - -=PROGRESS REPORT==== 17-Jul-2014::15:48:02 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:48:02 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:48:02 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 17-Jul-2014::15:48:02 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:48:02 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 17-Jul-2014::15:48:02 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:48:02 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 17-Jul-2014::15:48:02 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 17-Jul-2014::15:48:02 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:48:02 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:48:02 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 17-Jul-2014::15:48:02 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:48:02 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:48:02 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:48:02 === - supervisor: {local,net_sup} - started: [{pid,<0.100.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:48:02 === - supervisor: {local,kernel_sup} - started: [{pid,<0.97.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 17-Jul-2014::15:48:02 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.105.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 17-Jul-2014::15:48:02 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.104.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:48:02 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:48:02 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.108.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:48:02 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.110.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 17-Jul-2014::15:48:02 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' diff --git a/newtests/20140717_154801/read_latencies.csv b/newtests/20140717_154801/read_latencies.csv deleted file mode 100644 index e45c3487f..000000000 --- a/newtests/20140717_154801/read_latencies.csv +++ /dev/null @@ -1,8 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -10.001, 10.001, 4878, 878, 1836.0, 1572, 2771, 4696, 9080, 23776, 0 -20.002017, 10.001017, 4898, 896, 1873.1, 1656, 2797, 3914, 9755, 32728, 0 -30.001994, 9.999977, 4857, 939, 1873.8, 1661, 2838, 3449, 7916, 16125, 0 -40.002015, 10.000021, 4751, 1009, 1955.9, 1736, 2949, 4165, 6732, 13273, 0 -50.002017, 10.000002, 4703, 830, 2011.3, 1770, 3007, 3840, 6655, 89102, 0 -60.002009, 9.999992, 4721, 1057, 2008.8, 1785, 2999, 4088, 8210, 12119, 0 -61.007114, 1.005105, 459, 1057, 1990.5, 1781, 2968, 3718, 7218, 9947, 0 diff --git a/newtests/20140717_154801/summary.csv b/newtests/20140717_154801/summary.csv deleted file mode 100644 index 0599039f1..000000000 --- a/newtests/20140717_154801/summary.csv +++ /dev/null @@ -1,8 +0,0 @@ -elapsed, window, total, successful, failed -10.001, 10.001, 9886, 9886, 0 -20.002017, 10.001017, 9853, 9853, 0 -30.001994, 9.999977, 9896, 9896, 0 -40.002015, 10.000021, 9540, 9540, 0 -50.002017, 10.000002, 9279, 9279, 0 -60.002009, 9.999992, 9333, 9333, 0 -61.007114, 1.005105, 910, 910, 0 diff --git a/newtests/20140717_154801/summary.png b/newtests/20140717_154801/summary.png deleted file mode 100644 index da3d3f27686157535b3681cc243479677acb159f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 169499 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≈&R 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:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_105906/error.log"} into lager_event -2014-07-22 10:59:06.797 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_105906/console.log"} into lager_event -2014-07-22 10:59:06.797 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-22 10:59:06.832 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-22 10:59:06.832 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-22 10:59:06.832 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-22 10:59:06.832 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-22 10:59:07.268 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-22 10:59:07.704 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-22 10:59:07.712 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_105906/console.log to debug -2014-07-22 10:59:07.726 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 476.84 MB -2014-07-22 10:59:07.819 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-22 10:59:07.819 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-22 10:59:07.819 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-22 10:59:07.838 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-22 10:59:07.838 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-22 10:59:07.928 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-22 10:59:07.928 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-22 10:59:07.958 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-22 10:59:07.963 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-22 10:59:07.969 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-22 10:59:07.969 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-22 10:59:08.003 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-22 10:59:08.009 [debug] <0.96.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 10:59:08.135 [debug] <0.99.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.100.0> -2014-07-22 10:59:08.143 [debug] <0.99.0> Supervisor net_sup started auth:start_link() at pid <0.101.0> -2014-07-22 10:59:08.161 [info] <0.98.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-22 10:59:08.162 [debug] <0.99.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.102.0> -2014-07-22 10:59:08.162 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> -2014-07-22 10:59:08.177 [debug] <0.106.0> Supervisor inet_gethost_native_sup started undefined at pid <0.107.0> -2014-07-22 10:59:08.177 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.106.0> -2014-07-22 10:59:08.197 [info] <0.98.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 10:59:08.197 [info] <0.98.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 10:59:08.197 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.96.0> -2014-07-22 10:59:08.273 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 10:59:08.273 [info] <0.111.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 10:59:08.273 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.110.0> -2014-07-22 10:59:08.274 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.112.0> -2014-07-22 10:59:08.279 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> -2014-07-22 10:59:08.279 [info] <0.98.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.98.0> -2014-07-22 10:59:08.279 [debug] <0.111.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{random,uniform,[1,10],[]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,133}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 10:59:08.279 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash -2014-07-22 10:59:08.279 [debug] <0.98.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{random,uniform,[1,10],[]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,133}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 10:59:08.279 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-22 10:59:08.279 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with crash -2014-07-22 10:59:08.280 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated -2014-07-22 10:59:08.352 [info] <0.114.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 10:59:08.352 [info] <0.114.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 10:59:08.352 [warning] <0.113.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 10:59:08.352 [info] <0.114.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.114.0> -2014-07-22 10:59:08.353 [debug] <0.114.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{random,uniform,[1,10],[]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,133}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 10:59:08.353 [error] <0.113.0>@basho_bench_worker:handle_info:149 Worker <0.114.0> exited with crash -2014-07-22 10:59:08.353 [debug] <0.115.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 10:59:08.353 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.113.0> -2014-07-22 10:59:08.353 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated -2014-07-22 10:59:08.427 [info] <0.116.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 10:59:08.427 [info] <0.116.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 10:59:08.428 [warning] <0.115.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 10:59:08.428 [info] <0.116.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.116.0> -2014-07-22 10:59:08.428 [debug] <0.116.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{random,uniform,[1,10],[]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,133}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 10:59:08.428 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.115.0> -2014-07-22 10:59:08.429 [error] <0.115.0>@basho_bench_worker:handle_info:149 Worker <0.116.0> exited with crash -2014-07-22 10:59:08.429 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.113.0> exit with reason normal in context child_terminated -2014-07-22 10:59:08.505 [info] <0.118.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 10:59:08.505 [info] <0.118.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 10:59:08.505 [warning] <0.117.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 10:59:08.506 [info] <0.118.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.118.0> -2014-07-22 10:59:08.506 [debug] <0.118.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{random,uniform,[1,10],[]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,133}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 10:59:08.506 [error] <0.117.0>@basho_bench_worker:handle_info:149 Worker <0.118.0> exited with crash -2014-07-22 10:59:08.506 [debug] <0.119.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 10:59:08.506 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.117.0> -2014-07-22 10:59:08.506 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.115.0> exit with reason normal in context child_terminated -2014-07-22 10:59:08.580 [info] <0.120.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 10:59:08.580 [info] <0.120.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 10:59:08.580 [warning] <0.119.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 10:59:08.580 [info] <0.120.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.120.0> -2014-07-22 10:59:08.581 [debug] <0.120.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{random,uniform,[1,10],[]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,133}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 10:59:08.581 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.119.0> -2014-07-22 10:59:08.581 [error] <0.119.0>@basho_bench_worker:handle_info:149 Worker <0.120.0> exited with crash -2014-07-22 10:59:08.581 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.117.0> exit with reason normal in context child_terminated -2014-07-22 10:59:08.655 [info] <0.122.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 10:59:08.655 [info] <0.122.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 10:59:08.655 [warning] <0.121.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 10:59:08.655 [info] <0.122.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.122.0> -2014-07-22 10:59:08.655 [debug] <0.122.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {undef,[{random,uniform,[1,10],[]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,133}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 10:59:08.655 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.121.0> -2014-07-22 10:59:08.655 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.119.0> exit with reason normal in context child_terminated -2014-07-22 10:59:08.656 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.119.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-22 10:59:08.667 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {static_tx,static_tx} -2014-07-22 10:59:08.667 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {interactive_tx,interactive_tx} -2014-07-22 10:59:08.667 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {append,append} -2014-07-22 10:59:08.667 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} -2014-07-22 10:59:08.668 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{interactive_tx,interactive_tx},7},{{{interactive_tx,interactive_tx},crash},7}] -2014-07-22 10:59:08.668 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: -2014-07-22 10:59:08.668 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{interactive_tx,interactive_tx},crash}: 7 -2014-07-22 10:59:08.668 [info] <0.2.0>@basho_bench:wait_for_stop:191 Test stopped: shutdown diff --git a/newtests/20140722_105906/crash.log b/newtests/20140722_105906/crash.log deleted file mode 100644 index 2388e25db..000000000 --- a/newtests/20140722_105906/crash.log +++ /dev/null @@ -1,42 +0,0 @@ -2014-07-22 10:59:08 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 10:59:08 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.96.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 10:59:08 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.113.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 10:59:08 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.115.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 10:59:08 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.117.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 10:59:08 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.119.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 10:59:08 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.119.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140722_105906/error.log b/newtests/20140722_105906/error.log deleted file mode 100644 index 8e5475306..000000000 --- a/newtests/20140722_105906/error.log +++ /dev/null @@ -1,13 +0,0 @@ -2014-07-22 10:59:08.279 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash -2014-07-22 10:59:08.279 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with crash -2014-07-22 10:59:08.280 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated -2014-07-22 10:59:08.353 [error] <0.113.0>@basho_bench_worker:handle_info:149 Worker <0.114.0> exited with crash -2014-07-22 10:59:08.353 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated -2014-07-22 10:59:08.429 [error] <0.115.0>@basho_bench_worker:handle_info:149 Worker <0.116.0> exited with crash -2014-07-22 10:59:08.429 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.113.0> exit with reason normal in context child_terminated -2014-07-22 10:59:08.506 [error] <0.117.0>@basho_bench_worker:handle_info:149 Worker <0.118.0> exited with crash -2014-07-22 10:59:08.506 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.115.0> exit with reason normal in context child_terminated -2014-07-22 10:59:08.581 [error] <0.119.0>@basho_bench_worker:handle_info:149 Worker <0.120.0> exited with crash -2014-07-22 10:59:08.581 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.117.0> exit with reason normal in context child_terminated -2014-07-22 10:59:08.655 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.119.0> exit with reason normal in context child_terminated -2014-07-22 10:59:08.656 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.119.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140722_105906/errors.csv b/newtests/20140722_105906/errors.csv deleted file mode 100644 index 7b9911cf3..000000000 --- a/newtests/20140722_105906/errors.csv +++ /dev/null @@ -1,2 +0,0 @@ -"error","count" -"{{interactive_tx,interactive_tx},crash}","7" diff --git a/newtests/20140722_105906/floppstore.config b/newtests/20140722_105906/floppstore.config deleted file mode 100644 index ddb4dd78e..000000000 --- a/newtests/20140722_105906/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {uniform_int, 5000000}}. - -{value_generator, {fixed_bin, 100}}. - -{operations, [{static_tx, 1}, {interactive_tx,1}, {append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140722_105906/interactive-tx_latencies.csv b/newtests/20140722_105906/interactive-tx_latencies.csv deleted file mode 100644 index 2ce750073..000000000 --- a/newtests/20140722_105906/interactive-tx_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.381858, 0.381858, 0, 0, 0, 0, 0, 0, 0, 0, 7 diff --git a/newtests/20140722_105906/log.sasl.txt b/newtests/20140722_105906/log.sasl.txt deleted file mode 100644 index 750d9466c..000000000 --- a/newtests/20140722_105906/log.sasl.txt +++ /dev/null @@ -1,336 +0,0 @@ - -=PROGRESS REPORT==== 22-Jul-2014::10:59:07 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::10:59:07 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::10:59:07 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::10:59:07 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::10:59:07 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::10:59:07 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::10:59:07 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::10:59:07 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::10:59:07 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::10:59:07 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::10:59:07 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::10:59:08 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::10:59:08 === - supervisor: {local,net_sup} - started: [{pid,<0.100.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::10:59:08 === - supervisor: {local,net_sup} - started: [{pid,<0.101.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::10:59:08 === - supervisor: {local,net_sup} - started: [{pid,<0.102.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::10:59:08 === - supervisor: {local,kernel_sup} - started: [{pid,<0.99.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::10:59:08 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.107.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 22-Jul-2014::10:59:08 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.106.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::10:59:08 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.96.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::10:59:08 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.110.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::10:59:08 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.112.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::10:59:08 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 22-Jul-2014::10:59:08 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::10:59:08 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.113.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::10:59:08 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.96.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::10:59:08 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.115.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::10:59:08 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.113.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::10:59:08 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.117.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::10:59:08 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.115.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::10:59:08 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.119.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::10:59:08 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.117.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::10:59:08 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.121.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::10:59:08 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.119.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 22-Jul-2014::10:59:08 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.119.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140722_105906/read_latencies.csv b/newtests/20140722_105906/read_latencies.csv deleted file mode 100644 index 562a54a98..000000000 --- a/newtests/20140722_105906/read_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.381858, 0.381858, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140722_105906/static-tx_latencies.csv b/newtests/20140722_105906/static-tx_latencies.csv deleted file mode 100644 index 562a54a98..000000000 --- a/newtests/20140722_105906/static-tx_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.381858, 0.381858, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140722_105906/summary.csv b/newtests/20140722_105906/summary.csv deleted file mode 100644 index e0806ebbe..000000000 --- a/newtests/20140722_105906/summary.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, total, successful, failed -0.381858, 0.381858, 7, 0, 7 diff --git a/newtests/20140722_110309/append_latencies.csv b/newtests/20140722_110309/append_latencies.csv deleted file mode 100644 index 9caab989b..000000000 --- a/newtests/20140722_110309/append_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -1.907921, 1.907921, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140722_110309/console.log b/newtests/20140722_110309/console.log deleted file mode 100644 index fb7c6abad..000000000 --- a/newtests/20140722_110309/console.log +++ /dev/null @@ -1,104 +0,0 @@ -2014-07-22 11:03:09.467 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_110309/error.log"} into lager_event -2014-07-22 11:03:09.467 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_110309/console.log"} into lager_event -2014-07-22 11:03:09.467 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-22 11:03:09.502 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-22 11:03:09.502 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-22 11:03:09.502 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-22 11:03:09.502 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-22 11:03:09.936 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-22 11:03:10.353 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-22 11:03:10.354 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_110309/console.log to debug -2014-07-22 11:03:10.367 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 476.84 MB -2014-07-22 11:03:10.451 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-22 11:03:10.451 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-22 11:03:10.452 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-22 11:03:10.466 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-22 11:03:10.467 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-22 11:03:10.554 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-22 11:03:10.554 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-22 11:03:10.584 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-22 11:03:10.590 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-22 11:03:10.596 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-22 11:03:10.596 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-22 11:03:10.627 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-22 11:03:10.632 [debug] <0.96.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 11:03:10.762 [debug] <0.99.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.100.0> -2014-07-22 11:03:10.770 [debug] <0.99.0> Supervisor net_sup started auth:start_link() at pid <0.101.0> -2014-07-22 11:03:10.786 [info] <0.98.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-22 11:03:10.786 [debug] <0.99.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.102.0> -2014-07-22 11:03:10.787 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> -2014-07-22 11:03:10.803 [debug] <0.106.0> Supervisor inet_gethost_native_sup started undefined at pid <0.107.0> -2014-07-22 11:03:10.803 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.106.0> -2014-07-22 11:03:10.822 [info] <0.98.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 11:03:10.822 [info] <0.98.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 11:03:10.822 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.96.0> -2014-07-22 11:03:10.899 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 11:03:10.899 [info] <0.111.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 11:03:10.899 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.110.0> -2014-07-22 11:03:10.899 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.112.0> -2014-07-22 11:03:10.904 [info] <0.98.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.98.0> -2014-07-22 11:03:10.904 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> -2014-07-22 11:03:10.904 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-22 11:03:11.534 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 11:03:11.534 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 11:03:11.535 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated -2014-07-22 11:03:11.624 [info] <0.126.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 11:03:11.624 [info] <0.126.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 11:03:11.624 [warning] <0.125.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 11:03:11.624 [info] <0.126.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.126.0> -2014-07-22 11:03:11.624 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.125.0> -2014-07-22 11:03:12.272 [error] emulator Error in process <0.126.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 11:03:12.272 [error] <0.125.0>@basho_bench_worker:handle_info:149 Worker <0.126.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 11:03:12.273 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.125.0> exit with reason normal in context child_terminated -2014-07-22 11:03:12.384 [info] <0.139.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 11:03:12.384 [info] <0.139.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 11:03:12.384 [warning] <0.137.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 11:03:12.384 [info] <0.139.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.139.0> -2014-07-22 11:03:12.384 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.137.0> -2014-07-22 11:03:12.425 [error] emulator Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 11:03:12.426 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 11:03:12.426 [debug] <0.142.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 11:03:12.426 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated -2014-07-22 11:03:12.512 [info] <0.143.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 11:03:12.512 [info] <0.143.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 11:03:12.512 [warning] <0.142.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 11:03:12.512 [info] <0.143.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.143.0> -2014-07-22 11:03:12.512 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.142.0> -2014-07-22 11:03:12.564 [error] emulator Error in process <0.139.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 11:03:12.564 [error] <0.137.0>@basho_bench_worker:handle_info:149 Worker <0.139.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 11:03:12.565 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.137.0> exit with reason normal in context child_terminated -2014-07-22 11:03:12.642 [error] emulator Error in process <0.143.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 11:03:12.642 [error] <0.142.0>@basho_bench_worker:handle_info:149 Worker <0.143.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 11:03:12.664 [info] <0.147.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 11:03:12.664 [info] <0.147.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 11:03:12.664 [warning] <0.146.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 11:03:12.665 [info] <0.147.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.147.0> -2014-07-22 11:03:12.665 [debug] <0.149.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 11:03:12.666 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.146.0> -2014-07-22 11:03:12.666 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.142.0> exit with reason normal in context child_terminated -2014-07-22 11:03:12.758 [info] <0.151.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 11:03:12.758 [info] <0.151.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 11:03:12.758 [warning] <0.149.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 11:03:12.758 [info] <0.151.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.151.0> -2014-07-22 11:03:12.759 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.149.0> -2014-07-22 11:03:12.806 [error] emulator Error in process <0.147.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 11:03:12.807 [error] <0.146.0>@basho_bench_worker:handle_info:149 Worker <0.147.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 11:03:12.808 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.146.0> exit with reason normal in context child_terminated -2014-07-22 11:03:12.808 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.146.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-22 11:03:12.821 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {append,append} -2014-07-22 11:03:12.821 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} -2014-07-22 11:03:12.822 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. diff --git a/newtests/20140722_110309/crash.log b/newtests/20140722_110309/crash.log deleted file mode 100644 index d67676d31..000000000 --- a/newtests/20140722_110309/crash.log +++ /dev/null @@ -1,60 +0,0 @@ -2014-07-22 11:03:11 =ERROR REPORT==== -Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-22 11:03:11 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 11:03:12 =ERROR REPORT==== -Error in process <0.126.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-22 11:03:12 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.125.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 11:03:12 =ERROR REPORT==== -Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-22 11:03:12 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.96.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 11:03:12 =ERROR REPORT==== -Error in process <0.139.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-22 11:03:12 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.137.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 11:03:12 =ERROR REPORT==== -Error in process <0.143.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-22 11:03:12 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.142.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 11:03:12 =ERROR REPORT==== -Error in process <0.147.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-22 11:03:12 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.146.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 11:03:12 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.146.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140722_110309/error.log b/newtests/20140722_110309/error.log deleted file mode 100644 index fb5b391e2..000000000 --- a/newtests/20140722_110309/error.log +++ /dev/null @@ -1,31 +0,0 @@ -2014-07-22 11:03:11.534 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 11:03:11.534 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 11:03:11.535 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated -2014-07-22 11:03:12.272 [error] emulator Error in process <0.126.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 11:03:12.272 [error] <0.125.0>@basho_bench_worker:handle_info:149 Worker <0.126.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 11:03:12.273 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.125.0> exit with reason normal in context child_terminated -2014-07-22 11:03:12.425 [error] emulator Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 11:03:12.426 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 11:03:12.426 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated -2014-07-22 11:03:12.564 [error] emulator Error in process <0.139.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 11:03:12.564 [error] <0.137.0>@basho_bench_worker:handle_info:149 Worker <0.139.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 11:03:12.565 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.137.0> exit with reason normal in context child_terminated -2014-07-22 11:03:12.642 [error] emulator Error in process <0.143.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 11:03:12.642 [error] <0.142.0>@basho_bench_worker:handle_info:149 Worker <0.143.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 11:03:12.666 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.142.0> exit with reason normal in context child_terminated -2014-07-22 11:03:12.806 [error] emulator Error in process <0.147.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 11:03:12.807 [error] <0.146.0>@basho_bench_worker:handle_info:149 Worker <0.147.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 11:03:12.808 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.146.0> exit with reason normal in context child_terminated -2014-07-22 11:03:12.808 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.146.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140722_110309/errors.csv b/newtests/20140722_110309/errors.csv deleted file mode 100644 index 29210b502..000000000 --- a/newtests/20140722_110309/errors.csv +++ /dev/null @@ -1 +0,0 @@ -"error","count" diff --git a/newtests/20140722_110309/floppstore.config b/newtests/20140722_110309/floppstore.config deleted file mode 100644 index ddb4dd78e..000000000 --- a/newtests/20140722_110309/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {uniform_int, 5000000}}. - -{value_generator, {fixed_bin, 100}}. - -{operations, [{static_tx, 1}, {interactive_tx,1}, {append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140722_110309/interactive-tx_latencies.csv b/newtests/20140722_110309/interactive-tx_latencies.csv deleted file mode 100644 index 7ebbc32c4..000000000 --- a/newtests/20140722_110309/interactive-tx_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -1.907921, 1.907921, 13, 52178, 158885.8, 139093, 249954, 290293, 290293, 290293, 0 diff --git a/newtests/20140722_110309/log.sasl.txt b/newtests/20140722_110309/log.sasl.txt deleted file mode 100644 index f723b4c8f..000000000 --- a/newtests/20140722_110309/log.sasl.txt +++ /dev/null @@ -1,336 +0,0 @@ - -=PROGRESS REPORT==== 22-Jul-2014::11:03:10 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::11:03:10 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::11:03:10 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::11:03:10 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::11:03:10 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::11:03:10 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::11:03:10 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::11:03:10 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::11:03:10 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::11:03:10 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::11:03:10 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::11:03:10 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::11:03:10 === - supervisor: {local,net_sup} - started: [{pid,<0.100.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::11:03:10 === - supervisor: {local,net_sup} - started: [{pid,<0.101.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::11:03:10 === - supervisor: {local,net_sup} - started: [{pid,<0.102.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::11:03:10 === - supervisor: {local,kernel_sup} - started: [{pid,<0.99.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::11:03:10 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.107.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 22-Jul-2014::11:03:10 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.106.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::11:03:10 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.96.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::11:03:10 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.110.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::11:03:10 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.112.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::11:03:10 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 22-Jul-2014::11:03:11 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::11:03:11 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.125.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::11:03:12 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.125.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::11:03:12 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.137.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::11:03:12 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.96.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::11:03:12 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.142.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::11:03:12 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.137.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::11:03:12 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.146.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::11:03:12 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.142.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::11:03:12 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.149.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::11:03:12 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.146.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 22-Jul-2014::11:03:12 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.146.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140722_110309/read_latencies.csv b/newtests/20140722_110309/read_latencies.csv deleted file mode 100644 index 9caab989b..000000000 --- a/newtests/20140722_110309/read_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -1.907921, 1.907921, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140722_110309/static-tx_latencies.csv b/newtests/20140722_110309/static-tx_latencies.csv deleted file mode 100644 index bb69f9b93..000000000 --- a/newtests/20140722_110309/static-tx_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -1.907921, 1.907921, 8, 77395, 135692.6, 83567, 280379, 280379, 280379, 280379, 0 diff --git a/newtests/20140722_110309/summary.csv b/newtests/20140722_110309/summary.csv deleted file mode 100644 index 238b1de5e..000000000 --- a/newtests/20140722_110309/summary.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, total, successful, failed -1.907921, 1.907921, 24, 24, 0 diff --git a/newtests/20140722_110442/append_latencies.csv b/newtests/20140722_110442/append_latencies.csv deleted file mode 100644 index 75af0785a..000000000 --- a/newtests/20140722_110442/append_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -1.80309, 1.80309, 9, 1126, 5545.2, 1974, 15569, 15569, 15569, 15569, 0 diff --git a/newtests/20140722_110442/console.log b/newtests/20140722_110442/console.log deleted file mode 100644 index 717fca797..000000000 --- a/newtests/20140722_110442/console.log +++ /dev/null @@ -1,105 +0,0 @@ -2014-07-22 11:04:42.301 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_110442/error.log"} into lager_event -2014-07-22 11:04:42.301 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_110442/console.log"} into lager_event -2014-07-22 11:04:42.301 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-22 11:04:42.334 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-22 11:04:42.334 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-22 11:04:42.334 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-22 11:04:42.334 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-22 11:04:42.777 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-22 11:04:43.162 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-22 11:04:43.163 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_110442/console.log to debug -2014-07-22 11:04:43.174 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB -2014-07-22 11:04:43.252 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-22 11:04:43.252 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-22 11:04:43.253 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-22 11:04:43.266 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-22 11:04:43.266 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-22 11:04:43.351 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-22 11:04:43.351 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-22 11:04:43.379 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-22 11:04:43.383 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-22 11:04:43.389 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-22 11:04:43.389 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-22 11:04:43.422 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-22 11:04:43.428 [debug] <0.96.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 11:04:43.549 [debug] <0.99.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.100.0> -2014-07-22 11:04:43.557 [debug] <0.99.0> Supervisor net_sup started auth:start_link() at pid <0.101.0> -2014-07-22 11:04:43.572 [info] <0.98.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-22 11:04:43.572 [debug] <0.99.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.102.0> -2014-07-22 11:04:43.573 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> -2014-07-22 11:04:43.587 [debug] <0.106.0> Supervisor inet_gethost_native_sup started undefined at pid <0.107.0> -2014-07-22 11:04:43.587 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.106.0> -2014-07-22 11:04:43.603 [info] <0.98.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 11:04:43.603 [info] <0.98.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 11:04:43.603 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.96.0> -2014-07-22 11:04:43.684 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 11:04:43.684 [info] <0.111.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 11:04:43.685 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.110.0> -2014-07-22 11:04:43.685 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.112.0> -2014-07-22 11:04:43.692 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> -2014-07-22 11:04:43.692 [info] <0.98.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.98.0> -2014-07-22 11:04:43.692 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-22 11:04:44.036 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 11:04:44.036 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 11:04:44.037 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated -2014-07-22 11:04:44.129 [info] <0.121.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 11:04:44.129 [info] <0.121.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 11:04:44.129 [warning] <0.120.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 11:04:44.129 [info] <0.121.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.121.0> -2014-07-22 11:04:44.130 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.120.0> -2014-07-22 11:04:44.676 [error] emulator Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 11:04:44.676 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 11:04:44.677 [debug] <0.135.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 11:04:44.677 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated -2014-07-22 11:04:44.768 [info] <0.137.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 11:04:44.768 [info] <0.137.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 11:04:44.769 [warning] <0.135.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 11:04:44.769 [info] <0.137.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.137.0> -2014-07-22 11:04:44.769 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.135.0> -2014-07-22 11:04:44.862 [error] emulator Error in process <0.137.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 11:04:44.862 [error] <0.135.0>@basho_bench_worker:handle_info:149 Worker <0.137.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 11:04:44.862 [debug] <0.141.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 11:04:44.863 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.135.0> exit with reason normal in context child_terminated -2014-07-22 11:04:44.948 [info] <0.142.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 11:04:44.948 [info] <0.142.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 11:04:44.948 [warning] <0.141.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 11:04:44.948 [info] <0.142.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.142.0> -2014-07-22 11:04:44.948 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.141.0> -2014-07-22 11:04:45.183 [error] emulator Error in process <0.121.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 11:04:45.183 [error] <0.120.0>@basho_bench_worker:handle_info:149 Worker <0.121.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 11:04:45.184 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.120.0> exit with reason normal in context child_terminated -2014-07-22 11:04:45.269 [info] <0.155.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 11:04:45.269 [info] <0.155.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 11:04:45.269 [warning] <0.154.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 11:04:45.269 [info] <0.155.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.155.0> -2014-07-22 11:04:45.269 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.154.0> -2014-07-22 11:04:45.317 [error] emulator Error in process <0.142.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 11:04:45.318 [error] <0.141.0>@basho_bench_worker:handle_info:149 Worker <0.142.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 11:04:45.318 [debug] <0.159.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 11:04:45.318 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.141.0> exit with reason normal in context child_terminated -2014-07-22 11:04:45.420 [info] <0.160.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 11:04:45.420 [info] <0.160.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 11:04:45.420 [warning] <0.159.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 11:04:45.420 [info] <0.160.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.160.0> -2014-07-22 11:04:45.420 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.159.0> -2014-07-22 11:04:45.487 [error] emulator Error in process <0.155.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 11:04:45.487 [error] <0.154.0>@basho_bench_worker:handle_info:149 Worker <0.155.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 11:04:45.488 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.154.0> exit with reason normal in context child_terminated -2014-07-22 11:04:45.488 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.154.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-22 11:04:45.499 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} -2014-07-22 11:04:45.499 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. -2014-07-22 11:04:45.500 [info] <0.2.0>@basho_bench:wait_for_stop:191 Test stopped: shutdown diff --git a/newtests/20140722_110442/crash.log b/newtests/20140722_110442/crash.log deleted file mode 100644 index ef4484490..000000000 --- a/newtests/20140722_110442/crash.log +++ /dev/null @@ -1,60 +0,0 @@ -2014-07-22 11:04:44 =ERROR REPORT==== -Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-22 11:04:44 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 11:04:44 =ERROR REPORT==== -Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-22 11:04:44 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.96.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 11:04:44 =ERROR REPORT==== -Error in process <0.137.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-22 11:04:44 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.135.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 11:04:45 =ERROR REPORT==== -Error in process <0.121.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-22 11:04:45 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.120.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 11:04:45 =ERROR REPORT==== -Error in process <0.142.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-22 11:04:45 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.141.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 11:04:45 =ERROR REPORT==== -Error in process <0.155.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-22 11:04:45 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.154.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 11:04:45 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.154.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140722_110442/error.log b/newtests/20140722_110442/error.log deleted file mode 100644 index 43d080b0e..000000000 --- a/newtests/20140722_110442/error.log +++ /dev/null @@ -1,31 +0,0 @@ -2014-07-22 11:04:44.036 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 11:04:44.036 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 11:04:44.037 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated -2014-07-22 11:04:44.676 [error] emulator Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 11:04:44.676 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 11:04:44.677 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated -2014-07-22 11:04:44.862 [error] emulator Error in process <0.137.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 11:04:44.862 [error] <0.135.0>@basho_bench_worker:handle_info:149 Worker <0.137.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 11:04:44.863 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.135.0> exit with reason normal in context child_terminated -2014-07-22 11:04:45.183 [error] emulator Error in process <0.121.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 11:04:45.183 [error] <0.120.0>@basho_bench_worker:handle_info:149 Worker <0.121.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 11:04:45.184 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.120.0> exit with reason normal in context child_terminated -2014-07-22 11:04:45.317 [error] emulator Error in process <0.142.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 11:04:45.318 [error] <0.141.0>@basho_bench_worker:handle_info:149 Worker <0.142.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 11:04:45.318 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.141.0> exit with reason normal in context child_terminated -2014-07-22 11:04:45.487 [error] emulator Error in process <0.155.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 11:04:45.487 [error] <0.154.0>@basho_bench_worker:handle_info:149 Worker <0.155.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 11:04:45.488 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.154.0> exit with reason normal in context child_terminated -2014-07-22 11:04:45.488 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.154.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140722_110442/errors.csv b/newtests/20140722_110442/errors.csv deleted file mode 100644 index 29210b502..000000000 --- a/newtests/20140722_110442/errors.csv +++ /dev/null @@ -1 +0,0 @@ -"error","count" diff --git a/newtests/20140722_110442/floppstore.config b/newtests/20140722_110442/floppstore.config deleted file mode 100644 index bb59890f3..000000000 --- a/newtests/20140722_110442/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {uniform_int, 5000000}}. - -{value_generator, {fixed_bin, 10}}. - -{operations, [{static_tx, 1}, {interactive_tx,1}, {append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140722_110442/interactive-tx_latencies.csv b/newtests/20140722_110442/interactive-tx_latencies.csv deleted file mode 100644 index ab9f51c2a..000000000 --- a/newtests/20140722_110442/interactive-tx_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -1.80309, 1.80309, 13, 12752, 129510.5, 144881, 200755, 254982, 254982, 254982, 0 diff --git a/newtests/20140722_110442/log.sasl.txt b/newtests/20140722_110442/log.sasl.txt deleted file mode 100644 index d117b11a9..000000000 --- a/newtests/20140722_110442/log.sasl.txt +++ /dev/null @@ -1,336 +0,0 @@ - -=PROGRESS REPORT==== 22-Jul-2014::11:04:43 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::11:04:43 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::11:04:43 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::11:04:43 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::11:04:43 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::11:04:43 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::11:04:43 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::11:04:43 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::11:04:43 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::11:04:43 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::11:04:43 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::11:04:43 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::11:04:43 === - supervisor: {local,net_sup} - started: [{pid,<0.100.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::11:04:43 === - supervisor: {local,net_sup} - started: [{pid,<0.101.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::11:04:43 === - supervisor: {local,net_sup} - started: [{pid,<0.102.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::11:04:43 === - supervisor: {local,kernel_sup} - started: [{pid,<0.99.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::11:04:43 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.107.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 22-Jul-2014::11:04:43 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.106.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::11:04:43 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.96.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::11:04:43 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.110.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::11:04:43 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.112.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::11:04:43 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 22-Jul-2014::11:04:44 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::11:04:44 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.120.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::11:04:44 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.96.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::11:04:44 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.135.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::11:04:44 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.135.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::11:04:44 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.141.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::11:04:45 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.120.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::11:04:45 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.154.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::11:04:45 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.141.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::11:04:45 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.159.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::11:04:45 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.154.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 22-Jul-2014::11:04:45 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.154.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140722_110442/read_latencies.csv b/newtests/20140722_110442/read_latencies.csv deleted file mode 100644 index fca52a451..000000000 --- a/newtests/20140722_110442/read_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -1.80309, 1.80309, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140722_110442/static-tx_latencies.csv b/newtests/20140722_110442/static-tx_latencies.csv deleted file mode 100644 index 6cd6cbfd0..000000000 --- a/newtests/20140722_110442/static-tx_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -1.80309, 1.80309, 11, 31409, 113942.5, 107379, 162759, 201086, 201086, 201086, 0 diff --git a/newtests/20140722_110442/summary.csv b/newtests/20140722_110442/summary.csv deleted file mode 100644 index f3bb4d64d..000000000 --- a/newtests/20140722_110442/summary.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, total, successful, failed -1.80309, 1.80309, 36, 36, 0 diff --git a/newtests/20140722_124623/append_latencies.csv b/newtests/20140722_124623/append_latencies.csv deleted file mode 100644 index 4d2e36459..000000000 --- a/newtests/20140722_124623/append_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -1.688138, 1.688138, 6, 1377, 4222.8, 3962, 6054, 6054, 6054, 6054, 0 diff --git a/newtests/20140722_124623/console.log b/newtests/20140722_124623/console.log deleted file mode 100644 index 113c66788..000000000 --- a/newtests/20140722_124623/console.log +++ /dev/null @@ -1,102 +0,0 @@ -2014-07-22 12:46:23.573 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_124623/error.log"} into lager_event -2014-07-22 12:46:23.573 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_124623/console.log"} into lager_event -2014-07-22 12:46:23.573 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-22 12:46:23.608 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-22 12:46:23.608 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-22 12:46:23.608 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-22 12:46:23.609 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-22 12:46:24.049 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-22 12:46:24.494 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-22 12:46:24.495 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_124623/console.log to debug -2014-07-22 12:46:24.507 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB -2014-07-22 12:46:24.594 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-22 12:46:24.595 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-22 12:46:24.595 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-22 12:46:24.611 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-22 12:46:24.611 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-22 12:46:24.703 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-22 12:46:24.703 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-22 12:46:24.732 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-22 12:46:24.737 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-22 12:46:24.743 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-22 12:46:24.744 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-22 12:46:24.778 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-22 12:46:24.784 [debug] <0.96.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 12:46:24.913 [debug] <0.99.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.100.0> -2014-07-22 12:46:24.921 [debug] <0.99.0> Supervisor net_sup started auth:start_link() at pid <0.101.0> -2014-07-22 12:46:24.936 [info] <0.98.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-22 12:46:24.936 [debug] <0.99.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.102.0> -2014-07-22 12:46:24.937 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> -2014-07-22 12:46:24.958 [debug] <0.106.0> Supervisor inet_gethost_native_sup started undefined at pid <0.107.0> -2014-07-22 12:46:24.959 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.106.0> -2014-07-22 12:46:24.980 [info] <0.98.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 12:46:24.980 [info] <0.98.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 12:46:24.981 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.96.0> -2014-07-22 12:46:25.063 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 12:46:25.063 [info] <0.111.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 12:46:25.064 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.110.0> -2014-07-22 12:46:25.064 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.112.0> -2014-07-22 12:46:25.069 [info] <0.98.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.98.0> -2014-07-22 12:46:25.069 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> -2014-07-22 12:46:25.069 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-22 12:46:25.546 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 12:46:25.546 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 12:46:25.547 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated -2014-07-22 12:46:25.661 [info] <0.123.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 12:46:25.661 [info] <0.123.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 12:46:25.661 [warning] <0.122.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 12:46:25.661 [info] <0.123.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.123.0> -2014-07-22 12:46:25.662 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.122.0> -2014-07-22 12:46:25.808 [error] emulator Error in process <0.123.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 12:46:25.808 [error] <0.122.0>@basho_bench_worker:handle_info:149 Worker <0.123.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 12:46:25.809 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.122.0> exit with reason normal in context child_terminated -2014-07-22 12:46:25.911 [info] <0.136.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 12:46:25.911 [info] <0.136.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 12:46:25.911 [warning] <0.135.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 12:46:25.911 [info] <0.136.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.136.0> -2014-07-22 12:46:25.912 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.135.0> -2014-07-22 12:46:26.086 [error] emulator Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 12:46:26.086 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 12:46:26.086 [debug] <0.142.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 12:46:26.087 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated -2014-07-22 12:46:26.189 [info] <0.144.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 12:46:26.189 [info] <0.144.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 12:46:26.189 [warning] <0.142.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 12:46:26.189 [info] <0.144.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.144.0> -2014-07-22 12:46:26.190 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.142.0> -2014-07-22 12:46:26.536 [error] emulator Error in process <0.144.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 12:46:26.536 [error] <0.142.0>@basho_bench_worker:handle_info:149 Worker <0.144.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 12:46:26.536 [debug] <0.152.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 12:46:26.537 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.142.0> exit with reason normal in context child_terminated -2014-07-22 12:46:26.593 [error] emulator Error in process <0.136.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 12:46:26.593 [error] <0.135.0>@basho_bench_worker:handle_info:149 Worker <0.136.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 12:46:26.617 [info] <0.153.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 12:46:26.617 [info] <0.153.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 12:46:26.617 [warning] <0.152.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 12:46:26.618 [info] <0.153.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.153.0> -2014-07-22 12:46:26.618 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.152.0> -2014-07-22 12:46:26.619 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.135.0> exit with reason normal in context child_terminated -2014-07-22 12:46:26.708 [info] <0.158.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 12:46:26.708 [info] <0.158.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 12:46:26.708 [warning] <0.156.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 12:46:26.708 [info] <0.158.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.158.0> -2014-07-22 12:46:26.708 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.156.0> -2014-07-22 12:46:26.751 [error] emulator Error in process <0.153.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 12:46:26.751 [error] <0.152.0>@basho_bench_worker:handle_info:149 Worker <0.153.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 12:46:26.752 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.152.0> exit with reason normal in context child_terminated -2014-07-22 12:46:26.753 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.152.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-22 12:46:26.762 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. diff --git a/newtests/20140722_124623/crash.log b/newtests/20140722_124623/crash.log deleted file mode 100644 index a530c598e..000000000 --- a/newtests/20140722_124623/crash.log +++ /dev/null @@ -1,60 +0,0 @@ -2014-07-22 12:46:25 =ERROR REPORT==== -Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-22 12:46:25 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 12:46:25 =ERROR REPORT==== -Error in process <0.123.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-22 12:46:25 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.122.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 12:46:26 =ERROR REPORT==== -Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-22 12:46:26 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.96.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 12:46:26 =ERROR REPORT==== -Error in process <0.144.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-22 12:46:26 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.142.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 12:46:26 =ERROR REPORT==== -Error in process <0.136.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-22 12:46:26 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.135.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 12:46:26 =ERROR REPORT==== -Error in process <0.153.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-22 12:46:26 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.152.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 12:46:26 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.152.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140722_124623/error.log b/newtests/20140722_124623/error.log deleted file mode 100644 index 921381b18..000000000 --- a/newtests/20140722_124623/error.log +++ /dev/null @@ -1,31 +0,0 @@ -2014-07-22 12:46:25.546 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 12:46:25.546 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 12:46:25.547 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated -2014-07-22 12:46:25.808 [error] emulator Error in process <0.123.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 12:46:25.808 [error] <0.122.0>@basho_bench_worker:handle_info:149 Worker <0.123.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 12:46:25.809 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.122.0> exit with reason normal in context child_terminated -2014-07-22 12:46:26.086 [error] emulator Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 12:46:26.086 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 12:46:26.087 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated -2014-07-22 12:46:26.536 [error] emulator Error in process <0.144.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 12:46:26.536 [error] <0.142.0>@basho_bench_worker:handle_info:149 Worker <0.144.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 12:46:26.537 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.142.0> exit with reason normal in context child_terminated -2014-07-22 12:46:26.593 [error] emulator Error in process <0.136.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 12:46:26.593 [error] <0.135.0>@basho_bench_worker:handle_info:149 Worker <0.136.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 12:46:26.619 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.135.0> exit with reason normal in context child_terminated -2014-07-22 12:46:26.751 [error] emulator Error in process <0.153.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 12:46:26.751 [error] <0.152.0>@basho_bench_worker:handle_info:149 Worker <0.153.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 12:46:26.752 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.152.0> exit with reason normal in context child_terminated -2014-07-22 12:46:26.753 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.152.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140722_124623/errors.csv b/newtests/20140722_124623/errors.csv deleted file mode 100644 index 29210b502..000000000 --- a/newtests/20140722_124623/errors.csv +++ /dev/null @@ -1 +0,0 @@ -"error","count" diff --git a/newtests/20140722_124623/floppstore.config b/newtests/20140722_124623/floppstore.config deleted file mode 100644 index bb59890f3..000000000 --- a/newtests/20140722_124623/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {uniform_int, 5000000}}. - -{value_generator, {fixed_bin, 10}}. - -{operations, [{static_tx, 1}, {interactive_tx,1}, {append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140722_124623/interactive-tx_latencies.csv b/newtests/20140722_124623/interactive-tx_latencies.csv deleted file mode 100644 index d575d771c..000000000 --- a/newtests/20140722_124623/interactive-tx_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -1.688138, 1.688138, 11, 76741, 134044.4, 132863, 184345, 204546, 204546, 204546, 0 diff --git a/newtests/20140722_124623/log.sasl.txt b/newtests/20140722_124623/log.sasl.txt deleted file mode 100644 index df24cdddf..000000000 --- a/newtests/20140722_124623/log.sasl.txt +++ /dev/null @@ -1,336 +0,0 @@ - -=PROGRESS REPORT==== 22-Jul-2014::12:46:24 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::12:46:24 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::12:46:24 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::12:46:24 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::12:46:24 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::12:46:24 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::12:46:24 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::12:46:24 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::12:46:24 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::12:46:24 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::12:46:24 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::12:46:24 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::12:46:24 === - supervisor: {local,net_sup} - started: [{pid,<0.100.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::12:46:24 === - supervisor: {local,net_sup} - started: [{pid,<0.101.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::12:46:24 === - supervisor: {local,net_sup} - started: [{pid,<0.102.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::12:46:24 === - supervisor: {local,kernel_sup} - started: [{pid,<0.99.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::12:46:24 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.107.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 22-Jul-2014::12:46:24 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.106.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::12:46:24 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.96.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::12:46:25 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.110.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::12:46:25 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.112.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::12:46:25 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 22-Jul-2014::12:46:25 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::12:46:25 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.122.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::12:46:25 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.122.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::12:46:25 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.135.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::12:46:26 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.96.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::12:46:26 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.142.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::12:46:26 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.142.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::12:46:26 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.152.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::12:46:26 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.135.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::12:46:26 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.156.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::12:46:26 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.152.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 22-Jul-2014::12:46:26 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.152.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140722_124623/read_latencies.csv b/newtests/20140722_124623/read_latencies.csv deleted file mode 100644 index 1fe746d28..000000000 --- a/newtests/20140722_124623/read_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -1.688138, 1.688138, 5, 2655, 5093.6, 3171, 10280, 10280, 10280, 10280, 0 diff --git a/newtests/20140722_124623/static-tx_latencies.csv b/newtests/20140722_124623/static-tx_latencies.csv deleted file mode 100644 index 4c20553ab..000000000 --- a/newtests/20140722_124623/static-tx_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -1.688138, 1.688138, 9, 71998, 137952.6, 123001, 283443, 283443, 283443, 283443, 0 diff --git a/newtests/20140722_124623/summary.csv b/newtests/20140722_124623/summary.csv deleted file mode 100644 index 049f53d0a..000000000 --- a/newtests/20140722_124623/summary.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, total, successful, failed -1.688138, 1.688138, 31, 31, 0 diff --git a/newtests/20140722_124824/append_latencies.csv b/newtests/20140722_124824/append_latencies.csv deleted file mode 100644 index 206bb01ca..000000000 --- a/newtests/20140722_124824/append_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -1.039608, 1.039608, 21, 1132, 2497.7, 1655, 5687, 5922, 5922, 5922, 0 diff --git a/newtests/20140722_124824/console.log b/newtests/20140722_124824/console.log deleted file mode 100644 index 4df2ff4e4..000000000 --- a/newtests/20140722_124824/console.log +++ /dev/null @@ -1,104 +0,0 @@ -2014-07-22 12:48:24.500 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_124824/error.log"} into lager_event -2014-07-22 12:48:24.500 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_124824/console.log"} into lager_event -2014-07-22 12:48:24.500 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-22 12:48:24.533 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-22 12:48:24.533 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-22 12:48:24.534 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-22 12:48:24.534 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-22 12:48:24.975 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-22 12:48:25.328 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-22 12:48:25.329 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_124824/console.log to debug -2014-07-22 12:48:25.340 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB -2014-07-22 12:48:25.414 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-22 12:48:25.415 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-22 12:48:25.415 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-22 12:48:25.430 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-22 12:48:25.430 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-22 12:48:25.515 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-22 12:48:25.516 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-22 12:48:25.551 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-22 12:48:25.557 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-22 12:48:25.563 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-22 12:48:25.564 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-22 12:48:25.597 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-22 12:48:25.602 [debug] <0.96.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 12:48:25.726 [debug] <0.99.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.100.0> -2014-07-22 12:48:25.733 [debug] <0.99.0> Supervisor net_sup started auth:start_link() at pid <0.101.0> -2014-07-22 12:48:25.745 [info] <0.98.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-22 12:48:25.746 [debug] <0.99.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.102.0> -2014-07-22 12:48:25.746 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> -2014-07-22 12:48:25.766 [debug] <0.106.0> Supervisor inet_gethost_native_sup started undefined at pid <0.107.0> -2014-07-22 12:48:25.766 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.106.0> -2014-07-22 12:48:25.785 [info] <0.98.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 12:48:25.785 [info] <0.98.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 12:48:25.786 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.96.0> -2014-07-22 12:48:25.867 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 12:48:25.867 [info] <0.111.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 12:48:25.868 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.110.0> -2014-07-22 12:48:25.868 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.112.0> -2014-07-22 12:48:25.876 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> -2014-07-22 12:48:25.876 [info] <0.98.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.98.0> -2014-07-22 12:48:25.877 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-22 12:48:26.343 [error] emulator Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - - -2014-07-22 12:48:26.343 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,15,96,27>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 12:48:26.343 [debug] <0.165.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 12:48:26.344 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated -2014-07-22 12:48:26.434 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 12:48:26.434 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 12:48:26.440 [info] <0.166.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 12:48:26.440 [info] <0.166.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 12:48:26.440 [warning] <0.165.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 12:48:26.440 [info] <0.166.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.166.0> -2014-07-22 12:48:26.441 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.165.0> -2014-07-22 12:48:26.441 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated -2014-07-22 12:48:26.495 [error] emulator Error in process <0.166.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 12:48:26.495 [error] <0.165.0>@basho_bench_worker:handle_info:149 Worker <0.166.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 12:48:26.532 [info] <0.179.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 12:48:26.532 [info] <0.179.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 12:48:26.532 [warning] <0.170.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 12:48:26.532 [info] <0.179.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.179.0> -2014-07-22 12:48:26.532 [debug] <0.180.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 12:48:26.532 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.170.0> -2014-07-22 12:48:26.533 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.165.0> exit with reason normal in context child_terminated -2014-07-22 12:48:26.558 [error] emulator Error in process <0.179.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - - -2014-07-22 12:48:26.558 [error] <0.170.0>@basho_bench_worker:handle_info:149 Worker <0.179.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,15,96,27>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 12:48:26.636 [info] <0.183.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 12:48:26.636 [info] <0.183.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 12:48:26.636 [warning] <0.180.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 12:48:26.636 [info] <0.183.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.183.0> -2014-07-22 12:48:26.637 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.180.0> -2014-07-22 12:48:26.637 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.170.0> exit with reason normal in context child_terminated -2014-07-22 12:48:26.696 [error] emulator Error in process <0.183.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 12:48:26.696 [error] <0.180.0>@basho_bench_worker:handle_info:149 Worker <0.183.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 12:48:26.722 [info] <0.188.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 12:48:26.722 [info] <0.188.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 12:48:26.722 [warning] <0.184.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 12:48:26.722 [info] <0.188.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.188.0> -2014-07-22 12:48:26.722 [debug] <0.190.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 12:48:26.722 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.184.0> -2014-07-22 12:48:26.723 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.180.0> exit with reason normal in context child_terminated -2014-07-22 12:48:26.825 [info] <0.197.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 12:48:26.825 [info] <0.197.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 12:48:26.825 [warning] <0.190.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 12:48:26.825 [info] <0.197.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.197.0> -2014-07-22 12:48:26.825 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.190.0> -2014-07-22 12:48:26.907 [error] emulator Error in process <0.188.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 12:48:26.907 [error] <0.184.0>@basho_bench_worker:handle_info:149 Worker <0.188.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 12:48:26.908 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.184.0> exit with reason normal in context child_terminated -2014-07-22 12:48:26.909 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.184.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-22 12:48:26.919 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. -2014-07-22 12:48:26.919 [info] <0.2.0>@basho_bench:wait_for_stop:191 Test stopped: shutdown diff --git a/newtests/20140722_124824/crash.log b/newtests/20140722_124824/crash.log deleted file mode 100644 index 9937d3dc4..000000000 --- a/newtests/20140722_124824/crash.log +++ /dev/null @@ -1,60 +0,0 @@ -2014-07-22 12:48:26 =ERROR REPORT==== -Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - -2014-07-22 12:48:26 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.96.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 12:48:26 =ERROR REPORT==== -Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-22 12:48:26 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 12:48:26 =ERROR REPORT==== -Error in process <0.166.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-22 12:48:26 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.165.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 12:48:26 =ERROR REPORT==== -Error in process <0.179.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - -2014-07-22 12:48:26 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.170.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 12:48:26 =ERROR REPORT==== -Error in process <0.183.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-22 12:48:26 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.180.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 12:48:26 =ERROR REPORT==== -Error in process <0.188.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-22 12:48:26 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.184.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 12:48:26 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.184.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140722_124824/error.log b/newtests/20140722_124824/error.log deleted file mode 100644 index 983008d83..000000000 --- a/newtests/20140722_124824/error.log +++ /dev/null @@ -1,31 +0,0 @@ -2014-07-22 12:48:26.343 [error] emulator Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - - -2014-07-22 12:48:26.343 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,15,96,27>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 12:48:26.344 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated -2014-07-22 12:48:26.434 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 12:48:26.434 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 12:48:26.441 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated -2014-07-22 12:48:26.495 [error] emulator Error in process <0.166.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 12:48:26.495 [error] <0.165.0>@basho_bench_worker:handle_info:149 Worker <0.166.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 12:48:26.533 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.165.0> exit with reason normal in context child_terminated -2014-07-22 12:48:26.558 [error] emulator Error in process <0.179.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - - -2014-07-22 12:48:26.558 [error] <0.170.0>@basho_bench_worker:handle_info:149 Worker <0.179.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,15,96,27>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 12:48:26.637 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.170.0> exit with reason normal in context child_terminated -2014-07-22 12:48:26.696 [error] emulator Error in process <0.183.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 12:48:26.696 [error] <0.180.0>@basho_bench_worker:handle_info:149 Worker <0.183.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 12:48:26.723 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.180.0> exit with reason normal in context child_terminated -2014-07-22 12:48:26.907 [error] emulator Error in process <0.188.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 12:48:26.907 [error] <0.184.0>@basho_bench_worker:handle_info:149 Worker <0.188.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 12:48:26.908 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.184.0> exit with reason normal in context child_terminated -2014-07-22 12:48:26.909 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.184.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140722_124824/errors.csv b/newtests/20140722_124824/errors.csv deleted file mode 100644 index 29210b502..000000000 --- a/newtests/20140722_124824/errors.csv +++ /dev/null @@ -1 +0,0 @@ -"error","count" diff --git a/newtests/20140722_124824/floppstore.config b/newtests/20140722_124824/floppstore.config deleted file mode 100644 index bb59890f3..000000000 --- a/newtests/20140722_124824/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {uniform_int, 5000000}}. - -{value_generator, {fixed_bin, 10}}. - -{operations, [{static_tx, 1}, {interactive_tx,1}, {append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140722_124824/interactive-tx_latencies.csv b/newtests/20140722_124824/interactive-tx_latencies.csv deleted file mode 100644 index 1793ee444..000000000 --- a/newtests/20140722_124824/interactive-tx_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -1.039608, 1.039608, 26, 17825, 27682.7, 20684, 79662, 80058, 80058, 80058, 0 diff --git a/newtests/20140722_124824/log.sasl.txt b/newtests/20140722_124824/log.sasl.txt deleted file mode 100644 index b9a768cdf..000000000 --- a/newtests/20140722_124824/log.sasl.txt +++ /dev/null @@ -1,336 +0,0 @@ - -=PROGRESS REPORT==== 22-Jul-2014::12:48:25 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::12:48:25 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::12:48:25 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::12:48:25 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::12:48:25 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::12:48:25 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::12:48:25 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::12:48:25 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::12:48:25 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::12:48:25 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::12:48:25 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::12:48:25 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::12:48:25 === - supervisor: {local,net_sup} - started: [{pid,<0.100.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::12:48:25 === - supervisor: {local,net_sup} - started: [{pid,<0.101.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::12:48:25 === - supervisor: {local,net_sup} - started: [{pid,<0.102.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::12:48:25 === - supervisor: {local,kernel_sup} - started: [{pid,<0.99.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::12:48:25 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.107.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 22-Jul-2014::12:48:25 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.106.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::12:48:25 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.96.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::12:48:25 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.110.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::12:48:25 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.112.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::12:48:25 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 22-Jul-2014::12:48:26 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.96.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::12:48:26 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.165.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::12:48:26 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::12:48:26 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.170.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::12:48:26 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.165.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::12:48:26 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.180.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::12:48:26 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.170.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::12:48:26 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.184.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::12:48:26 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.180.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::12:48:26 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.190.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::12:48:26 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.184.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 22-Jul-2014::12:48:26 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.184.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140722_124824/read_latencies.csv b/newtests/20140722_124824/read_latencies.csv deleted file mode 100644 index 9e5538aac..000000000 --- a/newtests/20140722_124824/read_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -1.039608, 1.039608, 13, 1193, 4895.0, 3256, 12880, 12987, 12987, 12987, 0 diff --git a/newtests/20140722_124824/static-tx_latencies.csv b/newtests/20140722_124824/static-tx_latencies.csv deleted file mode 100644 index 6a8cee085..000000000 --- a/newtests/20140722_124824/static-tx_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -1.039608, 1.039608, 24, 7823, 23532.2, 20007, 33132, 62361, 62361, 62361, 0 diff --git a/newtests/20140722_124824/summary.csv b/newtests/20140722_124824/summary.csv deleted file mode 100644 index 4a4706da3..000000000 --- a/newtests/20140722_124824/summary.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, total, successful, failed -1.039608, 1.039608, 84, 84, 0 diff --git a/newtests/20140722_140229/append_latencies.csv b/newtests/20140722_140229/append_latencies.csv deleted file mode 100644 index ded9d8304..000000000 --- a/newtests/20140722_140229/append_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.71267, 0.71267, 11, 1244, 8402.7, 6095, 12342, 30807, 30807, 30807, 0 diff --git a/newtests/20140722_140229/console.log b/newtests/20140722_140229/console.log deleted file mode 100644 index 9da37594f..000000000 --- a/newtests/20140722_140229/console.log +++ /dev/null @@ -1,103 +0,0 @@ -2014-07-22 14:02:29.783 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_140229/error.log"} into lager_event -2014-07-22 14:02:29.783 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_140229/console.log"} into lager_event -2014-07-22 14:02:29.783 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-22 14:02:29.820 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-22 14:02:29.820 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-22 14:02:29.820 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-22 14:02:29.820 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-22 14:02:30.259 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-22 14:02:30.703 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-22 14:02:30.704 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_140229/console.log to debug -2014-07-22 14:02:30.717 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB -2014-07-22 14:02:30.802 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-22 14:02:30.802 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-22 14:02:30.803 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-22 14:02:30.819 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-22 14:02:30.819 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-22 14:02:30.916 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-22 14:02:30.917 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-22 14:02:30.945 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-22 14:02:30.950 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-22 14:02:30.956 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-22 14:02:30.956 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-22 14:02:30.993 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-22 14:02:30.999 [debug] <0.96.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 14:02:31.134 [debug] <0.99.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.100.0> -2014-07-22 14:02:31.141 [debug] <0.99.0> Supervisor net_sup started auth:start_link() at pid <0.101.0> -2014-07-22 14:02:31.153 [info] <0.98.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-22 14:02:31.153 [debug] <0.99.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.102.0> -2014-07-22 14:02:31.154 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> -2014-07-22 14:02:31.168 [debug] <0.106.0> Supervisor inet_gethost_native_sup started undefined at pid <0.107.0> -2014-07-22 14:02:31.168 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.106.0> -2014-07-22 14:02:31.188 [info] <0.98.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:02:31.188 [info] <0.98.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 14:02:31.237 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.96.0> -2014-07-22 14:02:31.265 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:02:31.265 [info] <0.111.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 14:02:31.265 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.110.0> -2014-07-22 14:02:31.266 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.112.0> -2014-07-22 14:02:31.272 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> -2014-07-22 14:02:31.272 [info] <0.98.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.98.0> -2014-07-22 14:02:31.273 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-22 14:02:31.481 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:02:31.481 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:02:31.482 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated -2014-07-22 14:02:31.581 [info] <0.130.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:02:31.581 [info] <0.130.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 14:02:31.581 [warning] <0.127.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 14:02:31.582 [info] <0.130.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.130.0> -2014-07-22 14:02:31.582 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.127.0> -2014-07-22 14:02:31.608 [error] emulator Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:02:31.608 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:02:31.608 [debug] <0.137.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 14:02:31.608 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated -2014-07-22 14:02:31.671 [error] emulator Error in process <0.130.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:02:31.671 [error] <0.127.0>@basho_bench_worker:handle_info:149 Worker <0.130.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:02:31.702 [info] <0.142.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:02:31.702 [info] <0.142.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 14:02:31.702 [warning] <0.137.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 14:02:31.702 [info] <0.142.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.142.0> -2014-07-22 14:02:31.703 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.137.0> -2014-07-22 14:02:31.703 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.127.0> exit with reason normal in context child_terminated -2014-07-22 14:02:31.785 [error] emulator Error in process <0.142.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - - -2014-07-22 14:02:31.785 [error] <0.137.0>@basho_bench_worker:handle_info:149 Worker <0.142.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,13,206,47>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:02:31.800 [info] <0.149.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:02:31.800 [info] <0.149.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 14:02:31.800 [warning] <0.144.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 14:02:31.800 [info] <0.149.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.149.0> -2014-07-22 14:02:31.800 [debug] <0.151.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 14:02:31.801 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.144.0> -2014-07-22 14:02:31.801 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.137.0> exit with reason normal in context child_terminated -2014-07-22 14:02:31.827 [error] emulator Error in process <0.149.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:02:31.827 [error] <0.144.0>@basho_bench_worker:handle_info:149 Worker <0.149.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:02:31.881 [info] <0.154.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:02:31.881 [info] <0.154.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 14:02:31.881 [warning] <0.151.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 14:02:31.881 [info] <0.154.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.154.0> -2014-07-22 14:02:31.881 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.151.0> -2014-07-22 14:02:31.882 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.144.0> exit with reason normal in context child_terminated -2014-07-22 14:02:31.975 [error] emulator Error in process <0.154.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - - -2014-07-22 14:02:31.975 [error] <0.151.0>@basho_bench_worker:handle_info:149 Worker <0.154.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,44,89,164>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:02:31.978 [info] <0.161.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:02:31.978 [info] <0.161.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 14:02:31.978 [warning] <0.155.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 14:02:31.978 [info] <0.161.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.161.0> -2014-07-22 14:02:31.978 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.155.0> -2014-07-22 14:02:31.979 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.151.0> exit with reason normal in context child_terminated -2014-07-22 14:02:31.980 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.151.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-22 14:02:31.989 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} -2014-07-22 14:02:31.989 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. diff --git a/newtests/20140722_140229/crash.log b/newtests/20140722_140229/crash.log deleted file mode 100644 index e96a4b6dc..000000000 --- a/newtests/20140722_140229/crash.log +++ /dev/null @@ -1,60 +0,0 @@ -2014-07-22 14:02:31 =ERROR REPORT==== -Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-22 14:02:31 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 14:02:31 =ERROR REPORT==== -Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-22 14:02:31 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.96.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 14:02:31 =ERROR REPORT==== -Error in process <0.130.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-22 14:02:31 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.127.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 14:02:31 =ERROR REPORT==== -Error in process <0.142.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - -2014-07-22 14:02:31 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.137.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 14:02:31 =ERROR REPORT==== -Error in process <0.149.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-22 14:02:31 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.144.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 14:02:31 =ERROR REPORT==== -Error in process <0.154.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - -2014-07-22 14:02:31 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.151.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 14:02:31 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.151.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140722_140229/error.log b/newtests/20140722_140229/error.log deleted file mode 100644 index 813620ec4..000000000 --- a/newtests/20140722_140229/error.log +++ /dev/null @@ -1,31 +0,0 @@ -2014-07-22 14:02:31.481 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:02:31.481 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:02:31.482 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated -2014-07-22 14:02:31.608 [error] emulator Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:02:31.608 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:02:31.608 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated -2014-07-22 14:02:31.671 [error] emulator Error in process <0.130.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:02:31.671 [error] <0.127.0>@basho_bench_worker:handle_info:149 Worker <0.130.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:02:31.703 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.127.0> exit with reason normal in context child_terminated -2014-07-22 14:02:31.785 [error] emulator Error in process <0.142.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - - -2014-07-22 14:02:31.785 [error] <0.137.0>@basho_bench_worker:handle_info:149 Worker <0.142.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,13,206,47>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:02:31.801 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.137.0> exit with reason normal in context child_terminated -2014-07-22 14:02:31.827 [error] emulator Error in process <0.149.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:02:31.827 [error] <0.144.0>@basho_bench_worker:handle_info:149 Worker <0.149.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:02:31.882 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.144.0> exit with reason normal in context child_terminated -2014-07-22 14:02:31.975 [error] emulator Error in process <0.154.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - - -2014-07-22 14:02:31.975 [error] <0.151.0>@basho_bench_worker:handle_info:149 Worker <0.154.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,44,89,164>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:02:31.979 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.151.0> exit with reason normal in context child_terminated -2014-07-22 14:02:31.980 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.151.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140722_140229/errors.csv b/newtests/20140722_140229/errors.csv deleted file mode 100644 index 29210b502..000000000 --- a/newtests/20140722_140229/errors.csv +++ /dev/null @@ -1 +0,0 @@ -"error","count" diff --git a/newtests/20140722_140229/floppstore.config b/newtests/20140722_140229/floppstore.config deleted file mode 100644 index bb59890f3..000000000 --- a/newtests/20140722_140229/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {uniform_int, 5000000}}. - -{value_generator, {fixed_bin, 10}}. - -{operations, [{static_tx, 1}, {interactive_tx,1}, {append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140722_140229/interactive-tx_latencies.csv b/newtests/20140722_140229/interactive-tx_latencies.csv deleted file mode 100644 index ea3cbf8f9..000000000 --- a/newtests/20140722_140229/interactive-tx_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.71267, 0.71267, 16, 18551, 31571.1, 25001, 77220, 77690, 77690, 77690, 0 diff --git a/newtests/20140722_140229/log.sasl.txt b/newtests/20140722_140229/log.sasl.txt deleted file mode 100644 index 2c62d3b09..000000000 --- a/newtests/20140722_140229/log.sasl.txt +++ /dev/null @@ -1,336 +0,0 @@ - -=PROGRESS REPORT==== 22-Jul-2014::14:02:30 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:02:30 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:02:30 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::14:02:30 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:02:30 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::14:02:30 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:02:30 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::14:02:30 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::14:02:30 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:02:30 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:02:30 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::14:02:30 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:02:31 === - supervisor: {local,net_sup} - started: [{pid,<0.100.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:02:31 === - supervisor: {local,net_sup} - started: [{pid,<0.101.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:02:31 === - supervisor: {local,net_sup} - started: [{pid,<0.102.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:02:31 === - supervisor: {local,kernel_sup} - started: [{pid,<0.99.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::14:02:31 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.107.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 22-Jul-2014::14:02:31 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.106.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:02:31 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.96.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:02:31 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.110.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:02:31 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.112.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:02:31 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 22-Jul-2014::14:02:31 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::14:02:31 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.127.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::14:02:31 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.96.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::14:02:31 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.137.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::14:02:31 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.127.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::14:02:31 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.144.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::14:02:31 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.137.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::14:02:31 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.151.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::14:02:31 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.144.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::14:02:31 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.155.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::14:02:31 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.151.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 22-Jul-2014::14:02:31 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.151.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140722_140229/read_latencies.csv b/newtests/20140722_140229/read_latencies.csv deleted file mode 100644 index 2be0c353f..000000000 --- a/newtests/20140722_140229/read_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.71267, 0.71267, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140722_140229/static-tx_latencies.csv b/newtests/20140722_140229/static-tx_latencies.csv deleted file mode 100644 index 3164b8d96..000000000 --- a/newtests/20140722_140229/static-tx_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.71267, 0.71267, 6, 18054, 30249.2, 26574, 44231, 44231, 44231, 44231, 0 diff --git a/newtests/20140722_140229/summary.csv b/newtests/20140722_140229/summary.csv deleted file mode 100644 index 7df7d9dae..000000000 --- a/newtests/20140722_140229/summary.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, total, successful, failed -0.71267, 0.71267, 36, 36, 0 diff --git a/newtests/20140722_140845/append_latencies.csv b/newtests/20140722_140845/append_latencies.csv deleted file mode 100644 index 8d3125339..000000000 --- a/newtests/20140722_140845/append_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -1.129398, 1.129398, 14, 1001, 2071.1, 1580, 4048, 4890, 4890, 4890, 0 diff --git a/newtests/20140722_140845/console.log b/newtests/20140722_140845/console.log deleted file mode 100644 index 7d3035d96..000000000 --- a/newtests/20140722_140845/console.log +++ /dev/null @@ -1,103 +0,0 @@ -2014-07-22 14:08:45.597 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_140845/error.log"} into lager_event -2014-07-22 14:08:45.597 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_140845/console.log"} into lager_event -2014-07-22 14:08:45.597 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-22 14:08:45.636 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-22 14:08:45.636 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-22 14:08:45.636 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-22 14:08:45.637 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-22 14:08:46.072 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-22 14:08:46.442 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-22 14:08:46.443 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_140845/console.log to debug -2014-07-22 14:08:46.455 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB -2014-07-22 14:08:46.548 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-22 14:08:46.548 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-22 14:08:46.548 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-22 14:08:46.568 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-22 14:08:46.568 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-22 14:08:46.663 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-22 14:08:46.663 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-22 14:08:46.694 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-22 14:08:46.700 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-22 14:08:46.707 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-22 14:08:46.707 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-22 14:08:46.742 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-22 14:08:46.747 [debug] <0.96.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 14:08:46.877 [debug] <0.99.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.100.0> -2014-07-22 14:08:46.885 [debug] <0.99.0> Supervisor net_sup started auth:start_link() at pid <0.101.0> -2014-07-22 14:08:46.899 [info] <0.98.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-22 14:08:46.900 [debug] <0.99.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.102.0> -2014-07-22 14:08:46.900 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> -2014-07-22 14:08:46.918 [debug] <0.106.0> Supervisor inet_gethost_native_sup started undefined at pid <0.107.0> -2014-07-22 14:08:46.918 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.106.0> -2014-07-22 14:08:46.935 [info] <0.98.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:08:46.935 [info] <0.98.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 14:08:46.936 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.96.0> -2014-07-22 14:08:47.018 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:08:47.018 [info] <0.111.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 14:08:47.018 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.110.0> -2014-07-22 14:08:47.019 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.112.0> -2014-07-22 14:08:47.024 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> -2014-07-22 14:08:47.024 [info] <0.98.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.98.0> -2014-07-22 14:08:47.025 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-22 14:08:47.368 [error] emulator Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:08:47.368 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:08:47.369 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated -2014-07-22 14:08:47.370 [debug] <0.138.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 14:08:47.467 [info] <0.139.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:08:47.467 [info] <0.139.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 14:08:47.467 [warning] <0.138.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 14:08:47.467 [info] <0.139.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.139.0> -2014-07-22 14:08:47.468 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.138.0> -2014-07-22 14:08:47.543 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:08:47.543 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:08:47.544 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated -2014-07-22 14:08:47.639 [info] <0.165.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:08:47.639 [info] <0.165.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 14:08:47.639 [warning] <0.158.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 14:08:47.639 [info] <0.165.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.165.0> -2014-07-22 14:08:47.639 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.158.0> -2014-07-22 14:08:47.738 [error] emulator Error in process <0.165.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - - -2014-07-22 14:08:47.738 [error] <0.158.0>@basho_bench_worker:handle_info:149 Worker <0.165.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,70,117,150>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:08:47.739 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.158.0> exit with reason normal in context child_terminated -2014-07-22 14:08:47.752 [error] emulator Error in process <0.139.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - - -2014-07-22 14:08:47.753 [error] <0.138.0>@basho_bench_worker:handle_info:149 Worker <0.139.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,70,117,150>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:08:47.822 [info] <0.180.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:08:47.822 [info] <0.180.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 14:08:47.822 [warning] <0.177.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 14:08:47.822 [info] <0.180.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.180.0> -2014-07-22 14:08:47.822 [debug] <0.181.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 14:08:47.822 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.177.0> -2014-07-22 14:08:47.823 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.138.0> exit with reason normal in context child_terminated -2014-07-22 14:08:47.917 [info] <0.185.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:08:47.917 [info] <0.185.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 14:08:47.917 [warning] <0.181.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 14:08:47.917 [info] <0.185.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.185.0> -2014-07-22 14:08:47.918 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.181.0> -2014-07-22 14:08:48.012 [error] <0.181.0>@basho_bench_worker:handle_info:149 Worker <0.185.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,70,117,150>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:08:48.012 [error] emulator Error in process <0.185.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - - -2014-07-22 14:08:48.012 [debug] <0.204.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 14:08:48.013 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.181.0> exit with reason normal in context child_terminated -2014-07-22 14:08:48.103 [info] <0.205.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:08:48.103 [info] <0.205.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 14:08:48.103 [warning] <0.204.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 14:08:48.103 [info] <0.205.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.205.0> -2014-07-22 14:08:48.104 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.204.0> -2014-07-22 14:08:48.147 [error] emulator Error in process <0.180.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - - -2014-07-22 14:08:48.147 [error] <0.177.0>@basho_bench_worker:handle_info:149 Worker <0.180.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,19,199,253>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:08:48.148 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.177.0> exit with reason normal in context child_terminated -2014-07-22 14:08:48.148 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.177.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-22 14:08:48.158 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. diff --git a/newtests/20140722_140845/crash.log b/newtests/20140722_140845/crash.log deleted file mode 100644 index b2a07837a..000000000 --- a/newtests/20140722_140845/crash.log +++ /dev/null @@ -1,60 +0,0 @@ -2014-07-22 14:08:47 =ERROR REPORT==== -Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-22 14:08:47 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.96.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 14:08:47 =ERROR REPORT==== -Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-22 14:08:47 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 14:08:47 =ERROR REPORT==== -Error in process <0.165.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - -2014-07-22 14:08:47 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.158.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 14:08:47 =ERROR REPORT==== -Error in process <0.139.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - -2014-07-22 14:08:47 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.138.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 14:08:48 =ERROR REPORT==== -Error in process <0.185.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - -2014-07-22 14:08:48 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.181.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 14:08:48 =ERROR REPORT==== -Error in process <0.180.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - -2014-07-22 14:08:48 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.177.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 14:08:48 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.177.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140722_140845/error.log b/newtests/20140722_140845/error.log deleted file mode 100644 index 85991972c..000000000 --- a/newtests/20140722_140845/error.log +++ /dev/null @@ -1,31 +0,0 @@ -2014-07-22 14:08:47.368 [error] emulator Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:08:47.368 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:08:47.369 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated -2014-07-22 14:08:47.543 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:08:47.543 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:08:47.544 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated -2014-07-22 14:08:47.738 [error] emulator Error in process <0.165.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - - -2014-07-22 14:08:47.738 [error] <0.158.0>@basho_bench_worker:handle_info:149 Worker <0.165.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,70,117,150>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:08:47.739 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.158.0> exit with reason normal in context child_terminated -2014-07-22 14:08:47.752 [error] emulator Error in process <0.139.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - - -2014-07-22 14:08:47.753 [error] <0.138.0>@basho_bench_worker:handle_info:149 Worker <0.139.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,70,117,150>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:08:47.823 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.138.0> exit with reason normal in context child_terminated -2014-07-22 14:08:48.012 [error] <0.181.0>@basho_bench_worker:handle_info:149 Worker <0.185.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,70,117,150>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:08:48.012 [error] emulator Error in process <0.185.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - - -2014-07-22 14:08:48.013 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.181.0> exit with reason normal in context child_terminated -2014-07-22 14:08:48.147 [error] emulator Error in process <0.180.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - - -2014-07-22 14:08:48.147 [error] <0.177.0>@basho_bench_worker:handle_info:149 Worker <0.180.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,19,199,253>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:08:48.148 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.177.0> exit with reason normal in context child_terminated -2014-07-22 14:08:48.148 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.177.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140722_140845/errors.csv b/newtests/20140722_140845/errors.csv deleted file mode 100644 index 29210b502..000000000 --- a/newtests/20140722_140845/errors.csv +++ /dev/null @@ -1 +0,0 @@ -"error","count" diff --git a/newtests/20140722_140845/floppstore.config b/newtests/20140722_140845/floppstore.config deleted file mode 100644 index bb59890f3..000000000 --- a/newtests/20140722_140845/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {uniform_int, 5000000}}. - -{value_generator, {fixed_bin, 10}}. - -{operations, [{static_tx, 1}, {interactive_tx,1}, {append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140722_140845/interactive-tx_latencies.csv b/newtests/20140722_140845/interactive-tx_latencies.csv deleted file mode 100644 index 69fa03e2c..000000000 --- a/newtests/20140722_140845/interactive-tx_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -1.129398, 1.129398, 32, 5676, 24959.6, 20628, 34411, 76105, 76105, 76105, 0 diff --git a/newtests/20140722_140845/log.sasl.txt b/newtests/20140722_140845/log.sasl.txt deleted file mode 100644 index 2cd75a4e7..000000000 --- a/newtests/20140722_140845/log.sasl.txt +++ /dev/null @@ -1,336 +0,0 @@ - -=PROGRESS REPORT==== 22-Jul-2014::14:08:46 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:08:46 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:08:46 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::14:08:46 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:08:46 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::14:08:46 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:08:46 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::14:08:46 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::14:08:46 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:08:46 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:08:46 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::14:08:46 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:08:46 === - supervisor: {local,net_sup} - started: [{pid,<0.100.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:08:46 === - supervisor: {local,net_sup} - started: [{pid,<0.101.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:08:46 === - supervisor: {local,net_sup} - started: [{pid,<0.102.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:08:46 === - supervisor: {local,kernel_sup} - started: [{pid,<0.99.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::14:08:46 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.107.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 22-Jul-2014::14:08:46 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.106.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:08:46 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.96.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:08:47 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.110.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:08:47 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.112.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:08:47 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 22-Jul-2014::14:08:47 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.96.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::14:08:47 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.138.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::14:08:47 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::14:08:47 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.158.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::14:08:47 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.158.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::14:08:47 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.177.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::14:08:47 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.138.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::14:08:47 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.181.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::14:08:48 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.181.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::14:08:48 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.204.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::14:08:48 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.177.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 22-Jul-2014::14:08:48 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.177.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140722_140845/read_latencies.csv b/newtests/20140722_140845/read_latencies.csv deleted file mode 100644 index fd2b6bc1a..000000000 --- a/newtests/20140722_140845/read_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -1.129398, 1.129398, 14, 1815, 5570.5, 3461, 11324, 12319, 12319, 12319, 0 diff --git a/newtests/20140722_140845/static-tx_latencies.csv b/newtests/20140722_140845/static-tx_latencies.csv deleted file mode 100644 index e1a8a0457..000000000 --- a/newtests/20140722_140845/static-tx_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -1.129398, 1.129398, 25, 16560, 30916.1, 21652, 59688, 88471, 88471, 88471, 0 diff --git a/newtests/20140722_140845/summary.csv b/newtests/20140722_140845/summary.csv deleted file mode 100644 index 5eb0bbdc1..000000000 --- a/newtests/20140722_140845/summary.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, total, successful, failed -1.129398, 1.129398, 85, 85, 0 diff --git a/newtests/20140722_141942/append_latencies.csv b/newtests/20140722_141942/append_latencies.csv deleted file mode 100644 index 71dd49f0b..000000000 --- a/newtests/20140722_141942/append_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.741695, 0.741695, 6, 1191, 4008.5, 3465, 6536, 6536, 6536, 6536, 0 diff --git a/newtests/20140722_141942/console.log b/newtests/20140722_141942/console.log deleted file mode 100644 index e19f44b5f..000000000 --- a/newtests/20140722_141942/console.log +++ /dev/null @@ -1,105 +0,0 @@ -2014-07-22 14:19:42.995 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_141942/error.log"} into lager_event -2014-07-22 14:19:42.995 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_141942/console.log"} into lager_event -2014-07-22 14:19:42.995 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-22 14:19:43.032 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-22 14:19:43.032 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-22 14:19:43.032 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-22 14:19:43.032 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-22 14:19:43.469 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-22 14:19:43.919 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-22 14:19:43.920 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_141942/console.log to debug -2014-07-22 14:19:43.934 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB -2014-07-22 14:19:44.021 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-22 14:19:44.022 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-22 14:19:44.022 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-22 14:19:44.038 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-22 14:19:44.038 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-22 14:19:44.128 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-22 14:19:44.128 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-22 14:19:44.160 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-22 14:19:44.165 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-22 14:19:44.170 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-22 14:19:44.170 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-22 14:19:44.205 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-22 14:19:44.211 [debug] <0.96.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 14:19:44.345 [debug] <0.99.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.100.0> -2014-07-22 14:19:44.354 [debug] <0.99.0> Supervisor net_sup started auth:start_link() at pid <0.101.0> -2014-07-22 14:19:44.381 [info] <0.98.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-22 14:19:44.381 [debug] <0.99.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.102.0> -2014-07-22 14:19:44.382 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> -2014-07-22 14:19:44.403 [debug] <0.106.0> Supervisor inet_gethost_native_sup started undefined at pid <0.107.0> -2014-07-22 14:19:44.403 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.106.0> -2014-07-22 14:19:44.421 [info] <0.98.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:19:44.421 [info] <0.98.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 14:19:44.422 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.96.0> -2014-07-22 14:19:44.500 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:19:44.500 [info] <0.111.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 14:19:44.500 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.110.0> -2014-07-22 14:19:44.501 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.112.0> -2014-07-22 14:19:44.507 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> -2014-07-22 14:19:44.507 [info] <0.98.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.98.0> -2014-07-22 14:19:44.507 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-22 14:19:44.672 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:19:44.672 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:19:44.672 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated -2014-07-22 14:19:44.766 [info] <0.118.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:19:44.766 [info] <0.118.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 14:19:44.767 [warning] <0.117.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 14:19:44.767 [info] <0.118.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.118.0> -2014-07-22 14:19:44.767 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.117.0> -2014-07-22 14:19:44.854 [error] emulator Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:19:44.854 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:19:44.854 [debug] <0.128.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 14:19:44.855 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated -2014-07-22 14:19:44.901 [error] emulator Error in process <0.118.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:19:44.901 [error] <0.117.0>@basho_bench_worker:handle_info:149 Worker <0.118.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:19:44.934 [info] <0.130.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:19:44.934 [info] <0.130.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 14:19:44.934 [warning] <0.128.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 14:19:44.934 [info] <0.130.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.130.0> -2014-07-22 14:19:44.934 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.128.0> -2014-07-22 14:19:44.935 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.117.0> exit with reason normal in context child_terminated -2014-07-22 14:19:45.000 [error] emulator Error in process <0.130.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:19:45.000 [error] <0.128.0>@basho_bench_worker:handle_info:149 Worker <0.130.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:19:45.026 [info] <0.137.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:19:45.026 [info] <0.137.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 14:19:45.026 [warning] <0.131.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 14:19:45.026 [info] <0.137.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.137.0> -2014-07-22 14:19:45.026 [debug] <0.140.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 14:19:45.027 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.131.0> -2014-07-22 14:19:45.027 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.128.0> exit with reason normal in context child_terminated -2014-07-22 14:19:45.116 [info] <0.144.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:19:45.116 [info] <0.144.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 14:19:45.116 [warning] <0.140.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 14:19:45.116 [info] <0.144.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.144.0> -2014-07-22 14:19:45.117 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.140.0> -2014-07-22 14:19:45.148 [error] emulator Error in process <0.144.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - - -2014-07-22 14:19:45.148 [error] <0.140.0>@basho_bench_worker:handle_info:149 Worker <0.144.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,14,76,225>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:19:45.149 [debug] <0.151.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 14:19:45.149 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.140.0> exit with reason normal in context child_terminated -2014-07-22 14:19:45.233 [error] emulator Error in process <0.137.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:19:45.233 [error] <0.131.0>@basho_bench_worker:handle_info:149 Worker <0.137.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:19:45.241 [info] <0.155.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:19:45.242 [info] <0.155.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 14:19:45.242 [warning] <0.151.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 14:19:45.242 [info] <0.155.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.155.0> -2014-07-22 14:19:45.242 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.151.0> -2014-07-22 14:19:45.243 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.131.0> exit with reason normal in context child_terminated -2014-07-22 14:19:45.243 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.131.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-22 14:19:45.252 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} -2014-07-22 14:19:45.252 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. -2014-07-22 14:19:45.253 [info] <0.2.0>@basho_bench:wait_for_stop:191 Test stopped: shutdown diff --git a/newtests/20140722_141942/crash.log b/newtests/20140722_141942/crash.log deleted file mode 100644 index 7f3b79904..000000000 --- a/newtests/20140722_141942/crash.log +++ /dev/null @@ -1,60 +0,0 @@ -2014-07-22 14:19:44 =ERROR REPORT==== -Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-22 14:19:44 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 14:19:44 =ERROR REPORT==== -Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-22 14:19:44 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.96.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 14:19:44 =ERROR REPORT==== -Error in process <0.118.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-22 14:19:44 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.117.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 14:19:45 =ERROR REPORT==== -Error in process <0.130.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-22 14:19:45 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.128.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 14:19:45 =ERROR REPORT==== -Error in process <0.144.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - -2014-07-22 14:19:45 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.140.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 14:19:45 =ERROR REPORT==== -Error in process <0.137.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-22 14:19:45 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.131.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 14:19:45 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.131.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140722_141942/error.log b/newtests/20140722_141942/error.log deleted file mode 100644 index 225e38ef8..000000000 --- a/newtests/20140722_141942/error.log +++ /dev/null @@ -1,31 +0,0 @@ -2014-07-22 14:19:44.672 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:19:44.672 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:19:44.672 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated -2014-07-22 14:19:44.854 [error] emulator Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:19:44.854 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:19:44.855 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated -2014-07-22 14:19:44.901 [error] emulator Error in process <0.118.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:19:44.901 [error] <0.117.0>@basho_bench_worker:handle_info:149 Worker <0.118.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:19:44.935 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.117.0> exit with reason normal in context child_terminated -2014-07-22 14:19:45.000 [error] emulator Error in process <0.130.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:19:45.000 [error] <0.128.0>@basho_bench_worker:handle_info:149 Worker <0.130.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:19:45.027 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.128.0> exit with reason normal in context child_terminated -2014-07-22 14:19:45.148 [error] emulator Error in process <0.144.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - - -2014-07-22 14:19:45.148 [error] <0.140.0>@basho_bench_worker:handle_info:149 Worker <0.144.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,14,76,225>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:19:45.149 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.140.0> exit with reason normal in context child_terminated -2014-07-22 14:19:45.233 [error] emulator Error in process <0.137.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:19:45.233 [error] <0.131.0>@basho_bench_worker:handle_info:149 Worker <0.137.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:19:45.243 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.131.0> exit with reason normal in context child_terminated -2014-07-22 14:19:45.243 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.131.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140722_141942/errors.csv b/newtests/20140722_141942/errors.csv deleted file mode 100644 index 29210b502..000000000 --- a/newtests/20140722_141942/errors.csv +++ /dev/null @@ -1 +0,0 @@ -"error","count" diff --git a/newtests/20140722_141942/floppstore.config b/newtests/20140722_141942/floppstore.config deleted file mode 100644 index bb59890f3..000000000 --- a/newtests/20140722_141942/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {uniform_int, 5000000}}. - -{value_generator, {fixed_bin, 10}}. - -{operations, [{static_tx, 1}, {interactive_tx,1}, {append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140722_141942/interactive-tx_latencies.csv b/newtests/20140722_141942/interactive-tx_latencies.csv deleted file mode 100644 index 49720dccf..000000000 --- a/newtests/20140722_141942/interactive-tx_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.741695, 0.741695, 13, 18043, 51736.2, 26765, 149430, 149967, 149967, 149967, 0 diff --git a/newtests/20140722_141942/log.sasl.txt b/newtests/20140722_141942/log.sasl.txt deleted file mode 100644 index 68cdd232c..000000000 --- a/newtests/20140722_141942/log.sasl.txt +++ /dev/null @@ -1,336 +0,0 @@ - -=PROGRESS REPORT==== 22-Jul-2014::14:19:43 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:19:44 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:19:44 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::14:19:44 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:19:44 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::14:19:44 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:19:44 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::14:19:44 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::14:19:44 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:19:44 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:19:44 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::14:19:44 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:19:44 === - supervisor: {local,net_sup} - started: [{pid,<0.100.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:19:44 === - supervisor: {local,net_sup} - started: [{pid,<0.101.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:19:44 === - supervisor: {local,net_sup} - started: [{pid,<0.102.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:19:44 === - supervisor: {local,kernel_sup} - started: [{pid,<0.99.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::14:19:44 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.107.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 22-Jul-2014::14:19:44 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.106.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:19:44 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.96.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:19:44 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.110.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:19:44 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.112.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:19:44 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 22-Jul-2014::14:19:44 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::14:19:44 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.117.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::14:19:44 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.96.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::14:19:44 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.128.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::14:19:44 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.117.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::14:19:45 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.131.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::14:19:45 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.128.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::14:19:45 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.140.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::14:19:45 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.140.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::14:19:45 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.151.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::14:19:45 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.131.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 22-Jul-2014::14:19:45 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.131.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140722_141942/read_latencies.csv b/newtests/20140722_141942/read_latencies.csv deleted file mode 100644 index b407dc340..000000000 --- a/newtests/20140722_141942/read_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.741695, 0.741695, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140722_141942/static-tx_latencies.csv b/newtests/20140722_141942/static-tx_latencies.csv deleted file mode 100644 index 037a1f02b..000000000 --- a/newtests/20140722_141942/static-tx_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.741695, 0.741695, 7, 18585, 28431.9, 24780, 62633, 62633, 62633, 62633, 0 diff --git a/newtests/20140722_141942/summary.csv b/newtests/20140722_141942/summary.csv deleted file mode 100644 index f1cb38e20..000000000 --- a/newtests/20140722_141942/summary.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, total, successful, failed -0.741695, 0.741695, 29, 29, 0 diff --git a/newtests/20140722_142103/append_latencies.csv b/newtests/20140722_142103/append_latencies.csv deleted file mode 100644 index 240084c6a..000000000 --- a/newtests/20140722_142103/append_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -1.010334, 1.010334, 25, 1023, 4201.7, 2001, 13310, 29447, 29447, 29447, 0 diff --git a/newtests/20140722_142103/console.log b/newtests/20140722_142103/console.log deleted file mode 100644 index a5259b515..000000000 --- a/newtests/20140722_142103/console.log +++ /dev/null @@ -1,103 +0,0 @@ -2014-07-22 14:21:03.502 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_142103/error.log"} into lager_event -2014-07-22 14:21:03.502 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_142103/console.log"} into lager_event -2014-07-22 14:21:03.502 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-22 14:21:03.535 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-22 14:21:03.535 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-22 14:21:03.536 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-22 14:21:03.536 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-22 14:21:03.976 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-22 14:21:04.419 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-22 14:21:04.420 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_142103/console.log to debug -2014-07-22 14:21:04.434 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB -2014-07-22 14:21:04.519 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-22 14:21:04.519 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-22 14:21:04.520 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-22 14:21:04.535 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-22 14:21:04.535 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-22 14:21:04.624 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-22 14:21:04.624 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-22 14:21:04.653 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-22 14:21:04.658 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-22 14:21:04.664 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-22 14:21:04.664 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-22 14:21:04.701 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-22 14:21:04.708 [debug] <0.96.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 14:21:04.834 [debug] <0.99.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.100.0> -2014-07-22 14:21:04.841 [debug] <0.99.0> Supervisor net_sup started auth:start_link() at pid <0.101.0> -2014-07-22 14:21:04.854 [info] <0.98.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-22 14:21:04.854 [debug] <0.99.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.102.0> -2014-07-22 14:21:04.854 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> -2014-07-22 14:21:04.868 [debug] <0.106.0> Supervisor inet_gethost_native_sup started undefined at pid <0.107.0> -2014-07-22 14:21:04.869 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.106.0> -2014-07-22 14:21:04.891 [info] <0.98.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:21:04.891 [info] <0.98.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 14:21:04.891 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.96.0> -2014-07-22 14:21:04.967 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:21:04.967 [info] <0.111.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 14:21:04.968 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.110.0> -2014-07-22 14:21:04.968 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.112.0> -2014-07-22 14:21:04.975 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> -2014-07-22 14:21:04.975 [info] <0.98.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.98.0> -2014-07-22 14:21:04.976 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-22 14:21:05.287 [error] emulator Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:21:05.287 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:21:05.287 [debug] <0.140.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 14:21:05.288 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated -2014-07-22 14:21:05.394 [info] <0.147.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:21:05.394 [info] <0.147.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 14:21:05.394 [warning] <0.140.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 14:21:05.394 [info] <0.147.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.147.0> -2014-07-22 14:21:05.394 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.140.0> -2014-07-22 14:21:05.577 [error] emulator Error in process <0.147.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:21:05.577 [error] <0.140.0>@basho_bench_worker:handle_info:149 Worker <0.147.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:21:05.577 [debug] <0.179.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 14:21:05.578 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.140.0> exit with reason normal in context child_terminated -2014-07-22 14:21:05.643 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:21:05.643 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:21:05.676 [info] <0.187.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:21:05.676 [info] <0.187.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 14:21:05.676 [warning] <0.179.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 14:21:05.676 [info] <0.187.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.187.0> -2014-07-22 14:21:05.676 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.179.0> -2014-07-22 14:21:05.677 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated -2014-07-22 14:21:05.696 [error] emulator Error in process <0.187.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:21:05.696 [error] <0.179.0>@basho_bench_worker:handle_info:149 Worker <0.187.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:21:05.802 [info] <0.192.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:21:05.802 [info] <0.192.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 14:21:05.802 [warning] <0.189.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 14:21:05.802 [info] <0.192.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.192.0> -2014-07-22 14:21:05.802 [debug] <0.193.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 14:21:05.803 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.189.0> -2014-07-22 14:21:05.803 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.179.0> exit with reason normal in context child_terminated -2014-07-22 14:21:05.845 [error] emulator Error in process <0.192.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - - -2014-07-22 14:21:05.846 [error] <0.189.0>@basho_bench_worker:handle_info:149 Worker <0.192.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,41,254,27>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:21:05.887 [info] <0.199.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:21:05.887 [info] <0.199.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 14:21:05.887 [warning] <0.193.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 14:21:05.887 [info] <0.199.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.199.0> -2014-07-22 14:21:05.887 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.193.0> -2014-07-22 14:21:05.888 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.189.0> exit with reason normal in context child_terminated -2014-07-22 14:21:05.951 [error] emulator Error in process <0.199.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:21:05.951 [error] <0.193.0>@basho_bench_worker:handle_info:149 Worker <0.199.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:21:05.977 [info] <0.206.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:21:05.977 [info] <0.206.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 14:21:05.977 [warning] <0.200.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 14:21:05.977 [info] <0.206.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.206.0> -2014-07-22 14:21:05.978 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.200.0> -2014-07-22 14:21:05.978 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.193.0> exit with reason normal in context child_terminated -2014-07-22 14:21:05.979 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.193.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-22 14:21:05.988 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. diff --git a/newtests/20140722_142103/crash.log b/newtests/20140722_142103/crash.log deleted file mode 100644 index d04d90310..000000000 --- a/newtests/20140722_142103/crash.log +++ /dev/null @@ -1,60 +0,0 @@ -2014-07-22 14:21:05 =ERROR REPORT==== -Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-22 14:21:05 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.96.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 14:21:05 =ERROR REPORT==== -Error in process <0.147.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-22 14:21:05 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.140.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 14:21:05 =ERROR REPORT==== -Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-22 14:21:05 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 14:21:05 =ERROR REPORT==== -Error in process <0.187.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-22 14:21:05 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.179.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 14:21:05 =ERROR REPORT==== -Error in process <0.192.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - -2014-07-22 14:21:05 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.189.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 14:21:05 =ERROR REPORT==== -Error in process <0.199.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-22 14:21:05 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.193.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 14:21:05 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.193.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140722_142103/error.log b/newtests/20140722_142103/error.log deleted file mode 100644 index cdaad4bf9..000000000 --- a/newtests/20140722_142103/error.log +++ /dev/null @@ -1,31 +0,0 @@ -2014-07-22 14:21:05.287 [error] emulator Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:21:05.287 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:21:05.288 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated -2014-07-22 14:21:05.577 [error] emulator Error in process <0.147.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:21:05.577 [error] <0.140.0>@basho_bench_worker:handle_info:149 Worker <0.147.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:21:05.578 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.140.0> exit with reason normal in context child_terminated -2014-07-22 14:21:05.643 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:21:05.643 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:21:05.677 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated -2014-07-22 14:21:05.696 [error] emulator Error in process <0.187.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:21:05.696 [error] <0.179.0>@basho_bench_worker:handle_info:149 Worker <0.187.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:21:05.803 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.179.0> exit with reason normal in context child_terminated -2014-07-22 14:21:05.845 [error] emulator Error in process <0.192.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - - -2014-07-22 14:21:05.846 [error] <0.189.0>@basho_bench_worker:handle_info:149 Worker <0.192.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,41,254,27>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:21:05.888 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.189.0> exit with reason normal in context child_terminated -2014-07-22 14:21:05.951 [error] emulator Error in process <0.199.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:21:05.951 [error] <0.193.0>@basho_bench_worker:handle_info:149 Worker <0.199.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:21:05.978 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.193.0> exit with reason normal in context child_terminated -2014-07-22 14:21:05.979 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.193.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140722_142103/errors.csv b/newtests/20140722_142103/errors.csv deleted file mode 100644 index 29210b502..000000000 --- a/newtests/20140722_142103/errors.csv +++ /dev/null @@ -1 +0,0 @@ -"error","count" diff --git a/newtests/20140722_142103/floppstore.config b/newtests/20140722_142103/floppstore.config deleted file mode 100644 index bb59890f3..000000000 --- a/newtests/20140722_142103/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {uniform_int, 5000000}}. - -{value_generator, {fixed_bin, 10}}. - -{operations, [{static_tx, 1}, {interactive_tx,1}, {append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140722_142103/interactive-tx_latencies.csv b/newtests/20140722_142103/interactive-tx_latencies.csv deleted file mode 100644 index 7ff3f10af..000000000 --- a/newtests/20140722_142103/interactive-tx_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -1.010334, 1.010334, 21, 17921, 28580.1, 20839, 80585, 81015, 81015, 81015, 0 diff --git a/newtests/20140722_142103/log.sasl.txt b/newtests/20140722_142103/log.sasl.txt deleted file mode 100644 index c24288202..000000000 --- a/newtests/20140722_142103/log.sasl.txt +++ /dev/null @@ -1,336 +0,0 @@ - -=PROGRESS REPORT==== 22-Jul-2014::14:21:04 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:21:04 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:21:04 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::14:21:04 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:21:04 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::14:21:04 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:21:04 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::14:21:04 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::14:21:04 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:21:04 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:21:04 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::14:21:04 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:21:04 === - supervisor: {local,net_sup} - started: [{pid,<0.100.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:21:04 === - supervisor: {local,net_sup} - started: [{pid,<0.101.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:21:04 === - supervisor: {local,net_sup} - started: [{pid,<0.102.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:21:04 === - supervisor: {local,kernel_sup} - started: [{pid,<0.99.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::14:21:04 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.107.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 22-Jul-2014::14:21:04 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.106.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:21:04 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.96.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:21:04 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.110.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:21:04 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.112.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:21:04 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 22-Jul-2014::14:21:05 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.96.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::14:21:05 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.140.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::14:21:05 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.140.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::14:21:05 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.179.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::14:21:05 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::14:21:05 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.189.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::14:21:05 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.179.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::14:21:05 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.193.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::14:21:05 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.189.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::14:21:05 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.200.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::14:21:05 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.193.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 22-Jul-2014::14:21:05 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.193.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140722_142103/read_latencies.csv b/newtests/20140722_142103/read_latencies.csv deleted file mode 100644 index bf0d2969e..000000000 --- a/newtests/20140722_142103/read_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -1.010334, 1.010334, 16, 970, 4007.8, 1508, 8792, 22987, 22987, 22987, 0 diff --git a/newtests/20140722_142103/static-tx_latencies.csv b/newtests/20140722_142103/static-tx_latencies.csv deleted file mode 100644 index 79192f7ac..000000000 --- a/newtests/20140722_142103/static-tx_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -1.010334, 1.010334, 20, 17476, 24435.0, 20224, 37762, 71334, 71334, 71334, 0 diff --git a/newtests/20140722_142103/summary.csv b/newtests/20140722_142103/summary.csv deleted file mode 100644 index 045281d82..000000000 --- a/newtests/20140722_142103/summary.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, total, successful, failed -1.010334, 1.010334, 82, 82, 0 diff --git a/newtests/20140722_142202/append_latencies.csv b/newtests/20140722_142202/append_latencies.csv deleted file mode 100644 index 8df778916..000000000 --- a/newtests/20140722_142202/append_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.915128, 0.915128, 10, 994, 1600.3, 1434, 2443, 2443, 2443, 2443, 0 diff --git a/newtests/20140722_142202/console.log b/newtests/20140722_142202/console.log deleted file mode 100644 index 1bf00610b..000000000 --- a/newtests/20140722_142202/console.log +++ /dev/null @@ -1,103 +0,0 @@ -2014-07-22 14:22:02.801 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_142202/error.log"} into lager_event -2014-07-22 14:22:02.801 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_142202/console.log"} into lager_event -2014-07-22 14:22:02.801 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-22 14:22:02.834 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-22 14:22:02.834 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-22 14:22:02.834 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-22 14:22:02.834 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-22 14:22:03.277 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-22 14:22:03.692 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-22 14:22:03.693 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_142202/console.log to debug -2014-07-22 14:22:03.708 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB -2014-07-22 14:22:03.795 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-22 14:22:03.795 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-22 14:22:03.796 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-22 14:22:03.810 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-22 14:22:03.811 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-22 14:22:03.907 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-22 14:22:03.908 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-22 14:22:03.937 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-22 14:22:03.942 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-22 14:22:03.947 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-22 14:22:03.948 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-22 14:22:03.983 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-22 14:22:03.988 [debug] <0.96.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 14:22:04.116 [debug] <0.99.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.100.0> -2014-07-22 14:22:04.123 [debug] <0.99.0> Supervisor net_sup started auth:start_link() at pid <0.101.0> -2014-07-22 14:22:04.135 [info] <0.98.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-22 14:22:04.136 [debug] <0.99.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.102.0> -2014-07-22 14:22:04.136 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> -2014-07-22 14:22:04.151 [debug] <0.106.0> Supervisor inet_gethost_native_sup started undefined at pid <0.107.0> -2014-07-22 14:22:04.152 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.106.0> -2014-07-22 14:22:04.171 [info] <0.98.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:22:04.171 [info] <0.98.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 14:22:04.172 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.96.0> -2014-07-22 14:22:04.249 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:22:04.249 [info] <0.111.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 14:22:04.250 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.110.0> -2014-07-22 14:22:04.250 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.112.0> -2014-07-22 14:22:04.255 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> -2014-07-22 14:22:04.255 [info] <0.98.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.98.0> -2014-07-22 14:22:04.255 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-22 14:22:04.422 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:22:04.422 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:22:04.423 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated -2014-07-22 14:22:04.513 [info] <0.143.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:22:04.513 [info] <0.143.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 14:22:04.513 [warning] <0.142.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 14:22:04.513 [info] <0.143.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.143.0> -2014-07-22 14:22:04.513 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.142.0> -2014-07-22 14:22:04.673 [error] emulator Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - - -2014-07-22 14:22:04.673 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,47,228,7>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:22:04.673 [debug] <0.157.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 14:22:04.674 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated -2014-07-22 14:22:04.774 [error] emulator Error in process <0.143.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:22:04.774 [error] <0.142.0>@basho_bench_worker:handle_info:149 Worker <0.143.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:22:04.795 [info] <0.164.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:22:04.795 [info] <0.164.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 14:22:04.795 [warning] <0.157.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 14:22:04.795 [info] <0.164.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.164.0> -2014-07-22 14:22:04.795 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.157.0> -2014-07-22 14:22:04.795 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.142.0> exit with reason normal in context child_terminated -2014-07-22 14:22:04.853 [error] emulator Error in process <0.164.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:22:04.853 [error] <0.157.0>@basho_bench_worker:handle_info:149 Worker <0.164.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:22:04.884 [info] <0.174.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:22:04.884 [info] <0.174.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 14:22:04.884 [warning] <0.169.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 14:22:04.884 [info] <0.174.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.174.0> -2014-07-22 14:22:04.884 [debug] <0.177.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 14:22:04.884 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.169.0> -2014-07-22 14:22:04.885 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.157.0> exit with reason normal in context child_terminated -2014-07-22 14:22:04.975 [info] <0.182.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:22:04.975 [info] <0.182.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 14:22:04.975 [warning] <0.177.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 14:22:04.975 [info] <0.182.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.182.0> -2014-07-22 14:22:04.976 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.177.0> -2014-07-22 14:22:05.053 [error] emulator Error in process <0.182.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:22:05.053 [error] <0.177.0>@basho_bench_worker:handle_info:149 Worker <0.182.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:22:05.054 [debug] <0.191.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 14:22:05.054 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.177.0> exit with reason normal in context child_terminated -2014-07-22 14:22:05.135 [info] <0.192.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:22:05.135 [info] <0.192.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 14:22:05.135 [warning] <0.191.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 14:22:05.135 [info] <0.192.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.192.0> -2014-07-22 14:22:05.136 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.191.0> -2014-07-22 14:22:05.164 [error] emulator Error in process <0.174.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:22:05.164 [error] <0.169.0>@basho_bench_worker:handle_info:149 Worker <0.174.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:22:05.165 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.169.0> exit with reason normal in context child_terminated -2014-07-22 14:22:05.165 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.169.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-22 14:22:05.175 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. diff --git a/newtests/20140722_142202/crash.log b/newtests/20140722_142202/crash.log deleted file mode 100644 index 41d22fc37..000000000 --- a/newtests/20140722_142202/crash.log +++ /dev/null @@ -1,60 +0,0 @@ -2014-07-22 14:22:04 =ERROR REPORT==== -Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-22 14:22:04 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 14:22:04 =ERROR REPORT==== -Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - -2014-07-22 14:22:04 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.96.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 14:22:04 =ERROR REPORT==== -Error in process <0.143.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-22 14:22:04 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.142.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 14:22:04 =ERROR REPORT==== -Error in process <0.164.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-22 14:22:04 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.157.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 14:22:05 =ERROR REPORT==== -Error in process <0.182.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-22 14:22:05 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.177.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 14:22:05 =ERROR REPORT==== -Error in process <0.174.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-22 14:22:05 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.169.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 14:22:05 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.169.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140722_142202/error.log b/newtests/20140722_142202/error.log deleted file mode 100644 index 1ff3b8195..000000000 --- a/newtests/20140722_142202/error.log +++ /dev/null @@ -1,31 +0,0 @@ -2014-07-22 14:22:04.422 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:22:04.422 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:22:04.423 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated -2014-07-22 14:22:04.673 [error] emulator Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - - -2014-07-22 14:22:04.673 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,47,228,7>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:22:04.674 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated -2014-07-22 14:22:04.774 [error] emulator Error in process <0.143.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:22:04.774 [error] <0.142.0>@basho_bench_worker:handle_info:149 Worker <0.143.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:22:04.795 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.142.0> exit with reason normal in context child_terminated -2014-07-22 14:22:04.853 [error] emulator Error in process <0.164.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:22:04.853 [error] <0.157.0>@basho_bench_worker:handle_info:149 Worker <0.164.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:22:04.885 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.157.0> exit with reason normal in context child_terminated -2014-07-22 14:22:05.053 [error] emulator Error in process <0.182.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:22:05.053 [error] <0.177.0>@basho_bench_worker:handle_info:149 Worker <0.182.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:22:05.054 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.177.0> exit with reason normal in context child_terminated -2014-07-22 14:22:05.164 [error] emulator Error in process <0.174.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:22:05.164 [error] <0.169.0>@basho_bench_worker:handle_info:149 Worker <0.174.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:22:05.165 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.169.0> exit with reason normal in context child_terminated -2014-07-22 14:22:05.165 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.169.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140722_142202/errors.csv b/newtests/20140722_142202/errors.csv deleted file mode 100644 index 29210b502..000000000 --- a/newtests/20140722_142202/errors.csv +++ /dev/null @@ -1 +0,0 @@ -"error","count" diff --git a/newtests/20140722_142202/floppstore.config b/newtests/20140722_142202/floppstore.config deleted file mode 100644 index bb59890f3..000000000 --- a/newtests/20140722_142202/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {uniform_int, 5000000}}. - -{value_generator, {fixed_bin, 10}}. - -{operations, [{static_tx, 1}, {interactive_tx,1}, {append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140722_142202/interactive-tx_latencies.csv b/newtests/20140722_142202/interactive-tx_latencies.csv deleted file mode 100644 index 192ee2648..000000000 --- a/newtests/20140722_142202/interactive-tx_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.915128, 0.915128, 26, 16930, 22733.7, 18900, 50335, 59736, 59736, 59736, 0 diff --git a/newtests/20140722_142202/log.sasl.txt b/newtests/20140722_142202/log.sasl.txt deleted file mode 100644 index 933bbfef6..000000000 --- a/newtests/20140722_142202/log.sasl.txt +++ /dev/null @@ -1,336 +0,0 @@ - -=PROGRESS REPORT==== 22-Jul-2014::14:22:03 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:22:03 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:22:03 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::14:22:03 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:22:03 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::14:22:03 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:22:03 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::14:22:03 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::14:22:03 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:22:03 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:22:03 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::14:22:03 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:22:04 === - supervisor: {local,net_sup} - started: [{pid,<0.100.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:22:04 === - supervisor: {local,net_sup} - started: [{pid,<0.101.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:22:04 === - supervisor: {local,net_sup} - started: [{pid,<0.102.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:22:04 === - supervisor: {local,kernel_sup} - started: [{pid,<0.99.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::14:22:04 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.107.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 22-Jul-2014::14:22:04 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.106.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:22:04 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.96.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:22:04 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.110.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:22:04 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.112.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:22:04 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 22-Jul-2014::14:22:04 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::14:22:04 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.142.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::14:22:04 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.96.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::14:22:04 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.157.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::14:22:04 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.142.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::14:22:04 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.169.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::14:22:04 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.157.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::14:22:04 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.177.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::14:22:05 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.177.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::14:22:05 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.191.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::14:22:05 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.169.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 22-Jul-2014::14:22:05 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.169.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140722_142202/read_latencies.csv b/newtests/20140722_142202/read_latencies.csv deleted file mode 100644 index f1484f16e..000000000 --- a/newtests/20140722_142202/read_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.915128, 0.915128, 17, 851, 1589.1, 1302, 2830, 4332, 4332, 4332, 0 diff --git a/newtests/20140722_142202/static-tx_latencies.csv b/newtests/20140722_142202/static-tx_latencies.csv deleted file mode 100644 index c26a28356..000000000 --- a/newtests/20140722_142202/static-tx_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.915128, 0.915128, 18, 6504, 34476.0, 17928, 122869, 124827, 124827, 124827, 0 diff --git a/newtests/20140722_142202/summary.csv b/newtests/20140722_142202/summary.csv deleted file mode 100644 index 04f284dd5..000000000 --- a/newtests/20140722_142202/summary.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, total, successful, failed -0.915128, 0.915128, 71, 71, 0 diff --git a/newtests/20140722_142341/append_latencies.csv b/newtests/20140722_142341/append_latencies.csv deleted file mode 100644 index cfe1ef03e..000000000 --- a/newtests/20140722_142341/append_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -1.216081, 1.216081, 23, 1099, 2897.3, 1651, 8492, 10168, 10168, 10168, 0 diff --git a/newtests/20140722_142341/console.log b/newtests/20140722_142341/console.log deleted file mode 100644 index b603a3a56..000000000 --- a/newtests/20140722_142341/console.log +++ /dev/null @@ -1,105 +0,0 @@ -2014-07-22 14:23:41.442 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_142341/error.log"} into lager_event -2014-07-22 14:23:41.442 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_142341/console.log"} into lager_event -2014-07-22 14:23:41.442 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-22 14:23:41.478 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-22 14:23:41.478 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-22 14:23:41.478 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-22 14:23:41.478 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-22 14:23:41.915 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-22 14:23:42.250 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-22 14:23:42.251 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_142341/console.log to debug -2014-07-22 14:23:42.263 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB -2014-07-22 14:23:42.467 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-22 14:23:42.468 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-22 14:23:42.468 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-22 14:23:42.484 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-22 14:23:42.484 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-22 14:23:42.707 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-22 14:23:42.707 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-22 14:23:42.787 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-22 14:23:42.798 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-22 14:23:42.806 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-22 14:23:42.807 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-22 14:23:42.904 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-22 14:23:42.911 [debug] <0.96.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 14:23:43.104 [debug] <0.99.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.100.0> -2014-07-22 14:23:43.117 [debug] <0.99.0> Supervisor net_sup started auth:start_link() at pid <0.101.0> -2014-07-22 14:23:43.150 [info] <0.98.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-22 14:23:43.151 [debug] <0.99.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.102.0> -2014-07-22 14:23:43.151 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> -2014-07-22 14:23:43.189 [debug] <0.106.0> Supervisor inet_gethost_native_sup started undefined at pid <0.107.0> -2014-07-22 14:23:43.190 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.106.0> -2014-07-22 14:23:43.221 [info] <0.98.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:23:43.221 [info] <0.98.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 14:23:43.222 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.96.0> -2014-07-22 14:23:43.362 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:23:43.362 [info] <0.111.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 14:23:43.363 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.110.0> -2014-07-22 14:23:43.363 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.112.0> -2014-07-22 14:23:43.371 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> -2014-07-22 14:23:43.371 [info] <0.98.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.98.0> -2014-07-22 14:23:43.372 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-22 14:23:43.887 [error] emulator Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - - -2014-07-22 14:23:43.887 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,4,136,249>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:23:43.888 [debug] <0.161.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 14:23:43.888 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated -2014-07-22 14:23:43.983 [info] <0.166.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:23:43.983 [info] <0.166.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 14:23:43.984 [warning] <0.161.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 14:23:43.984 [info] <0.166.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.166.0> -2014-07-22 14:23:43.984 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.161.0> -2014-07-22 14:23:44.029 [error] emulator Error in process <0.166.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:23:44.029 [error] <0.161.0>@basho_bench_worker:handle_info:149 Worker <0.166.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:23:44.029 [debug] <0.178.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 14:23:44.030 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.161.0> exit with reason normal in context child_terminated -2014-07-22 14:23:44.179 [info] <0.179.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:23:44.179 [info] <0.179.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 14:23:44.179 [warning] <0.178.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 14:23:44.179 [info] <0.179.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.179.0> -2014-07-22 14:23:44.180 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.178.0> -2014-07-22 14:23:44.223 [error] emulator Error in process <0.179.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:23:44.224 [error] <0.178.0>@basho_bench_worker:handle_info:149 Worker <0.179.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:23:44.224 [debug] <0.192.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 14:23:44.225 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.178.0> exit with reason normal in context child_terminated -2014-07-22 14:23:44.317 [info] <0.193.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:23:44.317 [info] <0.193.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 14:23:44.317 [warning] <0.192.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 14:23:44.317 [info] <0.193.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.193.0> -2014-07-22 14:23:44.317 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.192.0> -2014-07-22 14:23:44.417 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:23:44.417 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:23:44.418 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated -2014-07-22 14:23:44.425 [error] emulator Error in process <0.193.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:23:44.425 [error] <0.192.0>@basho_bench_worker:handle_info:149 Worker <0.193.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:23:44.498 [info] <0.215.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:23:44.498 [info] <0.215.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 14:23:44.498 [warning] <0.212.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 14:23:44.498 [info] <0.215.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.215.0> -2014-07-22 14:23:44.498 [debug] <0.216.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 14:23:44.499 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.212.0> -2014-07-22 14:23:44.499 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.192.0> exit with reason normal in context child_terminated -2014-07-22 14:23:44.554 [error] emulator Error in process <0.215.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:23:44.554 [error] <0.212.0>@basho_bench_worker:handle_info:149 Worker <0.215.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:23:44.578 [info] <0.218.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:23:44.578 [info] <0.218.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 14:23:44.578 [warning] <0.216.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 14:23:44.578 [info] <0.218.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.218.0> -2014-07-22 14:23:44.579 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.216.0> -2014-07-22 14:23:44.579 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.212.0> exit with reason normal in context child_terminated -2014-07-22 14:23:44.580 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.212.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-22 14:23:44.588 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. -2014-07-22 14:23:44.589 [info] <0.2.0>@basho_bench:wait_for_stop:191 Test stopped: shutdown diff --git a/newtests/20140722_142341/crash.log b/newtests/20140722_142341/crash.log deleted file mode 100644 index 2162e3b8a..000000000 --- a/newtests/20140722_142341/crash.log +++ /dev/null @@ -1,60 +0,0 @@ -2014-07-22 14:23:43 =ERROR REPORT==== -Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - -2014-07-22 14:23:43 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.96.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 14:23:44 =ERROR REPORT==== -Error in process <0.166.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-22 14:23:44 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.161.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 14:23:44 =ERROR REPORT==== -Error in process <0.179.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-22 14:23:44 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.178.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 14:23:44 =ERROR REPORT==== -Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-22 14:23:44 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 14:23:44 =ERROR REPORT==== -Error in process <0.193.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-22 14:23:44 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.192.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 14:23:44 =ERROR REPORT==== -Error in process <0.215.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-22 14:23:44 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.212.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 14:23:44 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.212.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140722_142341/error.log b/newtests/20140722_142341/error.log deleted file mode 100644 index 1e6215841..000000000 --- a/newtests/20140722_142341/error.log +++ /dev/null @@ -1,31 +0,0 @@ -2014-07-22 14:23:43.887 [error] emulator Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - - -2014-07-22 14:23:43.887 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,4,136,249>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:23:43.888 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated -2014-07-22 14:23:44.029 [error] emulator Error in process <0.166.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:23:44.029 [error] <0.161.0>@basho_bench_worker:handle_info:149 Worker <0.166.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:23:44.030 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.161.0> exit with reason normal in context child_terminated -2014-07-22 14:23:44.223 [error] emulator Error in process <0.179.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:23:44.224 [error] <0.178.0>@basho_bench_worker:handle_info:149 Worker <0.179.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:23:44.225 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.178.0> exit with reason normal in context child_terminated -2014-07-22 14:23:44.417 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:23:44.417 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:23:44.418 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated -2014-07-22 14:23:44.425 [error] emulator Error in process <0.193.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:23:44.425 [error] <0.192.0>@basho_bench_worker:handle_info:149 Worker <0.193.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:23:44.499 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.192.0> exit with reason normal in context child_terminated -2014-07-22 14:23:44.554 [error] emulator Error in process <0.215.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:23:44.554 [error] <0.212.0>@basho_bench_worker:handle_info:149 Worker <0.215.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:23:44.579 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.212.0> exit with reason normal in context child_terminated -2014-07-22 14:23:44.580 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.212.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140722_142341/errors.csv b/newtests/20140722_142341/errors.csv deleted file mode 100644 index 29210b502..000000000 --- a/newtests/20140722_142341/errors.csv +++ /dev/null @@ -1 +0,0 @@ -"error","count" diff --git a/newtests/20140722_142341/floppstore.config b/newtests/20140722_142341/floppstore.config deleted file mode 100644 index bb59890f3..000000000 --- a/newtests/20140722_142341/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {uniform_int, 5000000}}. - -{value_generator, {fixed_bin, 10}}. - -{operations, [{static_tx, 1}, {interactive_tx,1}, {append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140722_142341/interactive-tx_latencies.csv b/newtests/20140722_142341/interactive-tx_latencies.csv deleted file mode 100644 index 94e03bfd3..000000000 --- a/newtests/20140722_142341/interactive-tx_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -1.216081, 1.216081, 30, 18234, 33846.4, 21586, 139603, 139716, 139716, 139716, 0 diff --git a/newtests/20140722_142341/log.sasl.txt b/newtests/20140722_142341/log.sasl.txt deleted file mode 100644 index c01067cdf..000000000 --- a/newtests/20140722_142341/log.sasl.txt +++ /dev/null @@ -1,336 +0,0 @@ - -=PROGRESS REPORT==== 22-Jul-2014::14:23:42 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:23:42 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:23:42 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::14:23:42 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:23:42 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::14:23:42 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:23:42 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::14:23:42 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::14:23:42 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:23:42 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:23:42 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::14:23:42 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:23:43 === - supervisor: {local,net_sup} - started: [{pid,<0.100.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:23:43 === - supervisor: {local,net_sup} - started: [{pid,<0.101.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:23:43 === - supervisor: {local,net_sup} - started: [{pid,<0.102.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:23:43 === - supervisor: {local,kernel_sup} - started: [{pid,<0.99.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::14:23:43 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.107.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 22-Jul-2014::14:23:43 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.106.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:23:43 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.96.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:23:43 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.110.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:23:43 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.112.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:23:43 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 22-Jul-2014::14:23:43 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.96.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::14:23:43 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.161.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::14:23:44 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.161.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::14:23:44 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.178.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::14:23:44 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.178.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::14:23:44 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.192.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::14:23:44 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::14:23:44 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.212.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::14:23:44 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.192.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::14:23:44 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.216.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::14:23:44 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.212.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 22-Jul-2014::14:23:44 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.212.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140722_142341/read_latencies.csv b/newtests/20140722_142341/read_latencies.csv deleted file mode 100644 index 90db8f983..000000000 --- a/newtests/20140722_142341/read_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -1.216081, 1.216081, 17, 1132, 5261.7, 4673, 10903, 11018, 11018, 11018, 0 diff --git a/newtests/20140722_142341/static-tx_latencies.csv b/newtests/20140722_142341/static-tx_latencies.csv deleted file mode 100644 index a95fd0e0b..000000000 --- a/newtests/20140722_142341/static-tx_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -1.216081, 1.216081, 22, 18108, 27061.8, 23470, 36347, 67367, 67367, 67367, 0 diff --git a/newtests/20140722_142341/summary.csv b/newtests/20140722_142341/summary.csv deleted file mode 100644 index e3da4e088..000000000 --- a/newtests/20140722_142341/summary.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, total, successful, failed -1.216081, 1.216081, 92, 92, 0 diff --git a/newtests/20140722_142917/append_latencies.csv b/newtests/20140722_142917/append_latencies.csv deleted file mode 100644 index 329a253b1..000000000 --- a/newtests/20140722_142917/append_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.902586, 0.902586, 9, 1045, 18409.9, 14488, 66066, 66066, 66066, 66066, 0 diff --git a/newtests/20140722_142917/console.log b/newtests/20140722_142917/console.log deleted file mode 100644 index 9fe5c8140..000000000 --- a/newtests/20140722_142917/console.log +++ /dev/null @@ -1,105 +0,0 @@ -2014-07-22 14:29:17.773 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_142917/error.log"} into lager_event -2014-07-22 14:29:17.773 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_142917/console.log"} into lager_event -2014-07-22 14:29:17.773 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-22 14:29:17.806 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-22 14:29:17.806 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-22 14:29:17.806 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-22 14:29:17.806 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-22 14:29:18.247 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-22 14:29:18.648 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-22 14:29:18.649 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_142917/console.log to debug -2014-07-22 14:29:18.662 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB -2014-07-22 14:29:18.746 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-22 14:29:18.746 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-22 14:29:18.747 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-22 14:29:18.761 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-22 14:29:18.761 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-22 14:29:18.849 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-22 14:29:18.849 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-22 14:29:18.880 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-22 14:29:18.886 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-22 14:29:18.892 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-22 14:29:18.892 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-22 14:29:18.925 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-22 14:29:18.932 [debug] <0.96.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 14:29:19.056 [debug] <0.99.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.100.0> -2014-07-22 14:29:19.064 [debug] <0.99.0> Supervisor net_sup started auth:start_link() at pid <0.101.0> -2014-07-22 14:29:19.080 [info] <0.98.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-22 14:29:19.081 [debug] <0.99.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.102.0> -2014-07-22 14:29:19.081 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> -2014-07-22 14:29:19.096 [debug] <0.106.0> Supervisor inet_gethost_native_sup started undefined at pid <0.107.0> -2014-07-22 14:29:19.097 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.106.0> -2014-07-22 14:29:19.112 [info] <0.98.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:29:19.112 [info] <0.98.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 14:29:19.113 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.96.0> -2014-07-22 14:29:19.187 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:29:19.187 [info] <0.111.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 14:29:19.187 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.110.0> -2014-07-22 14:29:19.188 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.112.0> -2014-07-22 14:29:19.194 [info] <0.98.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.98.0> -2014-07-22 14:29:19.194 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> -2014-07-22 14:29:19.194 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-22 14:29:19.326 [error] emulator Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - - -2014-07-22 14:29:19.326 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,17,112,56>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:29:19.326 [debug] <0.117.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 14:29:19.327 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated -2014-07-22 14:29:19.405 [info] <0.118.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:29:19.405 [info] <0.118.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 14:29:19.405 [warning] <0.117.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 14:29:19.405 [info] <0.118.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.118.0> -2014-07-22 14:29:19.405 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.117.0> -2014-07-22 14:29:19.632 [error] emulator Error in process <0.118.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:29:19.632 [error] <0.117.0>@basho_bench_worker:handle_info:149 Worker <0.118.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:29:19.633 [debug] <0.130.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 14:29:19.633 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.117.0> exit with reason normal in context child_terminated -2014-07-22 14:29:19.706 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:29:19.706 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:29:19.730 [info] <0.132.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:29:19.730 [info] <0.132.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 14:29:19.730 [warning] <0.130.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 14:29:19.730 [info] <0.132.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.132.0> -2014-07-22 14:29:19.731 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.130.0> -2014-07-22 14:29:19.732 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated -2014-07-22 14:29:19.817 [info] <0.138.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:29:19.818 [info] <0.138.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 14:29:19.818 [warning] <0.134.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 14:29:19.818 [info] <0.138.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.138.0> -2014-07-22 14:29:19.818 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.134.0> -2014-07-22 14:29:19.923 [error] emulator Error in process <0.138.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:29:19.923 [error] <0.134.0>@basho_bench_worker:handle_info:149 Worker <0.138.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:29:19.924 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.134.0> exit with reason normal in context child_terminated -2014-07-22 14:29:19.924 [error] <0.130.0>@basho_bench_worker:handle_info:149 Worker <0.132.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,71,180,12>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:29:19.924 [error] emulator Error in process <0.132.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - - -2014-07-22 14:29:19.999 [info] <0.148.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:29:19.999 [info] <0.148.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 14:29:19.999 [warning] <0.147.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 14:29:19.999 [info] <0.148.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.148.0> -2014-07-22 14:29:20.000 [debug] <0.149.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 14:29:20.000 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.147.0> -2014-07-22 14:29:20.001 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.130.0> exit with reason normal in context child_terminated -2014-07-22 14:29:20.040 [error] emulator Error in process <0.148.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - - -2014-07-22 14:29:20.040 [error] <0.147.0>@basho_bench_worker:handle_info:149 Worker <0.148.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,10,244,17>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:29:20.089 [info] <0.155.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:29:20.089 [info] <0.155.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 14:29:20.090 [warning] <0.149.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 14:29:20.090 [info] <0.155.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.155.0> -2014-07-22 14:29:20.090 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.149.0> -2014-07-22 14:29:20.091 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.147.0> exit with reason normal in context child_terminated -2014-07-22 14:29:20.091 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.147.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-22 14:29:20.099 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} -2014-07-22 14:29:20.099 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. -2014-07-22 14:29:20.100 [info] <0.2.0>@basho_bench:wait_for_stop:191 Test stopped: shutdown diff --git a/newtests/20140722_142917/crash.log b/newtests/20140722_142917/crash.log deleted file mode 100644 index b4c86c0d1..000000000 --- a/newtests/20140722_142917/crash.log +++ /dev/null @@ -1,60 +0,0 @@ -2014-07-22 14:29:19 =ERROR REPORT==== -Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - -2014-07-22 14:29:19 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.96.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 14:29:19 =ERROR REPORT==== -Error in process <0.118.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-22 14:29:19 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.117.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 14:29:19 =ERROR REPORT==== -Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-22 14:29:19 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 14:29:19 =ERROR REPORT==== -Error in process <0.138.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-22 14:29:19 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.134.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 14:29:19 =ERROR REPORT==== -Error in process <0.132.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - -2014-07-22 14:29:20 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.130.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 14:29:20 =ERROR REPORT==== -Error in process <0.148.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - -2014-07-22 14:29:20 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.147.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 14:29:20 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.147.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140722_142917/error.log b/newtests/20140722_142917/error.log deleted file mode 100644 index be6878689..000000000 --- a/newtests/20140722_142917/error.log +++ /dev/null @@ -1,31 +0,0 @@ -2014-07-22 14:29:19.326 [error] emulator Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - - -2014-07-22 14:29:19.326 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,17,112,56>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:29:19.327 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated -2014-07-22 14:29:19.632 [error] emulator Error in process <0.118.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:29:19.632 [error] <0.117.0>@basho_bench_worker:handle_info:149 Worker <0.118.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:29:19.633 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.117.0> exit with reason normal in context child_terminated -2014-07-22 14:29:19.706 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:29:19.706 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:29:19.732 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated -2014-07-22 14:29:19.923 [error] emulator Error in process <0.138.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:29:19.923 [error] <0.134.0>@basho_bench_worker:handle_info:149 Worker <0.138.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:29:19.924 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.134.0> exit with reason normal in context child_terminated -2014-07-22 14:29:19.924 [error] <0.130.0>@basho_bench_worker:handle_info:149 Worker <0.132.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,71,180,12>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:29:19.924 [error] emulator Error in process <0.132.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - - -2014-07-22 14:29:20.001 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.130.0> exit with reason normal in context child_terminated -2014-07-22 14:29:20.040 [error] emulator Error in process <0.148.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,<<4 bytes>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - - -2014-07-22 14:29:20.040 [error] <0.147.0>@basho_bench_worker:handle_info:149 Worker <0.148.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,<<0,10,244,17>>},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:29:20.091 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.147.0> exit with reason normal in context child_terminated -2014-07-22 14:29:20.091 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.147.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140722_142917/errors.csv b/newtests/20140722_142917/errors.csv deleted file mode 100644 index 29210b502..000000000 --- a/newtests/20140722_142917/errors.csv +++ /dev/null @@ -1 +0,0 @@ -"error","count" diff --git a/newtests/20140722_142917/floppstore.config b/newtests/20140722_142917/floppstore.config deleted file mode 100644 index bb59890f3..000000000 --- a/newtests/20140722_142917/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {uniform_int, 5000000}}. - -{value_generator, {fixed_bin, 10}}. - -{operations, [{static_tx, 1}, {interactive_tx,1}, {append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140722_142917/interactive-tx_latencies.csv b/newtests/20140722_142917/interactive-tx_latencies.csv deleted file mode 100644 index e539751a8..000000000 --- a/newtests/20140722_142917/interactive-tx_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.902586, 0.902586, 11, 17108, 56495.6, 47700, 109308, 109975, 109975, 109975, 0 diff --git a/newtests/20140722_142917/log.sasl.txt b/newtests/20140722_142917/log.sasl.txt deleted file mode 100644 index 260f0f497..000000000 --- a/newtests/20140722_142917/log.sasl.txt +++ /dev/null @@ -1,336 +0,0 @@ - -=PROGRESS REPORT==== 22-Jul-2014::14:29:18 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:29:18 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:29:18 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::14:29:18 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:29:18 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::14:29:18 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:29:18 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::14:29:18 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::14:29:18 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:29:18 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:29:18 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::14:29:18 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:29:19 === - supervisor: {local,net_sup} - started: [{pid,<0.100.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:29:19 === - supervisor: {local,net_sup} - started: [{pid,<0.101.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:29:19 === - supervisor: {local,net_sup} - started: [{pid,<0.102.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:29:19 === - supervisor: {local,kernel_sup} - started: [{pid,<0.99.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::14:29:19 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.107.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 22-Jul-2014::14:29:19 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.106.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:29:19 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.96.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:29:19 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.110.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:29:19 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.112.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:29:19 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 22-Jul-2014::14:29:19 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.96.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::14:29:19 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.117.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::14:29:19 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.117.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::14:29:19 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.130.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::14:29:19 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::14:29:19 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.134.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::14:29:19 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.134.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::14:29:19 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.147.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::14:29:20 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.130.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::14:29:20 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.149.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::14:29:20 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.147.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 22-Jul-2014::14:29:20 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.147.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140722_142917/read_latencies.csv b/newtests/20140722_142917/read_latencies.csv deleted file mode 100644 index ccfcef949..000000000 --- a/newtests/20140722_142917/read_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.902586, 0.902586, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140722_142917/static-tx_latencies.csv b/newtests/20140722_142917/static-tx_latencies.csv deleted file mode 100644 index e85635847..000000000 --- a/newtests/20140722_142917/static-tx_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.902586, 0.902586, 7, 20257, 53053.9, 57188, 79137, 79137, 79137, 79137, 0 diff --git a/newtests/20140722_142917/summary.csv b/newtests/20140722_142917/summary.csv deleted file mode 100644 index 9f1b7c9b1..000000000 --- a/newtests/20140722_142917/summary.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, total, successful, failed -0.902586, 0.902586, 27, 27, 0 diff --git a/newtests/20140722_143932/console.log b/newtests/20140722_143932/console.log deleted file mode 100644 index a1edf7689..000000000 --- a/newtests/20140722_143932/console.log +++ /dev/null @@ -1,12 +0,0 @@ -2014-07-22 14:39:32.764 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_143932/error.log"} into lager_event -2014-07-22 14:39:32.764 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_143932/console.log"} into lager_event -2014-07-22 14:39:32.764 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-22 14:39:32.797 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-22 14:39:32.797 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-22 14:39:32.797 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-22 14:39:32.797 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-22 14:39:33.240 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-22 14:39:33.613 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-22 14:39:33.614 [error] <0.2.0>@basho_bench_config:load:41 Failed to parse config file examples/floppstore.config: {13,erl_parse,["syntax error before: ","'.'"]} diff --git a/newtests/20140722_143932/crash.log b/newtests/20140722_143932/crash.log deleted file mode 100644 index e69de29bb..000000000 diff --git a/newtests/20140722_143932/error.log b/newtests/20140722_143932/error.log deleted file mode 100644 index 7b14418fa..000000000 --- a/newtests/20140722_143932/error.log +++ /dev/null @@ -1 +0,0 @@ -2014-07-22 14:39:33.614 [error] <0.2.0>@basho_bench_config:load:41 Failed to parse config file examples/floppstore.config: {13,erl_parse,["syntax error before: ","'.'"]} diff --git a/newtests/20140722_143955/console.log b/newtests/20140722_143955/console.log deleted file mode 100644 index f3248c4a2..000000000 --- a/newtests/20140722_143955/console.log +++ /dev/null @@ -1,75 +0,0 @@ -2014-07-22 14:39:55.261 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_143955/error.log"} into lager_event -2014-07-22 14:39:55.261 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_143955/console.log"} into lager_event -2014-07-22 14:39:55.261 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-22 14:39:55.301 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-22 14:39:55.301 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-22 14:39:55.301 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-22 14:39:55.302 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-22 14:39:55.735 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-22 14:39:56.147 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-22 14:39:56.148 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_143955/console.log to debug -2014-07-22 14:39:56.161 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB -2014-07-22 14:39:56.242 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-22 14:39:56.242 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-22 14:39:56.242 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-22 14:39:56.260 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-22 14:39:56.260 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-22 14:39:56.347 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-22 14:39:56.347 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-22 14:39:56.375 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-22 14:39:56.379 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-22 14:39:56.387 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-22 14:39:56.387 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-22 14:39:56.419 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-22 14:39:56.424 [debug] <0.93.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 14:39:56.550 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> -2014-07-22 14:39:56.557 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> -2014-07-22 14:39:56.570 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-22 14:39:56.571 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> -2014-07-22 14:39:56.571 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> -2014-07-22 14:39:56.586 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> -2014-07-22 14:39:56.587 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> -2014-07-22 14:39:56.606 [info] <0.95.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:39:56.606 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 14:39:56.607 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.93.0> -2014-07-22 14:39:56.680 [info] <0.108.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:39:56.680 [info] <0.108.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 14:39:56.680 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.107.0> -2014-07-22 14:39:56.680 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.109.0> -2014-07-22 14:39:56.685 [info] <0.108.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.108.0> -2014-07-22 14:39:56.685 [info] <0.95.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.95.0> -2014-07-22 14:39:56.686 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-22 14:40:40.268 [error] emulator Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-22 14:40:40.268 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:40:40.269 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-22 14:40:40.346 [info] <0.4012.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:40:40.346 [info] <0.4012.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 14:40:40.346 [warning] <0.4011.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 14:40:40.347 [info] <0.4012.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.4012.0> -2014-07-22 14:40:40.347 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.4011.0> -2014-07-22 14:40:40.745 [error] <0.93.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:40:40.745 [error] emulator Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-22 14:40:40.745 [debug] <0.4031.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 14:40:40.747 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.93.0> exit with reason normal in context child_terminated -2014-07-22 14:40:40.856 [info] <0.4035.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:40:40.856 [info] <0.4035.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 14:40:40.856 [warning] <0.4031.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 14:40:40.856 [info] <0.4035.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.4035.0> -2014-07-22 14:40:40.857 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.4031.0> -2014-07-22 14:40:45.163 [error] emulator Error in process <0.4035.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-22 14:40:45.163 [error] <0.4031.0>@basho_bench_worker:handle_info:149 Worker <0.4035.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:40:45.163 [debug] <0.4357.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 14:40:45.164 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.4031.0> exit with reason normal in context child_terminated -2014-07-22 14:40:45.254 [info] <0.4358.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:40:45.254 [info] <0.4358.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 14:40:45.254 [warning] <0.4357.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 14:40:45.254 [info] <0.4358.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.4358.0> -2014-07-22 14:40:45.255 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.4357.0> diff --git a/newtests/20140722_143955/crash.log b/newtests/20140722_143955/crash.log deleted file mode 100644 index a1fabdb12..000000000 --- a/newtests/20140722_143955/crash.log +++ /dev/null @@ -1,27 +0,0 @@ -2014-07-22 14:40:40 =ERROR REPORT==== -Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - -2014-07-22 14:40:40 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 14:40:40 =ERROR REPORT==== -Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - -2014-07-22 14:40:40 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.93.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 14:40:45 =ERROR REPORT==== -Error in process <0.4035.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - -2014-07-22 14:40:45 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.4031.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140722_143955/error.log b/newtests/20140722_143955/error.log deleted file mode 100644 index 22bfa1667..000000000 --- a/newtests/20140722_143955/error.log +++ /dev/null @@ -1,15 +0,0 @@ -2014-07-22 14:40:40.268 [error] emulator Error in process <0.108.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-22 14:40:40.268 [error] <0.107.0>@basho_bench_worker:handle_info:149 Worker <0.108.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:40:40.269 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.107.0> exit with reason normal in context child_terminated -2014-07-22 14:40:40.745 [error] <0.93.0>@basho_bench_worker:handle_info:149 Worker <0.95.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:40:40.745 [error] emulator Error in process <0.95.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-22 14:40:40.747 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.93.0> exit with reason normal in context child_terminated -2014-07-22 14:40:45.163 [error] emulator Error in process <0.4035.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-22 14:40:45.163 [error] <0.4031.0>@basho_bench_worker:handle_info:149 Worker <0.4035.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:40:45.164 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.4031.0> exit with reason normal in context child_terminated diff --git a/newtests/20140722_143955/errors.csv b/newtests/20140722_143955/errors.csv deleted file mode 100644 index 29210b502..000000000 --- a/newtests/20140722_143955/errors.csv +++ /dev/null @@ -1 +0,0 @@ -"error","count" diff --git a/newtests/20140722_143955/floppstore.config b/newtests/20140722_143955/floppstore.config deleted file mode 100644 index 7d342dacb..000000000 --- a/newtests/20140722_143955/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {uniform_int, 5000000}}. - -{value_generator, {fixed_bin, 10}}. - -{operations, [{static_tx, 1}]}. %%, {interactive_tx,1}, {append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140722_143955/log.sasl.txt b/newtests/20140722_143955/log.sasl.txt deleted file mode 100644 index 88937d4e1..000000000 --- a/newtests/20140722_143955/log.sasl.txt +++ /dev/null @@ -1,258 +0,0 @@ - -=PROGRESS REPORT==== 22-Jul-2014::14:39:56 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:39:56 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:39:56 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::14:39:56 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:39:56 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::14:39:56 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:39:56 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::14:39:56 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::14:39:56 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:39:56 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:39:56 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::14:39:56 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:39:56 === - supervisor: {local,net_sup} - started: [{pid,<0.97.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:39:56 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:39:56 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:39:56 === - supervisor: {local,kernel_sup} - started: [{pid,<0.96.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::14:39:56 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 22-Jul-2014::14:39:56 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.103.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:39:56 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.93.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:39:56 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:39:56 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.109.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:39:56 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 22-Jul-2014::14:40:40 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.107.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::14:40:40 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.4011.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::14:40:40 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.93.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::14:40:40 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.4031.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::14:40:45 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.4031.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::14:40:45 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.4357.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] diff --git a/newtests/20140722_143955/static-tx_latencies.csv b/newtests/20140722_143955/static-tx_latencies.csv deleted file mode 100644 index 441c30dee..000000000 --- a/newtests/20140722_143955/static-tx_latencies.csv +++ /dev/null @@ -1,6 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -10.002009, 10.002009, 998, 5680, 19994.0, 19108, 24557, 31551, 126233, 129429, 0 -20.002514, 10.000505, 938, 6813, 21126.6, 20496, 25617, 35413, 119117, 128775, 0 -30.001379, 9.998865, 872, 8810, 22763.8, 21618, 26740, 36549, 131853, 138186, 0 -40.000976, 9.999597, 868, 9868, 23350.3, 22875, 28058, 31661, 122229, 138186, 0 -50.001953, 10.000977, 662, 10017, 25089.7, 24142, 30233, 48381, 124304, 134351, 0 diff --git a/newtests/20140722_143955/summary.csv b/newtests/20140722_143955/summary.csv deleted file mode 100644 index 3d5b882af..000000000 --- a/newtests/20140722_143955/summary.csv +++ /dev/null @@ -1,6 +0,0 @@ -elapsed, window, total, successful, failed -10.002009, 10.002009, 998, 998, 0 -20.002514, 10.000505, 938, 938, 0 -30.001379, 9.998865, 872, 872, 0 -40.000976, 9.999597, 868, 868, 0 -50.001953, 10.000977, 662, 662, 0 diff --git a/newtests/20140722_144135/console.log b/newtests/20140722_144135/console.log deleted file mode 100644 index 71d640610..000000000 --- a/newtests/20140722_144135/console.log +++ /dev/null @@ -1,36 +0,0 @@ -2014-07-22 14:41:35.458 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_144135/error.log"} into lager_event -2014-07-22 14:41:35.458 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_144135/console.log"} into lager_event -2014-07-22 14:41:35.458 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-22 14:41:35.494 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-22 14:41:35.494 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-22 14:41:35.494 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-22 14:41:35.495 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-22 14:41:35.934 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-22 14:41:36.326 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-22 14:41:36.327 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_144135/console.log to debug -2014-07-22 14:41:36.341 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB -2014-07-22 14:41:36.426 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-22 14:41:36.427 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-22 14:41:36.427 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-22 14:41:36.442 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-22 14:41:36.442 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-22 14:41:36.530 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-22 14:41:36.530 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-22 14:41:36.561 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-22 14:41:36.566 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-22 14:41:36.571 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-22 14:41:36.571 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-22 14:41:36.605 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-22 14:41:36.610 [debug] <0.93.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 14:41:36.740 [debug] <0.96.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.97.0> -2014-07-22 14:41:36.747 [debug] <0.96.0> Supervisor net_sup started auth:start_link() at pid <0.98.0> -2014-07-22 14:41:36.760 [info] <0.95.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-22 14:41:36.761 [debug] <0.96.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> -2014-07-22 14:41:36.761 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.96.0> -2014-07-22 14:41:36.774 [debug] <0.103.0> Supervisor inet_gethost_native_sup started undefined at pid <0.104.0> -2014-07-22 14:41:36.775 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.103.0> -2014-07-22 14:41:36.791 [error] <0.95.0>@basho_bench_driver_floppystore:ping_each:162 Failed to ping node 'floppy@127.0.0.1' -2014-07-22 14:41:36.791 [info] <0.95.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 14:41:36.839 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.93.0> diff --git a/newtests/20140722_144135/crash.log b/newtests/20140722_144135/crash.log deleted file mode 100644 index e69de29bb..000000000 diff --git a/newtests/20140722_144135/error.log b/newtests/20140722_144135/error.log deleted file mode 100644 index f2c2c5bb2..000000000 --- a/newtests/20140722_144135/error.log +++ /dev/null @@ -1 +0,0 @@ -2014-07-22 14:41:36.791 [error] <0.95.0>@basho_bench_driver_floppystore:ping_each:162 Failed to ping node 'floppy@127.0.0.1' diff --git a/newtests/20140722_144135/errors.csv b/newtests/20140722_144135/errors.csv deleted file mode 100644 index 29210b502..000000000 --- a/newtests/20140722_144135/errors.csv +++ /dev/null @@ -1 +0,0 @@ -"error","count" diff --git a/newtests/20140722_144135/floppstore.config b/newtests/20140722_144135/floppstore.config deleted file mode 100644 index 7d342dacb..000000000 --- a/newtests/20140722_144135/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {uniform_int, 5000000}}. - -{value_generator, {fixed_bin, 10}}. - -{operations, [{static_tx, 1}]}. %%, {interactive_tx,1}, {append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140722_144135/log.sasl.txt b/newtests/20140722_144135/log.sasl.txt deleted file mode 100644 index df8acd8f6..000000000 --- a/newtests/20140722_144135/log.sasl.txt +++ /dev/null @@ -1,159 +0,0 @@ - -=PROGRESS REPORT==== 22-Jul-2014::14:41:36 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:41:36 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:41:36 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::14:41:36 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:41:36 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::14:41:36 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:41:36 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::14:41:36 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::14:41:36 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:41:36 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:41:36 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::14:41:36 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:41:36 === - supervisor: {local,net_sup} - started: [{pid,<0.97.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:41:36 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:41:36 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:41:36 === - supervisor: {local,kernel_sup} - started: [{pid,<0.96.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::14:41:36 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.104.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 22-Jul-2014::14:41:36 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.103.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:41:36 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.93.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] diff --git a/newtests/20140722_144135/static-tx_latencies.csv b/newtests/20140722_144135/static-tx_latencies.csv deleted file mode 100644 index 2cee6f0d8..000000000 --- a/newtests/20140722_144135/static-tx_latencies.csv +++ /dev/null @@ -1 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors diff --git a/newtests/20140722_144135/summary.csv b/newtests/20140722_144135/summary.csv deleted file mode 100644 index fa9e41e5d..000000000 --- a/newtests/20140722_144135/summary.csv +++ /dev/null @@ -1 +0,0 @@ -elapsed, window, total, successful, failed diff --git a/newtests/20140722_144554/append_latencies.csv b/newtests/20140722_144554/append_latencies.csv deleted file mode 100644 index a9a1e5b08..000000000 --- a/newtests/20140722_144554/append_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.869977, 0.869977, 20, 1053, 4423.9, 2263, 13689, 16607, 16607, 16607, 0 diff --git a/newtests/20140722_144554/console.log b/newtests/20140722_144554/console.log deleted file mode 100644 index 7e0e58428..000000000 --- a/newtests/20140722_144554/console.log +++ /dev/null @@ -1,102 +0,0 @@ -2014-07-22 14:45:55.111 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_144554/error.log"} into lager_event -2014-07-22 14:45:55.111 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_144554/console.log"} into lager_event -2014-07-22 14:45:55.111 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-22 14:45:55.146 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-22 14:45:55.146 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-22 14:45:55.146 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-22 14:45:55.147 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-22 14:45:55.586 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-22 14:45:56.025 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-22 14:45:56.026 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_144554/console.log to debug -2014-07-22 14:45:56.038 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB -2014-07-22 14:45:56.121 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-22 14:45:56.121 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-22 14:45:56.122 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-22 14:45:56.136 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-22 14:45:56.137 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-22 14:45:56.227 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-22 14:45:56.227 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-22 14:45:56.256 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-22 14:45:56.261 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-22 14:45:56.267 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-22 14:45:56.267 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-22 14:45:56.302 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-22 14:45:56.309 [debug] <0.96.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 14:45:56.441 [debug] <0.99.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.100.0> -2014-07-22 14:45:56.448 [debug] <0.99.0> Supervisor net_sup started auth:start_link() at pid <0.101.0> -2014-07-22 14:45:56.462 [info] <0.98.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-22 14:45:56.462 [debug] <0.99.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.102.0> -2014-07-22 14:45:56.463 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> -2014-07-22 14:45:56.477 [debug] <0.106.0> Supervisor inet_gethost_native_sup started undefined at pid <0.107.0> -2014-07-22 14:45:56.477 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.106.0> -2014-07-22 14:45:56.497 [info] <0.98.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:45:56.497 [info] <0.98.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 14:45:56.498 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.96.0> -2014-07-22 14:45:56.575 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:45:56.575 [info] <0.111.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 14:45:56.575 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.110.0> -2014-07-22 14:45:56.576 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.112.0> -2014-07-22 14:45:56.581 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> -2014-07-22 14:45:56.581 [info] <0.98.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.98.0> -2014-07-22 14:45:56.581 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-22 14:45:56.824 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,41962},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - - -2014-07-22 14:45:56.824 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,41962},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:45:56.825 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated -2014-07-22 14:45:56.923 [error] emulator Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,486344},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - - -2014-07-22 14:45:56.923 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,486344},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:45:56.963 [info] <0.143.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:45:56.963 [info] <0.143.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 14:45:56.963 [warning] <0.134.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 14:45:56.963 [info] <0.143.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.143.0> -2014-07-22 14:45:56.963 [debug] <0.145.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 14:45:56.964 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.134.0> -2014-07-22 14:45:56.964 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated -2014-07-22 14:45:57.055 [info] <0.147.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:45:57.055 [info] <0.147.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 14:45:57.055 [warning] <0.145.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 14:45:57.055 [info] <0.147.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.147.0> -2014-07-22 14:45:57.056 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.145.0> -2014-07-22 14:45:57.086 [error] emulator Error in process <0.143.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,41962},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - - -2014-07-22 14:45:57.086 [error] <0.134.0>@basho_bench_worker:handle_info:149 Worker <0.143.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,41962},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:45:57.087 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.134.0> exit with reason normal in context child_terminated -2014-07-22 14:45:57.136 [error] emulator Error in process <0.147.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,486344},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - - -2014-07-22 14:45:57.136 [error] <0.145.0>@basho_bench_worker:handle_info:149 Worker <0.147.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,486344},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:45:57.161 [info] <0.157.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:45:57.161 [info] <0.157.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 14:45:57.161 [warning] <0.156.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 14:45:57.161 [info] <0.157.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.157.0> -2014-07-22 14:45:57.162 [debug] <0.159.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 14:45:57.162 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.156.0> -2014-07-22 14:45:57.163 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.145.0> exit with reason normal in context child_terminated -2014-07-22 14:45:57.258 [info] <0.164.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:45:57.259 [info] <0.164.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 14:45:57.259 [warning] <0.159.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 14:45:57.259 [info] <0.164.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.164.0> -2014-07-22 14:45:57.259 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.159.0> -2014-07-22 14:45:57.297 [error] emulator Error in process <0.157.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,3809279},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - - -2014-07-22 14:45:57.297 [error] <0.156.0>@basho_bench_worker:handle_info:149 Worker <0.157.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,3809279},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:45:57.298 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.156.0> exit with reason normal in context child_terminated -2014-07-22 14:45:57.357 [error] emulator Error in process <0.164.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:45:57.357 [error] <0.159.0>@basho_bench_worker:handle_info:149 Worker <0.164.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:45:57.445 [info] <0.182.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:45:57.445 [info] <0.182.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 14:45:57.445 [warning] <0.172.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 14:45:57.445 [info] <0.182.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.182.0> -2014-07-22 14:45:57.445 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.172.0> -2014-07-22 14:45:57.447 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.159.0> exit with reason normal in context child_terminated -2014-07-22 14:45:57.448 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.159.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-22 14:45:57.457 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. diff --git a/newtests/20140722_144554/crash.log b/newtests/20140722_144554/crash.log deleted file mode 100644 index 7d6f17940..000000000 --- a/newtests/20140722_144554/crash.log +++ /dev/null @@ -1,60 +0,0 @@ -2014-07-22 14:45:56 =ERROR REPORT==== -Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,41962},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - -2014-07-22 14:45:56 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 14:45:56 =ERROR REPORT==== -Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,486344},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - -2014-07-22 14:45:56 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.96.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 14:45:57 =ERROR REPORT==== -Error in process <0.143.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,41962},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - -2014-07-22 14:45:57 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.134.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 14:45:57 =ERROR REPORT==== -Error in process <0.147.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,486344},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - -2014-07-22 14:45:57 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.145.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 14:45:57 =ERROR REPORT==== -Error in process <0.157.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,3809279},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - -2014-07-22 14:45:57 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.156.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 14:45:57 =ERROR REPORT==== -Error in process <0.164.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-22 14:45:57 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.159.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 14:45:57 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.159.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140722_144554/error.log b/newtests/20140722_144554/error.log deleted file mode 100644 index 2fb6cc09f..000000000 --- a/newtests/20140722_144554/error.log +++ /dev/null @@ -1,31 +0,0 @@ -2014-07-22 14:45:56.824 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,41962},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - - -2014-07-22 14:45:56.824 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,41962},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:45:56.825 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated -2014-07-22 14:45:56.923 [error] emulator Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,486344},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - - -2014-07-22 14:45:56.923 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,486344},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:45:56.964 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated -2014-07-22 14:45:57.086 [error] emulator Error in process <0.143.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,41962},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - - -2014-07-22 14:45:57.086 [error] <0.134.0>@basho_bench_worker:handle_info:149 Worker <0.143.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,41962},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:45:57.087 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.134.0> exit with reason normal in context child_terminated -2014-07-22 14:45:57.136 [error] emulator Error in process <0.147.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,486344},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - - -2014-07-22 14:45:57.136 [error] <0.145.0>@basho_bench_worker:handle_info:149 Worker <0.147.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,486344},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:45:57.163 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.145.0> exit with reason normal in context child_terminated -2014-07-22 14:45:57.297 [error] emulator Error in process <0.157.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,3809279},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - - -2014-07-22 14:45:57.297 [error] <0.156.0>@basho_bench_worker:handle_info:149 Worker <0.157.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,3809279},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:45:57.298 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.156.0> exit with reason normal in context child_terminated -2014-07-22 14:45:57.357 [error] emulator Error in process <0.164.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:45:57.357 [error] <0.159.0>@basho_bench_worker:handle_info:149 Worker <0.164.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:45:57.447 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.159.0> exit with reason normal in context child_terminated -2014-07-22 14:45:57.448 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.159.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140722_144554/errors.csv b/newtests/20140722_144554/errors.csv deleted file mode 100644 index 29210b502..000000000 --- a/newtests/20140722_144554/errors.csv +++ /dev/null @@ -1 +0,0 @@ -"error","count" diff --git a/newtests/20140722_144554/floppstore.config b/newtests/20140722_144554/floppstore.config deleted file mode 100644 index bb59890f3..000000000 --- a/newtests/20140722_144554/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {uniform_int, 5000000}}. - -{value_generator, {fixed_bin, 10}}. - -{operations, [{static_tx, 1}, {interactive_tx,1}, {append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140722_144554/interactive-tx_latencies.csv b/newtests/20140722_144554/interactive-tx_latencies.csv deleted file mode 100644 index 9bd175b49..000000000 --- a/newtests/20140722_144554/interactive-tx_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.869977, 0.869977, 15, 17982, 36356.5, 26192, 83437, 83877, 83877, 83877, 0 diff --git a/newtests/20140722_144554/log.sasl.txt b/newtests/20140722_144554/log.sasl.txt deleted file mode 100644 index 9655461ad..000000000 --- a/newtests/20140722_144554/log.sasl.txt +++ /dev/null @@ -1,336 +0,0 @@ - -=PROGRESS REPORT==== 22-Jul-2014::14:45:56 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:45:56 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:45:56 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::14:45:56 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:45:56 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::14:45:56 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:45:56 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::14:45:56 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::14:45:56 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:45:56 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:45:56 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::14:45:56 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:45:56 === - supervisor: {local,net_sup} - started: [{pid,<0.100.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:45:56 === - supervisor: {local,net_sup} - started: [{pid,<0.101.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:45:56 === - supervisor: {local,net_sup} - started: [{pid,<0.102.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:45:56 === - supervisor: {local,kernel_sup} - started: [{pid,<0.99.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::14:45:56 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.107.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 22-Jul-2014::14:45:56 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.106.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:45:56 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.96.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:45:56 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.110.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:45:56 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.112.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:45:56 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 22-Jul-2014::14:45:56 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::14:45:56 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.134.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::14:45:56 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.96.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::14:45:57 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.145.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::14:45:57 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.134.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::14:45:57 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.156.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::14:45:57 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.145.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::14:45:57 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.159.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::14:45:57 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.156.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::14:45:57 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.172.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::14:45:57 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.159.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 22-Jul-2014::14:45:57 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.159.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140722_144554/read_latencies.csv b/newtests/20140722_144554/read_latencies.csv deleted file mode 100644 index fcbcb0edd..000000000 --- a/newtests/20140722_144554/read_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.869977, 0.869977, 6, 1873, 6045.3, 3640, 13595, 13595, 13595, 13595, 0 diff --git a/newtests/20140722_144554/static-tx_latencies.csv b/newtests/20140722_144554/static-tx_latencies.csv deleted file mode 100644 index 4542c4608..000000000 --- a/newtests/20140722_144554/static-tx_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.869977, 0.869977, 13, 18121, 23661.8, 20696, 30823, 34987, 34987, 34987, 0 diff --git a/newtests/20140722_144554/summary.csv b/newtests/20140722_144554/summary.csv deleted file mode 100644 index 9d91de0cd..000000000 --- a/newtests/20140722_144554/summary.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, total, successful, failed -0.869977, 0.869977, 54, 54, 0 diff --git a/newtests/20140722_144834/append_latencies.csv b/newtests/20140722_144834/append_latencies.csv deleted file mode 100644 index d03b510ac..000000000 --- a/newtests/20140722_144834/append_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -1.092345, 1.092345, 6, 1207, 17413.8, 16602, 42194, 42194, 42194, 42194, 0 diff --git a/newtests/20140722_144834/console.log b/newtests/20140722_144834/console.log deleted file mode 100644 index 2b9681530..000000000 --- a/newtests/20140722_144834/console.log +++ /dev/null @@ -1,103 +0,0 @@ -2014-07-22 14:48:34.657 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_144834/error.log"} into lager_event -2014-07-22 14:48:34.657 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_144834/console.log"} into lager_event -2014-07-22 14:48:34.657 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-22 14:48:34.697 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-22 14:48:34.697 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-22 14:48:34.697 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-22 14:48:34.697 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-22 14:48:35.133 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-22 14:48:35.495 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-22 14:48:35.496 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_144834/console.log to debug -2014-07-22 14:48:35.509 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB -2014-07-22 14:48:35.586 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-22 14:48:35.587 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-22 14:48:35.587 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-22 14:48:35.602 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-22 14:48:35.602 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-22 14:48:35.692 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-22 14:48:35.692 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-22 14:48:35.726 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-22 14:48:35.736 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-22 14:48:35.746 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-22 14:48:35.747 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-22 14:48:35.793 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-22 14:48:35.799 [debug] <0.96.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 14:48:35.935 [debug] <0.99.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.100.0> -2014-07-22 14:48:35.942 [debug] <0.99.0> Supervisor net_sup started auth:start_link() at pid <0.101.0> -2014-07-22 14:48:35.955 [info] <0.98.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-22 14:48:35.955 [debug] <0.99.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.102.0> -2014-07-22 14:48:35.956 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> -2014-07-22 14:48:35.973 [debug] <0.106.0> Supervisor inet_gethost_native_sup started undefined at pid <0.107.0> -2014-07-22 14:48:35.974 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.106.0> -2014-07-22 14:48:35.994 [info] <0.98.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:48:35.994 [info] <0.98.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 14:48:35.995 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.96.0> -2014-07-22 14:48:36.073 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:48:36.073 [info] <0.111.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 14:48:36.073 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.110.0> -2014-07-22 14:48:36.074 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.112.0> -2014-07-22 14:48:36.080 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> -2014-07-22 14:48:36.080 [info] <0.98.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.98.0> -2014-07-22 14:48:36.080 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-22 14:48:36.418 [error] emulator Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,475125},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - - -2014-07-22 14:48:36.418 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,475125},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:48:36.418 [debug] <0.121.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 14:48:36.418 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated -2014-07-22 14:48:36.504 [info] <0.122.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:48:36.504 [info] <0.122.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 14:48:36.504 [warning] <0.121.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 14:48:36.504 [info] <0.122.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.122.0> -2014-07-22 14:48:36.504 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.121.0> -2014-07-22 14:48:36.717 [error] emulator Error in process <0.122.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:48:36.717 [error] <0.121.0>@basho_bench_worker:handle_info:149 Worker <0.122.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:48:36.717 [debug] <0.134.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 14:48:36.718 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.121.0> exit with reason normal in context child_terminated -2014-07-22 14:48:36.734 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,652713},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - - -2014-07-22 14:48:36.735 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,652713},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:48:36.794 [info] <0.135.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:48:36.794 [info] <0.135.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 14:48:36.794 [warning] <0.134.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 14:48:36.794 [info] <0.135.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.135.0> -2014-07-22 14:48:36.794 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.134.0> -2014-07-22 14:48:36.795 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated -2014-07-22 14:48:36.887 [info] <0.138.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:48:36.887 [info] <0.138.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 14:48:36.887 [warning] <0.136.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 14:48:36.887 [info] <0.138.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.138.0> -2014-07-22 14:48:36.888 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.136.0> -2014-07-22 14:48:36.992 [error] emulator Error in process <0.138.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,3809279},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - - -2014-07-22 14:48:36.992 [error] <0.136.0>@basho_bench_worker:handle_info:149 Worker <0.138.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,3809279},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:48:36.993 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.136.0> exit with reason normal in context child_terminated -2014-07-22 14:48:37.069 [error] emulator Error in process <0.135.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,309625},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - - -2014-07-22 14:48:37.069 [error] <0.134.0>@basho_bench_worker:handle_info:149 Worker <0.135.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,309625},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:48:37.078 [info] <0.146.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:48:37.078 [info] <0.146.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 14:48:37.078 [warning] <0.145.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 14:48:37.078 [info] <0.146.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.146.0> -2014-07-22 14:48:37.078 [debug] <0.150.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 14:48:37.079 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.145.0> -2014-07-22 14:48:37.079 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.134.0> exit with reason normal in context child_terminated -2014-07-22 14:48:37.147 [error] emulator Error in process <0.146.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,309625},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - - -2014-07-22 14:48:37.147 [error] <0.145.0>@basho_bench_worker:handle_info:149 Worker <0.146.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,309625},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:48:37.165 [info] <0.156.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 14:48:37.165 [info] <0.156.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 14:48:37.165 [warning] <0.150.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 14:48:37.165 [info] <0.156.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.156.0> -2014-07-22 14:48:37.166 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.150.0> -2014-07-22 14:48:37.166 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.145.0> exit with reason normal in context child_terminated -2014-07-22 14:48:37.167 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.145.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-22 14:48:37.175 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. diff --git a/newtests/20140722_144834/crash.log b/newtests/20140722_144834/crash.log deleted file mode 100644 index ef1ae1b0a..000000000 --- a/newtests/20140722_144834/crash.log +++ /dev/null @@ -1,60 +0,0 @@ -2014-07-22 14:48:36 =ERROR REPORT==== -Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,475125},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - -2014-07-22 14:48:36 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.96.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 14:48:36 =ERROR REPORT==== -Error in process <0.122.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-22 14:48:36 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.121.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 14:48:36 =ERROR REPORT==== -Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,652713},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - -2014-07-22 14:48:36 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 14:48:37 =ERROR REPORT==== -Error in process <0.138.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,3809279},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - -2014-07-22 14:48:37 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.136.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 14:48:37 =ERROR REPORT==== -Error in process <0.135.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,309625},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - -2014-07-22 14:48:37 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.134.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 14:48:37 =ERROR REPORT==== -Error in process <0.146.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,309625},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - -2014-07-22 14:48:37 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.145.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 14:48:37 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.145.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140722_144834/error.log b/newtests/20140722_144834/error.log deleted file mode 100644 index da7ec1b23..000000000 --- a/newtests/20140722_144834/error.log +++ /dev/null @@ -1,31 +0,0 @@ -2014-07-22 14:48:36.418 [error] emulator Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,475125},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - - -2014-07-22 14:48:36.418 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,475125},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:48:36.418 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated -2014-07-22 14:48:36.717 [error] emulator Error in process <0.122.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-22 14:48:36.717 [error] <0.121.0>@basho_bench_worker:handle_info:149 Worker <0.122.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:48:36.718 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.121.0> exit with reason normal in context child_terminated -2014-07-22 14:48:36.734 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,652713},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - - -2014-07-22 14:48:36.735 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,652713},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:48:36.795 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.110.0> exit with reason normal in context child_terminated -2014-07-22 14:48:36.992 [error] emulator Error in process <0.138.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,3809279},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - - -2014-07-22 14:48:36.992 [error] <0.136.0>@basho_bench_worker:handle_info:149 Worker <0.138.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,3809279},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:48:36.993 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.136.0> exit with reason normal in context child_terminated -2014-07-22 14:48:37.069 [error] emulator Error in process <0.135.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,309625},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - - -2014-07-22 14:48:37.069 [error] <0.134.0>@basho_bench_worker:handle_info:149 Worker <0.135.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,309625},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:48:37.079 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.134.0> exit with reason normal in context child_terminated -2014-07-22 14:48:37.147 [error] emulator Error in process <0.146.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{case_clause,309625},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.er... - - -2014-07-22 14:48:37.147 [error] <0.145.0>@basho_bench_worker:handle_info:149 Worker <0.146.0> exited with {{case_clause,{badrpc,{'EXIT',{{case_clause,309625},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,28}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,36}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 14:48:37.166 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.145.0> exit with reason normal in context child_terminated -2014-07-22 14:48:37.167 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.145.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140722_144834/errors.csv b/newtests/20140722_144834/errors.csv deleted file mode 100644 index 29210b502..000000000 --- a/newtests/20140722_144834/errors.csv +++ /dev/null @@ -1 +0,0 @@ -"error","count" diff --git a/newtests/20140722_144834/floppstore.config b/newtests/20140722_144834/floppstore.config deleted file mode 100644 index bb59890f3..000000000 --- a/newtests/20140722_144834/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {uniform_int, 5000000}}. - -{value_generator, {fixed_bin, 10}}. - -{operations, [{static_tx, 1}, {interactive_tx,1}, {append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140722_144834/interactive-tx_latencies.csv b/newtests/20140722_144834/interactive-tx_latencies.csv deleted file mode 100644 index 2f48b1593..000000000 --- a/newtests/20140722_144834/interactive-tx_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -1.092345, 1.092345, 12, 41984, 91192.5, 85340, 152896, 153295, 153295, 153295, 0 diff --git a/newtests/20140722_144834/log.sasl.txt b/newtests/20140722_144834/log.sasl.txt deleted file mode 100644 index 84529fd6e..000000000 --- a/newtests/20140722_144834/log.sasl.txt +++ /dev/null @@ -1,336 +0,0 @@ - -=PROGRESS REPORT==== 22-Jul-2014::14:48:35 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:48:35 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:48:35 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::14:48:35 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:48:35 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::14:48:35 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:48:35 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::14:48:35 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::14:48:35 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:48:35 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:48:35 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::14:48:35 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:48:35 === - supervisor: {local,net_sup} - started: [{pid,<0.100.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:48:35 === - supervisor: {local,net_sup} - started: [{pid,<0.101.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:48:35 === - supervisor: {local,net_sup} - started: [{pid,<0.102.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:48:35 === - supervisor: {local,kernel_sup} - started: [{pid,<0.99.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::14:48:35 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.107.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 22-Jul-2014::14:48:35 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.106.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:48:35 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.96.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:48:36 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.110.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:48:36 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.112.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::14:48:36 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 22-Jul-2014::14:48:36 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.96.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::14:48:36 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.121.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::14:48:36 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.121.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::14:48:36 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.134.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::14:48:36 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::14:48:36 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.136.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::14:48:36 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.136.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::14:48:37 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.145.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::14:48:37 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.134.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::14:48:37 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.150.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::14:48:37 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.145.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 22-Jul-2014::14:48:37 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.145.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140722_144834/read_latencies.csv b/newtests/20140722_144834/read_latencies.csv deleted file mode 100644 index 90a56e013..000000000 --- a/newtests/20140722_144834/read_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -1.092345, 1.092345, 6, 1452, 20919.3, 17999, 42787, 42787, 42787, 42787, 0 diff --git a/newtests/20140722_144834/static-tx_latencies.csv b/newtests/20140722_144834/static-tx_latencies.csv deleted file mode 100644 index 4089028c5..000000000 --- a/newtests/20140722_144834/static-tx_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -1.092345, 1.092345, 5, 19926, 45680.8, 42995, 75381, 75381, 75381, 75381, 0 diff --git a/newtests/20140722_144834/summary.csv b/newtests/20140722_144834/summary.csv deleted file mode 100644 index 8a89997d2..000000000 --- a/newtests/20140722_144834/summary.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, total, successful, failed -1.092345, 1.092345, 29, 29, 0 diff --git a/newtests/20140722_150342/console.log b/newtests/20140722_150342/console.log deleted file mode 100644 index 3ca8778d8..000000000 --- a/newtests/20140722_150342/console.log +++ /dev/null @@ -1,18 +0,0 @@ -2014-07-22 15:03:42.243 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_150342/error.log"} into lager_event -2014-07-22 15:03:42.243 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_150342/console.log"} into lager_event -2014-07-22 15:03:42.243 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-22 15:03:42.277 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-22 15:03:42.277 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-22 15:03:42.277 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-22 15:03:42.277 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-22 15:03:42.714 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-22 15:03:43.094 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-22 15:03:43.095 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_150342/console.log to debug -2014-07-22 15:03:43.110 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB -2014-07-22 15:03:43.182 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-22 15:03:43.182 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-22 15:03:43.182 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-22 15:03:43.198 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-22 15:03:43.199 [info] <0.7.0> Application sasl started on node nonode@nohost diff --git a/newtests/20140722_150342/crash.log b/newtests/20140722_150342/crash.log deleted file mode 100644 index e69de29bb..000000000 diff --git a/newtests/20140722_150342/error.log b/newtests/20140722_150342/error.log deleted file mode 100644 index e69de29bb..000000000 diff --git a/newtests/20140722_150342/errors.csv b/newtests/20140722_150342/errors.csv deleted file mode 100644 index 29210b502..000000000 --- a/newtests/20140722_150342/errors.csv +++ /dev/null @@ -1 +0,0 @@ -"error","count" diff --git a/newtests/20140722_150342/floppstore.config b/newtests/20140722_150342/floppstore.config deleted file mode 100644 index a222d5344..000000000 --- a/newtests/20140722_150342/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {uniform_int, 5000000}}. - -{value_generator, {fixed_bin, 10}}. - -{operations, [{static_tx, 1}, {interactive_tx,1}]}. %%, {append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140722_150342/interactive-tx_latencies.csv b/newtests/20140722_150342/interactive-tx_latencies.csv deleted file mode 100644 index 2cee6f0d8..000000000 --- a/newtests/20140722_150342/interactive-tx_latencies.csv +++ /dev/null @@ -1 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors diff --git a/newtests/20140722_150342/log.sasl.txt b/newtests/20140722_150342/log.sasl.txt deleted file mode 100644 index 977ce2ad1..000000000 --- a/newtests/20140722_150342/log.sasl.txt +++ /dev/null @@ -1,113 +0,0 @@ - -=PROGRESS REPORT==== 22-Jul-2014::15:03:43 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:03:43 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:03:43 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::15:03:43 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:03:43 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::15:03:43 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:03:43 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::15:03:43 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::15:03:43 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:03:43 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:03:43 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::15:03:43 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:03:43 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:03:43 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] diff --git a/newtests/20140722_150342/static-tx_latencies.csv b/newtests/20140722_150342/static-tx_latencies.csv deleted file mode 100644 index 2cee6f0d8..000000000 --- a/newtests/20140722_150342/static-tx_latencies.csv +++ /dev/null @@ -1 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors diff --git a/newtests/20140722_150342/summary.csv b/newtests/20140722_150342/summary.csv deleted file mode 100644 index fa9e41e5d..000000000 --- a/newtests/20140722_150342/summary.csv +++ /dev/null @@ -1 +0,0 @@ -elapsed, window, total, successful, failed diff --git a/newtests/20140722_150549/console.log b/newtests/20140722_150549/console.log deleted file mode 100644 index a931ee53b..000000000 --- a/newtests/20140722_150549/console.log +++ /dev/null @@ -1,43 +0,0 @@ -2014-07-22 15:05:50.005 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_150549/error.log"} into lager_event -2014-07-22 15:05:50.005 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_150549/console.log"} into lager_event -2014-07-22 15:05:50.005 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-22 15:05:50.045 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-22 15:05:50.045 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-22 15:05:50.045 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-22 15:05:50.045 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-22 15:05:50.480 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-22 15:05:50.840 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-22 15:05:50.841 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_150549/console.log to debug -2014-07-22 15:05:50.855 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB -2014-07-22 15:05:50.931 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-22 15:05:50.931 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-22 15:05:50.932 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-22 15:05:50.948 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-22 15:05:50.948 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-22 15:05:51.038 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-22 15:05:51.038 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-22 15:05:51.067 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-22 15:05:51.071 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-22 15:05:51.077 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-22 15:05:51.077 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-22 15:05:51.113 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-22 15:05:51.119 [debug] <0.94.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 15:05:51.258 [debug] <0.97.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.98.0> -2014-07-22 15:05:51.266 [debug] <0.97.0> Supervisor net_sup started auth:start_link() at pid <0.99.0> -2014-07-22 15:05:51.279 [info] <0.96.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-22 15:05:51.280 [debug] <0.97.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.100.0> -2014-07-22 15:05:51.280 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.97.0> -2014-07-22 15:05:51.297 [debug] <0.104.0> Supervisor inet_gethost_native_sup started undefined at pid <0.105.0> -2014-07-22 15:05:51.298 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.104.0> -2014-07-22 15:05:51.315 [info] <0.96.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 15:05:51.315 [info] <0.96.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 15:05:51.316 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-22 15:05:51.391 [info] <0.109.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 15:05:51.391 [info] <0.109.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 15:05:51.392 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.108.0> -2014-07-22 15:05:51.392 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.110.0> -2014-07-22 15:05:51.397 [info] <0.109.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.109.0> -2014-07-22 15:05:51.398 [info] <0.96.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.96.0> -2014-07-22 15:05:51.398 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' diff --git a/newtests/20140722_150549/crash.log b/newtests/20140722_150549/crash.log deleted file mode 100644 index e69de29bb..000000000 diff --git a/newtests/20140722_150549/error.log b/newtests/20140722_150549/error.log deleted file mode 100644 index e69de29bb..000000000 diff --git a/newtests/20140722_150549/errors.csv b/newtests/20140722_150549/errors.csv deleted file mode 100644 index 29210b502..000000000 --- a/newtests/20140722_150549/errors.csv +++ /dev/null @@ -1 +0,0 @@ -"error","count" diff --git a/newtests/20140722_150549/floppstore.config b/newtests/20140722_150549/floppstore.config deleted file mode 100644 index a222d5344..000000000 --- a/newtests/20140722_150549/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {uniform_int, 5000000}}. - -{value_generator, {fixed_bin, 10}}. - -{operations, [{static_tx, 1}, {interactive_tx,1}]}. %%, {append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140722_150549/interactive-tx_latencies.csv b/newtests/20140722_150549/interactive-tx_latencies.csv deleted file mode 100644 index 2cee6f0d8..000000000 --- a/newtests/20140722_150549/interactive-tx_latencies.csv +++ /dev/null @@ -1 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors diff --git a/newtests/20140722_150549/log.sasl.txt b/newtests/20140722_150549/log.sasl.txt deleted file mode 100644 index edfd82682..000000000 --- a/newtests/20140722_150549/log.sasl.txt +++ /dev/null @@ -1,183 +0,0 @@ - -=PROGRESS REPORT==== 22-Jul-2014::15:05:50 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:05:50 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:05:50 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::15:05:50 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:05:50 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::15:05:51 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:05:51 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::15:05:51 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::15:05:51 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:05:51 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:05:51 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::15:05:51 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:05:51 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:05:51 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:05:51 === - supervisor: {local,net_sup} - started: [{pid,<0.100.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:05:51 === - supervisor: {local,kernel_sup} - started: [{pid,<0.97.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::15:05:51 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.105.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 22-Jul-2014::15:05:51 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.104.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:05:51 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:05:51 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.108.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:05:51 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.110.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:05:51 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' diff --git a/newtests/20140722_150549/static-tx_latencies.csv b/newtests/20140722_150549/static-tx_latencies.csv deleted file mode 100644 index 2cee6f0d8..000000000 --- a/newtests/20140722_150549/static-tx_latencies.csv +++ /dev/null @@ -1 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors diff --git a/newtests/20140722_150549/summary.csv b/newtests/20140722_150549/summary.csv deleted file mode 100644 index fa9e41e5d..000000000 --- a/newtests/20140722_150549/summary.csv +++ /dev/null @@ -1 +0,0 @@ -elapsed, window, total, successful, failed diff --git a/newtests/20140722_150633/console.log b/newtests/20140722_150633/console.log deleted file mode 100644 index 5036d1bcd..000000000 --- a/newtests/20140722_150633/console.log +++ /dev/null @@ -1,43 +0,0 @@ -2014-07-22 15:06:33.326 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_150633/error.log"} into lager_event -2014-07-22 15:06:33.326 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_150633/console.log"} into lager_event -2014-07-22 15:06:33.326 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-22 15:06:33.363 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-22 15:06:33.363 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-22 15:06:33.363 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-22 15:06:33.363 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-22 15:06:33.800 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-22 15:06:34.244 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-22 15:06:34.245 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_150633/console.log to debug -2014-07-22 15:06:34.257 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB -2014-07-22 15:06:34.337 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-22 15:06:34.337 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-22 15:06:34.338 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-22 15:06:34.353 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-22 15:06:34.353 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-22 15:06:34.445 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-22 15:06:34.445 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-22 15:06:34.475 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-22 15:06:34.480 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-22 15:06:34.484 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-22 15:06:34.484 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-22 15:06:34.520 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-22 15:06:34.526 [debug] <0.94.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 15:06:34.655 [debug] <0.97.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.98.0> -2014-07-22 15:06:34.665 [debug] <0.97.0> Supervisor net_sup started auth:start_link() at pid <0.99.0> -2014-07-22 15:06:34.680 [info] <0.96.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-22 15:06:34.680 [debug] <0.97.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.100.0> -2014-07-22 15:06:34.681 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.97.0> -2014-07-22 15:06:34.698 [debug] <0.104.0> Supervisor inet_gethost_native_sup started undefined at pid <0.105.0> -2014-07-22 15:06:34.698 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.104.0> -2014-07-22 15:06:34.716 [info] <0.96.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 15:06:34.716 [info] <0.96.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 15:06:34.768 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-22 15:06:34.795 [info] <0.109.0>@basho_bench_driver_floppystore:ping_each:159 Finished pinging 'floppy@127.0.0.1' -2014-07-22 15:06:34.795 [info] <0.109.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 15:06:34.795 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.108.0> -2014-07-22 15:06:34.796 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.110.0> -2014-07-22 15:06:34.801 [info] <0.96.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.96.0> -2014-07-22 15:06:34.801 [info] <0.109.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.109.0> -2014-07-22 15:06:34.802 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' diff --git a/newtests/20140722_150633/crash.log b/newtests/20140722_150633/crash.log deleted file mode 100644 index e69de29bb..000000000 diff --git a/newtests/20140722_150633/error.log b/newtests/20140722_150633/error.log deleted file mode 100644 index e69de29bb..000000000 diff --git a/newtests/20140722_150633/errors.csv b/newtests/20140722_150633/errors.csv deleted file mode 100644 index 29210b502..000000000 --- a/newtests/20140722_150633/errors.csv +++ /dev/null @@ -1 +0,0 @@ -"error","count" diff --git a/newtests/20140722_150633/floppstore.config b/newtests/20140722_150633/floppstore.config deleted file mode 100644 index a222d5344..000000000 --- a/newtests/20140722_150633/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {uniform_int, 5000000}}. - -{value_generator, {fixed_bin, 10}}. - -{operations, [{static_tx, 1}, {interactive_tx,1}]}. %%, {append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140722_150633/interactive-tx_latencies.csv b/newtests/20140722_150633/interactive-tx_latencies.csv deleted file mode 100644 index 2cee6f0d8..000000000 --- a/newtests/20140722_150633/interactive-tx_latencies.csv +++ /dev/null @@ -1 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors diff --git a/newtests/20140722_150633/log.sasl.txt b/newtests/20140722_150633/log.sasl.txt deleted file mode 100644 index 7d34ca500..000000000 --- a/newtests/20140722_150633/log.sasl.txt +++ /dev/null @@ -1,183 +0,0 @@ - -=PROGRESS REPORT==== 22-Jul-2014::15:06:34 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:06:34 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:06:34 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::15:06:34 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:06:34 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::15:06:34 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:06:34 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::15:06:34 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::15:06:34 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:06:34 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:06:34 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::15:06:34 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:06:34 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:06:34 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:06:34 === - supervisor: {local,net_sup} - started: [{pid,<0.100.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:06:34 === - supervisor: {local,kernel_sup} - started: [{pid,<0.97.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::15:06:34 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.105.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 22-Jul-2014::15:06:34 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.104.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:06:34 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:06:34 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.108.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:06:34 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.110.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:06:34 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' diff --git a/newtests/20140722_150633/static-tx_latencies.csv b/newtests/20140722_150633/static-tx_latencies.csv deleted file mode 100644 index 2cee6f0d8..000000000 --- a/newtests/20140722_150633/static-tx_latencies.csv +++ /dev/null @@ -1 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors diff --git a/newtests/20140722_150633/summary.csv b/newtests/20140722_150633/summary.csv deleted file mode 100644 index fa9e41e5d..000000000 --- a/newtests/20140722_150633/summary.csv +++ /dev/null @@ -1 +0,0 @@ -elapsed, window, total, successful, failed diff --git a/newtests/20140722_150647/console.log b/newtests/20140722_150647/console.log deleted file mode 100644 index d3276e977..000000000 --- a/newtests/20140722_150647/console.log +++ /dev/null @@ -1,74 +0,0 @@ -2014-07-22 15:06:47.719 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_150647/error.log"} into lager_event -2014-07-22 15:06:47.719 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_150647/console.log"} into lager_event -2014-07-22 15:06:47.719 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-22 15:06:47.752 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-22 15:06:47.752 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-22 15:06:47.752 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-22 15:06:47.753 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-22 15:06:48.195 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-22 15:06:48.584 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-22 15:06:48.586 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_150647/console.log to debug -2014-07-22 15:06:48.601 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB -2014-07-22 15:06:48.689 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-22 15:06:48.689 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-22 15:06:48.689 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-22 15:06:48.704 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-22 15:06:48.704 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-22 15:06:48.794 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-22 15:06:48.794 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-22 15:06:48.823 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-22 15:06:48.827 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-22 15:06:48.833 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-22 15:06:48.833 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-22 15:06:48.871 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-22 15:06:48.877 [debug] <0.94.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 15:06:49.010 [debug] <0.97.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.98.0> -2014-07-22 15:06:49.018 [debug] <0.97.0> Supervisor net_sup started auth:start_link() at pid <0.99.0> -2014-07-22 15:06:49.031 [info] <0.96.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-22 15:06:49.031 [debug] <0.97.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.100.0> -2014-07-22 15:06:49.032 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.97.0> -2014-07-22 15:06:49.045 [debug] <0.104.0> Supervisor inet_gethost_native_sup started undefined at pid <0.105.0> -2014-07-22 15:06:49.046 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.104.0> -2014-07-22 15:06:49.065 [info] <0.96.0>@basho_bench_driver_floppystore:ping_each:157 Finished pinging 'floppy@127.0.0.1' -2014-07-22 15:06:49.065 [info] <0.96.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 15:06:49.066 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-22 15:06:49.143 [info] <0.109.0>@basho_bench_driver_floppystore:ping_each:157 Finished pinging 'floppy@127.0.0.1' -2014-07-22 15:06:49.143 [info] <0.109.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 15:06:49.144 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.108.0> -2014-07-22 15:06:49.144 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.110.0> -2014-07-22 15:06:49.149 [info] <0.96.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.96.0> -2014-07-22 15:06:49.149 [info] <0.109.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.109.0> -2014-07-22 15:06:49.149 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-22 15:07:10.529 [error] emulator Error in process <0.109.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-22 15:07:10.529 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 15:07:10.529 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated -2014-07-22 15:07:10.641 [info] <0.2118.0>@basho_bench_driver_floppystore:ping_each:157 Finished pinging 'floppy@127.0.0.1' -2014-07-22 15:07:10.641 [info] <0.2118.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 15:07:10.641 [warning] <0.2114.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 15:07:10.641 [info] <0.2118.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.2118.0> -2014-07-22 15:07:10.642 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.2114.0> -2014-07-22 15:07:20.337 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 15:07:20.337 [error] emulator Error in process <0.96.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-22 15:07:20.337 [debug] <0.2881.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 15:07:20.338 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-22 15:07:20.441 [info] <0.2882.0>@basho_bench_driver_floppystore:ping_each:157 Finished pinging 'floppy@127.0.0.1' -2014-07-22 15:07:20.441 [info] <0.2882.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 15:07:20.441 [warning] <0.2881.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 15:07:20.442 [info] <0.2882.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.2882.0> -2014-07-22 15:07:20.442 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.2881.0> -2014-07-22 15:07:25.850 [error] emulator Error in process <0.2118.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-22 15:07:25.850 [error] <0.2114.0>@basho_bench_worker:handle_info:149 Worker <0.2118.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 15:07:25.851 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.2114.0> exit with reason normal in context child_terminated -2014-07-22 15:07:25.966 [info] <0.3333.0>@basho_bench_driver_floppystore:ping_each:157 Finished pinging 'floppy@127.0.0.1' -2014-07-22 15:07:25.966 [info] <0.3333.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 15:07:25.966 [warning] <0.3332.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 15:07:25.966 [info] <0.3333.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.3333.0> -2014-07-22 15:07:25.967 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.3332.0> diff --git a/newtests/20140722_150647/crash.log b/newtests/20140722_150647/crash.log deleted file mode 100644 index 3ab683bd2..000000000 --- a/newtests/20140722_150647/crash.log +++ /dev/null @@ -1,27 +0,0 @@ -2014-07-22 15:07:10 =ERROR REPORT==== -Error in process <0.109.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - -2014-07-22 15:07:10 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.108.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 15:07:20 =ERROR REPORT==== -Error in process <0.96.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - -2014-07-22 15:07:20 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 15:07:25 =ERROR REPORT==== -Error in process <0.2118.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - -2014-07-22 15:07:25 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.2114.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140722_150647/error.log b/newtests/20140722_150647/error.log deleted file mode 100644 index 3d6db4b75..000000000 --- a/newtests/20140722_150647/error.log +++ /dev/null @@ -1,15 +0,0 @@ -2014-07-22 15:07:10.529 [error] emulator Error in process <0.109.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-22 15:07:10.529 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 15:07:10.529 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated -2014-07-22 15:07:20.337 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 15:07:20.337 [error] emulator Error in process <0.96.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-22 15:07:20.338 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-22 15:07:25.850 [error] emulator Error in process <0.2118.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-22 15:07:25.850 [error] <0.2114.0>@basho_bench_worker:handle_info:149 Worker <0.2118.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 15:07:25.851 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.2114.0> exit with reason normal in context child_terminated diff --git a/newtests/20140722_150647/errors.csv b/newtests/20140722_150647/errors.csv deleted file mode 100644 index 29210b502..000000000 --- a/newtests/20140722_150647/errors.csv +++ /dev/null @@ -1 +0,0 @@ -"error","count" diff --git a/newtests/20140722_150647/floppstore.config b/newtests/20140722_150647/floppstore.config deleted file mode 100644 index a222d5344..000000000 --- a/newtests/20140722_150647/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {uniform_int, 5000000}}. - -{value_generator, {fixed_bin, 10}}. - -{operations, [{static_tx, 1}, {interactive_tx,1}]}. %%, {append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140722_150647/interactive-tx_latencies.csv b/newtests/20140722_150647/interactive-tx_latencies.csv deleted file mode 100644 index 696df18b3..000000000 --- a/newtests/20140722_150647/interactive-tx_latencies.csv +++ /dev/null @@ -1,4 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -10.000623, 10.000623, 515, 5902, 20125.8, 19297, 25642, 42658, 49752, 53833, 0 -20.001647, 10.001024, 472, 6904, 21600.3, 20708, 26558, 54613, 127801, 127801, 0 -30.001622, 9.999975, 386, 8697, 24399.5, 21779, 31400, 87418, 130727, 130727, 0 diff --git a/newtests/20140722_150647/log.sasl.txt b/newtests/20140722_150647/log.sasl.txt deleted file mode 100644 index 959183048..000000000 --- a/newtests/20140722_150647/log.sasl.txt +++ /dev/null @@ -1,258 +0,0 @@ - -=PROGRESS REPORT==== 22-Jul-2014::15:06:48 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:06:48 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:06:48 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::15:06:48 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:06:48 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::15:06:48 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:06:48 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::15:06:48 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::15:06:48 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:06:48 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:06:48 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::15:06:48 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:06:49 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:06:49 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:06:49 === - supervisor: {local,net_sup} - started: [{pid,<0.100.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:06:49 === - supervisor: {local,kernel_sup} - started: [{pid,<0.97.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::15:06:49 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.105.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 22-Jul-2014::15:06:49 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.104.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:06:49 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:06:49 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.108.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:06:49 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.110.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:06:49 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 22-Jul-2014::15:07:10 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.108.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::15:07:10 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.2114.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::15:07:20 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::15:07:20 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.2881.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::15:07:25 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.2114.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::15:07:25 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.3332.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] diff --git a/newtests/20140722_150647/static-tx_latencies.csv b/newtests/20140722_150647/static-tx_latencies.csv deleted file mode 100644 index 8f8c6601b..000000000 --- a/newtests/20140722_150647/static-tx_latencies.csv +++ /dev/null @@ -1,4 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -10.000623, 10.000623, 464, 5807, 20673.5, 19360, 26608, 43938, 172817, 172817, 0 -20.001647, 10.001024, 466, 7448, 21010.6, 20497, 25748, 31966, 51553, 51553, 0 -30.001622, 9.999975, 398, 8557, 23941.0, 21998, 30716, 55836, 121271, 121271, 0 diff --git a/newtests/20140722_150647/summary.csv b/newtests/20140722_150647/summary.csv deleted file mode 100644 index 8f6ca6355..000000000 --- a/newtests/20140722_150647/summary.csv +++ /dev/null @@ -1,4 +0,0 @@ -elapsed, window, total, successful, failed -10.000623, 10.000623, 979, 979, 0 -20.001647, 10.001024, 938, 938, 0 -30.001622, 9.999975, 784, 784, 0 diff --git a/newtests/20140722_150754/console.log b/newtests/20140722_150754/console.log deleted file mode 100644 index 7935cbec9..000000000 --- a/newtests/20140722_150754/console.log +++ /dev/null @@ -1,151 +0,0 @@ -2014-07-22 15:07:55.133 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_150754/error.log"} into lager_event -2014-07-22 15:07:55.133 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_150754/console.log"} into lager_event -2014-07-22 15:07:55.133 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-22 15:07:55.166 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-22 15:07:55.166 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-22 15:07:55.166 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-22 15:07:55.166 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-22 15:07:55.610 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-22 15:07:55.942 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-22 15:07:55.943 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_150754/console.log to debug -2014-07-22 15:07:55.954 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB -2014-07-22 15:07:56.033 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-22 15:07:56.033 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-22 15:07:56.034 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-22 15:07:56.047 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-22 15:07:56.047 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-22 15:07:56.129 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-22 15:07:56.129 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-22 15:07:56.156 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-22 15:07:56.160 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-22 15:07:56.165 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-22 15:07:56.165 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-22 15:07:56.198 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-22 15:07:56.203 [debug] <0.94.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 15:07:56.327 [debug] <0.97.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.98.0> -2014-07-22 15:07:56.335 [debug] <0.97.0> Supervisor net_sup started auth:start_link() at pid <0.99.0> -2014-07-22 15:07:56.348 [info] <0.96.0>@basho_bench_driver_floppystore:new:57 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-22 15:07:56.348 [debug] <0.97.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.100.0> -2014-07-22 15:07:56.349 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.97.0> -2014-07-22 15:07:56.366 [debug] <0.104.0> Supervisor inet_gethost_native_sup started undefined at pid <0.105.0> -2014-07-22 15:07:56.367 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.104.0> -2014-07-22 15:07:56.387 [info] <0.96.0>@basho_bench_driver_floppystore:ping_each:157 Finished pinging 'floppy@127.0.0.1' -2014-07-22 15:07:56.387 [info] <0.96.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 15:07:56.388 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-22 15:07:56.460 [info] <0.109.0>@basho_bench_driver_floppystore:ping_each:157 Finished pinging 'floppy@127.0.0.1' -2014-07-22 15:07:56.460 [info] <0.109.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 15:07:56.461 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.108.0> -2014-07-22 15:07:56.461 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.110.0> -2014-07-22 15:07:56.466 [info] <0.109.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.109.0> -2014-07-22 15:07:56.467 [info] <0.96.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.96.0> -2014-07-22 15:07:56.467 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-22 15:08:05.235 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 15:08:05.235 [error] emulator Error in process <0.109.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-22 15:08:05.235 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated -2014-07-22 15:08:05.337 [info] <0.256.0>@basho_bench_driver_floppystore:ping_each:157 Finished pinging 'floppy@127.0.0.1' -2014-07-22 15:08:05.337 [info] <0.256.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 15:08:05.337 [warning] <0.255.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 15:08:05.337 [info] <0.256.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.256.0> -2014-07-22 15:08:05.338 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.255.0> -2014-07-22 15:08:12.879 [error] emulator Error in process <0.96.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-22 15:08:12.879 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 15:08:12.879 [debug] <0.394.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 15:08:12.879 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-22 15:08:12.993 [info] <0.395.0>@basho_bench_driver_floppystore:ping_each:157 Finished pinging 'floppy@127.0.0.1' -2014-07-22 15:08:12.993 [info] <0.395.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 15:08:12.993 [warning] <0.394.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 15:08:12.993 [info] <0.395.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.395.0> -2014-07-22 15:08:12.993 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.394.0> -2014-07-22 15:08:18.179 [error] <0.394.0>@basho_bench_worker:handle_info:149 Worker <0.395.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 15:08:18.179 [error] emulator Error in process <0.395.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-22 15:08:18.179 [debug] <0.479.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 15:08:18.180 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.394.0> exit with reason normal in context child_terminated -2014-07-22 15:08:18.278 [info] <0.480.0>@basho_bench_driver_floppystore:ping_each:157 Finished pinging 'floppy@127.0.0.1' -2014-07-22 15:08:18.278 [info] <0.480.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 15:08:18.278 [warning] <0.479.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 15:08:18.278 [info] <0.480.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.480.0> -2014-07-22 15:08:18.279 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.479.0> -2014-07-22 15:08:19.279 [error] <0.479.0>@basho_bench_worker:handle_info:149 Worker <0.480.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 15:08:19.279 [error] emulator Error in process <0.480.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-22 15:08:19.279 [debug] <0.494.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 15:08:19.280 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.479.0> exit with reason normal in context child_terminated -2014-07-22 15:08:19.371 [info] <0.495.0>@basho_bench_driver_floppystore:ping_each:157 Finished pinging 'floppy@127.0.0.1' -2014-07-22 15:08:19.371 [info] <0.495.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 15:08:19.371 [warning] <0.494.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 15:08:19.371 [info] <0.495.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.495.0> -2014-07-22 15:08:19.372 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.494.0> -2014-07-22 15:08:36.703 [error] emulator Error in process <0.495.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-22 15:08:36.703 [error] <0.494.0>@basho_bench_worker:handle_info:149 Worker <0.495.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 15:08:36.703 [debug] <0.766.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 15:08:36.704 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.494.0> exit with reason normal in context child_terminated -2014-07-22 15:08:36.805 [info] <0.767.0>@basho_bench_driver_floppystore:ping_each:157 Finished pinging 'floppy@127.0.0.1' -2014-07-22 15:08:36.805 [info] <0.767.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 15:08:36.805 [warning] <0.766.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 15:08:36.805 [info] <0.767.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.767.0> -2014-07-22 15:08:36.806 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.766.0> -2014-07-22 15:08:40.847 [error] <0.766.0>@basho_bench_worker:handle_info:149 Worker <0.767.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 15:08:40.847 [error] emulator Error in process <0.767.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-22 15:08:40.848 [debug] <0.824.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 15:08:40.848 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.766.0> exit with reason normal in context child_terminated -2014-07-22 15:08:40.932 [info] <0.825.0>@basho_bench_driver_floppystore:ping_each:157 Finished pinging 'floppy@127.0.0.1' -2014-07-22 15:08:40.932 [info] <0.825.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 15:08:40.932 [warning] <0.824.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 15:08:40.932 [info] <0.825.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.825.0> -2014-07-22 15:08:40.933 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.824.0> -2014-07-22 15:08:41.028 [error] <0.255.0>@basho_bench_worker:handle_info:149 Worker <0.256.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 15:08:41.028 [error] emulator Error in process <0.256.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-22 15:08:41.029 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.255.0> exit with reason normal in context child_terminated -2014-07-22 15:08:41.158 [info] <0.829.0>@basho_bench_driver_floppystore:ping_each:157 Finished pinging 'floppy@127.0.0.1' -2014-07-22 15:08:41.158 [info] <0.829.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 15:08:41.158 [warning] <0.828.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 15:08:41.158 [info] <0.829.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.829.0> -2014-07-22 15:08:41.160 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.828.0> -2014-07-22 15:08:46.726 [error] emulator Error in process <0.825.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-22 15:08:46.726 [error] <0.824.0>@basho_bench_worker:handle_info:149 Worker <0.825.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 15:08:46.726 [debug] <0.908.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 15:08:46.727 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.824.0> exit with reason normal in context child_terminated -2014-07-22 15:08:46.848 [info] <0.909.0>@basho_bench_driver_floppystore:ping_each:157 Finished pinging 'floppy@127.0.0.1' -2014-07-22 15:08:46.848 [info] <0.909.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 15:08:46.848 [warning] <0.908.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 15:08:46.848 [info] <0.909.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.909.0> -2014-07-22 15:08:46.849 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.908.0> -2014-07-22 15:08:50.390 [error] <0.828.0>@basho_bench_worker:handle_info:149 Worker <0.829.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 15:08:50.390 [error] emulator Error in process <0.829.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-22 15:08:50.391 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.828.0> exit with reason normal in context child_terminated -2014-07-22 15:08:50.484 [info] <0.964.0>@basho_bench_driver_floppystore:ping_each:157 Finished pinging 'floppy@127.0.0.1' -2014-07-22 15:08:50.484 [info] <0.964.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 15:08:50.484 [warning] <0.963.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 15:08:50.484 [info] <0.964.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.964.0> -2014-07-22 15:08:50.484 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.963.0> -2014-07-22 15:08:57.192 [error] <0.908.0>@basho_bench_worker:handle_info:149 Worker <0.909.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 15:08:57.192 [error] emulator Error in process <0.909.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-22 15:08:57.192 [debug] <0.1065.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 15:08:57.192 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.908.0> exit with reason normal in context child_terminated -2014-07-22 15:08:57.299 [info] <0.1066.0>@basho_bench_driver_floppystore:ping_each:157 Finished pinging 'floppy@127.0.0.1' -2014-07-22 15:08:57.299 [info] <0.1066.0>@basho_bench_driver_floppystore:new:73 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 15:08:57.299 [warning] <0.1065.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 15:08:57.299 [info] <0.1066.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.1066.0> -2014-07-22 15:08:57.300 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.1065.0> -2014-07-22 15:08:57.469 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. diff --git a/newtests/20140722_150754/crash.log b/newtests/20140722_150754/crash.log deleted file mode 100644 index 827ebd214..000000000 --- a/newtests/20140722_150754/crash.log +++ /dev/null @@ -1,90 +0,0 @@ -2014-07-22 15:08:05 =ERROR REPORT==== -Error in process <0.109.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - -2014-07-22 15:08:05 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.108.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 15:08:12 =ERROR REPORT==== -Error in process <0.96.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - -2014-07-22 15:08:12 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 15:08:18 =ERROR REPORT==== -Error in process <0.395.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - -2014-07-22 15:08:18 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.394.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 15:08:19 =ERROR REPORT==== -Error in process <0.480.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - -2014-07-22 15:08:19 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.479.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 15:08:36 =ERROR REPORT==== -Error in process <0.495.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - -2014-07-22 15:08:36 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.494.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 15:08:40 =ERROR REPORT==== -Error in process <0.767.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - -2014-07-22 15:08:40 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.766.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 15:08:41 =ERROR REPORT==== -Error in process <0.256.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - -2014-07-22 15:08:41 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.255.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 15:08:46 =ERROR REPORT==== -Error in process <0.825.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - -2014-07-22 15:08:46 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.824.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 15:08:50 =ERROR REPORT==== -Error in process <0.829.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - -2014-07-22 15:08:50 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.828.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 15:08:57 =ERROR REPORT==== -Error in process <0.909.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - -2014-07-22 15:08:57 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.908.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140722_150754/error.log b/newtests/20140722_150754/error.log deleted file mode 100644 index 60feea611..000000000 --- a/newtests/20140722_150754/error.log +++ /dev/null @@ -1,50 +0,0 @@ -2014-07-22 15:08:05.235 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 15:08:05.235 [error] emulator Error in process <0.109.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-22 15:08:05.235 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated -2014-07-22 15:08:12.879 [error] emulator Error in process <0.96.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-22 15:08:12.879 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 15:08:12.879 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-22 15:08:18.179 [error] <0.394.0>@basho_bench_worker:handle_info:149 Worker <0.395.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 15:08:18.179 [error] emulator Error in process <0.395.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-22 15:08:18.180 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.394.0> exit with reason normal in context child_terminated -2014-07-22 15:08:19.279 [error] <0.479.0>@basho_bench_worker:handle_info:149 Worker <0.480.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 15:08:19.279 [error] emulator Error in process <0.480.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-22 15:08:19.280 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.479.0> exit with reason normal in context child_terminated -2014-07-22 15:08:36.703 [error] emulator Error in process <0.495.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-22 15:08:36.703 [error] <0.494.0>@basho_bench_worker:handle_info:149 Worker <0.495.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 15:08:36.704 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.494.0> exit with reason normal in context child_terminated -2014-07-22 15:08:40.847 [error] <0.766.0>@basho_bench_worker:handle_info:149 Worker <0.767.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 15:08:40.847 [error] emulator Error in process <0.767.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-22 15:08:40.848 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.766.0> exit with reason normal in context child_terminated -2014-07-22 15:08:41.028 [error] <0.255.0>@basho_bench_worker:handle_info:149 Worker <0.256.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 15:08:41.028 [error] emulator Error in process <0.256.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-22 15:08:41.029 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.255.0> exit with reason normal in context child_terminated -2014-07-22 15:08:46.726 [error] emulator Error in process <0.825.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-22 15:08:46.726 [error] <0.824.0>@basho_bench_worker:handle_info:149 Worker <0.825.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 15:08:46.727 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.824.0> exit with reason normal in context child_terminated -2014-07-22 15:08:50.390 [error] <0.828.0>@basho_bench_worker:handle_info:149 Worker <0.829.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 15:08:50.390 [error] emulator Error in process <0.829.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-22 15:08:50.391 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.828.0> exit with reason normal in context child_terminated -2014-07-22 15:08:57.192 [error] <0.908.0>@basho_bench_worker:handle_info:149 Worker <0.909.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 15:08:57.192 [error] emulator Error in process <0.909.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-22 15:08:57.192 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.908.0> exit with reason normal in context child_terminated diff --git a/newtests/20140722_150754/errors.csv b/newtests/20140722_150754/errors.csv deleted file mode 100644 index 29210b502..000000000 --- a/newtests/20140722_150754/errors.csv +++ /dev/null @@ -1 +0,0 @@ -"error","count" diff --git a/newtests/20140722_150754/floppstore.config b/newtests/20140722_150754/floppstore.config deleted file mode 100644 index a222d5344..000000000 --- a/newtests/20140722_150754/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {uniform_int, 5000000}}. - -{value_generator, {fixed_bin, 10}}. - -{operations, [{static_tx, 1}, {interactive_tx,1}]}. %%, {append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140722_150754/interactive-tx_latencies.csv b/newtests/20140722_150754/interactive-tx_latencies.csv deleted file mode 100644 index f20267db7..000000000 --- a/newtests/20140722_150754/interactive-tx_latencies.csv +++ /dev/null @@ -1,8 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -10.000388, 10.000388, 79, 28406, 121103.8, 121228, 211131, 276703, 289664, 289664, 0 -20.001388, 10.001, 81, 33095, 107827.8, 105630, 184800, 233258, 249293, 249293, 0 -30.001475, 10.000087, 77, 23282, 109694.0, 100955, 201353, 255262, 263457, 263457, 0 -40.001948, 10.000473, 66, 32141, 133116.6, 129512, 233745, 242255, 303170, 303170, 0 -50.001703, 9.999755, 63, 39560, 132329.2, 126696, 215078, 275070, 301759, 301759, 0 -60.001367, 9.999664, 77, 25436, 120504.4, 118155, 195675, 244182, 248501, 248501, 0 -61.007436, 1.006069, 6, 31723, 124188.2, 120533, 195675, 244182, 248501, 248501, 0 diff --git a/newtests/20140722_150754/log.sasl.txt b/newtests/20140722_150754/log.sasl.txt deleted file mode 100644 index c016eb3f9..000000000 --- a/newtests/20140722_150754/log.sasl.txt +++ /dev/null @@ -1,433 +0,0 @@ - -=PROGRESS REPORT==== 22-Jul-2014::15:07:56 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:07:56 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:07:56 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::15:07:56 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:07:56 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::15:07:56 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:07:56 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::15:07:56 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::15:07:56 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:07:56 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:07:56 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::15:07:56 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:07:56 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:07:56 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:07:56 === - supervisor: {local,net_sup} - started: [{pid,<0.100.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:07:56 === - supervisor: {local,kernel_sup} - started: [{pid,<0.97.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::15:07:56 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.105.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 22-Jul-2014::15:07:56 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.104.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:07:56 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:07:56 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.108.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:07:56 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.110.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:07:56 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 22-Jul-2014::15:08:05 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.108.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::15:08:05 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.255.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::15:08:12 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::15:08:12 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.394.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::15:08:18 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.394.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::15:08:18 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.479.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::15:08:19 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.479.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::15:08:19 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.494.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::15:08:36 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.494.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::15:08:36 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.766.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::15:08:40 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.766.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::15:08:40 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.824.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::15:08:41 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.255.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::15:08:41 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.828.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::15:08:46 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.824.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::15:08:46 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.908.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::15:08:50 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.828.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::15:08:50 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.963.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::15:08:57 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.908.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::15:08:57 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.1065.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] diff --git a/newtests/20140722_150754/static-tx_latencies.csv b/newtests/20140722_150754/static-tx_latencies.csv deleted file mode 100644 index b52a548d4..000000000 --- a/newtests/20140722_150754/static-tx_latencies.csv +++ /dev/null @@ -1,8 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -10.000388, 10.000388, 85, 24102, 108276.9, 96439, 219283, 258545, 277150, 277150, 0 -20.001388, 10.001, 95, 24404, 106915.5, 107547, 185132, 211098, 218593, 218593, 0 -30.001475, 10.000087, 76, 26826, 118061.0, 115553, 211514, 296169, 299454, 299454, 0 -40.001948, 10.000473, 80, 40478, 132567.1, 129943, 219552, 296169, 310095, 310095, 0 -50.001703, 9.999755, 68, 21716, 123602.2, 116393, 211561, 297299, 325612, 325612, 0 -60.001367, 9.999664, 72, 33691, 124127.1, 115324, 220324, 255051, 286982, 286982, 0 -61.007436, 1.006069, 2, 33691, 124754.1, 115324, 220324, 255051, 286982, 286982, 0 diff --git a/newtests/20140722_150754/summary.csv b/newtests/20140722_150754/summary.csv deleted file mode 100644 index 81db11a76..000000000 --- a/newtests/20140722_150754/summary.csv +++ /dev/null @@ -1,8 +0,0 @@ -elapsed, window, total, successful, failed -10.000388, 10.000388, 164, 164, 0 -20.001388, 10.001, 176, 176, 0 -30.001475, 10.000087, 153, 153, 0 -40.001948, 10.000473, 146, 146, 0 -50.001703, 9.999755, 131, 131, 0 -60.001367, 9.999664, 149, 149, 0 -61.007436, 1.006069, 8, 8, 0 diff --git a/newtests/20140722_152913/console.log b/newtests/20140722_152913/console.log deleted file mode 100644 index 0af4ff8b1..000000000 --- a/newtests/20140722_152913/console.log +++ /dev/null @@ -1,138 +0,0 @@ -2014-07-22 15:29:13.862 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_152913/error.log"} into lager_event -2014-07-22 15:29:13.862 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_152913/console.log"} into lager_event -2014-07-22 15:29:13.862 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-22 15:29:13.899 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-22 15:29:13.899 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-22 15:29:13.900 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-22 15:29:13.900 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-22 15:29:14.336 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-22 15:29:14.763 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-22 15:29:14.765 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140722_152913/console.log to debug -2014-07-22 15:29:14.777 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB -2014-07-22 15:29:14.859 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-22 15:29:14.859 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-22 15:29:14.860 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-22 15:29:14.874 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-22 15:29:14.874 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-22 15:29:14.965 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-22 15:29:14.965 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-22 15:29:14.993 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-22 15:29:14.997 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-22 15:29:15.002 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-22 15:29:15.002 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-22 15:29:15.042 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-22 15:29:15.047 [debug] <0.94.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 15:29:15.188 [debug] <0.97.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.98.0> -2014-07-22 15:29:15.195 [debug] <0.97.0> Supervisor net_sup started auth:start_link() at pid <0.99.0> -2014-07-22 15:29:15.207 [info] <0.96.0>@basho_bench_driver_floppystore:new:58 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-22 15:29:15.208 [debug] <0.97.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.100.0> -2014-07-22 15:29:15.208 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.97.0> -2014-07-22 15:29:15.222 [debug] <0.104.0> Supervisor inet_gethost_native_sup started undefined at pid <0.105.0> -2014-07-22 15:29:15.223 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.104.0> -2014-07-22 15:29:15.244 [info] <0.96.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' -2014-07-22 15:29:15.244 [info] <0.96.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 15:29:15.244 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-22 15:29:15.326 [info] <0.109.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' -2014-07-22 15:29:15.326 [info] <0.109.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 15:29:15.327 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.108.0> -2014-07-22 15:29:15.327 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.110.0> -2014-07-22 15:29:15.333 [info] <0.109.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.109.0> -2014-07-22 15:29:15.333 [info] <0.96.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.96.0> -2014-07-22 15:29:15.333 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-22 15:29:24.421 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 15:29:24.421 [error] emulator Error in process <0.109.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-22 15:29:24.422 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated -2014-07-22 15:29:24.549 [info] <0.273.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' -2014-07-22 15:29:24.549 [info] <0.273.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 15:29:24.549 [warning] <0.271.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 15:29:24.549 [info] <0.273.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.273.0> -2014-07-22 15:29:24.549 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.271.0> -2014-07-22 15:29:27.747 [error] emulator Error in process <0.273.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-22 15:29:27.747 [error] <0.271.0>@basho_bench_worker:handle_info:149 Worker <0.273.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 15:29:27.748 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.271.0> exit with reason normal in context child_terminated -2014-07-22 15:29:27.841 [info] <0.326.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' -2014-07-22 15:29:27.841 [info] <0.326.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 15:29:27.841 [warning] <0.324.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 15:29:27.841 [info] <0.326.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.326.0> -2014-07-22 15:29:27.841 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.324.0> -2014-07-22 15:29:32.296 [error] <0.324.0>@basho_bench_worker:handle_info:149 Worker <0.326.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 15:29:32.296 [error] emulator Error in process <0.326.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-22 15:29:32.296 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.324.0> exit with reason normal in context child_terminated -2014-07-22 15:29:32.386 [info] <0.400.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' -2014-07-22 15:29:32.386 [info] <0.400.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 15:29:32.386 [warning] <0.399.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 15:29:32.386 [info] <0.400.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.400.0> -2014-07-22 15:29:32.387 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.399.0> -2014-07-22 15:29:40.924 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 15:29:40.924 [debug] <0.545.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 15:29:40.924 [error] emulator Error in process <0.96.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-22 15:29:40.925 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-22 15:29:41.029 [info] <0.546.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' -2014-07-22 15:29:41.030 [info] <0.546.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 15:29:41.030 [warning] <0.545.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 15:29:41.030 [info] <0.546.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.546.0> -2014-07-22 15:29:41.030 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.545.0> -2014-07-22 15:29:47.605 [error] <0.545.0>@basho_bench_worker:handle_info:149 Worker <0.546.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 15:29:47.605 [error] emulator Error in process <0.546.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-22 15:29:47.605 [debug] <0.645.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 15:29:47.606 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.545.0> exit with reason normal in context child_terminated -2014-07-22 15:29:47.703 [info] <0.646.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' -2014-07-22 15:29:47.703 [info] <0.646.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 15:29:47.703 [warning] <0.645.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 15:29:47.704 [info] <0.646.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.646.0> -2014-07-22 15:29:47.704 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.645.0> -2014-07-22 15:29:50.475 [error] emulator Error in process <0.646.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-22 15:29:50.475 [error] <0.645.0>@basho_bench_worker:handle_info:149 Worker <0.646.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 15:29:50.475 [debug] <0.687.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 15:29:50.475 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.645.0> exit with reason normal in context child_terminated -2014-07-22 15:29:50.588 [info] <0.688.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' -2014-07-22 15:29:50.588 [info] <0.688.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 15:29:50.588 [warning] <0.687.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 15:29:50.588 [info] <0.688.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.688.0> -2014-07-22 15:29:50.588 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.687.0> -2014-07-22 15:29:54.316 [error] <0.399.0>@basho_bench_worker:handle_info:149 Worker <0.400.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 15:29:54.316 [error] emulator Error in process <0.400.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-22 15:29:54.317 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.399.0> exit with reason normal in context child_terminated -2014-07-22 15:29:54.418 [info] <0.746.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' -2014-07-22 15:29:54.418 [info] <0.746.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 15:29:54.418 [warning] <0.745.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 15:29:54.418 [info] <0.746.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.746.0> -2014-07-22 15:29:54.418 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.745.0> -2014-07-22 15:30:10.069 [error] <0.745.0>@basho_bench_worker:handle_info:149 Worker <0.746.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 15:30:10.069 [error] emulator Error in process <0.746.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-22 15:30:10.069 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.745.0> exit with reason normal in context child_terminated -2014-07-22 15:30:10.157 [info] <0.961.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' -2014-07-22 15:30:10.157 [info] <0.961.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-22 15:30:10.157 [warning] <0.960.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 15:30:10.157 [info] <0.961.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.961.0> -2014-07-22 15:30:10.158 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.960.0> -2014-07-22 15:30:12.906 [error] <0.687.0>@basho_bench_worker:handle_info:149 Worker <0.688.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 15:30:12.906 [error] emulator Error in process <0.688.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-22 15:30:12.906 [debug] <0.999.0>@basho_bench_valgen:init_source:85 random source -2014-07-22 15:30:12.907 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.687.0> exit with reason normal in context child_terminated -2014-07-22 15:30:13.017 [info] <0.1000.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' -2014-07-22 15:30:13.017 [info] <0.1000.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-22 15:30:13.017 [warning] <0.999.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-22 15:30:13.017 [info] <0.1000.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.1000.0> -2014-07-22 15:30:13.018 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.999.0> -2014-07-22 15:30:16.335 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. diff --git a/newtests/20140722_152913/crash.log b/newtests/20140722_152913/crash.log deleted file mode 100644 index 8c14e5507..000000000 --- a/newtests/20140722_152913/crash.log +++ /dev/null @@ -1,81 +0,0 @@ -2014-07-22 15:29:24 =ERROR REPORT==== -Error in process <0.109.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - -2014-07-22 15:29:24 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.108.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 15:29:27 =ERROR REPORT==== -Error in process <0.273.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - -2014-07-22 15:29:27 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.271.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 15:29:32 =ERROR REPORT==== -Error in process <0.326.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - -2014-07-22 15:29:32 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.324.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 15:29:40 =ERROR REPORT==== -Error in process <0.96.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - -2014-07-22 15:29:40 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 15:29:47 =ERROR REPORT==== -Error in process <0.546.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - -2014-07-22 15:29:47 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.545.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 15:29:50 =ERROR REPORT==== -Error in process <0.646.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - -2014-07-22 15:29:50 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.645.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 15:29:54 =ERROR REPORT==== -Error in process <0.400.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - -2014-07-22 15:29:54 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.399.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 15:30:10 =ERROR REPORT==== -Error in process <0.746.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - -2014-07-22 15:30:10 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.745.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-22 15:30:12 =ERROR REPORT==== -Error in process <0.688.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - -2014-07-22 15:30:12 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.687.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140722_152913/error.log b/newtests/20140722_152913/error.log deleted file mode 100644 index 846c4a834..000000000 --- a/newtests/20140722_152913/error.log +++ /dev/null @@ -1,45 +0,0 @@ -2014-07-22 15:29:24.421 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 15:29:24.421 [error] emulator Error in process <0.109.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-22 15:29:24.422 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated -2014-07-22 15:29:27.747 [error] emulator Error in process <0.273.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-22 15:29:27.747 [error] <0.271.0>@basho_bench_worker:handle_info:149 Worker <0.273.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 15:29:27.748 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.271.0> exit with reason normal in context child_terminated -2014-07-22 15:29:32.296 [error] <0.324.0>@basho_bench_worker:handle_info:149 Worker <0.326.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 15:29:32.296 [error] emulator Error in process <0.326.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-22 15:29:32.296 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.324.0> exit with reason normal in context child_terminated -2014-07-22 15:29:40.924 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 15:29:40.924 [error] emulator Error in process <0.96.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-22 15:29:40.925 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-22 15:29:47.605 [error] <0.545.0>@basho_bench_worker:handle_info:149 Worker <0.546.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 15:29:47.605 [error] emulator Error in process <0.546.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-22 15:29:47.606 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.545.0> exit with reason normal in context child_terminated -2014-07-22 15:29:50.475 [error] emulator Error in process <0.646.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-22 15:29:50.475 [error] <0.645.0>@basho_bench_worker:handle_info:149 Worker <0.646.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 15:29:50.475 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.645.0> exit with reason normal in context child_terminated -2014-07-22 15:29:54.316 [error] <0.399.0>@basho_bench_worker:handle_info:149 Worker <0.400.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 15:29:54.316 [error] emulator Error in process <0.400.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-22 15:29:54.317 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.399.0> exit with reason normal in context child_terminated -2014-07-22 15:30:10.069 [error] <0.745.0>@basho_bench_worker:handle_info:149 Worker <0.746.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 15:30:10.069 [error] emulator Error in process <0.746.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-22 15:30:10.069 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.745.0> exit with reason normal in context child_terminated -2014-07-22 15:30:12.906 [error] <0.687.0>@basho_bench_worker:handle_info:149 Worker <0.688.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-22 15:30:12.906 [error] emulator Error in process <0.688.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-22 15:30:12.907 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.687.0> exit with reason normal in context child_terminated diff --git a/newtests/20140722_152913/errors.csv b/newtests/20140722_152913/errors.csv deleted file mode 100644 index 29210b502..000000000 --- a/newtests/20140722_152913/errors.csv +++ /dev/null @@ -1 +0,0 @@ -"error","count" diff --git a/newtests/20140722_152913/floppstore.config b/newtests/20140722_152913/floppstore.config deleted file mode 100644 index a222d5344..000000000 --- a/newtests/20140722_152913/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 2}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {uniform_int, 5000000}}. - -{value_generator, {fixed_bin, 10}}. - -{operations, [{static_tx, 1}, {interactive_tx,1}]}. %%, {append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140722_152913/interactive-tx_latencies.csv b/newtests/20140722_152913/interactive-tx_latencies.csv deleted file mode 100644 index 83897cc9e..000000000 --- a/newtests/20140722_152913/interactive-tx_latencies.csv +++ /dev/null @@ -1,8 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -10.000191, 10.000191, 78, 25935, 109257.7, 94934, 203861, 256323, 287138, 287138, 0 -20.001236, 10.001045, 92, 24944, 113392.2, 100136, 210687, 285790, 297523, 297523, 0 -30.001166, 9.99993, 77, 25071, 121219.2, 116734, 200946, 259082, 261204, 261204, 0 -40.001191, 10.000025, 70, 25790, 118704.6, 113481, 218857, 245472, 269644, 269644, 0 -50.00176, 10.000569, 63, 44273, 143285.1, 136056, 225817, 305661, 342275, 342275, 0 -60.001215, 9.999455, 73, 24471, 137566.4, 132120, 217907, 275507, 294800, 294800, 0 -61.007872, 1.006657, 5, 24471, 136632.1, 132120, 217907, 275507, 294800, 294800, 0 diff --git a/newtests/20140722_152913/log.sasl.txt b/newtests/20140722_152913/log.sasl.txt deleted file mode 100644 index d7589e388..000000000 --- a/newtests/20140722_152913/log.sasl.txt +++ /dev/null @@ -1,408 +0,0 @@ - -=PROGRESS REPORT==== 22-Jul-2014::15:29:14 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:29:14 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:29:14 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::15:29:14 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:29:14 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::15:29:14 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:29:14 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::15:29:14 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::15:29:14 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:29:15 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:29:15 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 22-Jul-2014::15:29:15 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:29:15 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:29:15 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:29:15 === - supervisor: {local,net_sup} - started: [{pid,<0.100.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:29:15 === - supervisor: {local,kernel_sup} - started: [{pid,<0.97.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 22-Jul-2014::15:29:15 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.105.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 22-Jul-2014::15:29:15 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.104.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:29:15 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:29:15 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.108.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:29:15 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.110.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 22-Jul-2014::15:29:15 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 22-Jul-2014::15:29:24 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.108.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::15:29:24 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.271.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::15:29:27 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.271.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::15:29:27 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.324.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::15:29:32 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.324.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::15:29:32 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.399.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::15:29:40 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::15:29:41 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.545.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::15:29:47 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.545.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::15:29:47 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.645.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::15:29:50 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.645.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::15:29:50 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.687.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::15:29:54 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.399.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::15:29:54 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.745.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::15:30:10 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.745.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::15:30:10 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.960.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 22-Jul-2014::15:30:12 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.687.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 22-Jul-2014::15:30:13 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.999.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] diff --git a/newtests/20140722_152913/static-tx_latencies.csv b/newtests/20140722_152913/static-tx_latencies.csv deleted file mode 100644 index 82d07d6f5..000000000 --- a/newtests/20140722_152913/static-tx_latencies.csv +++ /dev/null @@ -1,8 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -10.000191, 10.000191, 95, 33810, 107408.5, 97317, 216536, 259708, 259858, 259858, 0 -20.001236, 10.001045, 67, 26304, 111395.7, 107213, 193721, 233045, 240982, 240982, 0 -30.001166, 9.99993, 79, 20325, 119785.4, 109797, 225873, 277100, 280497, 280497, 0 -40.001191, 10.000025, 70, 34778, 118721.4, 108833, 207600, 271334, 293954, 293954, 0 -50.00176, 10.000569, 77, 42160, 141539.6, 136261, 234399, 303021, 323472, 323472, 0 -60.001215, 9.999455, 54, 35513, 147641.6, 139703, 245975, 296761, 305124, 305124, 0 -61.007872, 1.006657, 7, 35513, 149499.3, 141014, 245975, 296761, 305124, 305124, 0 diff --git a/newtests/20140722_152913/summary.csv b/newtests/20140722_152913/summary.csv deleted file mode 100644 index 2d7a2bcd4..000000000 --- a/newtests/20140722_152913/summary.csv +++ /dev/null @@ -1,8 +0,0 @@ -elapsed, window, total, successful, failed -10.000191, 10.000191, 173, 173, 0 -20.001236, 10.001045, 159, 159, 0 -30.001166, 9.99993, 156, 156, 0 -40.001191, 10.000025, 140, 140, 0 -50.00176, 10.000569, 140, 140, 0 -60.001215, 9.999455, 127, 127, 0 -61.007872, 1.006657, 12, 12, 0 diff --git a/newtests/20140723_123916/console.log b/newtests/20140723_123916/console.log deleted file mode 100644 index b36778d2b..000000000 --- a/newtests/20140723_123916/console.log +++ /dev/null @@ -1,113 +0,0 @@ -2014-07-23 12:39:17.020 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_123916/error.log"} into lager_event -2014-07-23 12:39:17.020 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_123916/console.log"} into lager_event -2014-07-23 12:39:17.020 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-23 12:39:17.054 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-23 12:39:17.054 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-23 12:39:17.054 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-23 12:39:17.054 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-23 12:39:17.496 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-23 12:39:17.851 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-23 12:39:17.852 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_123916/console.log to debug -2014-07-23 12:39:17.865 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB -2014-07-23 12:39:17.955 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-23 12:39:17.956 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-23 12:39:17.956 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-23 12:39:17.971 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-23 12:39:17.971 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-23 12:39:18.050 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-23 12:39:18.050 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-23 12:39:18.076 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-23 12:39:18.080 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-23 12:39:18.084 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-23 12:39:18.084 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-23 12:39:18.119 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-23 12:39:18.124 [debug] <0.94.0>@basho_bench_valgen:init_source:85 random source -2014-07-23 12:39:18.248 [debug] <0.97.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.98.0> -2014-07-23 12:39:18.258 [debug] <0.97.0> Supervisor net_sup started auth:start_link() at pid <0.99.0> -2014-07-23 12:39:18.272 [info] <0.96.0>@basho_bench_driver_floppystore:new:58 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-23 12:39:18.273 [debug] <0.97.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.100.0> -2014-07-23 12:39:18.273 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.97.0> -2014-07-23 12:39:18.288 [debug] <0.104.0> Supervisor inet_gethost_native_sup started undefined at pid <0.105.0> -2014-07-23 12:39:18.288 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.104.0> -2014-07-23 12:39:18.308 [info] <0.96.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' -2014-07-23 12:39:18.308 [info] <0.96.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-23 12:39:18.360 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-23 12:39:18.387 [info] <0.109.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' -2014-07-23 12:39:18.387 [info] <0.109.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-23 12:39:18.435 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.108.0> -2014-07-23 12:39:18.459 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' -2014-07-23 12:39:18.459 [info] <0.111.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 3 -2014-07-23 12:39:18.514 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_3, 3) at pid <0.110.0> -2014-07-23 12:39:18.537 [info] <0.113.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' -2014-07-23 12:39:18.537 [info] <0.113.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 4 -2014-07-23 12:39:18.585 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_4, 4) at pid <0.112.0> -2014-07-23 12:39:18.611 [info] <0.115.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' -2014-07-23 12:39:18.611 [info] <0.115.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 5 -2014-07-23 12:39:18.612 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_5, 5) at pid <0.114.0> -2014-07-23 12:39:18.613 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.116.0> -2014-07-23 12:39:18.618 [info] <0.113.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.113.0> -2014-07-23 12:39:18.618 [info] <0.115.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.115.0> -2014-07-23 12:39:18.618 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> -2014-07-23 12:39:18.618 [info] <0.109.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.109.0> -2014-07-23 12:39:18.618 [info] <0.96.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.96.0> -2014-07-23 12:39:18.619 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-23 12:39:19.619 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 12:39:19.620 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-23 12:39:19.621 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.110.0> exit with reason normal in context child_terminated -2014-07-23 12:39:19.732 [info] <0.144.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' -2014-07-23 12:39:19.732 [info] <0.144.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 3 -2014-07-23 12:39:19.732 [warning] <0.142.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-23 12:39:19.732 [info] <0.144.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.144.0> -2014-07-23 12:39:19.733 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_3, 3) at pid <0.142.0> -2014-07-23 12:39:19.853 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 12:39:19.853 [error] emulator Error in process <0.115.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-23 12:39:19.854 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.114.0> exit with reason normal in context child_terminated -2014-07-23 12:39:19.973 [info] <0.151.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' -2014-07-23 12:39:19.973 [info] <0.151.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 5 -2014-07-23 12:39:19.973 [warning] <0.150.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-23 12:39:19.974 [info] <0.151.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.151.0> -2014-07-23 12:39:19.974 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_5, 5) at pid <0.150.0> -2014-07-23 12:39:20.215 [error] emulator Error in process <0.109.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-23 12:39:20.215 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 12:39:20.216 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated -2014-07-23 12:39:20.323 [info] <0.166.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' -2014-07-23 12:39:20.323 [info] <0.166.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-23 12:39:20.323 [warning] <0.165.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-23 12:39:20.323 [info] <0.166.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.166.0> -2014-07-23 12:39:20.324 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.165.0> -2014-07-23 12:39:21.151 [error] <0.142.0>@basho_bench_worker:handle_info:149 Worker <0.144.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 12:39:21.151 [error] emulator Error in process <0.144.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-23 12:39:21.152 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.142.0> exit with reason normal in context child_terminated -2014-07-23 12:39:21.272 [info] <0.193.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' -2014-07-23 12:39:21.272 [info] <0.193.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 3 -2014-07-23 12:39:21.272 [warning] <0.192.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-23 12:39:21.273 [info] <0.193.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.193.0> -2014-07-23 12:39:21.273 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_3, 3) at pid <0.192.0> -2014-07-23 12:39:22.288 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 12:39:22.288 [error] emulator Error in process <0.96.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-23 12:39:22.288 [debug] <0.220.0>@basho_bench_valgen:init_source:85 random source -2014-07-23 12:39:22.289 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-23 12:39:22.410 [info] <0.223.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' -2014-07-23 12:39:22.410 [info] <0.223.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-23 12:39:22.410 [warning] <0.220.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-23 12:39:22.410 [info] <0.223.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.223.0> -2014-07-23 12:39:22.411 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.220.0> -2014-07-23 12:39:22.435 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 12:39:22.435 [error] emulator Error in process <0.113.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-23 12:39:22.436 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.112.0> exit with reason normal in context child_terminated -2014-07-23 12:39:22.436 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.112.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-23 12:39:22.450 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. diff --git a/newtests/20140723_123916/crash.log b/newtests/20140723_123916/crash.log deleted file mode 100644 index ba214d680..000000000 --- a/newtests/20140723_123916/crash.log +++ /dev/null @@ -1,60 +0,0 @@ -2014-07-23 12:39:19 =ERROR REPORT==== -Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - -2014-07-23 12:39:19 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>},{name,basho_bench_worker_3},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_3,3]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 12:39:19 =ERROR REPORT==== -Error in process <0.115.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - -2014-07-23 12:39:19 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.114.0>},{name,basho_bench_worker_5},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_5,5]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 12:39:20 =ERROR REPORT==== -Error in process <0.109.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - -2014-07-23 12:39:20 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.108.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 12:39:21 =ERROR REPORT==== -Error in process <0.144.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - -2014-07-23 12:39:21 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.142.0>},{name,basho_bench_worker_3},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_3,3]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 12:39:22 =ERROR REPORT==== -Error in process <0.96.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - -2014-07-23 12:39:22 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 12:39:22 =ERROR REPORT==== -Error in process <0.113.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - -2014-07-23 12:39:22 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.112.0>},{name,basho_bench_worker_4},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_4,4]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 12:39:22 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.112.0>},{name,basho_bench_worker_4},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_4,4]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140723_123916/error.log b/newtests/20140723_123916/error.log deleted file mode 100644 index fe86f8f21..000000000 --- a/newtests/20140723_123916/error.log +++ /dev/null @@ -1,31 +0,0 @@ -2014-07-23 12:39:19.619 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 12:39:19.620 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-23 12:39:19.621 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.110.0> exit with reason normal in context child_terminated -2014-07-23 12:39:19.853 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 12:39:19.853 [error] emulator Error in process <0.115.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-23 12:39:19.854 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.114.0> exit with reason normal in context child_terminated -2014-07-23 12:39:20.215 [error] emulator Error in process <0.109.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-23 12:39:20.215 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 12:39:20.216 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated -2014-07-23 12:39:21.151 [error] <0.142.0>@basho_bench_worker:handle_info:149 Worker <0.144.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 12:39:21.151 [error] emulator Error in process <0.144.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-23 12:39:21.152 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.142.0> exit with reason normal in context child_terminated -2014-07-23 12:39:22.288 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 12:39:22.288 [error] emulator Error in process <0.96.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-23 12:39:22.289 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-23 12:39:22.435 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 12:39:22.435 [error] emulator Error in process <0.113.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-23 12:39:22.436 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.112.0> exit with reason normal in context child_terminated -2014-07-23 12:39:22.436 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.112.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140723_123916/errors.csv b/newtests/20140723_123916/errors.csv deleted file mode 100644 index 29210b502..000000000 --- a/newtests/20140723_123916/errors.csv +++ /dev/null @@ -1 +0,0 @@ -"error","count" diff --git a/newtests/20140723_123916/floppstore.config b/newtests/20140723_123916/floppstore.config deleted file mode 100644 index b7b52339a..000000000 --- a/newtests/20140723_123916/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 5}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {uniform_int, 5000000}}. - -{value_generator, {fixed_bin, 10}}. - -{operations, [{static_tx, 1}, {interactive_tx,1}]}. %%, {append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140723_123916/interactive-tx_latencies.csv b/newtests/20140723_123916/interactive-tx_latencies.csv deleted file mode 100644 index 87ed50cfb..000000000 --- a/newtests/20140723_123916/interactive-tx_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -3.823299, 3.823299, 51, 39024, 143919.7, 139765, 250156, 286148, 288660, 288660, 0 diff --git a/newtests/20140723_123916/log.sasl.txt b/newtests/20140723_123916/log.sasl.txt deleted file mode 100644 index 946c4c2e8..000000000 --- a/newtests/20140723_123916/log.sasl.txt +++ /dev/null @@ -1,369 +0,0 @@ - -=PROGRESS REPORT==== 23-Jul-2014::12:39:17 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::12:39:17 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::12:39:17 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 23-Jul-2014::12:39:17 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::12:39:17 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 23-Jul-2014::12:39:18 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::12:39:18 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 23-Jul-2014::12:39:18 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 23-Jul-2014::12:39:18 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::12:39:18 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::12:39:18 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 23-Jul-2014::12:39:18 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::12:39:18 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::12:39:18 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::12:39:18 === - supervisor: {local,net_sup} - started: [{pid,<0.100.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::12:39:18 === - supervisor: {local,kernel_sup} - started: [{pid,<0.97.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 23-Jul-2014::12:39:18 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.105.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 23-Jul-2014::12:39:18 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.104.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::12:39:18 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::12:39:18 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.108.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::12:39:18 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.110.0>}, - {name,basho_bench_worker_3}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_3,3]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::12:39:18 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.112.0>}, - {name,basho_bench_worker_4}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_4,4]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::12:39:18 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.114.0>}, - {name,basho_bench_worker_5}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_5,5]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::12:39:18 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.116.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::12:39:18 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 23-Jul-2014::12:39:19 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>}, - {name,basho_bench_worker_3}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_3,3]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 23-Jul-2014::12:39:19 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.142.0>}, - {name,basho_bench_worker_3}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_3,3]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 23-Jul-2014::12:39:19 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.114.0>}, - {name,basho_bench_worker_5}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_5,5]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 23-Jul-2014::12:39:19 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.150.0>}, - {name,basho_bench_worker_5}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_5,5]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 23-Jul-2014::12:39:20 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.108.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 23-Jul-2014::12:39:20 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.165.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 23-Jul-2014::12:39:21 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.142.0>}, - {name,basho_bench_worker_3}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_3,3]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 23-Jul-2014::12:39:21 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.192.0>}, - {name,basho_bench_worker_3}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_3,3]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 23-Jul-2014::12:39:22 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 23-Jul-2014::12:39:22 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.220.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 23-Jul-2014::12:39:22 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.112.0>}, - {name,basho_bench_worker_4}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_4,4]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 23-Jul-2014::12:39:22 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.112.0>}, - {name,basho_bench_worker_4}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_4,4]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140723_123916/static-tx_latencies.csv b/newtests/20140723_123916/static-tx_latencies.csv deleted file mode 100644 index 209f28038..000000000 --- a/newtests/20140723_123916/static-tx_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -3.823299, 3.823299, 38, 32337, 126719.3, 112094, 258120, 338392, 338392, 338392, 0 diff --git a/newtests/20140723_123916/summary.csv b/newtests/20140723_123916/summary.csv deleted file mode 100644 index 8c2377f21..000000000 --- a/newtests/20140723_123916/summary.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, total, successful, failed -3.823299, 3.823299, 89, 89, 0 diff --git a/newtests/20140723_123954/console.log b/newtests/20140723_123954/console.log deleted file mode 100644 index 35a1982e1..000000000 --- a/newtests/20140723_123954/console.log +++ /dev/null @@ -1,121 +0,0 @@ -2014-07-23 12:39:54.929 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_123954/error.log"} into lager_event -2014-07-23 12:39:54.929 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_123954/console.log"} into lager_event -2014-07-23 12:39:54.929 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-23 12:39:54.965 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-23 12:39:54.965 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-23 12:39:54.965 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-23 12:39:54.965 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-23 12:39:55.404 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-23 12:39:55.752 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-23 12:39:55.754 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_123954/console.log to debug -2014-07-23 12:39:55.766 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB -2014-07-23 12:39:55.845 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-23 12:39:55.845 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-23 12:39:55.846 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-23 12:39:55.864 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-23 12:39:55.864 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-23 12:39:55.952 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-23 12:39:55.952 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-23 12:39:55.979 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-23 12:39:55.985 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-23 12:39:55.991 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-23 12:39:55.991 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-23 12:39:56.026 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-23 12:39:56.032 [debug] <0.94.0>@basho_bench_valgen:init_source:85 random source -2014-07-23 12:39:56.165 [debug] <0.97.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.98.0> -2014-07-23 12:39:56.173 [debug] <0.97.0> Supervisor net_sup started auth:start_link() at pid <0.99.0> -2014-07-23 12:39:56.186 [info] <0.96.0>@basho_bench_driver_floppystore:new:58 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-23 12:39:56.186 [debug] <0.97.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.100.0> -2014-07-23 12:39:56.187 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.97.0> -2014-07-23 12:39:56.201 [debug] <0.104.0> Supervisor inet_gethost_native_sup started undefined at pid <0.105.0> -2014-07-23 12:39:56.201 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.104.0> -2014-07-23 12:39:56.221 [info] <0.96.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' -2014-07-23 12:39:56.221 [info] <0.96.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-23 12:39:56.222 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-23 12:39:56.303 [info] <0.109.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' -2014-07-23 12:39:56.303 [info] <0.109.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-23 12:39:56.303 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.108.0> -2014-07-23 12:39:56.375 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' -2014-07-23 12:39:56.375 [info] <0.111.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 3 -2014-07-23 12:39:56.376 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_3, 3) at pid <0.110.0> -2014-07-23 12:39:56.452 [info] <0.113.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' -2014-07-23 12:39:56.452 [info] <0.113.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 4 -2014-07-23 12:39:56.452 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_4, 4) at pid <0.112.0> -2014-07-23 12:39:56.528 [info] <0.115.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' -2014-07-23 12:39:56.528 [info] <0.115.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 5 -2014-07-23 12:39:56.528 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_5, 5) at pid <0.114.0> -2014-07-23 12:39:56.529 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.116.0> -2014-07-23 12:39:56.535 [info] <0.115.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.115.0> -2014-07-23 12:39:56.535 [info] <0.113.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.113.0> -2014-07-23 12:39:56.535 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> -2014-07-23 12:39:56.535 [info] <0.109.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.109.0> -2014-07-23 12:39:56.535 [info] <0.96.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.96.0> -2014-07-23 12:39:56.535 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-23 12:39:59.193 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 12:39:59.193 [error] emulator Error in process <0.109.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-23 12:39:59.194 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated -2014-07-23 12:39:59.326 [info] <0.178.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' -2014-07-23 12:39:59.326 [info] <0.178.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-23 12:39:59.327 [warning] <0.177.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-23 12:39:59.327 [info] <0.178.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.178.0> -2014-07-23 12:39:59.327 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.177.0> -2014-07-23 12:40:06.188 [error] <0.177.0>@basho_bench_worker:handle_info:149 Worker <0.178.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 12:40:06.188 [error] emulator Error in process <0.178.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-23 12:40:06.188 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.177.0> exit with reason normal in context child_terminated -2014-07-23 12:40:06.291 [info] <0.369.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' -2014-07-23 12:40:06.292 [info] <0.369.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-23 12:40:06.292 [warning] <0.368.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-23 12:40:06.292 [info] <0.369.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.369.0> -2014-07-23 12:40:06.292 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.368.0> -2014-07-23 12:40:07.533 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 12:40:07.533 [error] emulator Error in process <0.113.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-23 12:40:07.533 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.112.0> exit with reason normal in context child_terminated -2014-07-23 12:40:07.779 [error] <0.368.0>@basho_bench_worker:handle_info:149 Worker <0.369.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 12:40:07.779 [error] emulator Error in process <0.369.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-23 12:40:07.821 [info] <0.402.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' -2014-07-23 12:40:07.821 [info] <0.402.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 4 -2014-07-23 12:40:07.821 [warning] <0.401.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-23 12:40:07.822 [info] <0.402.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.402.0> -2014-07-23 12:40:07.822 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_4, 4) at pid <0.401.0> -2014-07-23 12:40:07.823 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.368.0> exit with reason normal in context child_terminated -2014-07-23 12:40:08.096 [info] <0.406.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' -2014-07-23 12:40:08.096 [info] <0.406.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-23 12:40:08.096 [warning] <0.404.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-23 12:40:08.096 [info] <0.406.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.406.0> -2014-07-23 12:40:08.100 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.404.0> -2014-07-23 12:40:13.534 [error] <0.401.0>@basho_bench_worker:handle_info:149 Worker <0.402.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 12:40:13.534 [error] emulator Error in process <0.402.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-23 12:40:13.534 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.401.0> exit with reason normal in context child_terminated -2014-07-23 12:40:13.646 [info] <0.527.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' -2014-07-23 12:40:13.646 [info] <0.527.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 4 -2014-07-23 12:40:13.646 [warning] <0.526.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-23 12:40:13.646 [info] <0.527.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.527.0> -2014-07-23 12:40:13.647 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_4, 4) at pid <0.526.0> -2014-07-23 12:40:14.425 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 12:40:14.425 [error] emulator Error in process <0.115.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-23 12:40:14.426 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.114.0> exit with reason normal in context child_terminated -2014-07-23 12:40:14.547 [info] <0.547.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' -2014-07-23 12:40:14.548 [info] <0.547.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 5 -2014-07-23 12:40:14.548 [warning] <0.544.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-23 12:40:14.548 [info] <0.547.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.547.0> -2014-07-23 12:40:14.548 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_5, 5) at pid <0.544.0> -2014-07-23 12:40:14.758 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 12:40:14.758 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-23 12:40:14.759 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.110.0> exit with reason normal in context child_terminated -2014-07-23 12:40:14.759 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.110.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140723_123954/crash.log b/newtests/20140723_123954/crash.log deleted file mode 100644 index 1393a6963..000000000 --- a/newtests/20140723_123954/crash.log +++ /dev/null @@ -1,69 +0,0 @@ -2014-07-23 12:39:59 =ERROR REPORT==== -Error in process <0.109.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - -2014-07-23 12:39:59 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.108.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 12:40:06 =ERROR REPORT==== -Error in process <0.178.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - -2014-07-23 12:40:06 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.177.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 12:40:07 =ERROR REPORT==== -Error in process <0.113.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - -2014-07-23 12:40:07 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.112.0>},{name,basho_bench_worker_4},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_4,4]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 12:40:07 =ERROR REPORT==== -Error in process <0.369.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - -2014-07-23 12:40:07 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.368.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 12:40:13 =ERROR REPORT==== -Error in process <0.402.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - -2014-07-23 12:40:13 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.401.0>},{name,basho_bench_worker_4},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_4,4]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 12:40:14 =ERROR REPORT==== -Error in process <0.115.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - -2014-07-23 12:40:14 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.114.0>},{name,basho_bench_worker_5},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_5,5]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 12:40:14 =ERROR REPORT==== -Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - -2014-07-23 12:40:14 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>},{name,basho_bench_worker_3},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_3,3]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 12:40:14 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.110.0>},{name,basho_bench_worker_3},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_3,3]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140723_123954/error.log b/newtests/20140723_123954/error.log deleted file mode 100644 index ab4b12673..000000000 --- a/newtests/20140723_123954/error.log +++ /dev/null @@ -1,35 +0,0 @@ -2014-07-23 12:39:59.193 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 12:39:59.193 [error] emulator Error in process <0.109.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-23 12:39:59.194 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated -2014-07-23 12:40:06.188 [error] <0.177.0>@basho_bench_worker:handle_info:149 Worker <0.178.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 12:40:06.188 [error] emulator Error in process <0.178.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-23 12:40:06.188 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.177.0> exit with reason normal in context child_terminated -2014-07-23 12:40:07.533 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 12:40:07.533 [error] emulator Error in process <0.113.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-23 12:40:07.533 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.112.0> exit with reason normal in context child_terminated -2014-07-23 12:40:07.779 [error] <0.368.0>@basho_bench_worker:handle_info:149 Worker <0.369.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 12:40:07.779 [error] emulator Error in process <0.369.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-23 12:40:07.823 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.368.0> exit with reason normal in context child_terminated -2014-07-23 12:40:13.534 [error] <0.401.0>@basho_bench_worker:handle_info:149 Worker <0.402.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 12:40:13.534 [error] emulator Error in process <0.402.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-23 12:40:13.534 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.401.0> exit with reason normal in context child_terminated -2014-07-23 12:40:14.425 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 12:40:14.425 [error] emulator Error in process <0.115.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-23 12:40:14.426 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.114.0> exit with reason normal in context child_terminated -2014-07-23 12:40:14.758 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 12:40:14.758 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-23 12:40:14.759 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.110.0> exit with reason normal in context child_terminated diff --git a/newtests/20140723_123954/errors.csv b/newtests/20140723_123954/errors.csv deleted file mode 100644 index 29210b502..000000000 --- a/newtests/20140723_123954/errors.csv +++ /dev/null @@ -1 +0,0 @@ -"error","count" diff --git a/newtests/20140723_123954/floppstore.config b/newtests/20140723_123954/floppstore.config deleted file mode 100644 index b7b52339a..000000000 --- a/newtests/20140723_123954/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 5}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {uniform_int, 5000000}}. - -{value_generator, {fixed_bin, 10}}. - -{operations, [{static_tx, 1}, {interactive_tx,1}]}. %%, {append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140723_123954/interactive-tx_latencies.csv b/newtests/20140723_123954/interactive-tx_latencies.csv deleted file mode 100644 index f89ee72bd..000000000 --- a/newtests/20140723_123954/interactive-tx_latencies.csv +++ /dev/null @@ -1,3 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -10.0006, 10.0006, 131, 29507, 197202.4, 187874, 342961, 540616, 548044, 548044, 0 -18.230187, 8.229587, 62, 34483, 190456.4, 171641, 346888, 468233, 650382, 650382, 0 diff --git a/newtests/20140723_123954/log.sasl.txt b/newtests/20140723_123954/log.sasl.txt deleted file mode 100644 index e0ddad52e..000000000 --- a/newtests/20140723_123954/log.sasl.txt +++ /dev/null @@ -1,394 +0,0 @@ - -=PROGRESS REPORT==== 23-Jul-2014::12:39:55 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::12:39:55 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::12:39:55 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 23-Jul-2014::12:39:55 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::12:39:55 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 23-Jul-2014::12:39:55 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::12:39:55 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 23-Jul-2014::12:39:55 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 23-Jul-2014::12:39:55 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::12:39:55 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::12:39:55 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 23-Jul-2014::12:39:56 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::12:39:56 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::12:39:56 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::12:39:56 === - supervisor: {local,net_sup} - started: [{pid,<0.100.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::12:39:56 === - supervisor: {local,kernel_sup} - started: [{pid,<0.97.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 23-Jul-2014::12:39:56 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.105.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 23-Jul-2014::12:39:56 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.104.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::12:39:56 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::12:39:56 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.108.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::12:39:56 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.110.0>}, - {name,basho_bench_worker_3}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_3,3]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::12:39:56 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.112.0>}, - {name,basho_bench_worker_4}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_4,4]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::12:39:56 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.114.0>}, - {name,basho_bench_worker_5}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_5,5]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::12:39:56 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.116.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::12:39:56 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 23-Jul-2014::12:39:59 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.108.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 23-Jul-2014::12:39:59 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.177.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 23-Jul-2014::12:40:06 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.177.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 23-Jul-2014::12:40:06 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.368.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 23-Jul-2014::12:40:07 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.112.0>}, - {name,basho_bench_worker_4}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_4,4]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 23-Jul-2014::12:40:07 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.401.0>}, - {name,basho_bench_worker_4}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_4,4]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 23-Jul-2014::12:40:07 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.368.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 23-Jul-2014::12:40:08 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.404.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 23-Jul-2014::12:40:13 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.401.0>}, - {name,basho_bench_worker_4}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_4,4]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 23-Jul-2014::12:40:13 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.526.0>}, - {name,basho_bench_worker_4}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_4,4]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 23-Jul-2014::12:40:14 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.114.0>}, - {name,basho_bench_worker_5}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_5,5]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 23-Jul-2014::12:40:14 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.544.0>}, - {name,basho_bench_worker_5}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_5,5]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 23-Jul-2014::12:40:14 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>}, - {name,basho_bench_worker_3}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_3,3]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 23-Jul-2014::12:40:14 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.110.0>}, - {name,basho_bench_worker_3}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_3,3]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140723_123954/static-tx_latencies.csv b/newtests/20140723_123954/static-tx_latencies.csv deleted file mode 100644 index 1160f7f2c..000000000 --- a/newtests/20140723_123954/static-tx_latencies.csv +++ /dev/null @@ -1,3 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -10.0006, 10.0006, 120, 33726, 179097.3, 159852, 324580, 599274, 798491, 798491, 0 -18.230187, 8.229587, 101, 33726, 212603.4, 201689, 392864, 495747, 579519, 579519, 0 diff --git a/newtests/20140723_123954/summary.csv b/newtests/20140723_123954/summary.csv deleted file mode 100644 index 08a358b98..000000000 --- a/newtests/20140723_123954/summary.csv +++ /dev/null @@ -1,3 +0,0 @@ -elapsed, window, total, successful, failed -10.0006, 10.0006, 251, 251, 0 -18.230187, 8.229587, 163, 163, 0 diff --git a/newtests/20140723_125435/console.log b/newtests/20140723_125435/console.log deleted file mode 100644 index 48af50b5b..000000000 --- a/newtests/20140723_125435/console.log +++ /dev/null @@ -1,111 +0,0 @@ -2014-07-23 12:54:35.372 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_125435/error.log"} into lager_event -2014-07-23 12:54:35.372 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_125435/console.log"} into lager_event -2014-07-23 12:54:35.372 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-23 12:54:35.409 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-23 12:54:35.409 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-23 12:54:35.409 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-23 12:54:35.409 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-23 12:54:35.847 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-23 12:54:36.199 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-23 12:54:36.200 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_125435/console.log to debug -2014-07-23 12:54:36.211 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB -2014-07-23 12:54:36.289 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-23 12:54:36.289 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-23 12:54:36.290 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-23 12:54:36.304 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-23 12:54:36.304 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-23 12:54:36.387 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-23 12:54:36.388 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-23 12:54:36.415 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-23 12:54:36.418 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-23 12:54:36.423 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-23 12:54:36.423 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-23 12:54:36.458 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-23 12:54:36.463 [debug] <0.94.0>@basho_bench_valgen:init_source:85 random source -2014-07-23 12:54:36.591 [debug] <0.97.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.98.0> -2014-07-23 12:54:36.598 [debug] <0.97.0> Supervisor net_sup started auth:start_link() at pid <0.99.0> -2014-07-23 12:54:36.615 [info] <0.96.0>@basho_bench_driver_floppystore:new:58 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-23 12:54:36.616 [debug] <0.97.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.100.0> -2014-07-23 12:54:36.616 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.97.0> -2014-07-23 12:54:36.633 [debug] <0.104.0> Supervisor inet_gethost_native_sup started undefined at pid <0.105.0> -2014-07-23 12:54:36.633 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.104.0> -2014-07-23 12:54:36.652 [info] <0.96.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' -2014-07-23 12:54:36.652 [info] <0.96.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-23 12:54:36.652 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-23 12:54:36.727 [info] <0.109.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' -2014-07-23 12:54:36.727 [info] <0.109.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-23 12:54:36.728 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.108.0> -2014-07-23 12:54:36.801 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' -2014-07-23 12:54:36.801 [info] <0.111.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 3 -2014-07-23 12:54:36.802 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_3, 3) at pid <0.110.0> -2014-07-23 12:54:36.876 [info] <0.113.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' -2014-07-23 12:54:36.876 [info] <0.113.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 4 -2014-07-23 12:54:36.877 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_4, 4) at pid <0.112.0> -2014-07-23 12:54:36.956 [info] <0.115.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' -2014-07-23 12:54:36.956 [info] <0.115.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 5 -2014-07-23 12:54:36.956 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_5, 5) at pid <0.114.0> -2014-07-23 12:54:36.957 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.116.0> -2014-07-23 12:54:36.962 [info] <0.113.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.113.0> -2014-07-23 12:54:36.962 [info] <0.115.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.115.0> -2014-07-23 12:54:36.963 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> -2014-07-23 12:54:36.963 [info] <0.109.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.109.0> -2014-07-23 12:54:36.963 [info] <0.96.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.96.0> -2014-07-23 12:54:36.963 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-23 12:54:40.190 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 12:54:40.190 [error] emulator Error in process <0.113.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-23 12:54:40.191 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.112.0> exit with reason normal in context child_terminated -2014-07-23 12:54:40.315 [info] <0.207.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' -2014-07-23 12:54:40.315 [info] <0.207.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 4 -2014-07-23 12:54:40.315 [warning] <0.205.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-23 12:54:40.315 [info] <0.207.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.207.0> -2014-07-23 12:54:40.316 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_4, 4) at pid <0.205.0> -2014-07-23 12:54:40.556 [error] emulator Error in process <0.96.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-23 12:54:40.556 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 12:54:40.556 [debug] <0.215.0>@basho_bench_valgen:init_source:85 random source -2014-07-23 12:54:40.557 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-23 12:54:40.677 [info] <0.218.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' -2014-07-23 12:54:40.677 [info] <0.218.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-23 12:54:40.677 [warning] <0.215.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-23 12:54:40.677 [info] <0.218.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.218.0> -2014-07-23 12:54:40.677 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.215.0> -2014-07-23 12:54:41.989 [error] emulator Error in process <0.109.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-23 12:54:41.989 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 12:54:41.990 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated -2014-07-23 12:54:42.099 [info] <0.248.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' -2014-07-23 12:54:42.099 [info] <0.248.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-23 12:54:42.099 [warning] <0.247.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-23 12:54:42.099 [info] <0.248.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.248.0> -2014-07-23 12:54:42.100 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.247.0> -2014-07-23 12:54:42.147 [error] <0.205.0>@basho_bench_worker:handle_info:149 Worker <0.207.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 12:54:42.147 [error] emulator Error in process <0.207.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-23 12:54:42.148 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.205.0> exit with reason normal in context child_terminated -2014-07-23 12:54:42.270 [info] <0.254.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' -2014-07-23 12:54:42.270 [info] <0.254.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 4 -2014-07-23 12:54:42.270 [warning] <0.253.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-23 12:54:42.270 [info] <0.254.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.254.0> -2014-07-23 12:54:42.270 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_4, 4) at pid <0.253.0> -2014-07-23 12:54:44.354 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 12:54:44.354 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-23 12:54:44.355 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.110.0> exit with reason normal in context child_terminated -2014-07-23 12:54:44.481 [info] <0.309.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' -2014-07-23 12:54:44.482 [info] <0.309.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 3 -2014-07-23 12:54:44.482 [warning] <0.308.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-23 12:54:44.482 [info] <0.309.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.309.0> -2014-07-23 12:54:44.482 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_3, 3) at pid <0.308.0> -2014-07-23 12:54:47.400 [error] <0.247.0>@basho_bench_worker:handle_info:149 Worker <0.248.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 12:54:47.400 [error] emulator Error in process <0.248.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-23 12:54:47.401 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.247.0> exit with reason normal in context child_terminated diff --git a/newtests/20140723_125435/crash.log b/newtests/20140723_125435/crash.log deleted file mode 100644 index e8418634e..000000000 --- a/newtests/20140723_125435/crash.log +++ /dev/null @@ -1,60 +0,0 @@ -2014-07-23 12:54:40 =ERROR REPORT==== -Error in process <0.113.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - -2014-07-23 12:54:40 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.112.0>},{name,basho_bench_worker_4},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_4,4]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 12:54:40 =ERROR REPORT==== -Error in process <0.96.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - -2014-07-23 12:54:40 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 12:54:42 =ERROR REPORT==== -Error in process <0.109.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - -2014-07-23 12:54:42 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.108.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 12:54:42 =ERROR REPORT==== -Error in process <0.207.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - -2014-07-23 12:54:42 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.205.0>},{name,basho_bench_worker_4},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_4,4]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 12:54:44 =ERROR REPORT==== -Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - -2014-07-23 12:54:44 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>},{name,basho_bench_worker_3},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_3,3]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 12:54:47 =ERROR REPORT==== -Error in process <0.248.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - -2014-07-23 12:54:47 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.247.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 12:54:47 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.247.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140723_125435/error.log b/newtests/20140723_125435/error.log deleted file mode 100644 index a3b06b39c..000000000 --- a/newtests/20140723_125435/error.log +++ /dev/null @@ -1,29 +0,0 @@ -2014-07-23 12:54:40.190 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 12:54:40.190 [error] emulator Error in process <0.113.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-23 12:54:40.191 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.112.0> exit with reason normal in context child_terminated -2014-07-23 12:54:40.556 [error] emulator Error in process <0.96.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-23 12:54:40.556 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 12:54:40.557 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-23 12:54:41.989 [error] emulator Error in process <0.109.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-23 12:54:41.989 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 12:54:41.990 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated -2014-07-23 12:54:42.147 [error] <0.205.0>@basho_bench_worker:handle_info:149 Worker <0.207.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 12:54:42.147 [error] emulator Error in process <0.207.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-23 12:54:42.148 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.205.0> exit with reason normal in context child_terminated -2014-07-23 12:54:44.354 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 12:54:44.354 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-23 12:54:44.355 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.110.0> exit with reason normal in context child_terminated -2014-07-23 12:54:47.400 [error] <0.247.0>@basho_bench_worker:handle_info:149 Worker <0.248.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 12:54:47.400 [error] emulator Error in process <0.248.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - diff --git a/newtests/20140723_125435/errors.csv b/newtests/20140723_125435/errors.csv deleted file mode 100644 index 29210b502..000000000 --- a/newtests/20140723_125435/errors.csv +++ /dev/null @@ -1 +0,0 @@ -"error","count" diff --git a/newtests/20140723_125435/floppstore.config b/newtests/20140723_125435/floppstore.config deleted file mode 100644 index b7b52339a..000000000 --- a/newtests/20140723_125435/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 5}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {uniform_int, 5000000}}. - -{value_generator, {fixed_bin, 10}}. - -{operations, [{static_tx, 1}, {interactive_tx,1}]}. %%, {append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140723_125435/interactive-tx_latencies.csv b/newtests/20140723_125435/interactive-tx_latencies.csv deleted file mode 100644 index 702aacf33..000000000 --- a/newtests/20140723_125435/interactive-tx_latencies.csv +++ /dev/null @@ -1,3 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -10.0005, 10.0005, 122, 42041, 183270.8, 165976, 347332, 399458, 412422, 412422, 0 -10.443735, 0.443235, 5, 37327, 182516.1, 165976, 347332, 399458, 412422, 412422, 0 diff --git a/newtests/20140723_125435/log.sasl.txt b/newtests/20140723_125435/log.sasl.txt deleted file mode 100644 index 8381973d6..000000000 --- a/newtests/20140723_125435/log.sasl.txt +++ /dev/null @@ -1,369 +0,0 @@ - -=PROGRESS REPORT==== 23-Jul-2014::12:54:36 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::12:54:36 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::12:54:36 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 23-Jul-2014::12:54:36 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::12:54:36 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 23-Jul-2014::12:54:36 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::12:54:36 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 23-Jul-2014::12:54:36 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 23-Jul-2014::12:54:36 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::12:54:36 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::12:54:36 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 23-Jul-2014::12:54:36 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::12:54:36 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::12:54:36 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::12:54:36 === - supervisor: {local,net_sup} - started: [{pid,<0.100.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::12:54:36 === - supervisor: {local,kernel_sup} - started: [{pid,<0.97.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 23-Jul-2014::12:54:36 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.105.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 23-Jul-2014::12:54:36 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.104.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::12:54:36 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::12:54:36 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.108.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::12:54:36 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.110.0>}, - {name,basho_bench_worker_3}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_3,3]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::12:54:36 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.112.0>}, - {name,basho_bench_worker_4}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_4,4]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::12:54:36 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.114.0>}, - {name,basho_bench_worker_5}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_5,5]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::12:54:36 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.116.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::12:54:36 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 23-Jul-2014::12:54:40 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.112.0>}, - {name,basho_bench_worker_4}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_4,4]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 23-Jul-2014::12:54:40 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.205.0>}, - {name,basho_bench_worker_4}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_4,4]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 23-Jul-2014::12:54:40 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 23-Jul-2014::12:54:40 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.215.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 23-Jul-2014::12:54:41 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.108.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 23-Jul-2014::12:54:42 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.247.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 23-Jul-2014::12:54:42 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.205.0>}, - {name,basho_bench_worker_4}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_4,4]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 23-Jul-2014::12:54:42 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.253.0>}, - {name,basho_bench_worker_4}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_4,4]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 23-Jul-2014::12:54:44 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>}, - {name,basho_bench_worker_3}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_3,3]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 23-Jul-2014::12:54:44 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.308.0>}, - {name,basho_bench_worker_3}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_3,3]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 23-Jul-2014::12:54:47 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.247.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 23-Jul-2014::12:54:47 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.247.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140723_125435/static-tx_latencies.csv b/newtests/20140723_125435/static-tx_latencies.csv deleted file mode 100644 index 4bdd50deb..000000000 --- a/newtests/20140723_125435/static-tx_latencies.csv +++ /dev/null @@ -1,3 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -10.0005, 10.0005, 116, 49436, 183699.4, 174765, 309357, 422398, 433964, 433964, 0 -10.443735, 0.443235, 5, 49436, 179815.7, 171004, 309357, 422398, 433964, 433964, 0 diff --git a/newtests/20140723_125435/summary.csv b/newtests/20140723_125435/summary.csv deleted file mode 100644 index 5c72459e1..000000000 --- a/newtests/20140723_125435/summary.csv +++ /dev/null @@ -1,3 +0,0 @@ -elapsed, window, total, successful, failed -10.0005, 10.0005, 238, 238, 0 -10.443735, 0.443235, 10, 10, 0 diff --git a/newtests/20140723_140132/console.log b/newtests/20140723_140132/console.log deleted file mode 100644 index e2aa170b0..000000000 --- a/newtests/20140723_140132/console.log +++ /dev/null @@ -1,112 +0,0 @@ -2014-07-23 14:01:32.860 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_140132/error.log"} into lager_event -2014-07-23 14:01:32.860 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_140132/console.log"} into lager_event -2014-07-23 14:01:32.860 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-23 14:01:32.896 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-23 14:01:32.896 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-23 14:01:32.896 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-23 14:01:32.897 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-23 14:01:33.336 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-23 14:01:33.743 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-23 14:01:33.744 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_140132/console.log to debug -2014-07-23 14:01:33.757 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB -2014-07-23 14:01:33.839 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-23 14:01:33.839 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-23 14:01:33.840 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-23 14:01:33.857 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-23 14:01:33.857 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-23 14:01:33.948 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-23 14:01:33.948 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-23 14:01:33.976 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-23 14:01:33.980 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-23 14:01:33.986 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-23 14:01:33.986 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-23 14:01:34.020 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-23 14:01:34.026 [debug] <0.94.0>@basho_bench_valgen:init_source:85 random source -2014-07-23 14:01:34.155 [debug] <0.97.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.98.0> -2014-07-23 14:01:34.163 [debug] <0.97.0> Supervisor net_sup started auth:start_link() at pid <0.99.0> -2014-07-23 14:01:34.177 [info] <0.96.0>@basho_bench_driver_floppystore:new:58 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-23 14:01:34.178 [debug] <0.97.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.100.0> -2014-07-23 14:01:34.178 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.97.0> -2014-07-23 14:01:34.197 [debug] <0.104.0> Supervisor inet_gethost_native_sup started undefined at pid <0.105.0> -2014-07-23 14:01:34.198 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.104.0> -2014-07-23 14:01:34.215 [info] <0.96.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:01:34.215 [info] <0.96.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-23 14:01:34.216 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-23 14:01:34.293 [info] <0.109.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:01:34.293 [info] <0.109.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-23 14:01:34.294 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.108.0> -2014-07-23 14:01:34.370 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:01:34.370 [info] <0.111.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 3 -2014-07-23 14:01:34.370 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_3, 3) at pid <0.110.0> -2014-07-23 14:01:34.442 [info] <0.113.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:01:34.442 [info] <0.113.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 4 -2014-07-23 14:01:34.442 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_4, 4) at pid <0.112.0> -2014-07-23 14:01:34.517 [info] <0.115.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:01:34.517 [info] <0.115.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 5 -2014-07-23 14:01:34.518 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_5, 5) at pid <0.114.0> -2014-07-23 14:01:34.518 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.116.0> -2014-07-23 14:01:34.523 [info] <0.115.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.115.0> -2014-07-23 14:01:34.523 [info] <0.113.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.113.0> -2014-07-23 14:01:34.524 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> -2014-07-23 14:01:34.524 [info] <0.109.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.109.0> -2014-07-23 14:01:34.524 [info] <0.96.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.96.0> -2014-07-23 14:01:34.524 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-23 14:01:35.525 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 14:01:35.525 [error] emulator Error in process <0.109.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-23 14:01:35.526 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated -2014-07-23 14:01:35.655 [info] <0.140.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:01:35.655 [info] <0.140.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-23 14:01:35.655 [warning] <0.139.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-23 14:01:35.655 [info] <0.140.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.140.0> -2014-07-23 14:01:35.656 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.139.0> -2014-07-23 14:01:36.636 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 14:01:36.636 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-23 14:01:36.637 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.110.0> exit with reason normal in context child_terminated -2014-07-23 14:01:36.823 [info] <0.172.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:01:36.823 [info] <0.172.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 3 -2014-07-23 14:01:36.823 [warning] <0.170.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-23 14:01:36.823 [info] <0.172.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.172.0> -2014-07-23 14:01:36.824 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_3, 3) at pid <0.170.0> -2014-07-23 14:01:37.610 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 14:01:37.610 [error] emulator Error in process <0.113.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-23 14:01:37.611 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.112.0> exit with reason normal in context child_terminated -2014-07-23 14:01:37.750 [info] <0.195.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:01:37.750 [info] <0.195.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 4 -2014-07-23 14:01:37.750 [warning] <0.192.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-23 14:01:37.750 [info] <0.195.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.195.0> -2014-07-23 14:01:37.750 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_4, 4) at pid <0.192.0> -2014-07-23 14:01:38.928 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 14:01:38.928 [error] emulator Error in process <0.115.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-23 14:01:38.929 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.114.0> exit with reason normal in context child_terminated -2014-07-23 14:01:39.068 [info] <0.231.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:01:39.068 [info] <0.231.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 5 -2014-07-23 14:01:39.068 [warning] <0.228.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-23 14:01:39.068 [info] <0.231.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.231.0> -2014-07-23 14:01:39.069 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_5, 5) at pid <0.228.0> -2014-07-23 14:01:40.729 [error] <0.139.0>@basho_bench_worker:handle_info:149 Worker <0.140.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 14:01:40.729 [error] emulator Error in process <0.140.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-23 14:01:40.730 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.139.0> exit with reason normal in context child_terminated -2014-07-23 14:01:40.864 [info] <0.270.0>@basho_bench_driver_floppystore:ping_each:158 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:01:40.864 [info] <0.270.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-23 14:01:40.864 [warning] <0.269.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-23 14:01:40.864 [info] <0.270.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.270.0> -2014-07-23 14:01:40.865 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.269.0> -2014-07-23 14:01:42.454 [error] emulator Error in process <0.231.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-23 14:01:42.454 [error] <0.228.0>@basho_bench_worker:handle_info:149 Worker <0.231.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 14:01:42.454 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.228.0> exit with reason normal in context child_terminated -2014-07-23 14:01:42.455 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.228.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-23 14:01:42.476 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. diff --git a/newtests/20140723_140132/crash.log b/newtests/20140723_140132/crash.log deleted file mode 100644 index c71319533..000000000 --- a/newtests/20140723_140132/crash.log +++ /dev/null @@ -1,60 +0,0 @@ -2014-07-23 14:01:35 =ERROR REPORT==== -Error in process <0.109.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - -2014-07-23 14:01:35 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.108.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 14:01:36 =ERROR REPORT==== -Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - -2014-07-23 14:01:36 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>},{name,basho_bench_worker_3},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_3,3]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 14:01:37 =ERROR REPORT==== -Error in process <0.113.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - -2014-07-23 14:01:37 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.112.0>},{name,basho_bench_worker_4},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_4,4]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 14:01:38 =ERROR REPORT==== -Error in process <0.115.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - -2014-07-23 14:01:38 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.114.0>},{name,basho_bench_worker_5},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_5,5]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 14:01:40 =ERROR REPORT==== -Error in process <0.140.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - -2014-07-23 14:01:40 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.139.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 14:01:42 =ERROR REPORT==== -Error in process <0.231.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - -2014-07-23 14:01:42 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.228.0>},{name,basho_bench_worker_5},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_5,5]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 14:01:42 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.228.0>},{name,basho_bench_worker_5},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_5,5]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140723_140132/error.log b/newtests/20140723_140132/error.log deleted file mode 100644 index f3a9be79f..000000000 --- a/newtests/20140723_140132/error.log +++ /dev/null @@ -1,31 +0,0 @@ -2014-07-23 14:01:35.525 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 14:01:35.525 [error] emulator Error in process <0.109.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-23 14:01:35.526 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated -2014-07-23 14:01:36.636 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 14:01:36.636 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-23 14:01:36.637 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.110.0> exit with reason normal in context child_terminated -2014-07-23 14:01:37.610 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 14:01:37.610 [error] emulator Error in process <0.113.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-23 14:01:37.611 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.112.0> exit with reason normal in context child_terminated -2014-07-23 14:01:38.928 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 14:01:38.928 [error] emulator Error in process <0.115.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-23 14:01:38.929 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.114.0> exit with reason normal in context child_terminated -2014-07-23 14:01:40.729 [error] <0.139.0>@basho_bench_worker:handle_info:149 Worker <0.140.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 14:01:40.729 [error] emulator Error in process <0.140.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-23 14:01:40.730 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.139.0> exit with reason normal in context child_terminated -2014-07-23 14:01:42.454 [error] emulator Error in process <0.231.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-23 14:01:42.454 [error] <0.228.0>@basho_bench_worker:handle_info:149 Worker <0.231.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 14:01:42.454 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.228.0> exit with reason normal in context child_terminated -2014-07-23 14:01:42.455 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.228.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140723_140132/errors.csv b/newtests/20140723_140132/errors.csv deleted file mode 100644 index 29210b502..000000000 --- a/newtests/20140723_140132/errors.csv +++ /dev/null @@ -1 +0,0 @@ -"error","count" diff --git a/newtests/20140723_140132/floppstore.config b/newtests/20140723_140132/floppstore.config deleted file mode 100644 index b7b52339a..000000000 --- a/newtests/20140723_140132/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 5}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {uniform_int, 5000000}}. - -{value_generator, {fixed_bin, 10}}. - -{operations, [{static_tx, 1}, {interactive_tx,1}]}. %%, {append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140723_140132/interactive-tx_latencies.csv b/newtests/20140723_140132/interactive-tx_latencies.csv deleted file mode 100644 index 45e3e6638..000000000 --- a/newtests/20140723_140132/interactive-tx_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -7.936341, 7.936341, 83, 39463, 193832.8, 183341, 356693, 435588, 457862, 457862, 0 diff --git a/newtests/20140723_140132/log.sasl.txt b/newtests/20140723_140132/log.sasl.txt deleted file mode 100644 index af40e7df3..000000000 --- a/newtests/20140723_140132/log.sasl.txt +++ /dev/null @@ -1,369 +0,0 @@ - -=PROGRESS REPORT==== 23-Jul-2014::14:01:33 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:01:33 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:01:33 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 23-Jul-2014::14:01:33 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:01:33 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 23-Jul-2014::14:01:33 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:01:33 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 23-Jul-2014::14:01:33 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 23-Jul-2014::14:01:33 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:01:33 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:01:33 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 23-Jul-2014::14:01:34 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:01:34 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:01:34 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:01:34 === - supervisor: {local,net_sup} - started: [{pid,<0.100.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:01:34 === - supervisor: {local,kernel_sup} - started: [{pid,<0.97.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 23-Jul-2014::14:01:34 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.105.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 23-Jul-2014::14:01:34 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.104.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:01:34 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:01:34 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.108.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:01:34 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.110.0>}, - {name,basho_bench_worker_3}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_3,3]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:01:34 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.112.0>}, - {name,basho_bench_worker_4}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_4,4]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:01:34 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.114.0>}, - {name,basho_bench_worker_5}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_5,5]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:01:34 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.116.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:01:34 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 23-Jul-2014::14:01:35 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.108.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 23-Jul-2014::14:01:35 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.139.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 23-Jul-2014::14:01:36 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>}, - {name,basho_bench_worker_3}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_3,3]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 23-Jul-2014::14:01:36 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.170.0>}, - {name,basho_bench_worker_3}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_3,3]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 23-Jul-2014::14:01:37 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.112.0>}, - {name,basho_bench_worker_4}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_4,4]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 23-Jul-2014::14:01:37 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.192.0>}, - {name,basho_bench_worker_4}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_4,4]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 23-Jul-2014::14:01:38 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.114.0>}, - {name,basho_bench_worker_5}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_5,5]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 23-Jul-2014::14:01:39 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.228.0>}, - {name,basho_bench_worker_5}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_5,5]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 23-Jul-2014::14:01:40 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.139.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 23-Jul-2014::14:01:40 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.269.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 23-Jul-2014::14:01:42 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.228.0>}, - {name,basho_bench_worker_5}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_5,5]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 23-Jul-2014::14:01:42 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.228.0>}, - {name,basho_bench_worker_5}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_5,5]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140723_140132/static-tx_latencies.csv b/newtests/20140723_140132/static-tx_latencies.csv deleted file mode 100644 index 9420ed263..000000000 --- a/newtests/20140723_140132/static-tx_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -7.936341, 7.936341, 90, 39414, 182257.2, 169022, 321979, 393407, 423865, 423865, 0 diff --git a/newtests/20140723_140132/summary.csv b/newtests/20140723_140132/summary.csv deleted file mode 100644 index 0f69442ae..000000000 --- a/newtests/20140723_140132/summary.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, total, successful, failed -7.936341, 7.936341, 173, 173, 0 diff --git a/newtests/20140723_143206/console.log b/newtests/20140723_143206/console.log deleted file mode 100644 index 2593ef8c8..000000000 --- a/newtests/20140723_143206/console.log +++ /dev/null @@ -1,110 +0,0 @@ -2014-07-23 14:32:06.972 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_143206/error.log"} into lager_event -2014-07-23 14:32:06.972 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_143206/console.log"} into lager_event -2014-07-23 14:32:06.972 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-23 14:32:07.006 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-23 14:32:07.006 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-23 14:32:07.006 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-23 14:32:07.007 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-23 14:32:07.442 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-23 14:32:07.842 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-23 14:32:07.843 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_143206/console.log to debug -2014-07-23 14:32:07.856 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB -2014-07-23 14:32:07.936 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-23 14:32:07.937 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-23 14:32:07.937 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-23 14:32:07.955 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-23 14:32:07.955 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-23 14:32:08.046 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-23 14:32:08.046 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-23 14:32:08.074 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-23 14:32:08.078 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-23 14:32:08.085 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-23 14:32:08.085 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-23 14:32:08.122 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-23 14:32:08.127 [debug] <0.94.0>@basho_bench_valgen:init_source:85 random source -2014-07-23 14:32:08.257 [debug] <0.97.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.98.0> -2014-07-23 14:32:08.263 [debug] <0.97.0> Supervisor net_sup started auth:start_link() at pid <0.99.0> -2014-07-23 14:32:08.276 [info] <0.96.0>@basho_bench_driver_floppystore:new:58 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-23 14:32:08.276 [debug] <0.97.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.100.0> -2014-07-23 14:32:08.277 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.97.0> -2014-07-23 14:32:08.296 [debug] <0.104.0> Supervisor inet_gethost_native_sup started undefined at pid <0.105.0> -2014-07-23 14:32:08.296 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.104.0> -2014-07-23 14:32:08.312 [info] <0.96.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:32:08.312 [info] <0.96.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-23 14:32:08.313 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-23 14:32:08.385 [info] <0.109.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:32:08.385 [info] <0.109.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-23 14:32:08.386 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.108.0> -2014-07-23 14:32:08.459 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:32:08.459 [info] <0.111.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 3 -2014-07-23 14:32:08.459 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_3, 3) at pid <0.110.0> -2014-07-23 14:32:08.532 [info] <0.113.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:32:08.532 [info] <0.113.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 4 -2014-07-23 14:32:08.533 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_4, 4) at pid <0.112.0> -2014-07-23 14:32:08.607 [info] <0.115.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:32:08.607 [info] <0.115.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 5 -2014-07-23 14:32:08.607 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_5, 5) at pid <0.114.0> -2014-07-23 14:32:08.607 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.116.0> -2014-07-23 14:32:08.615 [info] <0.115.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.115.0> -2014-07-23 14:32:08.615 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> -2014-07-23 14:32:08.615 [info] <0.113.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.113.0> -2014-07-23 14:32:08.615 [info] <0.109.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.109.0> -2014-07-23 14:32:08.615 [info] <0.96.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.96.0> -2014-07-23 14:32:08.615 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-23 14:32:08.615 [debug] <0.111.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{badmatch,{badrpc,{'EXIT',{{case_clause,1},[{floppy,clockSI_istart_tx,1,[{file,"src/floppy.erl"},{line,72}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,139}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 14:32:08.616 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash -2014-07-23 14:32:08.616 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.110.0> exit with reason normal in context child_terminated -2014-07-23 14:32:08.617 [debug] <0.115.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{badmatch,{badrpc,{'EXIT',{{case_clause,1},[{floppy,clockSI_istart_tx,1,[{file,"src/floppy.erl"},{line,72}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,139}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 14:32:08.617 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash -2014-07-23 14:32:08.617 [debug] <0.113.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{badmatch,{badrpc,{'EXIT',{{case_clause,1},[{floppy,clockSI_istart_tx,1,[{file,"src/floppy.erl"},{line,72}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,139}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 14:32:08.617 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash -2014-07-23 14:32:08.707 [info] <0.123.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:32:08.708 [info] <0.123.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 3 -2014-07-23 14:32:08.708 [warning] <0.122.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-23 14:32:08.708 [info] <0.123.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.123.0> -2014-07-23 14:32:08.708 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_3, 3) at pid <0.122.0> -2014-07-23 14:32:08.708 [debug] <0.123.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{badmatch,{badrpc,{'EXIT',{{case_clause,1},[{floppy,clockSI_istart_tx,1,[{file,"src/floppy.erl"},{line,72}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,139}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 14:32:08.708 [error] <0.122.0>@basho_bench_worker:handle_info:149 Worker <0.123.0> exited with crash -2014-07-23 14:32:08.709 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.114.0> exit with reason normal in context child_terminated -2014-07-23 14:32:08.811 [info] <0.126.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:32:08.811 [info] <0.126.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 5 -2014-07-23 14:32:08.811 [warning] <0.124.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-23 14:32:08.811 [info] <0.126.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.126.0> -2014-07-23 14:32:08.812 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_5, 5) at pid <0.124.0> -2014-07-23 14:32:08.812 [debug] <0.126.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{badmatch,{badrpc,{'EXIT',{{case_clause,1},[{floppy,clockSI_istart_tx,1,[{file,"src/floppy.erl"},{line,72}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,139}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 14:32:08.812 [error] <0.124.0>@basho_bench_worker:handle_info:149 Worker <0.126.0> exited with crash -2014-07-23 14:32:08.812 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.112.0> exit with reason normal in context child_terminated -2014-07-23 14:32:08.891 [debug] <0.96.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{badmatch,{badrpc,{'EXIT',{{case_clause,1},[{floppy,clockSI_istart_tx,1,[{file,"src/floppy.erl"},{line,72}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,139}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 14:32:08.892 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with crash -2014-07-23 14:32:08.914 [info] <0.130.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:32:08.914 [info] <0.130.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 4 -2014-07-23 14:32:08.914 [warning] <0.128.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-23 14:32:08.914 [info] <0.130.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.130.0> -2014-07-23 14:32:08.915 [debug] <0.130.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{badmatch,{badrpc,{'EXIT',{{case_clause,1},[{floppy,clockSI_istart_tx,1,[{file,"src/floppy.erl"},{line,72}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,139}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 14:32:08.915 [error] <0.128.0>@basho_bench_worker:handle_info:149 Worker <0.130.0> exited with crash -2014-07-23 14:32:08.916 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_4, 4) at pid <0.128.0> -2014-07-23 14:32:08.916 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.122.0> exit with reason normal in context child_terminated -2014-07-23 14:32:09.017 [info] <0.135.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:32:09.018 [info] <0.135.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 3 -2014-07-23 14:32:09.018 [warning] <0.133.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-23 14:32:09.018 [info] <0.135.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.135.0> -2014-07-23 14:32:09.018 [debug] <0.135.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{badmatch,{badrpc,{'EXIT',{{case_clause,1},[{floppy,clockSI_istart_tx,1,[{file,"src/floppy.erl"},{line,72}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,139}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 14:32:09.018 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_3, 3) at pid <0.133.0> -2014-07-23 14:32:09.019 [error] <0.133.0>@basho_bench_worker:handle_info:149 Worker <0.135.0> exited with crash -2014-07-23 14:32:09.019 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.124.0> exit with reason normal in context child_terminated -2014-07-23 14:32:09.136 [info] <0.138.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:32:09.136 [info] <0.138.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 5 -2014-07-23 14:32:09.136 [warning] <0.136.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-23 14:32:09.137 [info] <0.138.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.138.0> -2014-07-23 14:32:09.137 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_5, 5) at pid <0.136.0> -2014-07-23 14:32:09.138 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-23 14:32:09.138 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-23 14:32:09.138 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.128.0> exit with reason normal in context shutdown_error -2014-07-23 14:32:09.139 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.133.0> exit with reason normal in context shutdown_error -2014-07-23 14:32:09.150 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {static_tx,static_tx} -2014-07-23 14:32:09.150 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {interactive_tx,interactive_tx} -2014-07-23 14:32:09.150 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{interactive_tx,interactive_tx},8},{{{interactive_tx,interactive_tx},crash},8}] -2014-07-23 14:32:09.150 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: -2014-07-23 14:32:09.150 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{interactive_tx,interactive_tx},crash}: 8 diff --git a/newtests/20140723_143206/crash.log b/newtests/20140723_143206/crash.log deleted file mode 100644 index 9d9bbd559..000000000 --- a/newtests/20140723_143206/crash.log +++ /dev/null @@ -1,54 +0,0 @@ -2014-07-23 14:32:08 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>},{name,basho_bench_worker_3},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_3,3]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 14:32:08 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.114.0>},{name,basho_bench_worker_5},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_5,5]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 14:32:08 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.112.0>},{name,basho_bench_worker_4},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_4,4]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 14:32:08 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.122.0>},{name,basho_bench_worker_3},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_3,3]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 14:32:09 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.124.0>},{name,basho_bench_worker_5},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_5,5]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 14:32:09 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 14:32:09 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 14:32:09 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown_error - Reason: normal - Offender: [{pid,<0.128.0>},{name,basho_bench_worker_4},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_4,4]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 14:32:09 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown_error - Reason: normal - Offender: [{pid,<0.133.0>},{name,basho_bench_worker_3},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_3,3]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140723_143206/error.log b/newtests/20140723_143206/error.log deleted file mode 100644 index a79271ee7..000000000 --- a/newtests/20140723_143206/error.log +++ /dev/null @@ -1,17 +0,0 @@ -2014-07-23 14:32:08.616 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash -2014-07-23 14:32:08.616 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.110.0> exit with reason normal in context child_terminated -2014-07-23 14:32:08.617 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash -2014-07-23 14:32:08.617 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash -2014-07-23 14:32:08.708 [error] <0.122.0>@basho_bench_worker:handle_info:149 Worker <0.123.0> exited with crash -2014-07-23 14:32:08.709 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.114.0> exit with reason normal in context child_terminated -2014-07-23 14:32:08.812 [error] <0.124.0>@basho_bench_worker:handle_info:149 Worker <0.126.0> exited with crash -2014-07-23 14:32:08.812 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.112.0> exit with reason normal in context child_terminated -2014-07-23 14:32:08.892 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with crash -2014-07-23 14:32:08.915 [error] <0.128.0>@basho_bench_worker:handle_info:149 Worker <0.130.0> exited with crash -2014-07-23 14:32:08.916 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.122.0> exit with reason normal in context child_terminated -2014-07-23 14:32:09.019 [error] <0.133.0>@basho_bench_worker:handle_info:149 Worker <0.135.0> exited with crash -2014-07-23 14:32:09.019 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.124.0> exit with reason normal in context child_terminated -2014-07-23 14:32:09.138 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-23 14:32:09.138 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-23 14:32:09.138 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.128.0> exit with reason normal in context shutdown_error -2014-07-23 14:32:09.139 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.133.0> exit with reason normal in context shutdown_error diff --git a/newtests/20140723_143206/errors.csv b/newtests/20140723_143206/errors.csv deleted file mode 100644 index 8c4927987..000000000 --- a/newtests/20140723_143206/errors.csv +++ /dev/null @@ -1,2 +0,0 @@ -"error","count" -"{{interactive_tx,interactive_tx},crash}","8" diff --git a/newtests/20140723_143206/floppstore.config b/newtests/20140723_143206/floppstore.config deleted file mode 100644 index b7b52339a..000000000 --- a/newtests/20140723_143206/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 5}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {uniform_int, 5000000}}. - -{value_generator, {fixed_bin, 10}}. - -{operations, [{static_tx, 1}, {interactive_tx,1}]}. %%, {append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140723_143206/interactive-tx_latencies.csv b/newtests/20140723_143206/interactive-tx_latencies.csv deleted file mode 100644 index f97488a55..000000000 --- a/newtests/20140723_143206/interactive-tx_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.529933, 0.529933, 0, 0, 0, 0, 0, 0, 0, 0, 8 diff --git a/newtests/20140723_143206/log.sasl.txt b/newtests/20140723_143206/log.sasl.txt deleted file mode 100644 index 697d14637..000000000 --- a/newtests/20140723_143206/log.sasl.txt +++ /dev/null @@ -1,397 +0,0 @@ - -=PROGRESS REPORT==== 23-Jul-2014::14:32:07 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:32:07 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:32:07 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 23-Jul-2014::14:32:07 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:32:07 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 23-Jul-2014::14:32:08 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:32:08 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 23-Jul-2014::14:32:08 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 23-Jul-2014::14:32:08 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:32:08 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:32:08 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 23-Jul-2014::14:32:08 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:32:08 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:32:08 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:32:08 === - supervisor: {local,net_sup} - started: [{pid,<0.100.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:32:08 === - supervisor: {local,kernel_sup} - started: [{pid,<0.97.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 23-Jul-2014::14:32:08 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.105.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 23-Jul-2014::14:32:08 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.104.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:32:08 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:32:08 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.108.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:32:08 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.110.0>}, - {name,basho_bench_worker_3}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_3,3]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:32:08 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.112.0>}, - {name,basho_bench_worker_4}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_4,4]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:32:08 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.114.0>}, - {name,basho_bench_worker_5}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_5,5]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:32:08 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.116.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:32:08 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 23-Jul-2014::14:32:08 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>}, - {name,basho_bench_worker_3}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_3,3]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 23-Jul-2014::14:32:08 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.122.0>}, - {name,basho_bench_worker_3}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_3,3]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 23-Jul-2014::14:32:08 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.114.0>}, - {name,basho_bench_worker_5}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_5,5]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 23-Jul-2014::14:32:08 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.124.0>}, - {name,basho_bench_worker_5}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_5,5]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 23-Jul-2014::14:32:08 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.112.0>}, - {name,basho_bench_worker_4}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_4,4]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 23-Jul-2014::14:32:08 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.128.0>}, - {name,basho_bench_worker_4}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_4,4]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 23-Jul-2014::14:32:08 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.122.0>}, - {name,basho_bench_worker_3}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_3,3]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 23-Jul-2014::14:32:09 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.133.0>}, - {name,basho_bench_worker_3}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_3,3]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 23-Jul-2014::14:32:09 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.124.0>}, - {name,basho_bench_worker_5}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_5,5]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 23-Jul-2014::14:32:09 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.136.0>}, - {name,basho_bench_worker_5}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_5,5]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 23-Jul-2014::14:32:09 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 23-Jul-2014::14:32:09 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 23-Jul-2014::14:32:09 === - Supervisor: {local,basho_bench_sup} - Context: shutdown_error - Reason: normal - Offender: [{pid,<0.128.0>}, - {name,basho_bench_worker_4}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_4,4]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 23-Jul-2014::14:32:09 === - Supervisor: {local,basho_bench_sup} - Context: shutdown_error - Reason: normal - Offender: [{pid,<0.133.0>}, - {name,basho_bench_worker_3}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_3,3]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140723_143206/static-tx_latencies.csv b/newtests/20140723_143206/static-tx_latencies.csv deleted file mode 100644 index b7f8d86c4..000000000 --- a/newtests/20140723_143206/static-tx_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.529933, 0.529933, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140723_143206/summary.csv b/newtests/20140723_143206/summary.csv deleted file mode 100644 index 68ceba7eb..000000000 --- a/newtests/20140723_143206/summary.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, total, successful, failed -0.529933, 0.529933, 12, 4, 8 diff --git a/newtests/20140723_143600/console.log b/newtests/20140723_143600/console.log deleted file mode 100644 index aa4e32504..000000000 --- a/newtests/20140723_143600/console.log +++ /dev/null @@ -1,114 +0,0 @@ -2014-07-23 14:36:00.227 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_143600/error.log"} into lager_event -2014-07-23 14:36:00.227 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_143600/console.log"} into lager_event -2014-07-23 14:36:00.227 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-23 14:36:00.263 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-23 14:36:00.263 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-23 14:36:00.263 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-23 14:36:00.263 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-23 14:36:00.699 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-23 14:36:01.076 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-23 14:36:01.077 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_143600/console.log to debug -2014-07-23 14:36:01.090 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB -2014-07-23 14:36:01.175 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-23 14:36:01.176 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-23 14:36:01.176 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-23 14:36:01.191 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-23 14:36:01.192 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-23 14:36:01.285 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-23 14:36:01.285 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-23 14:36:01.315 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-23 14:36:01.319 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-23 14:36:01.325 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-23 14:36:01.325 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-23 14:36:01.359 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-23 14:36:01.365 [debug] <0.94.0>@basho_bench_valgen:init_source:85 random source -2014-07-23 14:36:01.493 [debug] <0.97.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.98.0> -2014-07-23 14:36:01.500 [debug] <0.97.0> Supervisor net_sup started auth:start_link() at pid <0.99.0> -2014-07-23 14:36:01.513 [info] <0.96.0>@basho_bench_driver_floppystore:new:58 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-23 14:36:01.513 [debug] <0.97.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.100.0> -2014-07-23 14:36:01.514 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.97.0> -2014-07-23 14:36:01.530 [debug] <0.104.0> Supervisor inet_gethost_native_sup started undefined at pid <0.105.0> -2014-07-23 14:36:01.531 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.104.0> -2014-07-23 14:36:01.548 [info] <0.96.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:36:01.548 [info] <0.96.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-23 14:36:01.549 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-23 14:36:01.626 [info] <0.109.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:36:01.626 [info] <0.109.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-23 14:36:01.627 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.108.0> -2014-07-23 14:36:01.700 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:36:01.700 [info] <0.111.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 3 -2014-07-23 14:36:01.700 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_3, 3) at pid <0.110.0> -2014-07-23 14:36:01.773 [info] <0.113.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:36:01.773 [info] <0.113.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 4 -2014-07-23 14:36:01.774 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_4, 4) at pid <0.112.0> -2014-07-23 14:36:01.847 [info] <0.115.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:36:01.847 [info] <0.115.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 5 -2014-07-23 14:36:01.847 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_5, 5) at pid <0.114.0> -2014-07-23 14:36:01.848 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.116.0> -2014-07-23 14:36:01.853 [info] <0.115.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.115.0> -2014-07-23 14:36:01.853 [info] <0.113.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.113.0> -2014-07-23 14:36:01.853 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> -2014-07-23 14:36:01.853 [info] <0.96.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.96.0> -2014-07-23 14:36:01.853 [info] <0.109.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.109.0> -2014-07-23 14:36:01.854 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-23 14:36:01.929 [debug] <0.113.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{case_clause,{read,2807225,riak_dt_gcounter}},[{basho_bench_driver_floppystore,'-run/4-fun-0-',3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,140}]},{lists,foreach,2,[{file,"lists.erl"},{line,1323}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 14:36:01.929 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash -2014-07-23 14:36:01.930 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.112.0> exit with reason normal in context child_terminated -2014-07-23 14:36:01.952 [debug] <0.111.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{case_clause,{read,2492595,riak_dt_gcounter}},[{basho_bench_driver_floppystore,'-run/4-fun-0-',3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,140}]},{lists,foreach,2,[{file,"lists.erl"},{line,1323}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 14:36:01.952 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash -2014-07-23 14:36:01.986 [debug] <0.115.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{case_clause,{read,661116,riak_dt_gcounter}},[{basho_bench_driver_floppystore,'-run/4-fun-0-',3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,140}]},{lists,foreach,2,[{file,"lists.erl"},{line,1323}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 14:36:01.986 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash -2014-07-23 14:36:02.060 [info] <0.123.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:36:02.060 [info] <0.123.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 4 -2014-07-23 14:36:02.060 [warning] <0.122.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-23 14:36:02.060 [info] <0.123.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.123.0> -2014-07-23 14:36:02.061 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_4, 4) at pid <0.122.0> -2014-07-23 14:36:02.062 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.110.0> exit with reason normal in context child_terminated -2014-07-23 14:36:02.062 [debug] <0.123.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{case_clause,{read,2538062,riak_dt_gcounter}},[{basho_bench_driver_floppystore,'-run/4-fun-0-',3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,140}]},{lists,foreach,2,[{file,"lists.erl"},{line,1323}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 14:36:02.063 [error] <0.122.0>@basho_bench_worker:handle_info:149 Worker <0.123.0> exited with crash -2014-07-23 14:36:02.064 [debug] <0.96.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{case_clause,{read,3171097,riak_dt_gcounter}},[{basho_bench_driver_floppystore,'-run/4-fun-0-',3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,140}]},{lists,foreach,2,[{file,"lists.erl"},{line,1323}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 14:36:02.064 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with crash -2014-07-23 14:36:02.168 [info] <0.128.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:36:02.169 [info] <0.128.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 3 -2014-07-23 14:36:02.169 [warning] <0.125.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-23 14:36:02.169 [info] <0.128.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.128.0> -2014-07-23 14:36:02.169 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_3, 3) at pid <0.125.0> -2014-07-23 14:36:02.170 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.114.0> exit with reason normal in context child_terminated -2014-07-23 14:36:02.170 [debug] <0.128.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{case_clause,{read,3813775,riak_dt_gcounter}},[{basho_bench_driver_floppystore,'-run/4-fun-0-',3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,140}]},{lists,foreach,2,[{file,"lists.erl"},{line,1323}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 14:36:02.170 [error] <0.125.0>@basho_bench_worker:handle_info:149 Worker <0.128.0> exited with crash -2014-07-23 14:36:02.250 [info] <0.131.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:36:02.250 [info] <0.131.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 5 -2014-07-23 14:36:02.251 [warning] <0.130.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-23 14:36:02.251 [info] <0.131.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.131.0> -2014-07-23 14:36:02.251 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_5, 5) at pid <0.130.0> -2014-07-23 14:36:02.252 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.122.0> exit with reason normal in context child_terminated -2014-07-23 14:36:02.255 [debug] <0.131.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{case_clause,{read,2833991,riak_dt_gcounter}},[{basho_bench_driver_floppystore,'-run/4-fun-0-',3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,140}]},{lists,foreach,2,[{file,"lists.erl"},{line,1323}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 14:36:02.255 [error] <0.130.0>@basho_bench_worker:handle_info:149 Worker <0.131.0> exited with crash -2014-07-23 14:36:02.289 [debug] <0.109.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{case_clause,{read,3056099,riak_dt_gcounter}},[{basho_bench_driver_floppystore,'-run/4-fun-0-',3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,140}]},{lists,foreach,2,[{file,"lists.erl"},{line,1323}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 14:36:02.289 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with crash -2014-07-23 14:36:02.345 [info] <0.135.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:36:02.345 [info] <0.135.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 4 -2014-07-23 14:36:02.345 [warning] <0.132.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-23 14:36:02.345 [info] <0.135.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.135.0> -2014-07-23 14:36:02.345 [debug] <0.136.0>@basho_bench_valgen:init_source:85 random source -2014-07-23 14:36:02.346 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_4, 4) at pid <0.132.0> -2014-07-23 14:36:02.347 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-23 14:36:02.347 [debug] <0.135.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{case_clause,{read,3794017,riak_dt_gcounter}},[{basho_bench_driver_floppystore,'-run/4-fun-0-',3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,140}]},{lists,foreach,2,[{file,"lists.erl"},{line,1323}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 14:36:02.347 [error] <0.132.0>@basho_bench_worker:handle_info:149 Worker <0.135.0> exited with crash -2014-07-23 14:36:02.419 [info] <0.138.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:36:02.419 [info] <0.138.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-23 14:36:02.419 [warning] <0.136.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-23 14:36:02.420 [info] <0.138.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.138.0> -2014-07-23 14:36:02.420 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.136.0> -2014-07-23 14:36:02.421 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.125.0> exit with reason normal in context child_terminated -2014-07-23 14:36:02.421 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.125.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-23 14:36:02.422 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.130.0> exit with reason normal in context shutdown_error -2014-07-23 14:36:02.422 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.132.0> exit with reason normal in context shutdown_error -2014-07-23 14:36:02.423 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context shutdown_error -2014-07-23 14:36:02.435 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {static_tx,static_tx} -2014-07-23 14:36:02.435 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {interactive_tx,interactive_tx} -2014-07-23 14:36:02.436 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{interactive_tx,interactive_tx},9},{{{interactive_tx,interactive_tx},crash},9}] -2014-07-23 14:36:02.436 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: -2014-07-23 14:36:02.436 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{interactive_tx,interactive_tx},crash}: 9 diff --git a/newtests/20140723_143600/crash.log b/newtests/20140723_143600/crash.log deleted file mode 100644 index eb0304ae6..000000000 --- a/newtests/20140723_143600/crash.log +++ /dev/null @@ -1,60 +0,0 @@ -2014-07-23 14:36:01 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.112.0>},{name,basho_bench_worker_4},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_4,4]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 14:36:02 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>},{name,basho_bench_worker_3},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_3,3]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 14:36:02 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.114.0>},{name,basho_bench_worker_5},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_5,5]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 14:36:02 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.122.0>},{name,basho_bench_worker_4},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_4,4]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 14:36:02 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 14:36:02 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.125.0>},{name,basho_bench_worker_3},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_3,3]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 14:36:02 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.125.0>},{name,basho_bench_worker_3},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_3,3]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 14:36:02 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown_error - Reason: normal - Offender: [{pid,<0.130.0>},{name,basho_bench_worker_5},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_5,5]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 14:36:02 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown_error - Reason: normal - Offender: [{pid,<0.132.0>},{name,basho_bench_worker_4},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_4,4]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 14:36:02 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown_error - Reason: normal - Offender: [{pid,<0.108.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140723_143600/error.log b/newtests/20140723_143600/error.log deleted file mode 100644 index ccb6fbecd..000000000 --- a/newtests/20140723_143600/error.log +++ /dev/null @@ -1,19 +0,0 @@ -2014-07-23 14:36:01.929 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash -2014-07-23 14:36:01.930 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.112.0> exit with reason normal in context child_terminated -2014-07-23 14:36:01.952 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash -2014-07-23 14:36:01.986 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash -2014-07-23 14:36:02.062 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.110.0> exit with reason normal in context child_terminated -2014-07-23 14:36:02.063 [error] <0.122.0>@basho_bench_worker:handle_info:149 Worker <0.123.0> exited with crash -2014-07-23 14:36:02.064 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with crash -2014-07-23 14:36:02.170 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.114.0> exit with reason normal in context child_terminated -2014-07-23 14:36:02.170 [error] <0.125.0>@basho_bench_worker:handle_info:149 Worker <0.128.0> exited with crash -2014-07-23 14:36:02.252 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.122.0> exit with reason normal in context child_terminated -2014-07-23 14:36:02.255 [error] <0.130.0>@basho_bench_worker:handle_info:149 Worker <0.131.0> exited with crash -2014-07-23 14:36:02.289 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with crash -2014-07-23 14:36:02.347 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-23 14:36:02.347 [error] <0.132.0>@basho_bench_worker:handle_info:149 Worker <0.135.0> exited with crash -2014-07-23 14:36:02.421 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.125.0> exit with reason normal in context child_terminated -2014-07-23 14:36:02.421 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.125.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-23 14:36:02.422 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.130.0> exit with reason normal in context shutdown_error -2014-07-23 14:36:02.422 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.132.0> exit with reason normal in context shutdown_error -2014-07-23 14:36:02.423 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context shutdown_error diff --git a/newtests/20140723_143600/errors.csv b/newtests/20140723_143600/errors.csv deleted file mode 100644 index 59d26ee71..000000000 --- a/newtests/20140723_143600/errors.csv +++ /dev/null @@ -1,2 +0,0 @@ -"error","count" -"{{interactive_tx,interactive_tx},crash}","9" diff --git a/newtests/20140723_143600/floppstore.config b/newtests/20140723_143600/floppstore.config deleted file mode 100644 index b7b52339a..000000000 --- a/newtests/20140723_143600/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 5}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {uniform_int, 5000000}}. - -{value_generator, {fixed_bin, 10}}. - -{operations, [{static_tx, 1}, {interactive_tx,1}]}. %%, {append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140723_143600/interactive-tx_latencies.csv b/newtests/20140723_143600/interactive-tx_latencies.csv deleted file mode 100644 index bac937b0f..000000000 --- a/newtests/20140723_143600/interactive-tx_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.572566, 0.572566, 0, 0, 0, 0, 0, 0, 0, 0, 9 diff --git a/newtests/20140723_143600/log.sasl.txt b/newtests/20140723_143600/log.sasl.txt deleted file mode 100644 index 1e8e3aa8e..000000000 --- a/newtests/20140723_143600/log.sasl.txt +++ /dev/null @@ -1,411 +0,0 @@ - -=PROGRESS REPORT==== 23-Jul-2014::14:36:01 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:36:01 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:36:01 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 23-Jul-2014::14:36:01 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:36:01 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 23-Jul-2014::14:36:01 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:36:01 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 23-Jul-2014::14:36:01 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 23-Jul-2014::14:36:01 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:36:01 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:36:01 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 23-Jul-2014::14:36:01 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:36:01 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:36:01 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:36:01 === - supervisor: {local,net_sup} - started: [{pid,<0.100.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:36:01 === - supervisor: {local,kernel_sup} - started: [{pid,<0.97.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 23-Jul-2014::14:36:01 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.105.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 23-Jul-2014::14:36:01 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.104.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:36:01 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:36:01 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.108.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:36:01 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.110.0>}, - {name,basho_bench_worker_3}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_3,3]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:36:01 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.112.0>}, - {name,basho_bench_worker_4}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_4,4]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:36:01 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.114.0>}, - {name,basho_bench_worker_5}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_5,5]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:36:01 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.116.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:36:01 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 23-Jul-2014::14:36:01 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.112.0>}, - {name,basho_bench_worker_4}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_4,4]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 23-Jul-2014::14:36:02 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.122.0>}, - {name,basho_bench_worker_4}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_4,4]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 23-Jul-2014::14:36:02 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>}, - {name,basho_bench_worker_3}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_3,3]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 23-Jul-2014::14:36:02 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.125.0>}, - {name,basho_bench_worker_3}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_3,3]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 23-Jul-2014::14:36:02 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.114.0>}, - {name,basho_bench_worker_5}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_5,5]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 23-Jul-2014::14:36:02 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.130.0>}, - {name,basho_bench_worker_5}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_5,5]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 23-Jul-2014::14:36:02 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.122.0>}, - {name,basho_bench_worker_4}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_4,4]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 23-Jul-2014::14:36:02 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.132.0>}, - {name,basho_bench_worker_4}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_4,4]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 23-Jul-2014::14:36:02 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 23-Jul-2014::14:36:02 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.136.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 23-Jul-2014::14:36:02 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.125.0>}, - {name,basho_bench_worker_3}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_3,3]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 23-Jul-2014::14:36:02 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.125.0>}, - {name,basho_bench_worker_3}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_3,3]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 23-Jul-2014::14:36:02 === - Supervisor: {local,basho_bench_sup} - Context: shutdown_error - Reason: normal - Offender: [{pid,<0.130.0>}, - {name,basho_bench_worker_5}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_5,5]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 23-Jul-2014::14:36:02 === - Supervisor: {local,basho_bench_sup} - Context: shutdown_error - Reason: normal - Offender: [{pid,<0.132.0>}, - {name,basho_bench_worker_4}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_4,4]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 23-Jul-2014::14:36:02 === - Supervisor: {local,basho_bench_sup} - Context: shutdown_error - Reason: normal - Offender: [{pid,<0.108.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140723_143600/static-tx_latencies.csv b/newtests/20140723_143600/static-tx_latencies.csv deleted file mode 100644 index ae8538f12..000000000 --- a/newtests/20140723_143600/static-tx_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.572566, 0.572566, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140723_143600/summary.csv b/newtests/20140723_143600/summary.csv deleted file mode 100644 index 40c83c7e8..000000000 --- a/newtests/20140723_143600/summary.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, total, successful, failed -0.572566, 0.572566, 12, 3, 9 diff --git a/newtests/20140723_144217/console.log b/newtests/20140723_144217/console.log deleted file mode 100644 index 98cb09539..000000000 --- a/newtests/20140723_144217/console.log +++ /dev/null @@ -1,103 +0,0 @@ -2014-07-23 14:42:17.693 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_144217/error.log"} into lager_event -2014-07-23 14:42:17.693 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_144217/console.log"} into lager_event -2014-07-23 14:42:17.693 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-23 14:42:17.728 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-23 14:42:17.728 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-23 14:42:17.728 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-23 14:42:17.728 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-23 14:42:18.169 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-23 14:42:18.599 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-23 14:42:18.600 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_144217/console.log to debug -2014-07-23 14:42:18.615 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB -2014-07-23 14:42:18.700 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-23 14:42:18.700 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-23 14:42:18.701 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-23 14:42:18.716 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-23 14:42:18.717 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-23 14:42:18.809 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-23 14:42:18.809 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-23 14:42:18.839 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-23 14:42:18.847 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-23 14:42:18.852 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-23 14:42:18.852 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-23 14:42:18.887 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-23 14:42:18.893 [debug] <0.94.0>@basho_bench_valgen:init_source:85 random source -2014-07-23 14:42:19.021 [debug] <0.97.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.98.0> -2014-07-23 14:42:19.028 [debug] <0.97.0> Supervisor net_sup started auth:start_link() at pid <0.99.0> -2014-07-23 14:42:19.043 [info] <0.96.0>@basho_bench_driver_floppystore:new:58 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-23 14:42:19.043 [debug] <0.97.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.100.0> -2014-07-23 14:42:19.044 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.97.0> -2014-07-23 14:42:19.059 [debug] <0.104.0> Supervisor inet_gethost_native_sup started undefined at pid <0.105.0> -2014-07-23 14:42:19.059 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.104.0> -2014-07-23 14:42:19.078 [info] <0.96.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:42:19.078 [info] <0.96.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-23 14:42:19.079 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-23 14:42:19.161 [info] <0.109.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:42:19.161 [info] <0.109.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-23 14:42:19.162 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.108.0> -2014-07-23 14:42:19.242 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:42:19.242 [info] <0.111.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 3 -2014-07-23 14:42:19.243 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_3, 3) at pid <0.110.0> -2014-07-23 14:42:19.316 [info] <0.113.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:42:19.316 [info] <0.113.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 4 -2014-07-23 14:42:19.316 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_4, 4) at pid <0.112.0> -2014-07-23 14:42:19.390 [info] <0.115.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:42:19.390 [info] <0.115.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 5 -2014-07-23 14:42:19.391 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_5, 5) at pid <0.114.0> -2014-07-23 14:42:19.391 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.116.0> -2014-07-23 14:42:19.395 [info] <0.115.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.115.0> -2014-07-23 14:42:19.395 [info] <0.113.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.113.0> -2014-07-23 14:42:19.396 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> -2014-07-23 14:42:19.396 [info] <0.109.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.109.0> -2014-07-23 14:42:19.396 [info] <0.96.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.96.0> -2014-07-23 14:42:19.396 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-23 14:42:19.627 [debug] <0.111.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{badmatch,{badrpc,{'EXIT',{{case_clause,1406119339585412},[{floppy,clockSI_istart_tx,1,[{file,"src/floppy.erl"},{line,72}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,139}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 14:42:19.627 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash -2014-07-23 14:42:19.628 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.110.0> exit with reason normal in context child_terminated -2014-07-23 14:42:19.631 [debug] <0.113.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{badmatch,{badrpc,{'EXIT',{{case_clause,1406119339599504},[{floppy,clockSI_istart_tx,1,[{file,"src/floppy.erl"},{line,72}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,139}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 14:42:19.631 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash -2014-07-23 14:42:19.674 [debug] <0.115.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{badmatch,{badrpc,{'EXIT',{{case_clause,1406119339644329},[{floppy,clockSI_istart_tx,1,[{file,"src/floppy.erl"},{line,72}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,139}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 14:42:19.674 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash -2014-07-23 14:42:19.757 [info] <0.127.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:42:19.757 [info] <0.127.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 3 -2014-07-23 14:42:19.758 [warning] <0.123.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-23 14:42:19.758 [info] <0.127.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.127.0> -2014-07-23 14:42:19.758 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_3, 3) at pid <0.123.0> -2014-07-23 14:42:19.759 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.112.0> exit with reason normal in context child_terminated -2014-07-23 14:42:19.781 [debug] <0.109.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{badmatch,{badrpc,{'EXIT',{{case_clause,1406119339769262},[{floppy,clockSI_istart_tx,1,[{file,"src/floppy.erl"},{line,72}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,139}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 14:42:19.781 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with crash -2014-07-23 14:42:19.835 [debug] <0.127.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{badmatch,{badrpc,{'EXIT',{{case_clause,1406119339813278},[{floppy,clockSI_istart_tx,1,[{file,"src/floppy.erl"},{line,72}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,139}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 14:42:19.835 [error] <0.123.0>@basho_bench_worker:handle_info:149 Worker <0.127.0> exited with crash -2014-07-23 14:42:19.876 [info] <0.132.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:42:19.876 [info] <0.132.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 4 -2014-07-23 14:42:19.876 [warning] <0.129.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-23 14:42:19.876 [info] <0.132.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.132.0> -2014-07-23 14:42:19.876 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_4, 4) at pid <0.129.0> -2014-07-23 14:42:19.877 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.114.0> exit with reason normal in context child_terminated -2014-07-23 14:42:20.018 [info] <0.136.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:42:20.018 [info] <0.136.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 5 -2014-07-23 14:42:20.018 [warning] <0.134.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-23 14:42:20.018 [info] <0.136.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.136.0> -2014-07-23 14:42:20.019 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_5, 5) at pid <0.134.0> -2014-07-23 14:42:20.020 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated -2014-07-23 14:42:20.115 [info] <0.139.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:42:20.115 [info] <0.139.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-23 14:42:20.115 [warning] <0.137.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-23 14:42:20.115 [info] <0.139.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.139.0> -2014-07-23 14:42:20.116 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.137.0> -2014-07-23 14:42:20.117 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.123.0> exit with reason normal in context child_terminated -2014-07-23 14:42:20.251 [info] <0.143.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:42:20.251 [info] <0.143.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 3 -2014-07-23 14:42:20.251 [warning] <0.141.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-23 14:42:20.251 [info] <0.143.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.143.0> -2014-07-23 14:42:20.252 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_3, 3) at pid <0.141.0> -2014-07-23 14:42:20.322 [debug] <0.136.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{badmatch,{badrpc,{'EXIT',{{case_clause,1406119340287928},[{floppy,clockSI_istart_tx,1,[{file,"src/floppy.erl"},{line,72}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,139}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 14:42:20.322 [error] <0.134.0>@basho_bench_worker:handle_info:149 Worker <0.136.0> exited with crash -2014-07-23 14:42:20.323 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.134.0> exit with reason normal in context child_terminated -2014-07-23 14:42:20.323 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.134.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-23 14:42:20.343 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {static_tx,static_tx} -2014-07-23 14:42:20.344 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{interactive_tx,interactive_tx},6},{{{interactive_tx,interactive_tx},crash},6}] -2014-07-23 14:42:20.344 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: -2014-07-23 14:42:20.344 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{interactive_tx,interactive_tx},crash}: 6 diff --git a/newtests/20140723_144217/crash.log b/newtests/20140723_144217/crash.log deleted file mode 100644 index 8c9d842f5..000000000 --- a/newtests/20140723_144217/crash.log +++ /dev/null @@ -1,42 +0,0 @@ -2014-07-23 14:42:19 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>},{name,basho_bench_worker_3},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_3,3]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 14:42:19 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.112.0>},{name,basho_bench_worker_4},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_4,4]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 14:42:19 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.114.0>},{name,basho_bench_worker_5},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_5,5]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 14:42:20 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.108.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 14:42:20 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.123.0>},{name,basho_bench_worker_3},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_3,3]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 14:42:20 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.134.0>},{name,basho_bench_worker_5},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_5,5]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 14:42:20 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.134.0>},{name,basho_bench_worker_5},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_5,5]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140723_144217/error.log b/newtests/20140723_144217/error.log deleted file mode 100644 index 364ddc33d..000000000 --- a/newtests/20140723_144217/error.log +++ /dev/null @@ -1,13 +0,0 @@ -2014-07-23 14:42:19.627 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash -2014-07-23 14:42:19.628 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.110.0> exit with reason normal in context child_terminated -2014-07-23 14:42:19.631 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash -2014-07-23 14:42:19.674 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash -2014-07-23 14:42:19.759 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.112.0> exit with reason normal in context child_terminated -2014-07-23 14:42:19.781 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with crash -2014-07-23 14:42:19.835 [error] <0.123.0>@basho_bench_worker:handle_info:149 Worker <0.127.0> exited with crash -2014-07-23 14:42:19.877 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.114.0> exit with reason normal in context child_terminated -2014-07-23 14:42:20.020 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated -2014-07-23 14:42:20.117 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.123.0> exit with reason normal in context child_terminated -2014-07-23 14:42:20.322 [error] <0.134.0>@basho_bench_worker:handle_info:149 Worker <0.136.0> exited with crash -2014-07-23 14:42:20.323 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.134.0> exit with reason normal in context child_terminated -2014-07-23 14:42:20.323 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.134.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140723_144217/errors.csv b/newtests/20140723_144217/errors.csv deleted file mode 100644 index aca3eb71a..000000000 --- a/newtests/20140723_144217/errors.csv +++ /dev/null @@ -1,2 +0,0 @@ -"error","count" -"{{interactive_tx,interactive_tx},crash}","6" diff --git a/newtests/20140723_144217/floppstore.config b/newtests/20140723_144217/floppstore.config deleted file mode 100644 index b7b52339a..000000000 --- a/newtests/20140723_144217/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 5}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {uniform_int, 5000000}}. - -{value_generator, {fixed_bin, 10}}. - -{operations, [{static_tx, 1}, {interactive_tx,1}]}. %%, {append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140723_144217/interactive-tx_latencies.csv b/newtests/20140723_144217/interactive-tx_latencies.csv deleted file mode 100644 index f65d05816..000000000 --- a/newtests/20140723_144217/interactive-tx_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.932204, 0.932204, 8, 74130, 228782.4, 231442, 343866, 343866, 343866, 343866, 6 diff --git a/newtests/20140723_144217/log.sasl.txt b/newtests/20140723_144217/log.sasl.txt deleted file mode 100644 index 4db3239ea..000000000 --- a/newtests/20140723_144217/log.sasl.txt +++ /dev/null @@ -1,369 +0,0 @@ - -=PROGRESS REPORT==== 23-Jul-2014::14:42:18 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:42:18 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:42:18 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 23-Jul-2014::14:42:18 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:42:18 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 23-Jul-2014::14:42:18 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:42:18 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 23-Jul-2014::14:42:18 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 23-Jul-2014::14:42:18 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:42:18 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:42:18 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 23-Jul-2014::14:42:18 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:42:19 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:42:19 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:42:19 === - supervisor: {local,net_sup} - started: [{pid,<0.100.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:42:19 === - supervisor: {local,kernel_sup} - started: [{pid,<0.97.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 23-Jul-2014::14:42:19 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.105.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 23-Jul-2014::14:42:19 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.104.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:42:19 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:42:19 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.108.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:42:19 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.110.0>}, - {name,basho_bench_worker_3}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_3,3]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:42:19 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.112.0>}, - {name,basho_bench_worker_4}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_4,4]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:42:19 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.114.0>}, - {name,basho_bench_worker_5}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_5,5]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:42:19 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.116.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:42:19 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 23-Jul-2014::14:42:19 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>}, - {name,basho_bench_worker_3}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_3,3]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 23-Jul-2014::14:42:19 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.123.0>}, - {name,basho_bench_worker_3}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_3,3]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 23-Jul-2014::14:42:19 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.112.0>}, - {name,basho_bench_worker_4}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_4,4]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 23-Jul-2014::14:42:19 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.129.0>}, - {name,basho_bench_worker_4}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_4,4]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 23-Jul-2014::14:42:19 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.114.0>}, - {name,basho_bench_worker_5}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_5,5]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 23-Jul-2014::14:42:20 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.134.0>}, - {name,basho_bench_worker_5}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_5,5]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 23-Jul-2014::14:42:20 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.108.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 23-Jul-2014::14:42:20 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.137.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 23-Jul-2014::14:42:20 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.123.0>}, - {name,basho_bench_worker_3}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_3,3]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 23-Jul-2014::14:42:20 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.141.0>}, - {name,basho_bench_worker_3}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_3,3]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 23-Jul-2014::14:42:20 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.134.0>}, - {name,basho_bench_worker_5}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_5,5]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 23-Jul-2014::14:42:20 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.134.0>}, - {name,basho_bench_worker_5}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_5,5]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140723_144217/static-tx_latencies.csv b/newtests/20140723_144217/static-tx_latencies.csv deleted file mode 100644 index a3ec184ea..000000000 --- a/newtests/20140723_144217/static-tx_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.932204, 0.932204, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140723_144217/summary.csv b/newtests/20140723_144217/summary.csv deleted file mode 100644 index 3cb376a3c..000000000 --- a/newtests/20140723_144217/summary.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, total, successful, failed -0.932204, 0.932204, 18, 12, 6 diff --git a/newtests/20140723_144723/console.log b/newtests/20140723_144723/console.log deleted file mode 100644 index 1c95a5003..000000000 --- a/newtests/20140723_144723/console.log +++ /dev/null @@ -1,124 +0,0 @@ -2014-07-23 14:47:24.000 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_144723/error.log"} into lager_event -2014-07-23 14:47:24.000 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_144723/console.log"} into lager_event -2014-07-23 14:47:24.000 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-23 14:47:24.039 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-23 14:47:24.039 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-23 14:47:24.039 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-23 14:47:24.039 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-23 14:47:24.475 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-23 14:47:24.842 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-23 14:47:24.843 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_144723/console.log to debug -2014-07-23 14:47:24.858 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB -2014-07-23 14:47:24.934 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-23 14:47:24.935 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-23 14:47:24.935 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-23 14:47:24.951 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-23 14:47:24.951 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-23 14:47:25.041 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-23 14:47:25.041 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-23 14:47:25.075 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-23 14:47:25.079 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-23 14:47:25.086 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-23 14:47:25.086 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-23 14:47:25.117 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-23 14:47:25.124 [debug] <0.94.0>@basho_bench_valgen:init_source:85 random source -2014-07-23 14:47:25.257 [debug] <0.97.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.98.0> -2014-07-23 14:47:25.264 [debug] <0.97.0> Supervisor net_sup started auth:start_link() at pid <0.99.0> -2014-07-23 14:47:25.276 [info] <0.96.0>@basho_bench_driver_floppystore:new:58 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-23 14:47:25.277 [debug] <0.97.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.100.0> -2014-07-23 14:47:25.277 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.97.0> -2014-07-23 14:47:25.291 [debug] <0.104.0> Supervisor inet_gethost_native_sup started undefined at pid <0.105.0> -2014-07-23 14:47:25.291 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.104.0> -2014-07-23 14:47:25.310 [info] <0.96.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:47:25.310 [info] <0.96.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-23 14:47:25.311 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-23 14:47:25.385 [info] <0.109.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:47:25.385 [info] <0.109.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-23 14:47:25.385 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.108.0> -2014-07-23 14:47:25.463 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:47:25.463 [info] <0.111.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 3 -2014-07-23 14:47:25.463 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_3, 3) at pid <0.110.0> -2014-07-23 14:47:25.537 [info] <0.113.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:47:25.537 [info] <0.113.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 4 -2014-07-23 14:47:25.538 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_4, 4) at pid <0.112.0> -2014-07-23 14:47:25.613 [info] <0.115.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:47:25.613 [info] <0.115.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 5 -2014-07-23 14:47:25.614 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_5, 5) at pid <0.114.0> -2014-07-23 14:47:25.614 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.116.0> -2014-07-23 14:47:25.619 [info] <0.115.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.115.0> -2014-07-23 14:47:25.619 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> -2014-07-23 14:47:25.619 [info] <0.113.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.113.0> -2014-07-23 14:47:25.619 [info] <0.109.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.109.0> -2014-07-23 14:47:25.619 [info] <0.96.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.96.0> -2014-07-23 14:47:25.620 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-23 14:47:32.324 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 14:47:32.324 [error] emulator Error in process <0.96.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-23 14:47:32.324 [debug] <0.257.0>@basho_bench_valgen:init_source:85 random source -2014-07-23 14:47:32.325 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-23 14:47:32.490 [info] <0.259.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:47:32.490 [info] <0.259.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-23 14:47:32.490 [warning] <0.257.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-23 14:47:32.490 [info] <0.259.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.259.0> -2014-07-23 14:47:32.491 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.257.0> -2014-07-23 14:47:33.211 [debug] <0.109.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{badmatch,{badrpc,{'EXIT',{timeout,{gen_fsm,sync_send_event,[<10082.7774.1>,{read,{1099714,riak_dt_gcounter}}]}}}}},[{basho_bench_driver_floppystore,'-run/4-fun-0-',3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{lists,foreach,2,[{file,"lists.erl"},{line,1323}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 14:47:33.211 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with crash -2014-07-23 14:47:33.212 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated -2014-07-23 14:47:33.343 [info] <0.279.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:47:33.343 [info] <0.279.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-23 14:47:33.343 [warning] <0.276.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-23 14:47:33.343 [info] <0.279.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.279.0> -2014-07-23 14:47:33.344 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.276.0> -2014-07-23 14:47:35.621 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{interactive_tx,interactive_tx},1},{{{interactive_tx,interactive_tx},crash},1}] -2014-07-23 14:47:35.747 [debug] <0.111.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{badmatch,{badrpc,{'EXIT',{timeout,{gen_fsm,sync_send_event,[<10082.11695.1>,{read,{4042980,riak_dt_gcounter}}]}}}}},[{basho_bench_driver_floppystore,'-run/4-fun-0-',3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{lists,foreach,2,[{file,"lists.erl"},{line,1323}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 14:47:35.747 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash -2014-07-23 14:47:35.812 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.110.0> exit with reason normal in context child_terminated -2014-07-23 14:47:35.869 [info] <0.330.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:47:35.869 [info] <0.330.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 3 -2014-07-23 14:47:35.869 [warning] <0.329.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-23 14:47:35.869 [info] <0.330.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.330.0> -2014-07-23 14:47:35.870 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_3, 3) at pid <0.329.0> -2014-07-23 14:47:40.341 [debug] <0.113.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{badmatch,{badrpc,{'EXIT',{timeout,{gen_fsm,sync_send_event,[<10082.16935.1>,{read,{4900186,riak_dt_gcounter}}]}}}}},[{basho_bench_driver_floppystore,'-run/4-fun-0-',3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{lists,foreach,2,[{file,"lists.erl"},{line,1323}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 14:47:40.341 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash -2014-07-23 14:47:40.342 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.112.0> exit with reason normal in context child_terminated -2014-07-23 14:47:40.438 [info] <0.408.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:47:40.438 [info] <0.408.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 4 -2014-07-23 14:47:40.439 [warning] <0.407.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-23 14:47:40.439 [info] <0.408.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.408.0> -2014-07-23 14:47:40.439 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_4, 4) at pid <0.407.0> -2014-07-23 14:47:41.311 [debug] <0.330.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{badmatch,{badrpc,{'EXIT',{timeout,{gen_fsm,sync_send_event,[<10082.18206.1>,{read,{4142599,riak_dt_gcounter}}]}}}}},[{basho_bench_driver_floppystore,'-run/4-fun-0-',3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{lists,foreach,2,[{file,"lists.erl"},{line,1323}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 14:47:41.312 [error] <0.329.0>@basho_bench_worker:handle_info:149 Worker <0.330.0> exited with crash -2014-07-23 14:47:41.312 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.329.0> exit with reason normal in context child_terminated -2014-07-23 14:47:41.409 [info] <0.422.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:47:41.409 [info] <0.422.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 3 -2014-07-23 14:47:41.409 [warning] <0.420.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-23 14:47:41.409 [info] <0.422.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.422.0> -2014-07-23 14:47:41.410 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_3, 3) at pid <0.420.0> -2014-07-23 14:47:44.115 [debug] <0.259.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{badmatch,{badrpc,{'EXIT',{timeout,{gen_fsm,sync_send_event,[<10082.21305.1>,{read,{4828180,riak_dt_gcounter}}]}}}}},[{basho_bench_driver_floppystore,'-run/4-fun-0-',3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{lists,foreach,2,[{file,"lists.erl"},{line,1323}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 14:47:44.115 [error] <0.257.0>@basho_bench_worker:handle_info:149 Worker <0.259.0> exited with crash -2014-07-23 14:47:44.115 [debug] <0.474.0>@basho_bench_valgen:init_source:85 random source -2014-07-23 14:47:44.116 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.257.0> exit with reason normal in context child_terminated -2014-07-23 14:47:44.266 [info] <0.476.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:47:44.266 [info] <0.476.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-23 14:47:44.267 [warning] <0.474.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-23 14:47:44.267 [info] <0.476.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.476.0> -2014-07-23 14:47:44.267 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.474.0> -2014-07-23 14:47:44.336 [error] <0.276.0>@basho_bench_worker:handle_info:149 Worker <0.279.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 14:47:44.336 [error] emulator Error in process <0.279.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-23 14:47:44.337 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.276.0> exit with reason normal in context child_terminated -2014-07-23 14:47:44.399 [debug] <0.115.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{badmatch,{badrpc,{'EXIT',{timeout,{gen_fsm,sync_send_event,[<10082.21538.1>,{read,{148069,riak_dt_gcounter}}]}}}}},[{basho_bench_driver_floppystore,'-run/4-fun-0-',3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{lists,foreach,2,[{file,"lists.erl"},{line,1323}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 14:47:44.399 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash -2014-07-23 14:47:44.465 [info] <0.482.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:47:44.465 [info] <0.482.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-23 14:47:44.465 [warning] <0.480.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-23 14:47:44.465 [info] <0.482.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.482.0> -2014-07-23 14:47:44.466 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.480.0> -2014-07-23 14:47:44.467 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.114.0> exit with reason normal in context child_terminated -2014-07-23 14:47:44.467 [info] <0.84.0>@basho_bench_stats:process_stats:274 Errors:[{{interactive_tx,interactive_tx},5},{{{interactive_tx,interactive_tx},crash},5}] -2014-07-23 14:47:44.467 [info] <0.84.0>@basho_bench_stats:report_total_errors:321 Total Errors: -2014-07-23 14:47:44.467 [info] <0.84.0>@basho_bench_stats:report_total_errors:327 {{interactive_tx,interactive_tx},crash}: 6 diff --git a/newtests/20140723_144723/crash.log b/newtests/20140723_144723/crash.log deleted file mode 100644 index 1e4ae3516..000000000 --- a/newtests/20140723_144723/crash.log +++ /dev/null @@ -1,60 +0,0 @@ -2014-07-23 14:47:32 =ERROR REPORT==== -Error in process <0.96.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - -2014-07-23 14:47:32 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 14:47:33 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.108.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 14:47:35 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>},{name,basho_bench_worker_3},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_3,3]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 14:47:40 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.112.0>},{name,basho_bench_worker_4},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_4,4]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 14:47:41 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.329.0>},{name,basho_bench_worker_3},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_3,3]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 14:47:44 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.257.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 14:47:44 =ERROR REPORT==== -Error in process <0.279.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - -2014-07-23 14:47:44 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.276.0>},{name,basho_bench_worker_2},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_2,2]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 14:47:44 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.114.0>},{name,basho_bench_worker_5},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_5,5]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 14:47:44 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.114.0>},{name,basho_bench_worker_5},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_5,5]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140723_144723/error.log b/newtests/20140723_144723/error.log deleted file mode 100644 index fbcaa2237..000000000 --- a/newtests/20140723_144723/error.log +++ /dev/null @@ -1,22 +0,0 @@ -2014-07-23 14:47:32.324 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 14:47:32.324 [error] emulator Error in process <0.96.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-23 14:47:32.325 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated -2014-07-23 14:47:33.211 [error] <0.108.0>@basho_bench_worker:handle_info:149 Worker <0.109.0> exited with crash -2014-07-23 14:47:33.212 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.108.0> exit with reason normal in context child_terminated -2014-07-23 14:47:35.747 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with crash -2014-07-23 14:47:35.812 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.110.0> exit with reason normal in context child_terminated -2014-07-23 14:47:40.341 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with crash -2014-07-23 14:47:40.342 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.112.0> exit with reason normal in context child_terminated -2014-07-23 14:47:41.312 [error] <0.329.0>@basho_bench_worker:handle_info:149 Worker <0.330.0> exited with crash -2014-07-23 14:47:41.312 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.329.0> exit with reason normal in context child_terminated -2014-07-23 14:47:44.115 [error] <0.257.0>@basho_bench_worker:handle_info:149 Worker <0.259.0> exited with crash -2014-07-23 14:47:44.116 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.257.0> exit with reason normal in context child_terminated -2014-07-23 14:47:44.336 [error] <0.276.0>@basho_bench_worker:handle_info:149 Worker <0.279.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 14:47:44.336 [error] emulator Error in process <0.279.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-23 14:47:44.337 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_2 started with basho_bench_worker:start_link(basho_bench_worker_2, 2) at <0.276.0> exit with reason normal in context child_terminated -2014-07-23 14:47:44.399 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash -2014-07-23 14:47:44.467 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.114.0> exit with reason normal in context child_terminated diff --git a/newtests/20140723_144723/errors.csv b/newtests/20140723_144723/errors.csv deleted file mode 100644 index aca3eb71a..000000000 --- a/newtests/20140723_144723/errors.csv +++ /dev/null @@ -1,2 +0,0 @@ -"error","count" -"{{interactive_tx,interactive_tx},crash}","6" diff --git a/newtests/20140723_144723/floppstore.config b/newtests/20140723_144723/floppstore.config deleted file mode 100644 index b7b52339a..000000000 --- a/newtests/20140723_144723/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 5}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {uniform_int, 5000000}}. - -{value_generator, {fixed_bin, 10}}. - -{operations, [{static_tx, 1}, {interactive_tx,1}]}. %%, {append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140723_144723/interactive-tx_latencies.csv b/newtests/20140723_144723/interactive-tx_latencies.csv deleted file mode 100644 index dd384e2ab..000000000 --- a/newtests/20140723_144723/interactive-tx_latencies.csv +++ /dev/null @@ -1,3 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -10.00036, 10.00036, 102, 57285, 190765.9, 184507, 319226, 388662, 391066, 391066, 1 -18.852447, 8.852087, 71, 39511, 166327.0, 159352, 275152, 388662, 391066, 391066, 5 diff --git a/newtests/20140723_144723/log.sasl.txt b/newtests/20140723_144723/log.sasl.txt deleted file mode 100644 index eee9d7403..000000000 --- a/newtests/20140723_144723/log.sasl.txt +++ /dev/null @@ -1,419 +0,0 @@ - -=PROGRESS REPORT==== 23-Jul-2014::14:47:24 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:47:24 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:47:24 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 23-Jul-2014::14:47:24 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:47:24 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 23-Jul-2014::14:47:25 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:47:25 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 23-Jul-2014::14:47:25 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 23-Jul-2014::14:47:25 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:47:25 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:47:25 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 23-Jul-2014::14:47:25 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:47:25 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:47:25 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:47:25 === - supervisor: {local,net_sup} - started: [{pid,<0.100.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:47:25 === - supervisor: {local,kernel_sup} - started: [{pid,<0.97.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 23-Jul-2014::14:47:25 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.105.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 23-Jul-2014::14:47:25 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.104.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:47:25 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:47:25 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.108.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:47:25 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.110.0>}, - {name,basho_bench_worker_3}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_3,3]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:47:25 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.112.0>}, - {name,basho_bench_worker_4}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_4,4]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:47:25 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.114.0>}, - {name,basho_bench_worker_5}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_5,5]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:47:25 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.116.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:47:25 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 23-Jul-2014::14:47:32 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 23-Jul-2014::14:47:32 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.257.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 23-Jul-2014::14:47:33 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.108.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 23-Jul-2014::14:47:33 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.276.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 23-Jul-2014::14:47:35 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>}, - {name,basho_bench_worker_3}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_3,3]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 23-Jul-2014::14:47:35 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.329.0>}, - {name,basho_bench_worker_3}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_3,3]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 23-Jul-2014::14:47:40 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.112.0>}, - {name,basho_bench_worker_4}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_4,4]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 23-Jul-2014::14:47:40 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.407.0>}, - {name,basho_bench_worker_4}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_4,4]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 23-Jul-2014::14:47:41 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.329.0>}, - {name,basho_bench_worker_3}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_3,3]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 23-Jul-2014::14:47:41 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.420.0>}, - {name,basho_bench_worker_3}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_3,3]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 23-Jul-2014::14:47:44 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.257.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 23-Jul-2014::14:47:44 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.474.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 23-Jul-2014::14:47:44 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.276.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 23-Jul-2014::14:47:44 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.480.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 23-Jul-2014::14:47:44 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.114.0>}, - {name,basho_bench_worker_5}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_5,5]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 23-Jul-2014::14:47:44 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.114.0>}, - {name,basho_bench_worker_5}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_5,5]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140723_144723/static-tx_latencies.csv b/newtests/20140723_144723/static-tx_latencies.csv deleted file mode 100644 index 8b8fd0759..000000000 --- a/newtests/20140723_144723/static-tx_latencies.csv +++ /dev/null @@ -1,3 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -10.00036, 10.00036, 97, 35613, 190244.1, 171318, 338177, 434668, 440473, 440473, 0 -18.852447, 8.852087, 71, 35613, 162834.4, 154017, 313236, 338587, 339400, 339400, 0 diff --git a/newtests/20140723_144723/summary.csv b/newtests/20140723_144723/summary.csv deleted file mode 100644 index c8dc73342..000000000 --- a/newtests/20140723_144723/summary.csv +++ /dev/null @@ -1,3 +0,0 @@ -elapsed, window, total, successful, failed -10.00036, 10.00036, 200, 199, 1 -18.852447, 8.852087, 147, 142, 5 diff --git a/newtests/20140723_144925/append_latencies.csv b/newtests/20140723_144925/append_latencies.csv deleted file mode 100644 index feb7d4588..000000000 --- a/newtests/20140723_144925/append_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.724846, 0.724846, 19, 2345, 14992.8, 3778, 66467, 71968, 71968, 71968, 0 diff --git a/newtests/20140723_144925/console.log b/newtests/20140723_144925/console.log deleted file mode 100644 index a2873f918..000000000 --- a/newtests/20140723_144925/console.log +++ /dev/null @@ -1,116 +0,0 @@ -2014-07-23 14:49:26.053 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_144925/error.log"} into lager_event -2014-07-23 14:49:26.053 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_144925/console.log"} into lager_event -2014-07-23 14:49:26.053 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-23 14:49:26.088 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-23 14:49:26.088 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-23 14:49:26.089 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-23 14:49:26.089 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-23 14:49:26.530 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-23 14:49:26.875 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-23 14:49:26.876 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_144925/console.log to debug -2014-07-23 14:49:26.887 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB -2014-07-23 14:49:26.963 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-23 14:49:26.963 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-23 14:49:26.964 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-23 14:49:26.979 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-23 14:49:26.980 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-23 14:49:27.064 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-23 14:49:27.065 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-23 14:49:27.093 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-23 14:49:27.097 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-23 14:49:27.104 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-23 14:49:27.104 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-23 14:49:27.140 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-23 14:49:27.145 [debug] <0.96.0>@basho_bench_valgen:init_source:85 random source -2014-07-23 14:49:27.272 [debug] <0.99.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.100.0> -2014-07-23 14:49:27.278 [debug] <0.99.0> Supervisor net_sup started auth:start_link() at pid <0.101.0> -2014-07-23 14:49:27.290 [info] <0.98.0>@basho_bench_driver_floppystore:new:58 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-23 14:49:27.291 [debug] <0.99.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.102.0> -2014-07-23 14:49:27.291 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.99.0> -2014-07-23 14:49:27.304 [debug] <0.106.0> Supervisor inet_gethost_native_sup started undefined at pid <0.107.0> -2014-07-23 14:49:27.305 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.106.0> -2014-07-23 14:49:27.324 [info] <0.98.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:49:27.324 [info] <0.98.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-23 14:49:27.325 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.96.0> -2014-07-23 14:49:27.398 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:49:27.398 [info] <0.111.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-23 14:49:27.399 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.110.0> -2014-07-23 14:49:27.472 [info] <0.113.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:49:27.472 [info] <0.113.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 3 -2014-07-23 14:49:27.472 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_3, 3) at pid <0.112.0> -2014-07-23 14:49:27.545 [info] <0.115.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:49:27.545 [info] <0.115.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 4 -2014-07-23 14:49:27.545 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_4, 4) at pid <0.114.0> -2014-07-23 14:49:27.621 [info] <0.117.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:49:27.621 [info] <0.117.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 5 -2014-07-23 14:49:27.621 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_5, 5) at pid <0.116.0> -2014-07-23 14:49:27.622 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.118.0> -2014-07-23 14:49:27.627 [info] <0.117.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.117.0> -2014-07-23 14:49:27.627 [info] <0.115.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.115.0> -2014-07-23 14:49:27.627 [info] <0.113.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.113.0> -2014-07-23 14:49:27.627 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> -2014-07-23 14:49:27.627 [info] <0.98.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.98.0> -2014-07-23 14:49:27.628 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-23 14:49:27.697 [error] emulator Error in process <0.113.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-23 14:49:27.698 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 14:49:27.758 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 14:49:27.776 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.112.0> exit with reason normal in context child_terminated -2014-07-23 14:49:27.776 [error] emulator Error in process <0.115.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-23 14:49:27.856 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 14:49:27.856 [error] emulator Error in process <0.117.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-23 14:49:27.880 [info] <0.134.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:49:27.880 [info] <0.134.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 3 -2014-07-23 14:49:27.881 [warning] <0.132.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-23 14:49:27.881 [info] <0.134.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.134.0> -2014-07-23 14:49:27.881 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_3, 3) at pid <0.132.0> -2014-07-23 14:49:27.882 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.114.0> exit with reason normal in context child_terminated -2014-07-23 14:49:27.990 [info] <0.138.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:49:27.990 [info] <0.138.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 4 -2014-07-23 14:49:27.991 [warning] <0.136.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-23 14:49:27.991 [info] <0.138.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.138.0> -2014-07-23 14:49:27.991 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_4, 4) at pid <0.136.0> -2014-07-23 14:49:27.992 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.116.0> exit with reason normal in context child_terminated -2014-07-23 14:49:28.063 [error] emulator Error in process <0.134.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-23 14:49:28.063 [error] <0.132.0>@basho_bench_worker:handle_info:149 Worker <0.134.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 14:49:28.063 [error] emulator Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-23 14:49:28.063 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 14:49:28.101 [info] <0.145.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:49:28.101 [info] <0.145.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 5 -2014-07-23 14:49:28.101 [warning] <0.143.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-23 14:49:28.101 [info] <0.145.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.145.0> -2014-07-23 14:49:28.102 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_5, 5) at pid <0.143.0> -2014-07-23 14:49:28.103 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.132.0> exit with reason normal in context child_terminated -2014-07-23 14:49:28.162 [error] emulator Error in process <0.138.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-23 14:49:28.163 [error] <0.136.0>@basho_bench_worker:handle_info:149 Worker <0.138.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 14:49:28.241 [info] <0.152.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:49:28.242 [info] <0.152.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 3 -2014-07-23 14:49:28.242 [warning] <0.148.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-23 14:49:28.242 [info] <0.152.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.152.0> -2014-07-23 14:49:28.242 [debug] <0.159.0>@basho_bench_valgen:init_source:85 random source -2014-07-23 14:49:28.242 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_3, 3) at pid <0.148.0> -2014-07-23 14:49:28.243 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated -2014-07-23 14:49:28.345 [info] <0.160.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 14:49:28.345 [info] <0.160.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-23 14:49:28.345 [warning] <0.159.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-23 14:49:28.345 [info] <0.160.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.160.0> -2014-07-23 14:49:28.346 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.159.0> -2014-07-23 14:49:28.347 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.136.0> exit with reason normal in context child_terminated -2014-07-23 14:49:28.347 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.136.0> exit with reason reached_max_restart_intensity in context shutdown -2014-07-23 14:49:28.361 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {static_tx,static_tx} -2014-07-23 14:49:28.361 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {interactive_tx,interactive_tx} -2014-07-23 14:49:28.362 [warning] <0.84.0>@basho_bench_stats:report_latency:306 No data for op: {read,read} -2014-07-23 14:49:28.363 [info] <0.84.0>@basho_bench_stats:report_total_errors:318 No Errors. diff --git a/newtests/20140723_144925/crash.log b/newtests/20140723_144925/crash.log deleted file mode 100644 index 6ea6858c8..000000000 --- a/newtests/20140723_144925/crash.log +++ /dev/null @@ -1,60 +0,0 @@ -2014-07-23 14:49:27 =ERROR REPORT==== -Error in process <0.113.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-23 14:49:27 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.112.0>},{name,basho_bench_worker_3},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_3,3]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 14:49:27 =ERROR REPORT==== -Error in process <0.115.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-23 14:49:27 =ERROR REPORT==== -Error in process <0.117.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-23 14:49:27 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.114.0>},{name,basho_bench_worker_4},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_4,4]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 14:49:27 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.116.0>},{name,basho_bench_worker_5},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_5,5]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 14:49:28 =ERROR REPORT==== -Error in process <0.134.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-23 14:49:28 =ERROR REPORT==== -Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-23 14:49:28 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.132.0>},{name,basho_bench_worker_3},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_3,3]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 14:49:28 =ERROR REPORT==== -Error in process <0.138.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - -2014-07-23 14:49:28 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.96.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 14:49:28 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.136.0>},{name,basho_bench_worker_4},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_4,4]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 14:49:28 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.136.0>},{name,basho_bench_worker_4},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_4,4]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140723_144925/error.log b/newtests/20140723_144925/error.log deleted file mode 100644 index 17e1d92ee..000000000 --- a/newtests/20140723_144925/error.log +++ /dev/null @@ -1,31 +0,0 @@ -2014-07-23 14:49:27.697 [error] emulator Error in process <0.113.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-23 14:49:27.698 [error] <0.112.0>@basho_bench_worker:handle_info:149 Worker <0.113.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 14:49:27.758 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 14:49:27.776 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.112.0> exit with reason normal in context child_terminated -2014-07-23 14:49:27.776 [error] emulator Error in process <0.115.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-23 14:49:27.856 [error] <0.116.0>@basho_bench_worker:handle_info:149 Worker <0.117.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 14:49:27.856 [error] emulator Error in process <0.117.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-23 14:49:27.882 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.114.0> exit with reason normal in context child_terminated -2014-07-23 14:49:27.992 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.116.0> exit with reason normal in context child_terminated -2014-07-23 14:49:28.063 [error] emulator Error in process <0.134.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-23 14:49:28.063 [error] <0.132.0>@basho_bench_worker:handle_info:149 Worker <0.134.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 14:49:28.063 [error] emulator Error in process <0.98.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-23 14:49:28.063 [error] <0.96.0>@basho_bench_worker:handle_info:149 Worker <0.98.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 14:49:28.103 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.132.0> exit with reason normal in context child_terminated -2014-07-23 14:49:28.162 [error] emulator Error in process <0.138.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"r... - - -2014-07-23 14:49:28.163 [error] <0.136.0>@basho_bench_worker:handle_info:149 Worker <0.138.0> exited with {{case_clause,{badrpc,{'EXIT',{{badrecord,payload},[{materializer,update_snapshot,4,[{file,"src/materializer.erl"},{line,27}]},{floppy,read,2,[{file,"src/floppy.erl"},{line,35}]},{rpc,'-handle_call_call/6-fun-0-',5,[{file,"rpc.erl"},{line,205}]}]}}}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 14:49:28.243 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.96.0> exit with reason normal in context child_terminated -2014-07-23 14:49:28.347 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.136.0> exit with reason normal in context child_terminated -2014-07-23 14:49:28.347 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_4 started with basho_bench_worker:start_link(basho_bench_worker_4, 4) at <0.136.0> exit with reason reached_max_restart_intensity in context shutdown diff --git a/newtests/20140723_144925/errors.csv b/newtests/20140723_144925/errors.csv deleted file mode 100644 index 29210b502..000000000 --- a/newtests/20140723_144925/errors.csv +++ /dev/null @@ -1 +0,0 @@ -"error","count" diff --git a/newtests/20140723_144925/floppstore.config b/newtests/20140723_144925/floppstore.config deleted file mode 100644 index 79d18189d..000000000 --- a/newtests/20140723_144925/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 5}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {uniform_int, 5000000}}. - -{value_generator, {fixed_bin, 10}}. - -{operations, [{static_tx, 1}, {interactive_tx,1}, {append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140723_144925/interactive-tx_latencies.csv b/newtests/20140723_144925/interactive-tx_latencies.csv deleted file mode 100644 index b8a373500..000000000 --- a/newtests/20140723_144925/interactive-tx_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.724846, 0.724846, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140723_144925/log.sasl.txt b/newtests/20140723_144925/log.sasl.txt deleted file mode 100644 index 0a9ea4398..000000000 --- a/newtests/20140723_144925/log.sasl.txt +++ /dev/null @@ -1,369 +0,0 @@ - -=PROGRESS REPORT==== 23-Jul-2014::14:49:26 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:49:26 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:49:26 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 23-Jul-2014::14:49:26 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:49:26 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 23-Jul-2014::14:49:27 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:49:27 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 23-Jul-2014::14:49:27 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 23-Jul-2014::14:49:27 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:49:27 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:49:27 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 23-Jul-2014::14:49:27 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:49:27 === - supervisor: {local,net_sup} - started: [{pid,<0.100.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:49:27 === - supervisor: {local,net_sup} - started: [{pid,<0.101.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:49:27 === - supervisor: {local,net_sup} - started: [{pid,<0.102.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:49:27 === - supervisor: {local,kernel_sup} - started: [{pid,<0.99.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 23-Jul-2014::14:49:27 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.107.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 23-Jul-2014::14:49:27 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.106.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:49:27 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.96.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:49:27 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.110.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:49:27 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.112.0>}, - {name,basho_bench_worker_3}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_3,3]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:49:27 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.114.0>}, - {name,basho_bench_worker_4}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_4,4]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:49:27 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.116.0>}, - {name,basho_bench_worker_5}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_5,5]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:49:27 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.118.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::14:49:27 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 23-Jul-2014::14:49:27 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.112.0>}, - {name,basho_bench_worker_3}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_3,3]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 23-Jul-2014::14:49:27 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.132.0>}, - {name,basho_bench_worker_3}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_3,3]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 23-Jul-2014::14:49:27 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.114.0>}, - {name,basho_bench_worker_4}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_4,4]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 23-Jul-2014::14:49:27 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.136.0>}, - {name,basho_bench_worker_4}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_4,4]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 23-Jul-2014::14:49:27 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.116.0>}, - {name,basho_bench_worker_5}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_5,5]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 23-Jul-2014::14:49:28 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.143.0>}, - {name,basho_bench_worker_5}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_5,5]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 23-Jul-2014::14:49:28 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.132.0>}, - {name,basho_bench_worker_3}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_3,3]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 23-Jul-2014::14:49:28 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.148.0>}, - {name,basho_bench_worker_3}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_3,3]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 23-Jul-2014::14:49:28 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.96.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 23-Jul-2014::14:49:28 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.159.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 23-Jul-2014::14:49:28 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.136.0>}, - {name,basho_bench_worker_4}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_4,4]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=SUPERVISOR REPORT==== 23-Jul-2014::14:49:28 === - Supervisor: {local,basho_bench_sup} - Context: shutdown - Reason: reached_max_restart_intensity - Offender: [{pid,<0.136.0>}, - {name,basho_bench_worker_4}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_4,4]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - diff --git a/newtests/20140723_144925/read_latencies.csv b/newtests/20140723_144925/read_latencies.csv deleted file mode 100644 index b8a373500..000000000 --- a/newtests/20140723_144925/read_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.724846, 0.724846, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140723_144925/static-tx_latencies.csv b/newtests/20140723_144925/static-tx_latencies.csv deleted file mode 100644 index b8a373500..000000000 --- a/newtests/20140723_144925/static-tx_latencies.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors -0.724846, 0.724846, 0, 0, 0, 0, 0, 0, 0, 0, 0 diff --git a/newtests/20140723_144925/summary.csv b/newtests/20140723_144925/summary.csv deleted file mode 100644 index 292ce7cf5..000000000 --- a/newtests/20140723_144925/summary.csv +++ /dev/null @@ -1,2 +0,0 @@ -elapsed, window, total, successful, failed -0.724846, 0.724846, 26, 26, 0 diff --git a/newtests/20140723_203459/console.log b/newtests/20140723_203459/console.log deleted file mode 100644 index a50cbe2ee..000000000 --- a/newtests/20140723_203459/console.log +++ /dev/null @@ -1,77 +0,0 @@ -2014-07-23 20:34:59.856 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_203459/error.log"} into lager_event -2014-07-23 20:34:59.856 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_203459/console.log"} into lager_event -2014-07-23 20:34:59.856 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-23 20:34:59.889 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-23 20:34:59.889 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-23 20:34:59.889 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-23 20:34:59.890 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-23 20:35:00.329 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-23 20:35:00.701 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-23 20:35:00.702 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_203459/console.log to debug -2014-07-23 20:35:00.715 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB -2014-07-23 20:35:00.796 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-23 20:35:00.796 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-23 20:35:00.797 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-23 20:35:00.812 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-23 20:35:00.812 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-23 20:35:00.897 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-23 20:35:00.897 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-23 20:35:00.924 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-23 20:35:00.928 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-23 20:35:00.932 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-23 20:35:00.932 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-23 20:35:00.966 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-23 20:35:00.971 [debug] <0.94.0>@basho_bench_valgen:init_source:85 random source -2014-07-23 20:35:01.109 [debug] <0.97.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.98.0> -2014-07-23 20:35:01.116 [debug] <0.97.0> Supervisor net_sup started auth:start_link() at pid <0.99.0> -2014-07-23 20:35:01.130 [info] <0.96.0>@basho_bench_driver_floppystore:new:58 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-23 20:35:01.130 [debug] <0.97.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.100.0> -2014-07-23 20:35:01.130 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.97.0> -2014-07-23 20:35:01.146 [debug] <0.104.0> Supervisor inet_gethost_native_sup started undefined at pid <0.105.0> -2014-07-23 20:35:01.146 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.104.0> -2014-07-23 20:35:01.167 [info] <0.96.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 20:35:01.167 [info] <0.96.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-23 20:35:01.167 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-23 20:35:01.242 [info] <0.109.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 20:35:01.242 [info] <0.109.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-23 20:35:01.242 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.108.0> -2014-07-23 20:35:01.323 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 20:35:01.323 [info] <0.111.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 3 -2014-07-23 20:35:01.324 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_3, 3) at pid <0.110.0> -2014-07-23 20:35:01.402 [info] <0.113.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 20:35:01.402 [info] <0.113.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 4 -2014-07-23 20:35:01.402 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_4, 4) at pid <0.112.0> -2014-07-23 20:35:01.478 [info] <0.115.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 20:35:01.478 [info] <0.115.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 5 -2014-07-23 20:35:01.479 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_5, 5) at pid <0.114.0> -2014-07-23 20:35:01.479 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.116.0> -2014-07-23 20:35:01.487 [info] <0.115.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.115.0> -2014-07-23 20:35:01.487 [info] <0.113.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.113.0> -2014-07-23 20:35:01.487 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> -2014-07-23 20:35:01.487 [info] <0.109.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.109.0> -2014-07-23 20:35:01.487 [info] <0.96.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.96.0> -2014-07-23 20:35:01.487 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-23 20:35:05.557 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-23 20:35:05.557 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 20:35:05.558 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.110.0> exit with reason normal in context child_terminated -2014-07-23 20:35:05.671 [info] <0.201.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 20:35:05.671 [info] <0.201.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 3 -2014-07-23 20:35:05.671 [warning] <0.200.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-23 20:35:05.672 [info] <0.201.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.201.0> -2014-07-23 20:35:05.672 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_3, 3) at pid <0.200.0> -2014-07-23 20:35:10.046 [debug] <0.115.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{badmatch,{badrpc,{'EXIT',{timeout,{gen_fsm,sync_send_event,[<10082.21492.2>,{read,{263692,riak_dt_gcounter}}]}}}}},[{basho_bench_driver_floppystore,'-run/4-fun-0-',3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{lists,foreach,2,[{file,"lists.erl"},{line,1323}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 20:35:10.046 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash -2014-07-23 20:35:10.047 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.114.0> exit with reason normal in context child_terminated -2014-07-23 20:35:10.172 [info] <0.286.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 20:35:10.172 [info] <0.286.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 5 -2014-07-23 20:35:10.172 [warning] <0.283.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-23 20:35:10.172 [info] <0.286.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.286.0> -2014-07-23 20:35:10.173 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_5, 5) at pid <0.283.0> -2014-07-23 20:35:11.023 [debug] <0.96.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{badmatch,{badrpc,{'EXIT',{timeout,{gen_fsm,sync_send_event,[<10082.22579.2>,{read,{4131874,riak_dt_gcounter}}]}}}}},[{basho_bench_driver_floppystore,'-run/4-fun-0-',3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{lists,foreach,2,[{file,"lists.erl"},{line,1323}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 20:35:11.023 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with crash -2014-07-23 20:35:11.023 [debug] <0.305.0>@basho_bench_valgen:init_source:85 random source -2014-07-23 20:35:11.024 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated diff --git a/newtests/20140723_203459/crash.log b/newtests/20140723_203459/crash.log deleted file mode 100644 index 3da66a7f8..000000000 --- a/newtests/20140723_203459/crash.log +++ /dev/null @@ -1,21 +0,0 @@ -2014-07-23 20:35:05 =ERROR REPORT==== -Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - -2014-07-23 20:35:05 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>},{name,basho_bench_worker_3},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_3,3]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 20:35:10 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.114.0>},{name,basho_bench_worker_5},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_5,5]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 20:35:11 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/20140723_203459/error.log b/newtests/20140723_203459/error.log deleted file mode 100644 index c168cb65d..000000000 --- a/newtests/20140723_203459/error.log +++ /dev/null @@ -1,9 +0,0 @@ -2014-07-23 20:35:05.557 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-23 20:35:05.557 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 20:35:05.558 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.110.0> exit with reason normal in context child_terminated -2014-07-23 20:35:10.046 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash -2014-07-23 20:35:10.047 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.114.0> exit with reason normal in context child_terminated -2014-07-23 20:35:11.023 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with crash -2014-07-23 20:35:11.024 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated diff --git a/newtests/20140723_203459/errors.csv b/newtests/20140723_203459/errors.csv deleted file mode 100644 index 29210b502..000000000 --- a/newtests/20140723_203459/errors.csv +++ /dev/null @@ -1 +0,0 @@ -"error","count" diff --git a/newtests/20140723_203459/floppstore.config b/newtests/20140723_203459/floppstore.config deleted file mode 100644 index 1413752d5..000000000 --- a/newtests/20140723_203459/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 5}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {uniform_int, 5000000}}. - -{value_generator, {fixed_bin, 10}}. - -{operations, [{static_tx, 1}, {interactive_tx,1}]}. %% , {append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/20140723_203459/itx_latency.csv b/newtests/20140723_203459/itx_latency.csv deleted file mode 100644 index 2cee6f0d8..000000000 --- a/newtests/20140723_203459/itx_latency.csv +++ /dev/null @@ -1 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors diff --git a/newtests/20140723_203459/log.sasl.txt b/newtests/20140723_203459/log.sasl.txt deleted file mode 100644 index 2cea27def..000000000 --- a/newtests/20140723_203459/log.sasl.txt +++ /dev/null @@ -1,291 +0,0 @@ - -=PROGRESS REPORT==== 23-Jul-2014::20:35:00 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::20:35:00 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::20:35:00 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 23-Jul-2014::20:35:00 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::20:35:00 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 23-Jul-2014::20:35:00 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::20:35:00 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 23-Jul-2014::20:35:00 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 23-Jul-2014::20:35:00 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::20:35:00 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::20:35:00 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 23-Jul-2014::20:35:00 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::20:35:01 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::20:35:01 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::20:35:01 === - supervisor: {local,net_sup} - started: [{pid,<0.100.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::20:35:01 === - supervisor: {local,kernel_sup} - started: [{pid,<0.97.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 23-Jul-2014::20:35:01 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.105.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 23-Jul-2014::20:35:01 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.104.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::20:35:01 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::20:35:01 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.108.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::20:35:01 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.110.0>}, - {name,basho_bench_worker_3}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_3,3]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::20:35:01 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.112.0>}, - {name,basho_bench_worker_4}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_4,4]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::20:35:01 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.114.0>}, - {name,basho_bench_worker_5}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_5,5]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::20:35:01 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.116.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::20:35:01 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 23-Jul-2014::20:35:05 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>}, - {name,basho_bench_worker_3}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_3,3]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 23-Jul-2014::20:35:05 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.200.0>}, - {name,basho_bench_worker_3}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_3,3]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 23-Jul-2014::20:35:10 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.114.0>}, - {name,basho_bench_worker_5}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_5,5]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 23-Jul-2014::20:35:10 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.283.0>}, - {name,basho_bench_worker_5}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_5,5]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 23-Jul-2014::20:35:11 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 23-Jul-2014::20:35:11 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.305.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] diff --git a/newtests/20140723_203459/stx_latency.csv b/newtests/20140723_203459/stx_latency.csv deleted file mode 100644 index 2cee6f0d8..000000000 --- a/newtests/20140723_203459/stx_latency.csv +++ /dev/null @@ -1 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors diff --git a/newtests/20140723_203459/summary.csv b/newtests/20140723_203459/summary.csv deleted file mode 100644 index fa9e41e5d..000000000 --- a/newtests/20140723_203459/summary.csv +++ /dev/null @@ -1 +0,0 @@ -elapsed, window, total, successful, failed diff --git a/newtests/current/console.log b/newtests/current/console.log deleted file mode 100644 index a50cbe2ee..000000000 --- a/newtests/current/console.log +++ /dev/null @@ -1,77 +0,0 @@ -2014-07-23 20:34:59.856 [debug] <0.52.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_203459/error.log"} into lager_event -2014-07-23 20:34:59.856 [debug] <0.54.0>@lager_handler_watcher:94 Lager installed handler {lager_file_backend, - "/Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_203459/console.log"} into lager_event -2014-07-23 20:34:59.856 [debug] <0.56.0>@lager_handler_watcher:94 Lager installed handler error_logger_lager_h into error_logger -2014-07-23 20:34:59.889 [debug] <0.39.0> Supervisor gr_param_sup started gr_param:start_link(gr_lager_default_tracer_params) at pid <0.58.0> -2014-07-23 20:34:59.889 [debug] <0.38.0> Supervisor gr_counter_sup started gr_counter:start_link(gr_lager_default_tracer_counters) at pid <0.59.0> -2014-07-23 20:34:59.889 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_params_mgr, gr_lager_default_tracer_params, []) at pid <0.60.0> -2014-07-23 20:34:59.890 [debug] <0.40.0> Supervisor gr_manager_sup started gr_manager:start_link(gr_lager_default_tracer_counters_mgr, gr_lager_default_tracer_counters, [{input,0},{filter,0},{output,0}]) at pid <0.61.0> -2014-07-23 20:35:00.329 [debug] <0.48.0>@lager_handler_watcher:94 Lager installed handler lager_backend_throttle into lager_event -2014-07-23 20:35:00.701 [info] <0.7.0> Application lager started on node nonode@nohost -2014-07-23 20:35:00.702 [notice] <0.45.0>@lager_file_backend:128 Changed loglevel of /Users/liz/Documents/MyDocument/repositories/basho_bench/tests/20140723_203459/console.log to debug -2014-07-23 20:35:00.715 [info] <0.2.0>@basho_bench:log_dimensions:250 Est. data size: 47.68 MB -2014-07-23 20:35:00.796 [debug] <0.70.0> Supervisor sasl_safe_sup started alarm_handler:start_link() at pid <0.71.0> -2014-07-23 20:35:00.796 [debug] <0.70.0> Supervisor sasl_safe_sup started overload:start_link() at pid <0.72.0> -2014-07-23 20:35:00.797 [debug] <0.69.0> Supervisor sasl_sup started supervisor:start_link({local,sasl_safe_sup}, sasl, safe) at pid <0.70.0> -2014-07-23 20:35:00.812 [debug] <0.69.0> Supervisor sasl_sup started release_handler:start_link() at pid <0.73.0> -2014-07-23 20:35:00.812 [info] <0.7.0> Application sasl started on node nonode@nohost -2014-07-23 20:35:00.897 [debug] <0.78.0> Supervisor crypto_sup started crypto_server:start_link() at pid <0.79.0> -2014-07-23 20:35:00.897 [info] <0.7.0> Application crypto started on node nonode@nohost -2014-07-23 20:35:00.924 [debug] <0.88.0> Supervisor folsom_sup started folsom_sample_slide_sup:start_link() at pid <0.89.0> -2014-07-23 20:35:00.928 [debug] <0.88.0> Supervisor folsom_sup started folsom_meter_timer_server:start_link() at pid <0.90.0> -2014-07-23 20:35:00.932 [debug] <0.88.0> Supervisor folsom_sup started folsom_metrics_histogram_ets:start_link() at pid <0.91.0> -2014-07-23 20:35:00.932 [info] <0.7.0> Application folsom started on node nonode@nohost -2014-07-23 20:35:00.966 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_stats:start_link() at pid <0.84.0> -2014-07-23 20:35:00.971 [debug] <0.94.0>@basho_bench_valgen:init_source:85 random source -2014-07-23 20:35:01.109 [debug] <0.97.0> Supervisor net_sup started erl_epmd:start_link() at pid <0.98.0> -2014-07-23 20:35:01.116 [debug] <0.97.0> Supervisor net_sup started auth:start_link() at pid <0.99.0> -2014-07-23 20:35:01.130 [info] <0.96.0>@basho_bench_driver_floppystore:new:58 Net kernel started as 'floppy_bench@127.0.0.1' -2014-07-23 20:35:01.130 [debug] <0.97.0> Supervisor net_sup started net_kernel:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.100.0> -2014-07-23 20:35:01.130 [debug] <0.11.0> Supervisor kernel_sup started erl_distribution:start_link(['floppy_bench@127.0.0.1',longnames]) at pid <0.97.0> -2014-07-23 20:35:01.146 [debug] <0.104.0> Supervisor inet_gethost_native_sup started undefined at pid <0.105.0> -2014-07-23 20:35:01.146 [debug] <0.25.0> Supervisor kernel_safe_sup started inet_gethost_native:start_link() at pid <0.104.0> -2014-07-23 20:35:01.167 [info] <0.96.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 20:35:01.167 [info] <0.96.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 1 -2014-07-23 20:35:01.167 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_1, 1) at pid <0.94.0> -2014-07-23 20:35:01.242 [info] <0.109.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 20:35:01.242 [info] <0.109.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 2 -2014-07-23 20:35:01.242 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_2, 2) at pid <0.108.0> -2014-07-23 20:35:01.323 [info] <0.111.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 20:35:01.323 [info] <0.111.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 3 -2014-07-23 20:35:01.324 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_3, 3) at pid <0.110.0> -2014-07-23 20:35:01.402 [info] <0.113.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 20:35:01.402 [info] <0.113.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 4 -2014-07-23 20:35:01.402 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_4, 4) at pid <0.112.0> -2014-07-23 20:35:01.478 [info] <0.115.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 20:35:01.478 [info] <0.115.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 5 -2014-07-23 20:35:01.479 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_5, 5) at pid <0.114.0> -2014-07-23 20:35:01.479 [debug] <0.25.0> Supervisor kernel_safe_sup started timer:start_link() at pid <0.116.0> -2014-07-23 20:35:01.487 [info] <0.115.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.115.0> -2014-07-23 20:35:01.487 [info] <0.113.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.113.0> -2014-07-23 20:35:01.487 [info] <0.111.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.111.0> -2014-07-23 20:35:01.487 [info] <0.109.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.109.0> -2014-07-23 20:35:01.487 [info] <0.96.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.96.0> -2014-07-23 20:35:01.487 [info] <0.7.0> Application basho_bench started on node 'floppy_bench@127.0.0.1' -2014-07-23 20:35:05.557 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-23 20:35:05.557 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 20:35:05.558 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.110.0> exit with reason normal in context child_terminated -2014-07-23 20:35:05.671 [info] <0.201.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 20:35:05.671 [info] <0.201.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 3 -2014-07-23 20:35:05.671 [warning] <0.200.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-23 20:35:05.672 [info] <0.201.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.201.0> -2014-07-23 20:35:05.672 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_3, 3) at pid <0.200.0> -2014-07-23 20:35:10.046 [debug] <0.115.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{badmatch,{badrpc,{'EXIT',{timeout,{gen_fsm,sync_send_event,[<10082.21492.2>,{read,{263692,riak_dt_gcounter}}]}}}}},[{basho_bench_driver_floppystore,'-run/4-fun-0-',3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{lists,foreach,2,[{file,"lists.erl"},{line,1323}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 20:35:10.046 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash -2014-07-23 20:35:10.047 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.114.0> exit with reason normal in context child_terminated -2014-07-23 20:35:10.172 [info] <0.286.0>@basho_bench_driver_floppystore:ping_each:167 Finished pinging 'floppy@127.0.0.1' -2014-07-23 20:35:10.172 [info] <0.286.0>@basho_bench_driver_floppystore:new:74 Using target node 'floppy@127.0.0.1' for worker 5 -2014-07-23 20:35:10.172 [warning] <0.283.0>@basho_bench_worker:init:124 Restarting crashed worker. -2014-07-23 20:35:10.172 [info] <0.286.0>@basho_bench_worker:worker_idle_loop:221 Starting max worker: <0.286.0> -2014-07-23 20:35:10.173 [debug] <0.83.0> Supervisor basho_bench_sup started basho_bench_worker:start_link(basho_bench_worker_5, 5) at pid <0.283.0> -2014-07-23 20:35:11.023 [debug] <0.96.0>@basho_bench_worker:worker_next_op:268 Driver basho_bench_driver_floppystore crashed: {{badmatch,{badrpc,{'EXIT',{timeout,{gen_fsm,sync_send_event,[<10082.22579.2>,{read,{4131874,riak_dt_gcounter}}]}}}}},[{basho_bench_driver_floppystore,'-run/4-fun-0-',3,[{file,"src/basho_bench_driver_floppystore.erl"},{line,142}]},{lists,foreach,2,[{file,"lists.erl"},{line,1323}]},{basho_bench_driver_floppystore,run,4,[{file,"src/basho_bench_driver_floppystore.erl"},{line,145}]},{basho_bench_worker,worker_next_op2,2,[{file,"src/basho_bench_worker.erl"},{line,236}]},{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,242}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 20:35:11.023 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with crash -2014-07-23 20:35:11.023 [debug] <0.305.0>@basho_bench_valgen:init_source:85 random source -2014-07-23 20:35:11.024 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated diff --git a/newtests/current/crash.log b/newtests/current/crash.log deleted file mode 100644 index 3da66a7f8..000000000 --- a/newtests/current/crash.log +++ /dev/null @@ -1,21 +0,0 @@ -2014-07-23 20:35:05 =ERROR REPORT==== -Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - -2014-07-23 20:35:05 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>},{name,basho_bench_worker_3},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_3,3]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 20:35:10 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.114.0>},{name,basho_bench_worker_5},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_5,5]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - -2014-07-23 20:35:11 =SUPERVISOR REPORT==== - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>},{name,basho_bench_worker_1},{mfargs,{basho_bench_worker,start_link,[basho_bench_worker_1,1]}},{restart_type,permanent},{shutdown,5000},{child_type,worker}] - diff --git a/newtests/current/error.log b/newtests/current/error.log deleted file mode 100644 index c168cb65d..000000000 --- a/newtests/current/error.log +++ /dev/null @@ -1,9 +0,0 @@ -2014-07-23 20:35:05.557 [error] emulator Error in process <0.111.0> on node 'floppy_bench@127.0.0.1' with exit value: {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} - - -2014-07-23 20:35:05.557 [error] <0.110.0>@basho_bench_worker:handle_info:149 Worker <0.111.0> exited with {{case_clause,{badrpc,timeout}},[{basho_bench_worker,worker_next_op,1,[{file,"src/basho_bench_worker.erl"},{line,244}]},{basho_bench_worker,max_worker_run_loop,1,[{file,"src/basho_bench_worker.erl"},{line,317}]}]} -2014-07-23 20:35:05.558 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_3 started with basho_bench_worker:start_link(basho_bench_worker_3, 3) at <0.110.0> exit with reason normal in context child_terminated -2014-07-23 20:35:10.046 [error] <0.114.0>@basho_bench_worker:handle_info:149 Worker <0.115.0> exited with crash -2014-07-23 20:35:10.047 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_5 started with basho_bench_worker:start_link(basho_bench_worker_5, 5) at <0.114.0> exit with reason normal in context child_terminated -2014-07-23 20:35:11.023 [error] <0.94.0>@basho_bench_worker:handle_info:149 Worker <0.96.0> exited with crash -2014-07-23 20:35:11.024 [error] <0.83.0> Supervisor basho_bench_sup had child basho_bench_worker_1 started with basho_bench_worker:start_link(basho_bench_worker_1, 1) at <0.94.0> exit with reason normal in context child_terminated diff --git a/newtests/current/errors.csv b/newtests/current/errors.csv deleted file mode 100644 index 29210b502..000000000 --- a/newtests/current/errors.csv +++ /dev/null @@ -1 +0,0 @@ -"error","count" diff --git a/newtests/current/floppstore.config b/newtests/current/floppstore.config deleted file mode 100644 index 1413752d5..000000000 --- a/newtests/current/floppstore.config +++ /dev/null @@ -1,23 +0,0 @@ -{mode, max}. - -{duration, 1}. - -{concurrent, 5}. - -{driver, basho_bench_driver_floppystore}. - -{key_generator, {uniform_int, 5000000}}. - -{value_generator, {fixed_bin, 10}}. - -{operations, [{static_tx, 1}, {interactive_tx,1}]}. %% , {append, 1}, {read, 1}]}. - -%% the second element in the list below (e.g., "../../public/bitcask") must point to -%% the relevant directory of a bitcask installation -{code_paths, ["../floppystore/ebin"]}. - -{floppystore_nodes, ['floppy@127.0.0.1']}. -{floppystore_cookie, floppy}. - -{floppystore_mynode, ['floppy_bench@127.0.0.1', longnames]}. -{floppystore_types, [{riak_dt_gcounter, [increment]}, {riak_dt_gset, [add]}]}. diff --git a/newtests/current/itx_latency.csv b/newtests/current/itx_latency.csv deleted file mode 100644 index 2cee6f0d8..000000000 --- a/newtests/current/itx_latency.csv +++ /dev/null @@ -1 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors diff --git a/newtests/current/log.sasl.txt b/newtests/current/log.sasl.txt deleted file mode 100644 index 2cea27def..000000000 --- a/newtests/current/log.sasl.txt +++ /dev/null @@ -1,291 +0,0 @@ - -=PROGRESS REPORT==== 23-Jul-2014::20:35:00 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.71.0>}, - {name,alarm_handler}, - {mfargs,{alarm_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::20:35:00 === - supervisor: {local,sasl_safe_sup} - started: [{pid,<0.72.0>}, - {name,overload}, - {mfargs,{overload,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::20:35:00 === - supervisor: {local,sasl_sup} - started: [{pid,<0.70.0>}, - {name,sasl_safe_sup}, - {mfargs, - {supervisor,start_link, - [{local,sasl_safe_sup},sasl,safe]}}, - {restart_type,permanent}, - {shutdown,infinity}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 23-Jul-2014::20:35:00 === - supervisor: {local,sasl_sup} - started: [{pid,<0.73.0>}, - {name,release_handler}, - {mfargs,{release_handler,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::20:35:00 === - application: sasl - started_at: nonode@nohost - -=PROGRESS REPORT==== 23-Jul-2014::20:35:00 === - supervisor: {local,crypto_sup} - started: [{pid,<0.79.0>}, - {name,crypto_server}, - {mfargs,{crypto_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::20:35:00 === - application: crypto - started_at: nonode@nohost - -=PROGRESS REPORT==== 23-Jul-2014::20:35:00 === - supervisor: {local,folsom_sup} - started: [{pid,<0.89.0>}, - {name,folsom_sample_slide_sup}, - {mfargs,{folsom_sample_slide_sup,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 23-Jul-2014::20:35:00 === - supervisor: {local,folsom_sup} - started: [{pid,<0.90.0>}, - {name,folsom_meter_timer_server}, - {mfargs,{folsom_meter_timer_server,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::20:35:00 === - supervisor: {local,folsom_sup} - started: [{pid,<0.91.0>}, - {name,folsom_metrics_histogram_ets}, - {mfargs,{folsom_metrics_histogram_ets,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::20:35:00 === - application: folsom - started_at: nonode@nohost - -=PROGRESS REPORT==== 23-Jul-2014::20:35:00 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.84.0>}, - {name,basho_bench_stats}, - {mfargs,{basho_bench_stats,start_link,[]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::20:35:01 === - supervisor: {local,net_sup} - started: [{pid,<0.98.0>}, - {name,erl_epmd}, - {mfargs,{erl_epmd,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::20:35:01 === - supervisor: {local,net_sup} - started: [{pid,<0.99.0>}, - {name,auth}, - {mfargs,{auth,start_link,[]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::20:35:01 === - supervisor: {local,net_sup} - started: [{pid,<0.100.0>}, - {name,net_kernel}, - {mfargs, - {net_kernel,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,2000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::20:35:01 === - supervisor: {local,kernel_sup} - started: [{pid,<0.97.0>}, - {name,net_sup_dynamic}, - {mfargs, - {erl_distribution,start_link, - [['floppy_bench@127.0.0.1',longnames]]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,supervisor}] - -=PROGRESS REPORT==== 23-Jul-2014::20:35:01 === - supervisor: {local,inet_gethost_native_sup} - started: [{pid,<0.105.0>},{mfa,{inet_gethost_native,init,[[]]}}] - -=PROGRESS REPORT==== 23-Jul-2014::20:35:01 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.104.0>}, - {name,inet_gethost_native_sup}, - {mfargs,{inet_gethost_native,start_link,[]}}, - {restart_type,temporary}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::20:35:01 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::20:35:01 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.108.0>}, - {name,basho_bench_worker_2}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_2,2]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::20:35:01 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.110.0>}, - {name,basho_bench_worker_3}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_3,3]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::20:35:01 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.112.0>}, - {name,basho_bench_worker_4}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_4,4]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::20:35:01 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.114.0>}, - {name,basho_bench_worker_5}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_5,5]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::20:35:01 === - supervisor: {local,kernel_safe_sup} - started: [{pid,<0.116.0>}, - {name,timer_server}, - {mfargs,{timer,start_link,[]}}, - {restart_type,permanent}, - {shutdown,1000}, - {child_type,worker}] - -=PROGRESS REPORT==== 23-Jul-2014::20:35:01 === - application: basho_bench - started_at: 'floppy_bench@127.0.0.1' - -=SUPERVISOR REPORT==== 23-Jul-2014::20:35:05 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.110.0>}, - {name,basho_bench_worker_3}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_3,3]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 23-Jul-2014::20:35:05 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.200.0>}, - {name,basho_bench_worker_3}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_3,3]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 23-Jul-2014::20:35:10 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.114.0>}, - {name,basho_bench_worker_5}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_5,5]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 23-Jul-2014::20:35:10 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.283.0>}, - {name,basho_bench_worker_5}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_5,5]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - -=SUPERVISOR REPORT==== 23-Jul-2014::20:35:11 === - Supervisor: {local,basho_bench_sup} - Context: child_terminated - Reason: normal - Offender: [{pid,<0.94.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] - - -=PROGRESS REPORT==== 23-Jul-2014::20:35:11 === - supervisor: {local,basho_bench_sup} - started: [{pid,<0.305.0>}, - {name,basho_bench_worker_1}, - {mfargs, - {basho_bench_worker,start_link, - [basho_bench_worker_1,1]}}, - {restart_type,permanent}, - {shutdown,5000}, - {child_type,worker}] diff --git a/newtests/current/stx_latency.csv b/newtests/current/stx_latency.csv deleted file mode 100644 index 2cee6f0d8..000000000 --- a/newtests/current/stx_latency.csv +++ /dev/null @@ -1 +0,0 @@ -elapsed, window, n, min, mean, median, 95th, 99th, 99_9th, max, errors diff --git a/newtests/current/summary.csv b/newtests/current/summary.csv deleted file mode 100644 index fa9e41e5d..000000000 --- a/newtests/current/summary.csv +++ /dev/null @@ -1 +0,0 @@ -elapsed, window, total, successful, failed