2012-02-28 02:05:37 -05:00
|
|
|
JAVA_OPTS="-server -Xms256M -Xmx256M"
|
|
|
|
BASE_PORT=7570
|
|
|
|
BASE_STOP_PORT=6570
|
|
|
|
ZK_PORT="9983"
|
|
|
|
|
|
|
|
rebuild() {
|
|
|
|
echo "Rebuilding"
|
|
|
|
cd ..
|
|
|
|
rm -r -f dist
|
|
|
|
rm -r -f build
|
|
|
|
rm -r -f example/solr/zoo_data
|
|
|
|
rm -f example/example.log
|
|
|
|
ant example dist
|
|
|
|
}
|
|
|
|
|
|
|
|
setports() {
|
|
|
|
if [ "1" = "$1" ]; then
|
|
|
|
PORT="8983"
|
|
|
|
STOP_PORT="7983"
|
|
|
|
else
|
|
|
|
PORT="$(( $BASE_PORT + $1 ))"
|
|
|
|
STOP_PORT="$(( $BASE_STOP_PORT + $1 ))"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
reinstall() {
|
|
|
|
echo "Reinstalling instance $1"
|
|
|
|
cd ..
|
|
|
|
rm -rf example$1
|
|
|
|
cp -r -f example example$1
|
|
|
|
}
|
|
|
|
|
|
|
|
start() {
|
|
|
|
OPT="-DzkHost=localhost:$ZK_PORT -DzkRun"
|
|
|
|
NUMSHARDS=$2
|
|
|
|
|
|
|
|
echo "Starting instance $1"
|
|
|
|
if [ "1" = "$1" ]; then
|
|
|
|
if [ "" = "$NUMSHARDS" ]; then
|
|
|
|
NUMSHARDS="1"
|
|
|
|
fi
|
|
|
|
echo "Instance is running zk, numshards=$NUMSHARDS"
|
2012-12-01 16:46:58 -05:00
|
|
|
OPT="-DzkRun -Dbootstrap_conf=true -DnumShards=$NUMSHARDS"
|
2012-02-28 02:05:37 -05:00
|
|
|
fi
|
|
|
|
setports $1
|
|
|
|
cd ../example$1
|
|
|
|
java $JAVA_OPTS -Djetty.port=$PORT $OPT -DSTOP.PORT=$STOP_PORT -DSTOP.KEY=key -jar start.jar 1>example$1.log 2>&1 &
|
|
|
|
}
|
|
|
|
|
|
|
|
stop() {
|
|
|
|
echo "Stopping instance $1"
|
|
|
|
setports $1
|
|
|
|
cd ../example$1
|
|
|
|
java -DSTOP.PORT=$STOP_PORT -DSTOP.KEY=key -jar start.jar --stop
|
|
|
|
}
|
|
|
|
|
|
|
|
do_kill() {
|
|
|
|
echo "Killing instance $1"
|
|
|
|
setports $1
|
|
|
|
PID=`ps aux|grep "STOP.PORT=$STOP_PORT"|grep -v grep|cut -b 8-15`
|
|
|
|
if [ "" = "$PID" ]; then
|
|
|
|
echo "not running?"
|
|
|
|
else
|
|
|
|
kill -9 $PID
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
status() {
|
|
|
|
echo "Status:"
|
|
|
|
ps aux|grep "STOP.PORT"|grep -v grep
|
|
|
|
}
|
|
|
|
|
|
|
|
cleanlogs() {
|
|
|
|
cd ../example$1
|
|
|
|
mv example$1.log example$1.oldlog
|
|
|
|
}
|
|
|
|
|
|
|
|
taillogs() {
|
|
|
|
cd ../example$1
|
|
|
|
tail -f example$1.log
|
|
|
|
}
|
|
|
|
|
|
|
|
createshard() {
|
|
|
|
setports $1
|
|
|
|
echo "Creating new shard @instance $1, collection=$2, shard=$3, name=$4"
|
|
|
|
curl "http://127.0.0.1:$PORT/solr/admin/cores?action=CREATE&collection=$2&name=$3&shard=$4"
|
|
|
|
}
|