Skip to content

Commit

Permalink
修改application.conf
Browse files Browse the repository at this point in the history
  • Loading branch information
liuwenli committed Aug 30, 2018
1 parent 16b9965 commit 7b59063
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions rider/conf/application.conf
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ mysql = {
driver = "com.mysql.jdbc.Driver"
user = "root"
password = "root"
url = "jdbc:mysql://10.143.131.113:3306/wormhole?useUnicode=true&characterEncoding=UTF-8&useSSL=false"
url = "jdbc:mysql://localhost:3306/wormhole?useUnicode=true&characterEncoding=UTF-8&useSSL=false"
numThreads = 100
connectionTimeout = 3000
}
Expand All @@ -43,20 +43,20 @@ spark = {
spark.home = "/usr/local/spark"
yarn.queue.name = "default" #WormholeServer submit spark streaming/job queue
wormhole.hdfs.root.path = "hdfs://nn1/wormhole" #WormholeServer hdfslog data default hdfs root path
yarn.rm1.http.url = "10.143.131.113:8088" #Yarn ActiveResourceManager address
yarn.rm2.http.url = "10.143.131.113:8088" #Yarn StandbyResourceManager address
yarn.rm1.http.url = "localhost:8088" #Yarn ActiveResourceManager address
yarn.rm2.http.url = "localhost:8088" #Yarn StandbyResourceManager address
}

flink = {
home = "/usr/local/flink"
yarn.queue.name = "default"
}

zookeeper.connection.url = "10.143.131.113:2181" #WormholeServer stream and flow interaction channel
zookeeper.connection.url = "localhost:2181" #WormholeServer stream and flow interaction channel

kafka = {
brokers.url = "10.143.131.113:6667" #WormholeServer feedback data store
zookeeper.url = "10.143.131.113:2181"
brokers.url = "localhost:6667" #WormholeServer feedback data store
zookeeper.url = "localhost:2181"
topic.refactor = 3
consumer = {
feedback.topic = "wormhole_feedback"
Expand Down

0 comments on commit 7b59063

Please sign in to comment.