Basic Configuration
Note
The configuration file is in YAML format and must be strictly written in YAML format, otherwise errors may occur.
1. RPC Configuration
Service Discovery
Currently, only etcd is supported.
rpcServer:
model: 1
serverName: "Service Name"
etcd: ["127.0.0.1:2379"]
basePath: "go-admin-example"
addr: ""
port: 8899
pprof: 18899
model
: 0 - Point-to-Point (default), 1 - Point-to-Random, 2 - Point-to-All, 3 - MaxserverName
: Service name used for service discovery keyetcd
: etcd address, currently only etcd is supported for service discoverybasePath
: Root directory for etcd service discovery (usually the project name)addr
: RPC service address, usually left blank. When deploying on a Kubernetes cluster, fill in the service addressport
: RPC service portpprof
: RPC service pprof port
2. HTTP Configuration
httpServer:
port: 8080
pprof: 8088
rpcServer:
model: 1
serverName: "Service Name"
etcd: ["127.0.0.1:2379"]
basePath: "go-admin-example"
port
: HTTP service portpprof
: HTTP service pprof port
3. Database Configuration
Database Type
Currently, only MySQL is supported.
db:
dbType: "mysql"
maxOpenConn: 20
maxIdleConn: 4
maxIdleTime: 100
maxLifeTime: 3600
level: 4
slowThreshold: "100ms"
master:
user: "root"
password: "password"
host: "127.0.0.1"
port: "3306"
database: "database"
slave:
- user: "root"
password: "password"
host: "127.0.0.1"
port: "3306"
database: "database"
dbType
: Database typemaxOpenConn
: Maximum open connectionsmaxIdleConn
: Maximum idle connectionsmaxIdleTime
: Maximum idle timemaxLifeTime
: Maximum connection lifetimelevel
: Log levelslowThreshold
: Slow log thresholdmaster
: Master database configurationslave
: Slave database configuration
4. Redis Configuration
Redis Mode
Currently supports standalone (alone), sentinel, and cluster modes.
redis:
redisType: "alone"
startAddr: ["127.0.0.1:6379"]
active: 100
idle: 100
auth: ""
connTimeout: "100ms"
readTimeout: "100ms"
writeTimeout: "100ms"
idleTimeout: "100ms"
redisType
: Redis typestartAddr
: Sentinel or cluster addressesactive
: Maximum active connectionsidle
: Maximum idle connectionsauth
: PasswordconnTimeout
: Connection timeout