This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
basho-ninja:riak-data-migrator dkerrigan$ mvn package | |
[INFO] Scanning for projects... | |
[INFO] | |
[INFO] ------------------------------------------------------------------------ | |
[INFO] Building Riak Data Migrator 0.1 | |
[INFO] ------------------------------------------------------------------------ | |
Downloading: http://repo1.maven.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.7.2/maven-surefire-plugin-2.7.2.pom | |
Downloaded: http://repo1.maven.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.7.2/maven-surefire-plugin-2.7.2.pom (10 KB at 18.9 KB/sec) | |
Downloading: http://repo1.maven.org/maven2/org/apache/maven/surefire/surefire/2.7.2/surefire-2.7.2.pom | |
Downloaded: http://repo1.maven.org/maven2/org/apache/maven/surefire/surefire/2.7.2/surefire-2.7.2.pom (11 KB at 154.6 KB/sec) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1) Add the New Relic yum repository | |
Install the newrelic-repo package, which configures a new package repository for yum: | |
######################################### | |
rpm -Uvh http://download.newrelic.com/pub/newrelic/el5/i386/newrelic-repo-5-3.noarch.rpm | |
######################################### | |
2) Install the Server Monitor package | |
Run the install command: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
basho-ninja:mhealth dkerrigan$ git log origin/pre-prod-deploy-2-6-2013..HEAD | |
commit f51a8ab96dc56b53a01c8bf89f414364c706df10 | |
Author: drewkerrigan <[email protected]> | |
Date: Thu Jan 17 12:06:35 2013 -0500 | |
fixing from/to bug in metrics report | |
commit 5b4e55535553b2d4dd08b14c881472b8518e3339 | |
Author: drewkerrigan <[email protected]> | |
Date: Wed Jan 16 15:49:08 2013 -0500 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Baseline Tests | |
HTTP / Bitcask (done, although could be redone since we used rc2 instead of rc3) | |
Protobuf / Bitcask (done, although could be redone since we used rc2 instead of rc3) | |
HTTP / LevelDB (done, although could be redone since we used rc2 instead of rc3) | |
Protobuf / LevelDB (done, although could be redone since we used rc2 instead of rc3) | |
Functionality Tests | |
2i / Protobuf / LevelDB | |
Plain 2 hour (done, although could be redone since we used rc2 instead of rc3) | |
Plain 24-48 hour (in progress) | |
On top of a baseline (not done) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
######## setting up control node: | |
sudo -s | |
yum -y install erlang R git make gcc gcc-c++ glibc-devel R-devel python-argparse | |
git clone git://github.com/basho/basho_bench.git /opt/basho_bench | |
export HOME=/root | |
cd /opt/basho_bench | |
make all | |
sed -i 's,#!/usr/bin/env Rscript --vanilla,#!/usr/bin/Rscript --vanilla,g' priv/summary.r | |
git clone git://github.com/drewkerrigan/riak_benchmarking.git /opt/riak_benchmarking |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import re | |
def is_number(s): | |
try: | |
float(s) | |
return True | |
except ValueError: | |
return False | |
def status_to_json(raw_stats): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
riak_kv_stat_ts : 1365005608 | |
vnode_gets : 0 | |
vnode_gets_total : 6 | |
vnode_puts : 0 | |
vnode_puts_total : 7 | |
vnode_index_reads : 0 | |
vnode_index_reads_total : 0 | |
vnode_index_writes : 0 | |
vnode_index_writes_total : 0 | |
vnode_index_writes_postings : 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"riak_kv_stat_ts":1365005608,"vnode_gets":0,"vnode_gets_total":6,"vnode_puts":0,"vnode_puts_total":7,"vnode_index_reads":0,"vnode_index_reads_total":0,"vnode_index_writes":0,"vnode_index_writes_total":0,"vnode_index_writes_postings":0,"vnode_index_writes_postings_total":0,"vnode_index_deletes":0,"vnode_index_deletes_total":0,"vnode_index_deletes_postings":0,"vnode_index_deletes_postings_total":0,"node_gets":0,"node_gets_total":2,"node_get_fsm_siblings_mean":0,"node_get_fsm_siblings_median":0,"node_get_fsm_siblings_95":0,"node_get_fsm_siblings_99":0,"node_get_fsm_siblings_100":0,"node_get_fsm_objsize_mean":0,"node_get_fsm_objsize_median":0,"node_get_fsm_objsize_95":0,"node_get_fsm_objsize_99":0,"node_get_fsm_objsize_100":0,"node_get_fsm_time_mean":0,"node_get_fsm_time_median":0,"node_get_fsm_time_95":0,"node_get_fsm_time_99":0,"node_get_fsm_time_100":0,"node_puts":0,"node_puts_total":1,"node_put_fsm_time_mean":0,"node_put_fsm_time_median":0,"node_put_fsm_time_95":0,"node_put_fsm_time_99":0,"node_put_fsm_time_ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/Applications/gradle-1.5/bin/gradle clean assemble | |
No overrides found | |
:server:clean | |
:server:bootstrap:clean | |
:server:core:clean | |
:server:endpoint:clean | |
:server:persist:clean | |
:server:router:clean | |
:server:service:clean | |
:server:endpoint:rest:clean |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
basho-ninja:damp dkerrigan$ gradle clean run_local | |
No overrides found | |
:server:clean | |
:server:bootstrap:clean | |
:server:core:clean | |
:server:endpoint:clean | |
:server:persist:clean | |
:server:router:clean | |
:server:service:clean | |
:server:endpoint:rest:clean |