forked from akash-network/provider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
service.go
369 lines (311 loc) · 8.99 KB
/
service.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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
package provider
import (
"context"
"github.com/boz/go-lifecycle"
"github.com/pkg/errors"
tpubsub "github.com/troian/pubsub"
"github.com/cosmos/cosmos-sdk/client"
sdk "github.com/cosmos/cosmos-sdk/types"
bankTypes "github.com/cosmos/cosmos-sdk/x/bank/types"
dtypes "github.com/akash-network/akash-api/go/node/deployment/v1beta3"
provider "github.com/akash-network/akash-api/go/provider/v1"
"github.com/akash-network/node/pubsub"
"github.com/akash-network/provider/bidengine"
aclient "github.com/akash-network/provider/client"
"github.com/akash-network/provider/cluster"
"github.com/akash-network/provider/cluster/operatorclients"
ctypes "github.com/akash-network/provider/cluster/types/v1beta3"
"github.com/akash-network/provider/manifest"
"github.com/akash-network/provider/operator/waiter"
"github.com/akash-network/provider/session"
"github.com/akash-network/provider/tools/fromctx"
ptypes "github.com/akash-network/provider/types"
)
// ValidateClient is the interface to check if provider will bid on given groupspec
type ValidateClient interface {
Validate(context.Context, sdk.Address, dtypes.GroupSpec) (ValidateGroupSpecResult, error)
}
// StatusClient is the interface which includes status of service
//
//go:generate mockery --name StatusClient
type StatusClient interface {
Status(context.Context) (*Status, error)
StatusV1(ctx context.Context) (*provider.Status, error)
}
//go:generate mockery --name Client
type Client interface {
StatusClient
ValidateClient
Manifest() manifest.Client
Cluster() cluster.Client
Hostname() ctypes.HostnameServiceClient
ClusterService() cluster.Service
}
// Service is the interface that includes StatusClient interface.
// It also wraps ManifestHandler, Close and Done methods.
type Service interface {
Client
Close() error
Done() <-chan struct{}
}
// NewService creates and returns new Service instance
// Simple wrapper around various services needed for running a provider.
func NewService(ctx context.Context,
cctx client.Context,
accAddr sdk.AccAddress,
session session.Session,
bus pubsub.Bus,
cclient cluster.Client,
ipOperatorClient operatorclients.IPOperatorClient,
waiter waiter.OperatorWaiter,
cfg Config) (Service, error) {
ctx, cancel := context.WithCancel(ctx)
session = session.ForModule("provider-service")
clusterConfig := cluster.NewDefaultConfig()
clusterConfig.InventoryResourcePollPeriod = cfg.InventoryResourcePollPeriod
clusterConfig.InventoryResourceDebugFrequency = cfg.InventoryResourceDebugFrequency
clusterConfig.InventoryExternalPortQuantity = cfg.ClusterExternalPortQuantity
clusterConfig.CPUCommitLevel = cfg.CPUCommitLevel
clusterConfig.MemoryCommitLevel = cfg.MemoryCommitLevel
clusterConfig.StorageCommitLevel = cfg.StorageCommitLevel
clusterConfig.BlockedHostnames = cfg.BlockedHostnames
clusterConfig.DeploymentIngressStaticHosts = cfg.DeploymentIngressStaticHosts
clusterConfig.DeploymentIngressDomain = cfg.DeploymentIngressDomain
clusterConfig.ClusterSettings = cfg.ClusterSettings
cl, err := aclient.DiscoverQueryClient(ctx, cctx)
if err != nil {
cancel()
return nil, err
}
bc, err := newBalanceChecker(ctx, bankTypes.NewQueryClient(cctx), cl, accAddr, session, bus, cfg.BalanceCheckerCfg)
if err != nil {
session.Log().Error("starting balance checker", "err", err)
cancel()
return nil, err
}
cluster, err := cluster.NewService(ctx, session, bus, cclient, ipOperatorClient, waiter, clusterConfig)
if err != nil {
cancel()
<-bc.lc.Done()
return nil, err
}
bidengine, err := bidengine.NewService(ctx, session, cluster, bus, waiter, bidengine.Config{
PricingStrategy: cfg.BidPricingStrategy,
Deposit: cfg.BidDeposit,
BidTimeout: cfg.BidTimeout,
Attributes: cfg.Attributes,
MaxGroupVolumes: cfg.MaxGroupVolumes,
})
if err != nil {
errmsg := "creating bidengine service"
session.Log().Error(errmsg, "err", err)
cancel()
<-cluster.Done()
<-bc.lc.Done()
return nil, errors.Wrap(err, errmsg)
}
manifestConfig := manifest.ServiceConfig{
HTTPServicesRequireAtLeastOneHost: !cfg.DeploymentIngressStaticHosts,
ManifestTimeout: cfg.ManifestTimeout,
RPCQueryTimeout: cfg.RPCQueryTimeout,
CachedResultMaxAge: cfg.CachedResultMaxAge,
}
manifest, err := manifest.NewService(ctx, session, bus, cluster.HostnameService(), manifestConfig)
if err != nil {
session.Log().Error("creating manifest handler", "err", err)
cancel()
<-cluster.Done()
<-bidengine.Done()
<-bc.lc.Done()
return nil, err
}
svc := &service{
session: session,
bus: bus,
cluster: cluster,
cclient: cclient,
bidengine: bidengine,
manifest: manifest,
ctx: ctx,
cancel: cancel,
bc: bc,
lc: lifecycle.New(),
config: cfg,
}
go svc.lc.WatchContext(ctx)
go svc.run()
go svc.statusRun()
return svc, nil
}
type service struct {
config Config
session session.Session
bus pubsub.Bus
cclient cluster.Client
cluster cluster.Service
bidengine bidengine.Service
manifest manifest.Service
bc *balanceChecker
ctx context.Context
cancel context.CancelFunc
lc lifecycle.Lifecycle
}
func (s *service) Hostname() ctypes.HostnameServiceClient {
return s.cluster.HostnameService()
}
func (s *service) ClusterService() cluster.Service {
return s.cluster
}
func (s *service) Close() error {
s.lc.Shutdown(nil)
return s.lc.Error()
}
func (s *service) Done() <-chan struct{} {
return s.lc.Done()
}
func (s *service) Manifest() manifest.Client {
return s.manifest
}
func (s *service) Cluster() cluster.Client {
return s.cclient
}
func (s *service) Status(ctx context.Context) (*Status, error) {
cluster, err := s.cluster.Status(ctx)
if err != nil {
return nil, err
}
bidengine, err := s.bidengine.Status(ctx)
if err != nil {
return nil, err
}
manifest, err := s.manifest.Status(ctx)
if err != nil {
return nil, err
}
return &Status{
Cluster: cluster,
Bidengine: bidengine,
Manifest: manifest,
ClusterPublicHostname: s.config.ClusterPublicHostname,
}, nil
}
func (s *service) StatusV1(ctx context.Context) (*provider.Status, error) {
cluster, err := s.cluster.StatusV1(ctx)
if err != nil {
return nil, err
}
bidengine, err := s.bidengine.StatusV1(ctx)
if err != nil {
return nil, err
}
manifest, err := s.manifest.StatusV1(ctx)
if err != nil {
return nil, err
}
return &provider.Status{
Cluster: cluster,
BidEngine: bidengine,
Manifest: manifest,
PublicHostnames: []string{
s.config.ClusterPublicHostname,
},
}, nil
}
func (s *service) Validate(ctx context.Context, owner sdk.Address, gspec dtypes.GroupSpec) (ValidateGroupSpecResult, error) {
// FUTURE - pass owner here
req := bidengine.Request{
Owner: owner.String(),
GSpec: &gspec,
}
inv, err := s.cclient.Inventory(ctx)
if err != nil {
return ValidateGroupSpecResult{}, err
}
res := &reservation{
resources: nil,
clusterParams: nil,
}
if err = inv.Adjust(res, ctypes.WithDryRun()); err != nil {
return ValidateGroupSpecResult{}, err
}
price, err := s.config.BidPricingStrategy.CalculatePrice(ctx, req)
if err != nil {
return ValidateGroupSpecResult{}, err
}
return ValidateGroupSpecResult{
MinBidPrice: price,
}, nil
}
func (s *service) run() {
defer s.lc.ShutdownCompleted()
// Wait for any service to finish
select {
case <-s.lc.ShutdownRequest():
case <-s.cluster.Done():
case <-s.bidengine.Done():
case <-s.manifest.Done():
}
// Shut down all services
s.lc.ShutdownInitiated(nil)
s.cancel()
// Wait for all services to finish
<-s.cluster.Done()
<-s.bidengine.Done()
<-s.manifest.Done()
<-s.bc.lc.Done()
s.session.Log().Info("shutdown complete")
}
func (s *service) statusRun() {
bus := fromctx.PubSubFromCtx(s.ctx)
events := bus.Sub(
ptypes.PubSubTopicClusterStatus,
ptypes.PubSubTopicBidengineStatus,
ptypes.PubSubTopicManifestStatus,
)
defer bus.Unsub(events)
status := provider.Status{
PublicHostnames: []string{
s.config.ClusterPublicHostname,
},
}
loop:
for {
select {
case <-s.lc.ShutdownRequest():
return
case evt := <-events:
switch obj := evt.(type) {
case provider.ClusterStatus:
status.Cluster = &obj
case provider.BidEngineStatus:
status.BidEngine = &obj
case provider.ManifestStatus:
status.Manifest = &obj
default:
continue loop
}
bus.Pub(status, []string{ptypes.PubSubTopicProviderStatus}, tpubsub.WithRetain())
}
}
}
type reservation struct {
resources dtypes.ResourceGroup
adjustedResources dtypes.ResourceUnits
clusterParams interface{}
}
var _ ctypes.ReservationGroup = (*reservation)(nil)
func (r *reservation) Resources() dtypes.ResourceGroup {
return r.resources
}
func (r *reservation) SetAllocatedResources(val dtypes.ResourceUnits) {
r.adjustedResources = val
}
func (r *reservation) GetAllocatedResources() dtypes.ResourceUnits {
return r.adjustedResources
}
func (r *reservation) SetClusterParams(val interface{}) {
r.clusterParams = val
}
func (r *reservation) ClusterParams() interface{} {
return r.clusterParams
}