Removed maxTries option from Rebalancing
[voldemort/jeffpc.git] / bin / voldemort-coordinator.sh
blob81b5f73c10d074e0c80ce815cba568e2a7519d79
1 #!/bin/bash
4 # Copyright 2008-2013 LinkedIn, Inc
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
10 # http://www.apache.org/licenses/LICENSE-2.0
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
19 # Start up a Voldemort REST Coordinator speaking to a Voldemort Cluster.
20 # Example :
21 # 1. Bring up a Voldemort single node cluster
22 # $ bin/voldemort-server.sh config/single_node_cluster
23 # 2. Bring up a Voldemort Coordinator
24 # $ bin/voldemort-coordinator.sh config/coordinator_sample_config/config.properties
25 # 3. Do operations
26 # See config/coordinator_sample_config/curl_samples.txt
27 if [ $# -gt 1 ];
28 then
29 echo 'USAGE: bin/voldemort-coordinator.sh <coordinator-config-file>'
30 exit 1
33 base_dir=$(dirname $0)/..
35 for file in $base_dir/dist/*.jar;
37 CLASSPATH=$CLASSPATH:$file
38 done
40 for file in $base_dir/lib/*.jar;
42 CLASSPATH=$CLASSPATH:$file
43 done
45 for file in $base_dir/contrib/*/lib/*.jar;
47 CLASSPATH=$CLASSPATH:$file
48 done
50 CLASSPATH=$CLASSPATH:$base_dir/dist/resources
52 if [ -z "$VOLD_OPTS" ]; then
53 VOLD_OPTS="-Xmx1G -server -Dcom.sun.management.jmxremote"
56 java -Dlog4j.configuration=src/java/log4j.properties $VOLD_OPTS -cp $CLASSPATH voldemort.coordinator.CoordinatorService $@