forked from tikv/pd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkeyspace.go
More file actions
341 lines (320 loc) · 11.9 KB
/
keyspace.go
File metadata and controls
341 lines (320 loc) · 11.9 KB
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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
// Copyright 2022 TiKV Project 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 handlers
import (
"encoding/json"
"net/http"
"strconv"
"strings"
"time"
"github.com/gin-gonic/gin"
"github.com/pingcap/errors"
"github.com/pingcap/kvproto/pkg/keyspacepb"
"github.com/tikv/pd/pkg/errs"
"github.com/tikv/pd/server"
"github.com/tikv/pd/server/apiv2/middlewares"
"github.com/tikv/pd/server/keyspace"
)
// RegisterKeyspace register keyspace related handlers to router paths.
func RegisterKeyspace(r *gin.RouterGroup) {
router := r.Group("keyspaces")
router.Use(middlewares.BootstrapChecker())
router.POST("", CreateKeyspace)
router.GET("", LoadAllKeyspaces)
router.GET("/:name", LoadKeyspace)
router.PATCH("/:name/config", UpdateKeyspaceConfig)
router.PUT("/:name/state", UpdateKeyspaceState)
}
// CreateKeyspaceParams represents parameters needed when creating a new keyspace.
// NOTE: This type is exported by HTTP API. Please pay more attention when modifying it.
type CreateKeyspaceParams struct {
Name string `json:"name"`
Config map[string]string `json:"config"`
}
// CreateKeyspace creates keyspace according to given input.
// @Tags keyspaces
// @Summary Create new keyspace.
// @Param body body CreateKeyspaceParams true "Create keyspace parameters"
// @Produce json
// @Success 200 {object} KeyspaceMeta
// @Failure 400 {string} string "The input is invalid."
// @Failure 500 {string} string "PD server failed to proceed the request."
// @Router /keyspaces [post]
func CreateKeyspace(c *gin.Context) {
svr := c.MustGet("server").(*server.Server)
manager := svr.GetKeyspaceManager()
createParams := &CreateKeyspaceParams{}
err := c.BindJSON(createParams)
if err != nil {
c.AbortWithStatusJSON(http.StatusBadRequest, errs.ErrBindJSON.Wrap(err).GenWithStackByCause())
return
}
req := &keyspace.CreateKeyspaceRequest{
Name: createParams.Name,
Config: createParams.Config,
Now: time.Now().Unix(),
}
meta, err := manager.CreateKeyspace(req)
if err != nil {
c.AbortWithStatusJSON(http.StatusInternalServerError, err.Error())
return
}
c.IndentedJSON(http.StatusOK, &KeyspaceMeta{meta})
}
// LoadKeyspace returns target keyspace.
// @Tags keyspaces
// @Summary Get keyspace info.
// @Param name path string true "Keyspace Name"
// @Produce json
// @Success 200 {object} KeyspaceMeta
// @Failure 500 {string} string "PD server failed to proceed the request."
// @Router /keyspaces/{name} [get]
func LoadKeyspace(c *gin.Context) {
svr := c.MustGet("server").(*server.Server)
manager := svr.GetKeyspaceManager()
name := c.Param("name")
meta, err := manager.LoadKeyspace(name)
if err != nil {
c.AbortWithStatusJSON(http.StatusInternalServerError, err.Error())
return
}
c.IndentedJSON(http.StatusOK, &KeyspaceMeta{meta})
}
// parseLoadAllQuery parses LoadAllKeyspaces' query parameters.
// page_token:
// The keyspace id of the scan start. If not set, scan from keyspace with id 1.
// It's string of spaceID of the previous scan result's last element (next_page_token).
// limit:
// The maximum number of keyspace metas to return. If not set, no limit is posed.
// Every scan scans limit + 1 keyspaces (if limit != 0), the extra scanned keyspace
// is to check if there's more, and used to set next_page_token in response.
func parseLoadAllQuery(c *gin.Context) (scanStart uint32, scanLimit int, err error) {
pageToken, set := c.GetQuery("page_token")
if !set || pageToken == "" {
// If pageToken is empty or unset, then scan from spaceID of 1.
scanStart = 0
} else {
scanStart64, err := strconv.ParseUint(pageToken, 10, 32)
if err != nil {
return 0, 0, err
}
scanStart = uint32(scanStart64)
}
limitStr, set := c.GetQuery("limit")
if !set || limitStr == "" || limitStr == "0" {
// If limit is unset or empty or 0, then no limit is posed for scan.
scanLimit = 0
} else {
scanLimit64, err := strconv.ParseInt(limitStr, 10, 64)
if err != nil {
return 0, 0, err
}
// Scan an extra element for next_page_token.
scanLimit = int(scanLimit64) + 1
}
return scanStart, scanLimit, nil
}
// LoadAllKeyspacesResponse represents response given when loading all keyspaces.
// NOTE: This type is exported by HTTP API. Please pay more attention when modifying it.
type LoadAllKeyspacesResponse struct {
Keyspaces []*KeyspaceMeta `json:"keyspaces"`
// Token that can be used to read immediate next page.
// If it's empty, then end has been reached.
NextPageToken string `json:"next_page_token"`
}
// LoadAllKeyspaces loads range of keyspaces.
// @Tags keyspaces
// @Summary list keyspaces.
// @Param page_token query string false "page token"
// @Param limit query string false "maximum number of results to return"
// @Produce json
// @Success 200 {object} LoadAllKeyspacesResponse
// @Failure 400 {string} string "The input is invalid."
// @Failure 500 {string} string "PD server failed to proceed the request."
// @Router /keyspaces [get]
func LoadAllKeyspaces(c *gin.Context) {
svr := c.MustGet("server").(*server.Server)
manager := svr.GetKeyspaceManager()
scanStart, scanLimit, err := parseLoadAllQuery(c)
if err != nil {
c.AbortWithStatusJSON(http.StatusBadRequest, err.Error())
return
}
scanned, err := manager.LoadRangeKeyspace(scanStart, scanLimit)
if err != nil {
c.AbortWithStatusJSON(http.StatusInternalServerError, err.Error())
return
}
resp := &LoadAllKeyspacesResponse{}
// If scanned 0 keyspaces, return result immediately.
if len(scanned) == 0 {
c.IndentedJSON(http.StatusOK, resp)
return
}
var resultKeyspaces []*KeyspaceMeta
if scanLimit == 0 || len(scanned) < scanLimit {
// No next page, all scanned are results.
resultKeyspaces = make([]*KeyspaceMeta, len(scanned))
for i, meta := range scanned {
resultKeyspaces[i] = &KeyspaceMeta{meta}
}
} else {
// Scanned limit + 1 keyspaces, there is next page, all but last are results.
resultKeyspaces = make([]*KeyspaceMeta, len(scanned)-1)
for i := range resultKeyspaces {
resultKeyspaces[i] = &KeyspaceMeta{scanned[i]}
}
// Also set next_page_token here.
resp.NextPageToken = strconv.Itoa(int(scanned[len(scanned)-1].Id))
}
resp.Keyspaces = resultKeyspaces
c.IndentedJSON(http.StatusOK, resp)
}
// UpdateConfigParams represents parameters needed to modify target keyspace's configs.
// NOTE: This type is exported by HTTP API. Please pay more attention when modifying it.
// A Map of string to string pointer is used to differentiate between json null and "",
// which will both be set to "" if value type is string during binding.
type UpdateConfigParams struct {
Config map[string]*string `json:"config"`
}
// UpdateKeyspaceConfig updates target keyspace's config.
// This api uses PATCH semantic and supports JSON Merge Patch.
// format and processing rules.
// @Tags keyspaces
// @Summary Update keyspace config.
// @Param name path string true "Keyspace Name"
// @Param body body UpdateConfigParams true "Update keyspace parameters"
// @Produce json
// @Success 200 {object} KeyspaceMeta
// @Failure 400 {string} string "The input is invalid."
// @Failure 500 {string} string "PD server failed to proceed the request."
// Router /keyspaces/{name}/config [patch]
func UpdateKeyspaceConfig(c *gin.Context) {
svr := c.MustGet("server").(*server.Server)
manager := svr.GetKeyspaceManager()
name := c.Param("name")
configParams := &UpdateConfigParams{}
err := c.BindJSON(configParams)
if err != nil {
c.AbortWithStatusJSON(http.StatusBadRequest, errs.ErrBindJSON.Wrap(err).GenWithStackByCause())
return
}
mutations := getMutations(configParams.Config)
meta, err := manager.UpdateKeyspaceConfig(name, mutations)
if err != nil {
c.AbortWithStatusJSON(http.StatusInternalServerError, err.Error())
return
}
c.IndentedJSON(http.StatusOK, &KeyspaceMeta{meta})
}
// getMutations converts a given JSON merge patch to a series of keyspace config mutations.
func getMutations(patch map[string]*string) []*keyspace.Mutation {
mutations := make([]*keyspace.Mutation, 0, len(patch))
for k, v := range patch {
if v == nil {
mutations = append(mutations, &keyspace.Mutation{
Op: keyspace.OpDel,
Key: k,
})
} else {
mutations = append(mutations, &keyspace.Mutation{
Op: keyspace.OpPut,
Key: k,
Value: *v,
})
}
}
return mutations
}
// UpdateStateParam represents parameters needed to modify target keyspace's state.
// NOTE: This type is exported by HTTP API. Please pay more attention when modifying it.
type UpdateStateParam struct {
State string `json:"state"`
}
// UpdateKeyspaceState update the target keyspace's state.
// @Tags keyspaces
// @Summary Update keyspace state.
// @Param name path string true "Keyspace Name"
// @Param body body UpdateStateParam true "New state for the keyspace"
// @Produce json
// @Success 200 {object} KeyspaceMeta
// @Failure 400 {string} string "The input is invalid."
// @Failure 500 {string} string "PD server failed to proceed the request."
// Router /keyspaces/{name}/state [put]
func UpdateKeyspaceState(c *gin.Context) {
svr := c.MustGet("server").(*server.Server)
manager := svr.GetKeyspaceManager()
name := c.Param("name")
param := &UpdateStateParam{}
err := c.BindJSON(param)
if err != nil {
c.AbortWithStatusJSON(http.StatusBadRequest, errs.ErrBindJSON.Wrap(err).GenWithStackByCause())
return
}
targetState, ok := keyspacepb.KeyspaceState_value[strings.ToUpper(param.State)]
if !ok {
c.AbortWithStatusJSON(http.StatusBadRequest, errors.Errorf("unknown target state: %s", param.State))
return
}
meta, err := manager.UpdateKeyspaceState(name, keyspacepb.KeyspaceState(targetState), time.Now().Unix())
if err != nil {
c.AbortWithStatusJSON(http.StatusInternalServerError, err.Error())
return
}
c.IndentedJSON(http.StatusOK, &KeyspaceMeta{meta})
}
// KeyspaceMeta wraps keyspacepb.KeyspaceMeta to provide custom JSON marshal.
type KeyspaceMeta struct {
*keyspacepb.KeyspaceMeta
}
// MarshalJSON creates custom marshal of KeyspaceMeta with the following:
// 1. Keyspace ID are removed from marshal result to avoid exposure of internal mechanics.
// 2. Keyspace State are marshaled to their corresponding name for better readability.
func (meta *KeyspaceMeta) MarshalJSON() ([]byte, error) {
return json.Marshal(&struct {
Name string `json:"name,omitempty"`
State string `json:"state,omitempty"`
CreatedAt int64 `json:"created_at,omitempty"`
StateChangedAt int64 `json:"state_changed_at,omitempty"`
Config map[string]string `json:"config,omitempty"`
}{
meta.Name,
meta.State.String(),
meta.CreatedAt,
meta.StateChangedAt,
meta.Config,
})
}
// UnmarshalJSON reverse KeyspaceMeta's the Custom JSON marshal.
func (meta *KeyspaceMeta) UnmarshalJSON(data []byte) error {
aux := &struct {
Name string `json:"name,omitempty"`
State string `json:"state,omitempty"`
CreatedAt int64 `json:"created_at,omitempty"`
StateChangedAt int64 `json:"state_changed_at,omitempty"`
Config map[string]string `json:"config,omitempty"`
}{}
if err := json.Unmarshal(data, aux); err != nil {
return err
}
pbMeta := &keyspacepb.KeyspaceMeta{
Name: aux.Name,
State: keyspacepb.KeyspaceState(keyspacepb.KeyspaceState_value[aux.State]),
CreatedAt: aux.CreatedAt,
StateChangedAt: aux.StateChangedAt,
Config: aux.Config,
}
meta.KeyspaceMeta = pbMeta
return nil
}