forked from vitessio/vitess
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tablet_data.go
164 lines (131 loc) · 3.54 KB
/
tablet_data.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
package vtctld
import (
"flag"
"sync"
"time"
log "github.com/golang/glog"
"github.com/youtube/vitess/go/vt/tabletserver/tabletconn"
"github.com/youtube/vitess/go/vt/topo"
"golang.org/x/net/context"
querypb "github.com/youtube/vitess/go/vt/proto/query"
topodatapb "github.com/youtube/vitess/go/vt/proto/topodata"
)
// This file maintains a tablet health cache. It establishes streaming
// connections with tablets, and updates its internal state with the
// result.
var (
tabletHealthKeepAlive = flag.Duration("tablet_health_keep_alive", 5*time.Minute, "close streaming tablet health connection if there are no requests for this long")
)
type tabletHealth struct {
mu sync.Mutex
// result stores the most recent response.
result *querypb.StreamHealthResponse
// accessed stores the time of the most recent access.
accessed time.Time
// err stores the result of the stream attempt.
err error
// done is closed when the stream attempt ends.
done chan struct{}
// ready is closed when there is at least one result to read.
ready chan struct{}
}
func newTabletHealth() *tabletHealth {
return &tabletHealth{
accessed: time.Now(),
ready: make(chan struct{}),
done: make(chan struct{}),
}
}
func (th *tabletHealth) lastResult(ctx context.Context) (*querypb.StreamHealthResponse, error) {
// Wait until at least the first result comes in, or the stream ends.
select {
case <-ctx.Done():
return nil, ctx.Err()
case <-th.ready:
case <-th.done:
}
th.mu.Lock()
defer th.mu.Unlock()
th.accessed = time.Now()
return th.result, th.err
}
func (th *tabletHealth) lastAccessed() time.Time {
th.mu.Lock()
defer th.mu.Unlock()
return th.accessed
}
func (th *tabletHealth) stream(ctx context.Context, ts topo.Server, tabletAlias *topodatapb.TabletAlias) (err error) {
defer func() {
th.mu.Lock()
th.err = err
th.mu.Unlock()
close(th.done)
}()
ti, err := ts.GetTablet(ctx, tabletAlias)
if err != nil {
return err
}
conn, err := tabletconn.GetDialer()(ctx, ti.Tablet, 30*time.Second)
if err != nil {
return err
}
defer conn.Close()
stream, err := conn.StreamHealth(ctx)
if err != nil {
return err
}
first := true
for time.Since(th.lastAccessed()) < *tabletHealthKeepAlive {
select {
case <-ctx.Done():
return ctx.Err()
default:
}
result, err := stream.Recv()
if err != nil {
return err
}
th.mu.Lock()
th.result = result
th.mu.Unlock()
if first {
// We got the first result, so we're ready to be accessed.
close(th.ready)
first = false
}
}
return nil
}
type tabletHealthCache struct {
ts topo.Server
mu sync.Mutex
tabletMap map[topodatapb.TabletAlias]*tabletHealth
}
func newTabletHealthCache(ts topo.Server) *tabletHealthCache {
return &tabletHealthCache{
ts: ts,
tabletMap: make(map[topodatapb.TabletAlias]*tabletHealth),
}
}
func (thc *tabletHealthCache) Get(ctx context.Context, tabletAlias *topodatapb.TabletAlias) (*querypb.StreamHealthResponse, error) {
thc.mu.Lock()
th, ok := thc.tabletMap[*tabletAlias]
if !ok {
// No existing stream, so start one.
th = newTabletHealth()
thc.tabletMap[*tabletAlias] = th
go func() {
log.Infof("starting health stream for tablet %v", tabletAlias)
err := th.stream(context.Background(), thc.ts, tabletAlias)
log.Infof("tablet %v health stream ended, error: %v", tabletAlias, err)
thc.delete(tabletAlias)
}()
}
thc.mu.Unlock()
return th.lastResult(ctx)
}
func (thc *tabletHealthCache) delete(tabletAlias *topodatapb.TabletAlias) {
thc.mu.Lock()
delete(thc.tabletMap, *tabletAlias)
thc.mu.Unlock()
}