-
Notifications
You must be signed in to change notification settings - Fork 78
/
config.go
151 lines (137 loc) · 3.83 KB
/
config.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
//
// Copyright (C) 2019-2020 Vdaas.org Vald team ( kpango, rinx, kmrmt )
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// Package setting stores all server application settings
package config
import (
"github.com/vdaas/vald/internal/config"
)
type GlobalConfig = config.GlobalConfig
// Config represent a application setting data content (config.yaml).
// In K8s environment, this configuration is stored in K8s ConfigMap.
type Data struct {
config.GlobalConfig `json:",inline" yaml:",inline"`
// Server represent all server configurations
Server *config.Servers `json:"server_config" yaml:"server_config"`
// Observability represent observability configurations
Observability *config.Observability `json:"observability" yaml:"observability"`
// Cassandra represent cassandra configurations
Cassandra *config.Cassandra `json:"cassandra_config" yaml:"cassandra_config"`
}
func NewConfig(path string) (cfg *Data, err error) {
err = config.Read(path, &cfg)
if err != nil {
return nil, err
}
if cfg != nil {
cfg.Bind()
}
if cfg.Server != nil {
cfg.Server = cfg.Server.Bind()
}
if cfg.Observability != nil {
cfg.Observability = cfg.Observability.Bind()
}
if cfg.Cassandra != nil {
cfg.Cassandra = cfg.Cassandra.Bind()
}
return cfg, nil
}
// func FakeData() {
// d := Data{
// Version: "v0.0.1",
// Server: &config.Servers{
// Servers: []*config.Server{
// {
// Name: "agent-rest",
// Host: "127.0.0.1",
// Port: 8080,
// Mode: "REST",
// ProbeWaitTime: "3s",
// ShutdownDuration: "5s",
// HandlerTimeout: "5s",
// IdleTimeout: "2s",
// ReadHeaderTimeout: "1s",
// ReadTimeout: "1s",
// WriteTimeout: "1s",
// },
// {
// Name: "agent-grpc",
// Host: "127.0.0.1",
// Port: 8082,
// Mode: "GRPC",
// },
// },
// MetricsServers: []*config.Server{
// {
// Name: "pprof",
// Host: "127.0.0.1",
// Port: 6060,
// Mode: "REST",
// ProbeWaitTime: "3s",
// ShutdownDuration: "5s",
// HandlerTimeout: "5s",
// IdleTimeout: "2s",
// ReadHeaderTimeout: "1s",
// ReadTimeout: "1s",
// WriteTimeout: "1s",
// },
// },
// HealthCheckServers: []*config.Server{
// {
// Name: "livenesss",
// Host: "127.0.0.1",
// Port: 3000,
// },
// {
// Name: "readiness",
// Host: "127.0.0.1",
// Port: 3001,
// },
// },
// StartUpStrategy: []string{
// "livenesss",
// "pprof",
// "agent-grpc",
// "agent-rest",
// "readiness",
// },
// ShutdownStrategy: []string{
// "readiness",
// "agent-rest",
// "agent-grpc",
// "pprof",
// "livenesss",
// },
// FullShutdownDuration: "30s",
// TLS: &config.TLS{
// Enabled: false,
// Cert: "/path/to/cert",
// Key: "/path/to/key",
// CA: "/path/to/ca",
// },
// },
// NGT: &config.NGT{
// IndexPath: "/path/to/index",
// Dimension: 4096,
// BulkInsertChunkSize: 10,
// DistanceType: "l2",
// ObjectType: "float",
// CreationEdgeSize: 20,
// SearchEdgeSize: 10,
// },
// }
// fmt.Println(config.ToRawYaml(d))
// }