forked from cockroachdb/cockroach
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settingsworker.go
134 lines (123 loc) · 4.04 KB
/
settingsworker.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
// Copyright 2017 The Cockroach Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
// implied. See the License for the specific language governing
// permissions and limitations under the License.
package server
import (
"bytes"
"golang.org/x/net/context"
"github.com/cockroachdb/cockroach/pkg/keys"
"github.com/cockroachdb/cockroach/pkg/roachpb"
"github.com/cockroachdb/cockroach/pkg/settings"
"github.com/cockroachdb/cockroach/pkg/sql/parser"
"github.com/cockroachdb/cockroach/pkg/sql/sqlbase"
"github.com/cockroachdb/cockroach/pkg/util/encoding"
"github.com/cockroachdb/cockroach/pkg/util/log"
"github.com/pkg/errors"
)
// RefreshSettings starts a settings-changes listener.
func (s *Server) refreshSettings() {
tbl := &sqlbase.SettingsTable
a := &sqlbase.DatumAlloc{}
settingsTablePrefix := keys.MakeTablePrefix(uint32(tbl.ID))
colIdxMap := sqlbase.ColIDtoRowIndexFromCols(tbl.Columns)
processKV := func(ctx context.Context, kv roachpb.KeyValue, u settings.Updater) error {
if !bytes.HasPrefix(kv.Key, settingsTablePrefix) {
return nil
}
var k, v, t string
// First we need to decode the setting name field from the index key.
{
nameRow := []sqlbase.EncDatum{{Type: tbl.Columns[0].Type}}
_, matches, err := sqlbase.DecodeIndexKey(a, tbl, &tbl.PrimaryIndex, nameRow, nil, kv.Key)
if err != nil {
return errors.Wrap(err, "failed to decode key")
}
if !matches {
return errors.Errorf("unexpected non-settings KV with settings prefix: %v", kv.Key)
}
if err := nameRow[0].EnsureDecoded(a); err != nil {
return err
}
k = string(parser.MustBeDString(nameRow[0].Datum))
}
// The rest of the columns are stored as a family, packed with diff-encoded
// column IDs followed by their values.
{
// column valueType can be null (missing) so we default it to "s".
t = "s"
bytes, err := kv.Value.GetTuple()
if err != nil {
return err
}
var colIDDiff uint32
var lastColID sqlbase.ColumnID
var res parser.Datum
for len(bytes) > 0 {
_, _, colIDDiff, _, err = encoding.DecodeValueTag(bytes)
if err != nil {
return err
}
colID := lastColID + sqlbase.ColumnID(colIDDiff)
lastColID = colID
if idx, ok := colIdxMap[colID]; ok {
res, bytes, err = sqlbase.DecodeTableValue(a, tbl.Columns[idx].Type.ToDatumType(), bytes)
if err != nil {
return err
}
switch colID {
case tbl.Columns[1].ID: // value
v = string(parser.MustBeDString(res))
case tbl.Columns[3].ID: // valueType
t = string(parser.MustBeDString(res))
case tbl.Columns[2].ID: // lastUpdated
// TODO(dt): we could decode just the len and then seek `bytes` past
// it, without allocating/decoding the unused timestamp.
default:
return errors.Errorf("unknown column: %v", colID)
}
}
}
}
if err := u.Set(k, v, t); err != nil {
log.Warningf(ctx, "setting %q to %q failed: %+v", k, v, err)
}
return nil
}
ctx := s.AnnotateCtx(context.Background())
s.stopper.RunWorker(ctx, func(ctx context.Context) {
gossipUpdateC := s.gossip.RegisterSystemConfigChannel()
// No new settings can be defined beyond this point.
for {
select {
case <-gossipUpdateC:
cfg, _ := s.gossip.GetSystemConfig()
u := s.st.MakeUpdater()
ok := true
for _, kv := range cfg.Values {
if err := processKV(ctx, kv, u); err != nil {
log.Warningf(ctx, `error decoding settings data: %+v
this likely indicates the settings table structure or encoding has been altered;
skipping settings updates`, err)
ok = false
break
}
}
if ok {
u.ResetRemaining()
}
case <-s.stopper.ShouldStop():
return
}
}
})
}