forked from odenny/hydra
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
26 changed files
with
767 additions
and
409 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
modules/hydra-collector/src/main/resources/collector-dbsource.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
jdbc.driverClassName=com.mysql.jdbc.Driver | ||
jdbc.url=jdbc:mysql://192.168.227.48:3306/hydra-config-pressure-test | ||
jdbc.username=root | ||
jdbc.password=root | ||
a=a |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
modules/hydra-manager-db/src/main/resources/mybatis/mysql.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
jdbc.driverClassName=com.mysql.jdbc.Driver | ||
jdbc.url=jdbc:mysql://192.168.227.48:3306/hydra-config | ||
jdbc.username=root | ||
jdbc.password=root | ||
jdbc.url=jdbc:mysql://localhost:3306/hydra-config | ||
jdbc.username= | ||
jdbc.password= | ||
a=a |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
modules/hydra-manager/src/main/java/com/jd/bdp/hydra/manager/HydraManager.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
package com.jd.bdp.hydra.manager; | ||
|
||
import org.springframework.context.support.ClassPathXmlApplicationContext; | ||
|
||
/** | ||
* User: xiangkui | ||
* Date: 13-5-16 | ||
* Time: 下午3:29 | ||
*/ | ||
public class HydraManager { | ||
public static void main(String[] strings) { | ||
ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext(new String[]{ | ||
"classpath*:hydra-manager.xml" | ||
}); | ||
context.start(); | ||
while (true) { | ||
try { | ||
Thread.sleep(Long.MAX_VALUE); | ||
} catch (InterruptedException e) { | ||
e.printStackTrace(); | ||
} | ||
} | ||
} | ||
} |
38 changes: 38 additions & 0 deletions
38
modules/hydra-manager/src/main/resources/assembly/assembly.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd"> | ||
<id>jd</id> | ||
<formats> | ||
<format>dir</format> | ||
<format>tar.gz</format> | ||
</formats> | ||
<includeBaseDirectory>true</includeBaseDirectory> | ||
<dependencySets> | ||
<dependencySet> | ||
<outputDirectory>lib</outputDirectory> | ||
<useProjectArtifact>false</useProjectArtifact> | ||
<useProjectAttachments>true</useProjectAttachments> | ||
</dependencySet> | ||
</dependencySets> | ||
<fileSets> | ||
<fileSet> | ||
<directory>/src/main/resources</directory> | ||
<outputDirectory>/conf</outputDirectory> | ||
<fileMode>0755</fileMode> | ||
<includes> | ||
<include>**.**</include> | ||
</includes> | ||
<excludes> | ||
<exclude>/assembly</exclude> | ||
<exclude>/scripts</exclude> | ||
</excludes> | ||
</fileSet> | ||
<fileSet> | ||
<directory>/src/main/resources/scripts</directory> | ||
<outputDirectory>/bin</outputDirectory> | ||
<includes> | ||
<include>*.*</include> | ||
</includes> | ||
</fileSet> | ||
</fileSets> | ||
</assembly> |
8 changes: 8 additions & 0 deletions
8
modules/hydra-manager/src/main/resources/hydra-manager.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
dubbo.application.name=hydra-manager | ||
dubbo.application.owner=jd-bdp | ||
|
||
dubbo.registry.protocol=zookeeper | ||
dubbo.registry.address=192.168.227.49:2181 | ||
|
||
dubbo.protocol.name=dubbo | ||
dubbo.protocol.port=20890 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
modules/hydra-manager/src/main/resources/manager-dbsource.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
jdbc.driverClassName=com.mysql.jdbc.Driver | ||
jdbc.url=jdbc:mysql://192.168.227.48:3306/hydra-config | ||
jdbc.username=root | ||
jdbc.password=root | ||
a=a |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#!/bin/bash | ||
|
||
#Config your java home | ||
#JAVA_HOME=/opt/jdk/ | ||
|
||
if [ -z "$JAVA_HOME" ]; then | ||
export JAVA=`which java` | ||
else | ||
export JAVA="$JAVA_HOME/bin/java" | ||
fi | ||
|
||
export CLASSPATH=$CLASSPATH:$BASE_DIR/conf:$(ls $BASE_DIR/lib/*.jar | tr '\n' :) | ||
|
||
#Server jvm args | ||
SERVER_JVM_ARGS="-Xmx512m -Xms512m -server -cp $CLASSPATH " | ||
|
||
if [ -z "$SERVER_ARGS" ]; then | ||
export SERVER_ARGS="$SERVER_JVM_ARGS" | ||
fi |
111 changes: 111 additions & 0 deletions
111
modules/hydra-manager/src/main/resources/scripts/manager.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,111 @@ | ||
#!/bin/bash | ||
#project directory | ||
|
||
MAINCLASSNAME="com.jd.bdp.hydra.manager.HydraManager" | ||
|
||
if [ -z "$BASE_DIR" ] ; then | ||
PRG="$0" | ||
|
||
# need this for relative symlinks | ||
while [ -h "$PRG" ] ; do | ||
ls=`ls -ld "$PRG"` | ||
link=`expr "$ls" : '.*-> \(.*\)$'` | ||
if expr "$link" : '/.*' > /dev/null; then | ||
PRG="$link" | ||
else | ||
PRG="`dirname "$PRG"`/$link" | ||
fi | ||
done | ||
BASE_DIR=`dirname "$PRG"`/.. | ||
|
||
# make it fully qualified | ||
BASE_DIR=`cd "$BASE_DIR" && pwd` | ||
#echo "Benchtest is at $BASE_DIR" | ||
fi | ||
|
||
source $BASE_DIR/bin/env.sh | ||
|
||
AS_USER=`whoami` | ||
LOG_DIR="$BASE_DIR/log" | ||
TAIL_FILE="$BASE_DIR/log/Benchtest.log" | ||
PID_DIR="$BASE_DIR/log" | ||
PID_FILE="$PID_DIR/.run.pid" | ||
CONFIG_FILE=" $BASE_DIR" | ||
|
||
|
||
function running(){ | ||
if [ -f "$PID_FILE" ]; then | ||
pid=$(cat "$PID_FILE") | ||
process=`ps aux | grep " $pid " | grep -v grep`; | ||
if [ "$process" == "" ]; then | ||
return 1; | ||
else | ||
return 0; | ||
fi | ||
else | ||
return 1 | ||
fi | ||
} | ||
|
||
function start_server() { | ||
if running; then | ||
echo "is running." | ||
exit 1 | ||
fi | ||
|
||
mkdir -p $PID_DIR | ||
mkdir -p $LOG_DIR | ||
chown -R $AS_USER $PID_DIR | ||
chown -R $AS_USER $LOG_DIR | ||
|
||
sleep 1 | ||
nohup $JAVA $SERVER_ARGS $MAINCLASSNAME $CONFIG_FILE >$TAIL_FILE & | ||
echo $! > $PID_FILE | ||
chmod 755 $PID_FILE | ||
sleep 1; | ||
tail -F $TAIL_FILE | ||
} | ||
|
||
function stop_server() { | ||
if ! running; then | ||
echo "service is not running." | ||
exit 1 | ||
fi | ||
count=0 | ||
pid=$(cat $PID_FILE) | ||
while running; | ||
do | ||
let count=$count+1 | ||
echo "Stopping $count times" | ||
if [ $count -gt 5 ]; then | ||
echo "kill -9 $pid" | ||
kill -9 $pid | ||
else | ||
kill $pid | ||
fi | ||
sleep 3; | ||
done | ||
echo "Stop service successfully." | ||
rm $PID_FILE | ||
} | ||
|
||
function help() { | ||
echo "Usage: startup.sh {start|stop}" >&2 | ||
echo " start: start the server" | ||
echo " stop: stop the server" | ||
} | ||
|
||
command=$1 | ||
shift 1 | ||
case $command in | ||
start) | ||
start_server $@; | ||
;; | ||
stop) | ||
stop_server $@; | ||
;; | ||
*) | ||
help; | ||
exit 1; | ||
;; | ||
esac |
Oops, something went wrong.