Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: docker-compose preheat did not work #1124

Merged
merged 1 commit into from
Mar 4, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
130 changes: 0 additions & 130 deletions deploy/docker-compose/config/scheduler.yaml

This file was deleted.

4 changes: 2 additions & 2 deletions deploy/docker-compose/template/cdn.template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -108,10 +108,10 @@ plugins:
intervalThreshold: 2h0m0s

# console shows log on console
console: false
console: true

# whether to enable debug level logger and enable pprof
verbose: false
verbose: true

# listen port for pprof, only valid when the verbose option is true
# default is -1. If it is 0, pprof will use a random port.
Expand Down
6 changes: 3 additions & 3 deletions deploy/docker-compose/template/dfget.template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ dataDir: ""
keepStorage: true

# console shows log on console
console: false
console: true

# whether to enable debug level logger and enable pprof
verbose: false
verbose: true

# listen port for pprof, only valid when the verbose option is true
# default is -1. If it is 0, pprof will use a random port.
Expand Down Expand Up @@ -264,4 +264,4 @@ proxy:
# match whitelist hosts
regx:
# port that need to be added to the whitelist
ports:
ports:
6 changes: 3 additions & 3 deletions deploy/docker-compose/template/manager.template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,14 +60,14 @@ database:
# addr: ":8000"

# console shows log on console
console: false
console: true

# whether to enable debug level logger and enable pprof
verbose: false
verbose: true

# listen port for pprof, only valid when the verbose option is true
# default is -1. If it is 0, pprof will use a random port.
pprof-port: -1

# jaeger endpoint url, like: http://jaeger.dragonfly.svc:14268/api/traces
jaeger: ""
jaeger: ""
4 changes: 2 additions & 2 deletions deploy/docker-compose/template/scheduler.template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ cdn:
# see https://github.com/RichardKnop/machinery
job:
# scheduler enable job service
enable: false
enable: true
# number of workers in global queue
globalWorkerNum: 1
# number of workers in scheduler queue
Expand All @@ -99,7 +99,7 @@ job:
# port
port: 6379
# password
password: ""
password: dragonfly
# brokerDB
brokerDB: 1
# backendDB
Expand Down