そのうち maven とかに登録した
眠い・・・
キーボードを『HHKB Pro 黒 刻印あり』から『HHKB pro Type-S 白 刻印なし』にした、 このタイピングは!!後戻りはできない・・・・、家用が『HHKB Pro 黒』となったが、う、うるさい・・・ 今度は、FILCOとかを試したいと検討中ですね
などなどですが、争点はこれではないので置いておいて、
[管理者]層のリテラシー、体質が追いつてない限り、[現場]の作業フローとか組織構成はなんの意味も持たないため、管理体制と作業フローの間での乖離が発生し、結果的に作業フローで使用している。JIRAなどのツールが使いづらいのでなないだろうか? という仮説があります。(イメージは下図)これを読んだ方どうでしょうか?
[元ネタ] 反復開発/アジャイル/スクラムの作業フロー ↓ [管理者] 経営者?冗長?日本の文化と合わない or 理解(リテラシー)がない ↓ ↓ [現場] JIRA使いづらい 自己組織化されない
[現場]レベルで導入しても、[管理者]が理解レベルが合わないと、かみ合わない歯車がグルグルとなるので、 早急に対応が必要となるが、[現場]から[管理者]に知識や勝手をインストールすることまで、余裕が取れる状況はどれくらいあるのだろうか? また、[管理者]がインストールに対して前向きである必要もあるので、文化の改変まで日本レベルでN十年かかるのだろうか・・・orz
海外での職場は普通に作業フローを実行できているのだろうか? ご存知の方いましたら、コメントをお願いします。 また、そういったフォーラムの掲示板をご存知の方も情報いただけると助かります。 英語ならギリ話せると思うので、海外サイトでも大丈夫です。
そもそも、日本ベースのしょうゆ味作業フローを考えないといけないかもしれませんね。(^^)
mac $ boot2docker init --disksize=50000 --memory=2048 mac $ boot2docker start
確認結果
mac $ boot2docker ssh docker@boot2docker:~$ df -h Filesystem Size Used Available Use% Mounted on rootfs 1.8G 204.8M 1.6G 11% / tmpfs 1.8G 204.8M 1.6G 11% / tmpfs 1004.6M 0 1004.6M 0% /dev/shm /dev/sda1 47.0G 68.9M 44.5G 0% /mnt/sda1 cgroup 1004.6M 0 1004.6M 0% /sys/fs/cgroup /dev/sda1 47.0G 68.9M 44.5G 0% /mnt/sda1/var/lib/docker/aufs docker@boot2docker:~$ free total used free shared buffers Mem: 2057440 271940 1785500 0 1348 -/+ buffers: 270592 1786848 Swap: 447972 0 447972 docker@boot2docker:~$ cat /proc/meminfo MemTotal: 2057440 kB
次は、web server, db をセットアップしよう
mac $ boot2docker stop
Google APIs を使うコマンドラインを書いてみました。自分のイベントとか見たい方は適当に改良してください。:-)
** かぶりネタですが興味のある方は読んでください。**
USAGE gapicalendarlist.sh v2|v3 RESET SETTINGS remove 'v2.gapi.token' or 'v3.gapi.token' DEPENDENCIES lynx, curl
簡単に認証と処理内容を書いてみました
知識の足りなさ等の諸事情で Devices の方法を選択してます。
Installed Applicatoins
の方式で、https://accounts.google.com/o/oauth2/auth
にリクエストするとHTMLコンテンツがかえって来ます。これはシェルであれこれするのが面倒だったのでやめました。
Devices
方式で、https://accounts.google.com/o/oauth2/device/code
にリクエストをすると、JSONがかえってpiar毎に改行されているのでシェルで扱いやすいのでこちらを選択しました
*** Google のサイトを見た方がいいと思ったので割愛します。 ***
[ shell ] [ google ] | | | | +----- get user token -----> + URL 1 | | | <------ user token --------+ | and other params | | JSON | | | +----+ | | | save token | |<---+ | | [ lynx ] | | | | +-- verify ->| | | URL +-- Sign in --> | | | | | |<- user code --+ | | form | | | | | +- user code -->| | | | | |<- allow acces-+ | | confirm page | | | | | +-allow submit->| | | | | |<- result page-+ | | | | | | | | | | | +------ get access token --->+ URL 2 | | | <------ access token ------+ | and other params | | JSON | | | +----+ | | | save token | |<---+ | | | | | +----- get calendar list --->+ URL 3 | | | <----- calendar list ------+ | JSON | | | | | URL 1https://accounts.google.com/o/oauth2/device/code
URL 2https://accounts.google.com/o/oauth2/token
URL 3https://www.googleapis.com/calendar/v3/users/me/calendarList
#!/bin/bash | |
# ------------ parameters ------------ | |
api_version=$1 | |
# if need set, please remove these files. | |
token_file="v2.gapi.token" | |
user_code_file="v3.gapi.token" | |
# ************************************* | |
# account : need setting | |
# ************************************* | |
# ClientLogin | |
username=yourmail@address.net | |
password=xxxx | |
# oauth 2.0 | |
client_id=your.account.clientId | |
client_secret= | |
# ------------ functions ------------ | |
# | |
# Version 2 | |
# | |
function V2ClientLoginAndCalendarList { | |
# [company-id]-[app-name]-[app-version] | |
applicationName="mycompany-googleapi.sh-v1" | |
# cl (Calendar) / mail (Gmail) / blogger (Blogger) | |
serviceName="cl" | |
# GOOGLE / HOSTED / HOSTED_OR_GOOGLE | |
accountType="HOSTED_OR_GOOGLE" | |
# | |
# login , get token | |
# | |
if [ -e ${token_file} ]; then | |
TOKEN=`cat ${token_file}` | |
else | |
URL="https://www.google.com/accounts/ClientLogin" | |
parameters="Email=${username}&Passwd=${password}&source=${applicationName}&service=${serviceName}&accountType=${accountType}" | |
TOKEN=`curl -s -d "${parameters}" -k ${URL} -H "GData-Version: 2" | awk '{if (/Auth/) {print $0;}}' | sed 's/=/ /' | awk '{print $2}'` | |
echo ${TOKEN} > ${token_file} | |
# for interval | |
sleep 5 | |
fi | |
# get calendar list | |
URL="https://www.google.com/calendar/feeds/default/owncalendars/full" | |
curl -s -H "GData-Version: 2" -H "Authorization: GoogleLogin auth=${TOKEN}" -k ${URL} | |
} | |
# | |
# Version 3 | |
# | |
function V3OAuthAndCalendarList { | |
# for lynx | |
#LANG=en | |
#export LANG | |
scope="https://www.googleapis.com/auth/userinfo.email https://www.googleapis.com/auth/userinfo.profile https://www.googleapis.com/auth/calendar https://www.googleapis.com/auth/calendar.readonly" | |
#scope="https://www.googleapis.com/auth/calendar https://www.googleapis.com/auth/calendar.readonly" | |
# | |
# obtain user code | |
# | |
if [ ! -e ${user_code_file} ]; then | |
URL="https://accounts.google.com/o/oauth2/device/code" | |
parameters="scope=${scope}&client_id=${client_id}" | |
curl -s -k ${URL} -d "${parameters}" | sed 's/"/ /g' | awk '{ if (NF > 3) {printf("%s=%s\n", $1, $3);}}' > ${user_code_file} | |
fi | |
source ${user_code_file} | |
# | |
# allow api using and obtain access token | |
# | |
if [ "${access_token}" = "" ]; then | |
echo "********* COPY ************" | |
echo "user_code: ${user_code}" | |
echo "********* COPY ************" | |
sleep 8 | |
lynx "${verification_url}" | |
URL="https://accounts.google.com/o/oauth2/token" | |
parameters="client_id=${client_id}&client_secret=${client_secret}&code=${device_code}&grant_type=http://oauth.net/grant_type/device/1.0" | |
curl -s -H "GData-Version: 3" -k ${URL} -d "${parameters}" | sed 's/"/ /g' | awk '{ if (NF > 3) {printf("%s=%s\n", $1, $3);}}' >> ${user_code_file} | |
source ${user_code_file} | |
fi | |
# | |
# get calendar | |
# | |
URL=https://www.googleapis.com/calendar/v3/users/me/calendarList | |
curl -s -k ${URL} -H "Authorization: Bearer ${access_token}" | |
} | |
function UsageMessage { | |
echo "USAGE" | |
echo " gapicalendarlist.sh v2|v3" | |
echo "" | |
echo "RESET SETTINGS" | |
echo " remove '${token_file}' or '${user_code_file}'" | |
echo "" | |
echo "DEPENDENCIES" | |
echo " lynx, curl" | |
echo "" | |
} | |
# ------------ logic ------------ | |
if [ "${client_id}" = "your.account.clientId" -o "${username}" = "yourmail@address.net" ]; then | |
echo "**********************************" | |
echo "PLEASE SETUP ACCOUNT PARAMETERS" | |
echo "**********************************" | |
echo "" | |
echo "v2 => uesername , password" | |
echo "v3 => client_id , client_secret" | |
echo "" | |
echo "**********************************" | |
UsageMessage | |
elif [ "${api_version}" = "v3" ]; then | |
V3OAuthAndCalendarList | |
elif [ "${api_version}" = "v2" ]; then | |
V2ClientLoginAndCalendarList | |
else | |
UsageMessage | |
fi |
結論
QCon 2012 で Warp+Yesod がいいと言っていたので、ベンチをとってみました。いいっぽいです
サーバーサイドのチューニングはデフォなので、スレッド数位は合わせてベンチマークをとりたいと思って下ります。 なんかサーセン
Ubuntu 11.10
Intel(R) Xeon(R) CPU 5160 @ 3.00GHz x 2
Memory 2 GiB
|
|
Mac OS X 10.7.3
2.53 GHz Intel Core i5
Memory 8 GB 1067 MHz DDR3
$ ab -n request_count -c 128 -r -g gnuplot_file_name http://ubuntu.server:port/path >& result.txt This is ApacheBench, Version 2.3 <$Revision: 655654 $> Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/ Licensed to The Apache Software Foundation, http://www.apache.org/
Apache | Lighttpd |
---|---|
Server Software: Apache/2.2.20 Server Hostname: xxx.xxx.xxx.xxx Server Port: 80 Document Path: /index.html Document Length: 85 bytes |
Server Software: lighttpd/1.4.30 Server Hostname: xxx.xxx.xxx.xxx Server Port: 8123 Document Path: /index.html Document Length: 85 bytes |
Node.js | Warp + Yesod |
version: 0.6.15 Server Software: Server Hostname: xxx.xxx.xxx.xxx Server Port: 8124 Document Path: / Document Length: 80 bytes |
ghc: 7.0.3 warp: 1.2.0.1 yesod: 1.0.0.2 Server Software: Warp/1.2.0.1 Server Hostname: xxx.xxx.x.160 Server Port: 8123 Document Path: /index Document Length: 99 bytes |
Tomcat | Jetty |
Server Software: Apache-Coyote/1.1 Server Hostname: xxx.xxx.xxx.xxx Server Port: 8080 Document Path: /sample/index.html Document Length: 85 bytes |
Server Software: Jetty(8.1.2.v20120308) Server Hostname: xxx.xxx.xxx.xxx Server Port: 8080 Document Path: /sample/index.html Document Length: 85 bytes |
30000 request
10000 request
wait time について => Between writing request and reading response
Source らしい(何となく怪しい) から一部抜粋
struct data { #ifdef USE_SSL /* XXX insert timings for ssl */ #endif int read; /* number of bytes read */ long starttime; /* start time of connection in seconds since * Jan. 1, 1970 */ long waittime; /* Between writing request and reading response */ long ctime; /* time in ms to connect */ long time; /* time in ms for connection */ };
apache, lighttpd はリクエスト数が多いとテストに時間がかかります。
result/apache-time.dat request 1 2 3 4 200 0.028 0.035 0.030 0.031 500 0.081 0.087 0.078 0.069 1500 0.187 0.172 0.187 0.185 10000 90.143 109.438 107.131 104.303 30000 18.995 3.584 32.986 327.660 result/lighttpd-time.dat request 1 2 3 4 200 0.025 0.025 0.027 0.026 500 0.063 0.069 0.055 0.053 1500 2.139 0.561 0.168 0.169 10000 50.097 52.646 2.285 34.739 30000 142.147 5.152 165.114 162.209 result/nodejs-time.dat request 1 2 3 4 200 0.034 0.039 0.034 0.032 500 0.097 0.074 0.073 0.072 1500 0.238 0.235 0.245 0.211 10000 1.560 1.610 5.101 1.505 30000 8.593 24.368 16.838 31.659 result/warp-time.dat request 1 2 3 4 200 0.071 0.093 0.074 0.070 500 0.160 0.309 0.229 0.176 1500 1.264 1.057 1.326 1.048 10000 3.115 10.991 11.347 5.078 30000 33.264 34.866 33.098 34.690 result/tomcat-time.dat request 1 2 3 4 200 0.021 0.024 0.025 0.080 500 0.052 0.050 0.049 0.043 1500 0.151 0.167 0.166 0.153 10000 9.062 10.112 6.957 0.965 30000 21.004 12.324 21.602 18.784 result/jetty-time.dat request 1 2 3 4 200 0.025 0.025 0.026 0.028 500 0.087 0.104 14.926 0.059 1500 1.127 22.815 1.244 14.990 10000 11.779 11.658 11.648 11.617 30000 36.141 36.806 36.773 36.225