-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstability.go
56 lines (46 loc) · 1.21 KB
/
stability.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
package main
import (
"log"
"stability/database"
"time"
"github.com/spf13/cobra"
"github.com/spf13/viper"
"golang.org/x/sync/errgroup"
)
func runStabilityTest(_ *cobra.Command, _ []string) {
threads := viper.GetInt(keyThreads)
log.Printf("Running stability test with [%d] threads", threads)
params := database.GetDBParamsFromEnv(viper.GetViper())
session, err := database.NewGocqlConfig(¶ms).CreateSession()
if err != nil {
log.Fatalf("failed to create session: %v", err)
}
// run a simple query to make sure the database is up and running
if err := database.Ping(session); err != nil {
log.Fatalf("failed to run a simple query: %v", err)
}
group := errgroup.Group{}
for i := 0; i < threads; i++ {
f := i
group.Go(func() error {
ticker := time.NewTicker(5 * time.Second)
reporter := time.NewTicker(time.Minute)
for {
select {
case <-reporter.C:
// only 0 thread prints reports
if f == 0 {
log.Printf("Still running...")
}
case <-ticker.C:
if err := database.Ping(session); err != nil {
log.Fatalf("failed to run a simple query: %v", err)
}
}
}
})
}
if err := group.Wait(); err != nil {
log.Fatalf("group error: %v", err)
}
}