-
Notifications
You must be signed in to change notification settings - Fork 0
/
scheduler.go
117 lines (103 loc) · 2.19 KB
/
scheduler.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
package main
import (
"context"
"fmt"
"log"
"strconv"
"time"
"go.mongodb.org/mongo-driver/bson"
"go.mongodb.org/mongo-driver/bson/primitive"
"go.mongodb.org/mongo-driver/mongo/options"
)
var currentJobs []*Job
func run() {
scrapeNow()
stopped := make(chan bool, 1)
ticker := time.NewTicker(getScrapeInterval())
go func() {
for {
select {
case <-ticker.C:
scrapeNow()
case <-stopped:
ticker.Stop()
return
}
}
}()
}
func getScrapeInterval() time.Duration {
i, err := strconv.ParseInt(getEnvVariable(ENV_SCRAPE_INTERVAL), 10, 64)
if err != nil {
log.Fatal("Scrape Interval is not valid")
}
return time.Duration(i) * time.Second
}
func getScrapeIntervalRaw() int64 {
i, err := strconv.ParseInt(getEnvVariable(ENV_SCRAPE_INTERVAL), 10, 64)
if err != nil {
log.Fatal("Scrape Interval is not valid")
}
return i
}
func scrapeNow() {
fmt.Println("scraping")
collection := getCollection(getJobsCollectionName())
findOptions := options.Find()
timeMax := time.Now().Unix() + getScrapeIntervalRaw()
findQuery := bson.M{
"job_time": bson.M{
"$gte": time.Now().Unix(),
"$lt": timeMax,
},
}
findOptions.SetLimit(100)
cur, err := collection.Find(context.TODO(), findQuery, findOptions)
if err != nil {
// TODO move to failed jobs
fmt.Println(err)
}
// Iterate through the cursor
for cur.Next(context.TODO()) {
var job Job
err := cur.Decode(&job)
if err != nil {
// TODO move to failed jobs
fmt.Println(err)
}
currentJobs = append(currentJobs, &job)
}
if err := cur.Err(); err != nil {
// log.Fatal(err)
// TODO move to failed jobs
fmt.Println(err)
}
cur.Close(context.TODO())
}
func runner() {
for {
if len(currentJobs) > 0 {
for i := 0; i < len(currentJobs); i++ {
if currentJobs[i].ActionType == 1 {
doActionType(1, currentJobs[i])
}
// else {
// //TODO move to failedjobs
// }
}
}
}
}
func removeJob(id primitive.ObjectID) {
r := -1
for i := 0; i < len(currentJobs); i++ {
if primitive.ObjectID.String(currentJobs[i].Id) == primitive.ObjectID.String(id) {
r = i
break
}
}
if r != -1 {
currentJobs = append(currentJobs[:r], currentJobs[r+1:]...)
}
fmt.Println("Removed job")
}