YANO's digital garage

Copyright ©YANO All rights reserved. https://www.bravotouring.com/~yano/

Last-modified: 2024-04-17 (水)


[一語一絵/IT系]

Flash Player 64bit版 / 2010-09-20 (月)

Flash Playerの64bit版 (開発コード名Square)がプレビュー公開されている模様。

待ってました、と早速試してみようと思ったが、その前にFirefoxが64bit版じゃなかったよ。

調べてみたところFirefoxの64bit版は[External]Mozilla x86-64から3.0, 3.5 or 3.6が、[External]Firefox Nightly Buildsから4.0のβ7が入手できるそうなので、今度試してみようかな。

【参照】
●窓の杜 http://www.forest.impress.co.jp/
【NEWS】64bit環境とIE9のGPU描画支援に対応した「Adobe Flash Player」のプレビュー版 2010年9月16日
●INTERNET Watch http://internet.watch.impress.co.jp/
「Flash Player」プレビュー版公開、IE9ベータと64bit版に対応 2010年9月17日
●Firefox Nightly Builds http://nightly.mozilla.org/
●Mozilla x86-64 http://wiki.mozilla-x86-64.com/
Firefox:Download


[一語一絵/IT系]

ServersMan@VPS / 2010-09-19 (日)

13日に書いた[External]DTIの仮想サーバーサービス[External]ServersMan@VPSの続き。

rewriteがうまくいってないっぽいというところで行き詰まっていたのだが、それ以前に.htaccessが効いていない事に気付いたので、/etc/httpd/conf/httpd.conf

<Directory /home/*/public_html>
    AllowOverride All
</Directory>
を設定することで解決した。

<public_html>の設定は最初にUserDirディレクティブと一緒にやったはずだったが、何かの契機でundoしてしまったのかなぁ。

一通り落ち着いたところでApacheBenchをやってみたところ、結果は以下の通り。

[yano@vps ~]$ ab -n 100 -c 10 http://localhost/~yano/
This is ApacheBench, Version 2.0.40-dev <$Revision: 1.146 $> apache-2.0
Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
Copyright 2006 The Apache Software Foundation, http://www.apache.org/

Benchmarking localhost (be patient).....done


Server Software:        Apache/2.2.3
Server Hostname:        localhost
Server Port:            80

Document Path:          /~yano/
Document Length:        34657 bytes

Concurrency Level:      10
Time taken for tests:   17.903715 seconds
Complete requests:      100
Failed requests:        0
Write errors:           0
Total transferred:      3494200 bytes
HTML transferred:       3465700 bytes
Requests per second:    5.59 [#/sec] (mean)
Time per request:       1790.372 [ms] (mean)
Time per request:       179.037 [ms] (mean, across all concurrent requests)
Transfer rate:          190.57 [Kbytes/sec] received

Connection Times (ms)
              min  mean[+/-sd] median   max
Connect:        0    6  19.8      0      69
Processing:    68 1738 1806.5   1341   10602
Waiting:        0 1670 1817.4   1192   10597
Total:         69 1744 1802.0   1341   10602

Percentage of the requests served within a certain time (ms)
  50%   1341
  66%   1723
  75%   2041
  80%   2349
  90%   2732
  95%   7503
  98%   9350
  99%  10602
100%  10602 (longest request)
[yano@vps ~]$
"Percentage of the requests served within a certain time (ms)"を診ると75%は2秒以内に応答できているようだが、最後の5%は7.5秒以上かかっているというのが気になる。

試しにCeleron 1.3GHzの現行サーバnx9030でもやってみると

[yano@nx9030 ~]$ ab -n 100 -c 10 http://localhost/~yano/
This is ApacheBench, Version 2.0.41-dev <$Revision: 1.141 $> apache-2.0
Copyright (c) 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
Copyright (c) 1998-2002 The Apache Software Foundation, http://www.apache.org/

Benchmarking localhost (be patient).....done


Server Software:        Apache/2.0.52
Server Hostname:        localhost
Server Port:            80

Document Path:          /~yano/
Document Length:        34829 bytes

Concurrency Level:      10
Time taken for tests:   21.835024 seconds
Complete requests:      100
Failed requests:        0
Write errors:           0
Total transferred:      3614164 bytes
HTML transferred:       3587384 bytes
Requests per second:    4.58 [#/sec] (mean)
Time per request:       2183.502 [ms] (mean)
Time per request:       218.350 [ms] (mean, across all concurrent requests)
Transfer rate:          161.62 [Kbytes/sec] received

Connection Times (ms)
              min  mean[+/-sd] median   max
Connect:        0   31 132.4      0     814
Processing:   549 2035 860.7   1860    4350
Waiting:      232 1506 798.3   1408    4208
Total:        549 2066 866.2   1884    4426

Percentage of the requests served within a certain time (ms)
  50%   1884
  66%   2357
  75%   2590
  80%   2747
  90%   3432
  95%   3846
  98%   4352
  99%   4426
100%   4426 (longest request)
[yano@nx9030 ~]$
なので、/proc/cpuinfoでは「Intel(R) Xeon(R) CPU L5520 @ 2.27GHz」と出力されるものの、ServersMan@VPSはシングルコアのCeleron 1.3GHzより少し速い程度。"Percentage of the requests served within a certain time (ms)"も50%の応答時間は[External]ServersMan@VPSの方が良好なので、極端に時間がかかっているケースは契約プランのメモリ容量を増やすことで改善されるんじゃないかしら?

というわけで、1000/日hit程度の個人サイトや実験ユースとしては[External]ServersMan@VPSでも充分だが、決して高いパフォーマンスではないので真面目に業務で使おうとする向きには厳しいかもねぇ。

参考まで7月に導入したCeleron G1101 2.26GHz Dual Coreの新鋭機GT110bと比較すると…

yano@GT110b:~$ ab -n 100 -c 10 http://localhost/~yano/
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/

Benchmarking localhost (be patient).....done


Server Software:        Apache/2.2.14
Server Hostname:        localhost
Server Port:            80

Document Path:          /~yano/
Document Length:        34625 bytes

Concurrency Level:      10
Time taken for tests:   3.207 seconds
Complete requests:      100
Failed requests:        0
Write errors:           0
Total transferred:      3491900 bytes
HTML transferred:       3462500 bytes
Requests per second:    31.18 [#/sec] (mean)
Time per request:       320.669 [ms] (mean)
Time per request:       32.067 [ms] (mean, across all concurrent requests)
Transfer rate:          1063.42 [Kbytes/sec] received

Connection Times (ms)
              min  mean[+/-sd] median   max
Connect:        0    3  11.7      0      57
Processing:   148  312  49.5    308     406
Waiting:      139  264  48.3    262     370
Total:        148  315  50.6    309     406

Percentage of the requests served within a certain time (ms)
  50%    309
  66%    342
  75%    359
  80%    371
  90%    381
  95%    392
  98%    401
  99%    406
100%    406 (longest request)
yano@GT110b:~$
なので、2万円もしないGT110bの圧勝という事になると、コストパフォーマンスだけで仮想化が有利とばかりも言えないのだなぁ。

【参照】
●R2.ag http://r2.ag/
格安VPSの比較「ServersMan@VPS」と「さくらのVPS」(2010/9/1時点) 2010年9月1日
●ServersMan@VPS仮想専用サーバーサービス:ユビキタスプロバイダ DTI http://dream.jp/vps/
ServersMan@VPS仮想専用サーバーサービス キャンペーン


[一語一絵/IT系]

PowerShot G12 / 2010-09-18 (土)

昨年10月にデビューした[External]キヤノン[External]コンパクトデジタルカメラ、PowerShot G11。

コンパクト機にしては暗部に強くなかなか秀逸。今年5月に入手して以来OLYMPUS E-330を圧倒する使い易さも手伝ってすっかりメインユースになって久しい。

そんなPowerShot G11の発表から1年を経て、先日後継機[External]PowerShot G12[External]発表された。

個人的にまず目に止ったのが前面に配置されたダイヤル。使いづらかった背面のダイヤルと同じ役割を果たすのであれば使い易さ激増だと思うのだが、果たしてどうなのだろうか?

[External]デジカメWatchの記事によると、約1,000万画素の1/1.7型CCD、28-140mm相当の5倍ズームレンズ、バリアングル式2.8型46.1万ドットの液晶モニターなど基本的なスペックは現行機[External]PowerShot G11のそれと同じ正常進化形…というのもはばかれるほど変わり映えしない仕様。前面ダイヤルの存在はあるものの、ホッとしたような残念なような…。

そういう意味では流通価格が59,980円と予想されるG12に対して、[External]amazon.co.jp38,670円なPower Shot G11は、お買い時かもかも。

HDRモードなど面白そうな機能は、G11向けにもファームウェアアップデートで提供されるといいのだが。

【参照】
●デジカメWatch http://dc.watch.impress.co.jp/
キヤノン、ノイズを1/4に抑えた「PowerShot G11」 2009年8月20日
キヤノン、“ハイブリッドIS”搭載の「PowerShot G12」 2010年9月15日
●キヤノン http://canon.jp/
コンパクトデジタルカメラPowerShotシリーズの新製品2機種を発売 2010年9月15日
コンパクトデジタルカメラ >> PowerShot G12
●amazon.co.jp http://www.amazon.co.jp/
Canon デジタルカメラ Power Shot G11 PSG11 38,670円
Canon デジタルカメラ PowerShot G12 PSG12 1000万画素 光学5倍ズーム 広角28mm 2.8型バリアングル液晶 59,980円


[一語一絵]

初宮詣 / 2010-09-17 (金)

横綱白鵬が大鵬と並ぶ45連勝を達成した7月23日に生まれた愛娘"なっちゃん"も生後56日が経過。おかげさまで体重も5kgを越え、順調に成長中であります。

お宮参り
筥崎宮にて

どういう偶然か横綱白鵬が千代の富士と並ぶ53連勝を達成した今日、安産の報告と赤ちゃんの健やかな成長を祈って[External]筥崎宮へ「お宮参り」。

正式には"初宮詣"と呼ぶそうで、生後30日前後にお参りするのが一般的と言われているが、なんせ今年の夏は暑すぎたしね。

折しも[External]筥崎宮では今年も12日から始まった[External]放生会(ほうじょうや)の真っ盛り。わざわざお祭り騒ぎの時に行くのもあれかと思ったのだが、せっかく遠くから来てもらった両親にも観て頂きたいし、平日午後ならば混雑もそれほどではなかろうという目論見。

陽が傾いてだいぶ涼しくなった夕方4時過ぎに出動。駐車場が普段より割高800円でお祓いの割引も一切適用無しという誤算はあったが、写真を撮ったり参道の露店を少し冷やかしても、慣れぬ雰囲気に赤ちゃんがぐずったりする事もなく恙なく終了。賑やかなのも案外悪くなかった気がするよ。

「お宮参り」の後は博多駅東の[External]八仙閣でささやかな祝宴でお開き。

【参照】
●筥崎宮 http://www.hakozakigu.or.jp/
各種祈願祭(厄祓・初宮詣等)のご案内
放生会「神事」・「神にぎわい」スケジュール
●福岡の中華料理店八仙閣 http://www.8000.co.jp/


[一語一絵]

9月24日も高速1000円 / 2010-09-16 (木)

うっかりしていたが、上限1000円の「ETC休日特別割引」が[External]平日の9月24日にも適用されるんだそうな。

土日祝日以外でも土日祝日に挟まれた平日も適用されることが決まっていて、2010年9月24日(金)以降、11月22日(月)、12月24日(金)、2011年1月3日(月)がその適用日にあたるとの事です。

「平成21年度環境対応車普及促進対策費補助事業」、通称「エコカー補助金」は予算枠の消化を以て[External]9月7日の受付分で前倒し終了した事が記憶に新しいが、「ETC休日特別割引」まで気が付いたら予算枠消化しちゃって突然終了…なんて事ないよね?

【参照】
●Car Watch http://car.watch.impress.co.jp/
エコカー補助金、9月6日の申請は約116億円で、残り約102億円に 2010年9月7日
経産省、エコカー補助金を終了 2010年9月8日
【ラリージャパン2010】本戦直前!「レッキ」リポート 2010年9月9日
【ラリージャパン2010】ラリージャパンがいよいよ開幕 2010年9月10日
【ラリージャパン2010】接戦続きのラリージャパン、制したのはセバスチャン・オジェ 2010年9月14日
【ラリージャパン2010】ラリージャパン直後のフェリー船内で、新井選手のトークショーを開催 2010年9月16日
高速道路各社、9月24日の平日も高速道路料金上限1000円の対象 2010年9月16日
●トクトクETC http://www.tokutoku-etc.jp/
休日特別割引