-
Notifications
You must be signed in to change notification settings - Fork 1
Kestrel Usage Japanese
acromusashi edited this page Sep 4, 2012
·
4 revisions
本ページではKestrelを用いたネットワークキューの利用方法について説明します。
起動方法/設定方法は下記の通りです。
wget https://github.com/downloads/acromusashi/acromusashi-stream-example/acromusashi-stream-example-kestrel-1.0.0.zip
unzip acromusashi-stream-example-kestrel-1.0.0.zip
cd kestrel
vi config/production.scala
設定内容
new KestrelConfig {
listenAddress = "0.0.0.0"
memcacheListenPort = 22133
textListenPort = 2222
thriftListenPort = 2229
queuePath = "/opt/kestrel/spool" ## ファイル同期先を設定
........
loggers = new LoggerConfig {
level = Level.DEBUG
handlers = new FileHandlerConfig {
filename = "/opt/kestrel/log/kestrel.log" ## ログ出力先ファイルを設定
roll = Policy.SigHup
}
}
java -jar kestrel_2.9.1-2.2.0.jar &