-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhealth_check.go
77 lines (67 loc) · 1.63 KB
/
health_check.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
package danube
import (
"context"
"log"
"sync/atomic"
"time"
"github.com/danube-messaging/danube-go/proto" // Path to your generated proto package
)
type healthCheckService struct {
cnxManager *connectionManager
RequestID atomic.Uint64
}
func newHealthCheckService(cnxManager *connectionManager) *healthCheckService {
return &healthCheckService{
cnxManager: cnxManager,
RequestID: atomic.Uint64{},
}
}
func (hcs *healthCheckService) StartHealthCheck(
ctx context.Context,
addr string,
clientType int32,
clientID uint64,
stopSignal *atomic.Bool,
) error {
conn, err := hcs.cnxManager.getConnection(addr, addr)
if err != nil {
return err
}
log.Printf("Starting Health Check Service for: %v , with id: %d", clientType, clientID)
client := proto.NewHealthCheckClient(conn.grpcConn)
go func() {
for {
err := healthCheck(ctx, client, hcs.RequestID.Add(1), clientType, clientID, stopSignal)
if err != nil {
log.Printf("Error in health check: %v", err)
return
}
time.Sleep(5 * time.Second)
}
}()
return nil
}
func healthCheck(
ctx context.Context,
client proto.HealthCheckClient,
requestID uint64,
clientType int32,
clientID uint64,
stopSignal *atomic.Bool,
) error {
healthRequest := &proto.HealthCheckRequest{
RequestId: requestID,
Client: proto.HealthCheckRequest_ClientType(clientType),
Id: clientID,
}
response, err := client.HealthCheck(ctx, healthRequest)
if err != nil {
return err
}
if response.GetStatus() == proto.HealthCheckResponse_CLOSE {
log.Printf("Received stop signal from broker in health check response")
stopSignal.Store(true)
return nil
}
return nil
}