forked from didi/KnowStreaming
-
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.
Merge pull request didi#58 from didi/dev
版本调整为1.1.0
- Loading branch information
Showing
13 changed files
with
164 additions
and
16 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
FROM fabric8/java-alpine-openjdk8-jdk | ||
MAINTAINER xuzhengxi | ||
ENV LANG=C.UTF-8 LC_ALL=C.UTF-8 | ||
ADD ./web/target/kafka-manager-web-1.0.0-SNAPSHOT.jar kafka-manager-web.jar | ||
ADD ./web/target/kafka-manager-web-1.1.0-SNAPSHOT.jar kafka-manager-web.jar | ||
ADD ./docker/kafka-manager/application-standalone.yml application.yml | ||
ENTRYPOINT ["java","-jar","/kafka-manager-web.jar","--spring.config.location=./application.yml"] | ||
EXPOSE 8080 |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
FROM java:8 | ||
MAINTAINER xuzhengxi | ||
ENV LANG=C.UTF-8 LC_ALL=C.UTF-8 | ||
ADD ../../web/target/kafka-manager-web-1.0.0-SNAPSHOT.jar kafka-manager-web.jar | ||
ADD ../../web/target/kafka-manager-web-1.1.0-SNAPSHOT.jar kafka-manager-web.jar | ||
ADD ./application.yml application.yml | ||
ENTRYPOINT ["java","-jar","/kafka-manager-web.jar","--spring.config.location=./application.yml"] | ||
EXPOSE 8080 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#!/usr/bin/env bash | ||
|
||
cd `dirname $0`/../lib | ||
lib_dir=`pwd` | ||
|
||
pid=`ps ax | grep -i 'kafka-manager-web' | grep ${lib_dir} | grep java | grep -v grep | awk '{print $1}'` | ||
if [ -z "$pid" ] ; then | ||
echo "No kafka-manager-web running." | ||
exit -1; | ||
fi | ||
|
||
echo "The kafka-manager-web(${pid}) is running..." | ||
|
||
kill ${pid} | ||
|
||
echo "Send shutdown request to kafka-manager-web(${pid}) OK" |
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,46 @@ | ||
#!/usr/bin/env bash | ||
|
||
error_exit () | ||
{ | ||
echo "ERROR: $1 !!" | ||
exit 1 | ||
} | ||
|
||
if [ -z "$JAVA_HOME" ]; then | ||
error_exit "Please set the JAVA_HOME variable in your environment, We need java(x64)! jdk8 or later is better!" | ||
|
||
fi | ||
|
||
export WEB_SERVER="kafka-manager-web-*" | ||
export JAVA_HOME | ||
export JAVA="$JAVA_HOME/bin/java" | ||
export BASE_DIR=`cd $(dirname $0)/..; pwd` | ||
export DEFAULT_SEARCH_LOCATIONS="classpath:/,classpath:/config/,file:./,file:./config/" | ||
export CUSTOM_SEARCH_LOCATIONS=${DEFAULT_SEARCH_LOCATIONS},file:${BASE_DIR}/conf/ | ||
|
||
#=========================================================================================== | ||
# JVM Configuration | ||
#=========================================================================================== | ||
|
||
JAVA_OPT="${JAVA_OPT} -server -Xms2g -Xmx2g -Xmn1g -XX:MetaspaceSize=128m -XX:MaxMetaspaceSize=320m" | ||
JAVA_OPT="${JAVA_OPT} -XX:-OmitStackTraceInFastThrow -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=${BASE_DIR}/logs/java_heapdump.hprof" | ||
JAVA_OPT="${JAVA_OPT} -Xloggc:${BASE_DIR}/logs/gc.log -verbose:gc -XX:+PrintGCDetails -XX:+PrintGCDateStamps -XX:+PrintGCTimeStamps -XX:+UseGCLogFileRotation -XX:NumberOfGCLogFiles=10 -XX:GCLogFileSize=100M" | ||
JAVA_OPT="${JAVA_OPT} -jar ${BASE_DIR}/lib/${WEB_SERVER}.jar" | ||
JAVA_OPT="${JAVA_OPT} --spring.config.location=${CUSTOM_SEARCH_LOCATIONS}" | ||
JAVA_OPT="${JAVA_OPT} --logging.config=${BASE_DIR}/conf/logback-spring.xml" | ||
JAVA_OPT="${JAVA_OPT} --server.max-http-header-size=524288" | ||
|
||
if [ ! -d "${BASE_DIR}/logs" ]; then | ||
mkdir ${BASE_DIR}/logs | ||
fi | ||
|
||
echo "$JAVA ${JAVA_OPT}" | ||
|
||
# check the start.out log output file | ||
if [ ! -f "${BASE_DIR}/logs/start.out" ]; then | ||
touch "${BASE_DIR}/logs/start.out" | ||
fi | ||
# start | ||
echo "$JAVA ${JAVA_OPT}" > ${BASE_DIR}/logs/start.out 2>&1 & | ||
nohup $JAVA ${JAVA_OPT} >> ${BASE_DIR}/logs/start.out 2>&1 & | ||
echo "kafka-manager is starting,you can check the ${BASE_DIR}/logs/start.out" |
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,32 @@ | ||
server: | ||
port: 8080 | ||
tomcat: | ||
accept-count: 100 | ||
max-connections: 1000 | ||
max-threads: 20 | ||
min-spare-threads: 20 | ||
|
||
spring: | ||
application: | ||
name: kafkamanager | ||
datasource: | ||
kafka-manager: | ||
jdbc-url: jdbc:mysql://localhost:3306/kafka_manager?characterEncoding=UTF-8&serverTimezone=GMT%2B8 | ||
username: admin | ||
password: admin | ||
driver-class-name: org.mariadb.jdbc.Driver | ||
main: | ||
allow-bean-definition-overriding: true | ||
|
||
profiles: | ||
active: dev | ||
|
||
logging: | ||
config: classpath:logback-spring.xml | ||
|
||
# kafka监控 | ||
kafka-monitor: | ||
enabled: true | ||
notify-kafka: | ||
cluster-id: 95 | ||
topic-name: kmo_monitor |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<assembly | ||
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd"> | ||
<id>bin</id> | ||
<formats> | ||
<format>dir</format> | ||
<format>tar.gz</format> | ||
</formats> | ||
<fileSets> | ||
<fileSet> | ||
<includes> | ||
<include>./bin/*</include> | ||
</includes> | ||
<fileMode>0755</fileMode> | ||
</fileSet> | ||
<fileSet> | ||
<directory>./src/main/resources/</directory> | ||
<outputDirectory>conf</outputDirectory> | ||
<includes> | ||
<include>application.yml</include> | ||
<include>logback-spring.xml</include> | ||
</includes> | ||
</fileSet> | ||
<fileSet> | ||
<directory>${project.build.directory}</directory> | ||
<outputDirectory>lib</outputDirectory> | ||
<includes> | ||
<include>*.jar</include> | ||
</includes> | ||
</fileSet> | ||
|
||
</fileSets> | ||
</assembly> |