-
Notifications
You must be signed in to change notification settings - Fork 200
/
complex.go
112 lines (84 loc) · 3.29 KB
/
complex.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
// MIT License
// Copyright (c) [2022] [Bohdan Ivashko (https://github.com/Arriven)]
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
package job
import (
"context"
"fmt"
"sync"
"github.com/google/uuid"
"go.uber.org/zap"
"github.com/Arriven/db1000n/src/job/config"
"github.com/Arriven/db1000n/src/utils/metrics"
"github.com/Arriven/db1000n/src/utils/templates"
)
// "sequence" in config
func sequenceJob(ctx context.Context, args config.Args, globalConfig *GlobalConfig, a *metrics.Accumulator, logger *zap.Logger) (data any, err error) {
var jobConfig struct {
BasicJobConfig
Jobs []config.Config
}
if err := ParseConfig(&jobConfig, args, *globalConfig); err != nil {
return nil, fmt.Errorf("error parsing job config: %w", err)
}
for _, cfg := range jobConfig.Jobs {
job := Get(cfg.Type)
if job == nil {
return nil, fmt.Errorf("unknown job %q", cfg.Type)
}
data, err := job(ctx, cfg.Args, globalConfig, a, logger)
if err != nil {
return nil, fmt.Errorf("error running job: %w", err)
}
ctx = context.WithValue(ctx, templates.ContextKey("data."+cfg.Name), data)
}
return nil, nil
}
// "parallel" in config
func parallelJob(ctx context.Context, args config.Args, globalConfig *GlobalConfig, a *metrics.Accumulator, logger *zap.Logger) (data any, err error) {
ctx, cancel := context.WithCancel(ctx)
defer cancel()
var jobConfig struct {
BasicJobConfig
Jobs []config.Config
}
if err := ParseConfig(&jobConfig, args, *globalConfig); err != nil {
return nil, fmt.Errorf("error parsing job config: %w", err)
}
var wg sync.WaitGroup
for i := range jobConfig.Jobs {
job := Get(jobConfig.Jobs[i].Type)
if job == nil {
logger.Warn("Unknown job", zap.String("type", jobConfig.Jobs[i].Type))
continue
}
if globalConfig.ScaleFactor > 0 {
jobConfig.Jobs[i].Count = computeCount(jobConfig.Jobs[i].Count, globalConfig.ScaleFactor)
}
for j := 0; j < jobConfig.Jobs[i].Count; j++ {
wg.Add(1)
go func(i int, a *metrics.Accumulator) {
if _, err := job(ctx, jobConfig.Jobs[i].Args, globalConfig, a, logger); err != nil {
logger.Error("error running one of the jobs", zap.Error(err))
}
wg.Done()
}(i, a.Clone(uuid.NewString())) // metrics.Accumulator is not safe for concurrent use, so let's make a new one
}
}
wg.Wait()
return nil, nil
}