client.go 18.1 KB
Newer Older
1 2 3 4 5 6
// Licensed to the LF AI & Data foundation under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
C
cai.zhang 已提交
7 8
// with the License. You may obtain a copy of the License at
//
9
//     http://www.apache.org/licenses/LICENSE-2.0
C
cai.zhang 已提交
10
//
11 12 13 14 15
// 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.
C
cai.zhang 已提交
16

17
package grpcdatacoordclient
S
sunby 已提交
18 19 20

import (
	"context"
G
godchen 已提交
21
	"fmt"
S
sunby 已提交
22

23
	"github.com/milvus-io/milvus/internal/log"
X
Xiangyu Wang 已提交
24 25 26
	"github.com/milvus-io/milvus/internal/proto/commonpb"
	"github.com/milvus-io/milvus/internal/proto/datapb"
	"github.com/milvus-io/milvus/internal/proto/internalpb"
27 28 29
	"github.com/milvus-io/milvus/internal/proto/milvuspb"
	"github.com/milvus-io/milvus/internal/util/funcutil"
	"github.com/milvus-io/milvus/internal/util/grpcclient"
30
	"github.com/milvus-io/milvus/internal/util/paramtable"
31
	"github.com/milvus-io/milvus/internal/util/sessionutil"
32
	"github.com/milvus-io/milvus/internal/util/typeutil"
33 34
	"go.uber.org/zap"
	"google.golang.org/grpc"
S
sunby 已提交
35 36
)

37
var ClientParams paramtable.GrpcClientConfig
38

39
// Client is the datacoord grpc client
S
sunby 已提交
40
type Client struct {
41 42
	grpcClient grpcclient.GrpcClient
	sess       *sessionutil.Session
G
godchen 已提交
43 44
}

45 46 47 48 49 50
// NewClient creates a new client instance
func NewClient(ctx context.Context, metaRoot string, etcdEndpoints []string) (*Client, error) {
	sess := sessionutil.NewSession(ctx, metaRoot, etcdEndpoints)
	if sess == nil {
		err := fmt.Errorf("new session error, maybe can not connect to etcd")
		log.Debug("DataCoordClient NewClient failed", zap.Error(err))
D
dragondriver 已提交
51 52
		return nil, err
	}
53
	ClientParams.InitOnce(typeutil.DataCoordRole)
54 55
	client := &Client{
		grpcClient: &grpcclient.ClientBase{
56 57
			ClientMaxRecvSize: ClientParams.ClientMaxRecvSize,
			ClientMaxSendSize: ClientParams.ClientMaxSendSize,
58 59 60 61 62 63
		},
		sess: sess,
	}
	client.grpcClient.SetRole(typeutil.DataCoordRole)
	client.grpcClient.SetGetAddrFunc(client.getDataCoordAddr)
	client.grpcClient.SetNewGrpcClientFunc(client.newGrpcClient)
D
dragondriver 已提交
64

65
	return client, nil
D
dragondriver 已提交
66 67
}

68 69
func (c *Client) newGrpcClient(cc *grpc.ClientConn) interface{} {
	return datapb.NewDataCoordClient(cc)
D
dragondriver 已提交
70 71
}

72 73 74
func (c *Client) getDataCoordAddr() (string, error) {
	key := c.grpcClient.GetRole()
	msess, _, err := c.sess.GetSessions(key)
G
godchen 已提交
75
	if err != nil {
76
		log.Debug("DataCoordClient, getSessions failed", zap.Any("key", key), zap.Error(err))
G
godchen 已提交
77 78 79 80
		return "", err
	}
	ms, ok := msess[key]
	if !ok {
81 82
		log.Debug("DataCoordClient, not existed in msess ", zap.Any("key", key), zap.Any("len of msess", len(msess)))
		return "", fmt.Errorf("number of datacoord is incorrect, %d", len(msess))
G
godchen 已提交
83 84
	}
	return ms.Address, nil
S
sunby 已提交
85 86
}

S
sunby 已提交
87
// Init initializes the client
S
sunby 已提交
88 89 90 91
func (c *Client) Init() error {
	return nil
}

92
// Start enables the client
S
sunby 已提交
93 94 95 96
func (c *Client) Start() error {
	return nil
}

97
// Stop stops the client
S
sunby 已提交
98
func (c *Client) Stop() error {
99
	return c.grpcClient.Close()
S
sunby 已提交
100 101
}

102
// Register dummy
103 104 105 106
func (c *Client) Register() error {
	return nil
}

107
// GetComponentStates calls DataCoord GetComponentStates services
G
godchen 已提交
108
func (c *Client) GetComponentStates(ctx context.Context) (*internalpb.ComponentStates, error) {
109
	ret, err := c.grpcClient.ReCall(ctx, func(client interface{}) (interface{}, error) {
110 111 112
		if !funcutil.CheckCtxValid(ctx) {
			return nil, ctx.Err()
		}
113
		return client.(datapb.DataCoordClient).GetComponentStates(ctx, &internalpb.GetComponentStatesRequest{})
G
godchen 已提交
114
	})
D
dragondriver 已提交
115 116 117
	if err != nil || ret == nil {
		return nil, err
	}
G
godchen 已提交
118
	return ret.(*internalpb.ComponentStates), err
S
sunby 已提交
119 120
}

121
// GetTimeTickChannel return the name of time tick channel.
G
godchen 已提交
122
func (c *Client) GetTimeTickChannel(ctx context.Context) (*milvuspb.StringResponse, error) {
123
	ret, err := c.grpcClient.ReCall(ctx, func(client interface{}) (interface{}, error) {
124 125 126
		if !funcutil.CheckCtxValid(ctx) {
			return nil, ctx.Err()
		}
127
		return client.(datapb.DataCoordClient).GetTimeTickChannel(ctx, &internalpb.GetTimeTickChannelRequest{})
G
godchen 已提交
128
	})
D
dragondriver 已提交
129 130 131
	if err != nil || ret == nil {
		return nil, err
	}
G
godchen 已提交
132
	return ret.(*milvuspb.StringResponse), err
S
sunby 已提交
133 134
}

135
// GetStatisticsChannel return the name of statistics channel.
G
godchen 已提交
136
func (c *Client) GetStatisticsChannel(ctx context.Context) (*milvuspb.StringResponse, error) {
137
	ret, err := c.grpcClient.Call(ctx, func(client interface{}) (interface{}, error) {
138 139 140
		if !funcutil.CheckCtxValid(ctx) {
			return nil, ctx.Err()
		}
141
		return client.(datapb.DataCoordClient).GetStatisticsChannel(ctx, &internalpb.GetStatisticsChannelRequest{})
G
godchen 已提交
142
	})
D
dragondriver 已提交
143 144 145
	if err != nil || ret == nil {
		return nil, err
	}
G
godchen 已提交
146
	return ret.(*milvuspb.StringResponse), err
S
sunby 已提交
147 148
}

149
func (c *Client) Flush(ctx context.Context, req *datapb.FlushRequest) (*datapb.FlushResponse, error) {
150
	ret, err := c.grpcClient.ReCall(ctx, func(client interface{}) (interface{}, error) {
151 152 153
		if !funcutil.CheckCtxValid(ctx) {
			return nil, ctx.Err()
		}
154
		return client.(datapb.DataCoordClient).Flush(ctx, req)
G
godchen 已提交
155
	})
D
dragondriver 已提交
156 157 158
	if err != nil || ret == nil {
		return nil, err
	}
159
	return ret.(*datapb.FlushResponse), err
S
sunby 已提交
160 161
}

162 163 164 165 166 167 168 169 170 171 172 173 174
// AssignSegmentID applies allocations for specified Coolection/Partition and related Channel Name(Virtial Channel)
//
// ctx is the context to control request deadline and cancellation
// req contains the requester's info(id and role) and the list of Assignment Request,
// which coontains the specified collection, partitaion id, the related VChannel Name and row count it needs
//
// response struct `AssignSegmentIDResponse` contains the the assignment result for each request
// error is returned only when some communication issue occurs
// if some error occurs in the process of `AssignSegmentID`, it will be recorded and returned in `Status` field of response
//
// `AssignSegmentID` will applies current configured allocation policies for each request
// if the VChannel is newly used, `WatchDmlChannels` will be invoked to notify a `DataNode`(selected by policy) to watch it
// if there is anything make the allocation impossible, the response will not contain the corresponding result
G
godchen 已提交
175
func (c *Client) AssignSegmentID(ctx context.Context, req *datapb.AssignSegmentIDRequest) (*datapb.AssignSegmentIDResponse, error) {
176
	ret, err := c.grpcClient.ReCall(ctx, func(client interface{}) (interface{}, error) {
177 178 179
		if !funcutil.CheckCtxValid(ctx) {
			return nil, ctx.Err()
		}
180
		return client.(datapb.DataCoordClient).AssignSegmentID(ctx, req)
G
godchen 已提交
181
	})
D
dragondriver 已提交
182 183 184
	if err != nil || ret == nil {
		return nil, err
	}
G
godchen 已提交
185
	return ret.(*datapb.AssignSegmentIDResponse), err
S
sunby 已提交
186 187
}

188 189 190 191 192 193 194 195 196
// GetSegmentStates requests segment state information
//
// ctx is the context to control request deadline and cancellation
// req contains the list of segment id to query
//
// response struct `GetSegmentStatesResponse` contains the list of each state query result
// 	when the segment is not found, the state entry will has the field `Status`  to identify failure
// 	otherwise the Segment State and Start position information will be returned
// error is returned only when some communication issue occurs
G
godchen 已提交
197
func (c *Client) GetSegmentStates(ctx context.Context, req *datapb.GetSegmentStatesRequest) (*datapb.GetSegmentStatesResponse, error) {
198
	ret, err := c.grpcClient.ReCall(ctx, func(client interface{}) (interface{}, error) {
199 200 201
		if !funcutil.CheckCtxValid(ctx) {
			return nil, ctx.Err()
		}
202
		return client.(datapb.DataCoordClient).GetSegmentStates(ctx, req)
G
godchen 已提交
203
	})
D
dragondriver 已提交
204 205 206
	if err != nil || ret == nil {
		return nil, err
	}
G
godchen 已提交
207
	return ret.(*datapb.GetSegmentStatesResponse), err
S
sunby 已提交
208 209
}

210 211 212 213 214 215 216 217
// GetInsertBinlogPaths requests binlog paths for specified segment
//
// ctx is the context to control request deadline and cancellation
// req contains the segment id to query
//
// response struct `GetInsertBinlogPathsResponse` contains the fields list
// 	and corresponding binlog path list
// error is returned only when some communication issue occurs
G
godchen 已提交
218
func (c *Client) GetInsertBinlogPaths(ctx context.Context, req *datapb.GetInsertBinlogPathsRequest) (*datapb.GetInsertBinlogPathsResponse, error) {
219
	ret, err := c.grpcClient.ReCall(ctx, func(client interface{}) (interface{}, error) {
220 221 222
		if !funcutil.CheckCtxValid(ctx) {
			return nil, ctx.Err()
		}
223
		return client.(datapb.DataCoordClient).GetInsertBinlogPaths(ctx, req)
G
godchen 已提交
224
	})
D
dragondriver 已提交
225 226 227
	if err != nil || ret == nil {
		return nil, err
	}
G
godchen 已提交
228
	return ret.(*datapb.GetInsertBinlogPathsResponse), err
S
sunby 已提交
229 230
}

231 232 233 234 235 236 237 238
// GetCollectionStatistics requests collection statistics
//
// ctx is the context to control request deadline and cancellation
// req contains the collection id to query
//
// response struct `GetCollectionStatisticsResponse` contains the key-value list fields returning related data
// 	only row count for now
// error is returned only when some communication issue occurs
G
godchen 已提交
239
func (c *Client) GetCollectionStatistics(ctx context.Context, req *datapb.GetCollectionStatisticsRequest) (*datapb.GetCollectionStatisticsResponse, error) {
240
	ret, err := c.grpcClient.ReCall(ctx, func(client interface{}) (interface{}, error) {
241 242 243
		if !funcutil.CheckCtxValid(ctx) {
			return nil, ctx.Err()
		}
244
		return client.(datapb.DataCoordClient).GetCollectionStatistics(ctx, req)
G
godchen 已提交
245
	})
D
dragondriver 已提交
246 247 248
	if err != nil || ret == nil {
		return nil, err
	}
G
godchen 已提交
249
	return ret.(*datapb.GetCollectionStatisticsResponse), err
S
sunby 已提交
250 251
}

252 253 254 255 256 257 258 259
// GetPartitionStatistics requests partition statistics
//
// ctx is the context to control request deadline and cancellation
// req contains the collection and partition id to query
//
// response struct `GetPartitionStatisticsResponse` contains the key-value list fields returning related data
// 	only row count for now
// error is returned only when some communication issue occurs
G
godchen 已提交
260
func (c *Client) GetPartitionStatistics(ctx context.Context, req *datapb.GetPartitionStatisticsRequest) (*datapb.GetPartitionStatisticsResponse, error) {
261
	ret, err := c.grpcClient.ReCall(ctx, func(client interface{}) (interface{}, error) {
262 263 264
		if !funcutil.CheckCtxValid(ctx) {
			return nil, ctx.Err()
		}
265
		return client.(datapb.DataCoordClient).GetPartitionStatistics(ctx, req)
G
godchen 已提交
266
	})
D
dragondriver 已提交
267 268 269
	if err != nil || ret == nil {
		return nil, err
	}
G
godchen 已提交
270
	return ret.(*datapb.GetPartitionStatisticsResponse), err
S
sunby 已提交
271
}
N
neza2017 已提交
272

273 274
// GetSegmentInfoChannel DEPRECATED
// legacy api to get SegmentInfo Channel name
G
godchen 已提交
275
func (c *Client) GetSegmentInfoChannel(ctx context.Context) (*milvuspb.StringResponse, error) {
276
	ret, err := c.grpcClient.ReCall(ctx, func(client interface{}) (interface{}, error) {
277 278 279
		if !funcutil.CheckCtxValid(ctx) {
			return nil, ctx.Err()
		}
280
		return client.(datapb.DataCoordClient).GetSegmentInfoChannel(ctx, &datapb.GetSegmentInfoChannelRequest{})
G
godchen 已提交
281
	})
D
dragondriver 已提交
282 283 284
	if err != nil || ret == nil {
		return nil, err
	}
G
godchen 已提交
285
	return ret.(*milvuspb.StringResponse), err
N
neza2017 已提交
286
}
287

288 289 290 291 292 293 294
// GetSegmentInfo requests segment info
//
// ctx is the context to control request deadline and cancellation
// req contains the list of segment ids to query
//
// response struct `GetSegmentInfoResponse` contains the list of segment info
// error is returned only when some communication issue occurs
G
godchen 已提交
295
func (c *Client) GetSegmentInfo(ctx context.Context, req *datapb.GetSegmentInfoRequest) (*datapb.GetSegmentInfoResponse, error) {
296
	ret, err := c.grpcClient.ReCall(ctx, func(client interface{}) (interface{}, error) {
297 298 299
		if !funcutil.CheckCtxValid(ctx) {
			return nil, ctx.Err()
		}
300
		return client.(datapb.DataCoordClient).GetSegmentInfo(ctx, req)
G
godchen 已提交
301
	})
D
dragondriver 已提交
302 303 304
	if err != nil || ret == nil {
		return nil, err
	}
G
godchen 已提交
305
	return ret.(*datapb.GetSegmentInfoResponse), err
X
XuanYang-cn 已提交
306
}
307

308 309 310 311 312 313 314 315 316 317 318 319
// SaveBinlogPaths updates segments binlogs(including insert binlogs, stats logs and delta logs)
//  and related message stream positions
//
// ctx is the context to control request deadline and cancellation
// req contains the collection/partition id to query
//
// response status contains the status/error code and failing reason if any
// error is returned only when some communication issue occurs
//
// there is a constraint that the `SaveBinlogPaths` requests of same segment shall be passed in sequence
// 	the root reason is each `SaveBinlogPaths` will overwrite the checkpoint position
//  if the constraint is broken, the checkpoint position will not be monotonically increasing and the integrity will be compromised
320
func (c *Client) SaveBinlogPaths(ctx context.Context, req *datapb.SaveBinlogPathsRequest) (*commonpb.Status, error) {
321 322 323 324 325 326 327 328 329
	// use Call here on purpose
	ret, err := c.grpcClient.Call(ctx, func(client interface{}) (interface{}, error) {
		if !funcutil.CheckCtxValid(ctx) {
			return nil, ctx.Err()
		}
		return client.(datapb.DataCoordClient).SaveBinlogPaths(ctx, req)
	})
	if err != nil || ret == nil {
		return nil, err
D
dragondriver 已提交
330
	}
331
	return ret.(*commonpb.Status), err
332 333
}

334 335 336 337 338 339 340
// GetRecoveryInfo request segment recovery info of collection/partition
//
// ctx is the context to control request deadline and cancellation
// req contains the collection/partition id to query
//
// response struct `GetRecoveryInfoResponse` contains the list of segments info and corresponding vchannel info
// error is returned only when some communication issue occurs
341
func (c *Client) GetRecoveryInfo(ctx context.Context, req *datapb.GetRecoveryInfoRequest) (*datapb.GetRecoveryInfoResponse, error) {
342
	ret, err := c.grpcClient.ReCall(ctx, func(client interface{}) (interface{}, error) {
343 344 345
		if !funcutil.CheckCtxValid(ctx) {
			return nil, ctx.Err()
		}
346
		return client.(datapb.DataCoordClient).GetRecoveryInfo(ctx, req)
347
	})
D
dragondriver 已提交
348 349 350
	if err != nil || ret == nil {
		return nil, err
	}
351 352
	return ret.(*datapb.GetRecoveryInfoResponse), err
}
353

354 355 356 357 358 359 360 361
// GetFlushedSegments returns flushed segment list of requested collection/parition
//
// ctx is the context to control request deadline and cancellation
// req contains the collection/partition id to query
//  when partition is lesser or equal to 0, all flushed segments of collection will be returned
//
// response struct `GetFlushedSegmentsResponse` contains flushed segment id list
// error is returned only when some communication issue occurs
362
func (c *Client) GetFlushedSegments(ctx context.Context, req *datapb.GetFlushedSegmentsRequest) (*datapb.GetFlushedSegmentsResponse, error) {
363
	ret, err := c.grpcClient.ReCall(ctx, func(client interface{}) (interface{}, error) {
364 365 366
		if !funcutil.CheckCtxValid(ctx) {
			return nil, ctx.Err()
		}
367
		return client.(datapb.DataCoordClient).GetFlushedSegments(ctx, req)
368
	})
D
dragondriver 已提交
369 370 371
	if err != nil || ret == nil {
		return nil, err
	}
372 373
	return ret.(*datapb.GetFlushedSegmentsResponse), err
}
374

375
// GetMetrics gets all metrics of datacoord
376
func (c *Client) GetMetrics(ctx context.Context, req *milvuspb.GetMetricsRequest) (*milvuspb.GetMetricsResponse, error) {
377
	ret, err := c.grpcClient.ReCall(ctx, func(client interface{}) (interface{}, error) {
378 379 380
		if !funcutil.CheckCtxValid(ctx) {
			return nil, ctx.Err()
		}
381
		return client.(datapb.DataCoordClient).GetMetrics(ctx, req)
382
	})
D
dragondriver 已提交
383 384 385
	if err != nil || ret == nil {
		return nil, err
	}
386 387
	return ret.(*milvuspb.GetMetricsResponse), err
}
S
sunby 已提交
388 389

func (c *Client) CompleteCompaction(ctx context.Context, req *datapb.CompactionResult) (*commonpb.Status, error) {
390
	ret, err := c.grpcClient.ReCall(ctx, func(client interface{}) (interface{}, error) {
391 392 393
		if !funcutil.CheckCtxValid(ctx) {
			return nil, ctx.Err()
		}
394
		return client.(datapb.DataCoordClient).CompleteCompaction(ctx, req)
S
sunby 已提交
395 396 397 398 399 400 401
	})
	if err != nil || ret == nil {
		return nil, err
	}
	return ret.(*commonpb.Status), err
}

402
func (c *Client) ManualCompaction(ctx context.Context, req *milvuspb.ManualCompactionRequest) (*milvuspb.ManualCompactionResponse, error) {
403
	ret, err := c.grpcClient.ReCall(ctx, func(client interface{}) (interface{}, error) {
404 405 406
		if !funcutil.CheckCtxValid(ctx) {
			return nil, ctx.Err()
		}
407
		return client.(datapb.DataCoordClient).ManualCompaction(ctx, req)
S
sunby 已提交
408 409 410 411
	})
	if err != nil || ret == nil {
		return nil, err
	}
412
	return ret.(*milvuspb.ManualCompactionResponse), err
S
sunby 已提交
413 414
}

415
func (c *Client) GetCompactionState(ctx context.Context, req *milvuspb.GetCompactionStateRequest) (*milvuspb.GetCompactionStateResponse, error) {
416
	ret, err := c.grpcClient.ReCall(ctx, func(client interface{}) (interface{}, error) {
417 418 419
		if !funcutil.CheckCtxValid(ctx) {
			return nil, ctx.Err()
		}
420
		return client.(datapb.DataCoordClient).GetCompactionState(ctx, req)
S
sunby 已提交
421 422 423 424
	})
	if err != nil || ret == nil {
		return nil, err
	}
425 426 427 428
	return ret.(*milvuspb.GetCompactionStateResponse), err
}

func (c *Client) GetCompactionStateWithPlans(ctx context.Context, req *milvuspb.GetCompactionPlansRequest) (*milvuspb.GetCompactionPlansResponse, error) {
429
	ret, err := c.grpcClient.ReCall(ctx, func(client interface{}) (interface{}, error) {
430 431 432
		if !funcutil.CheckCtxValid(ctx) {
			return nil, ctx.Err()
		}
433
		return client.(datapb.DataCoordClient).GetCompactionStateWithPlans(ctx, req)
434 435 436 437 438
	})
	if err != nil || ret == nil {
		return nil, err
	}
	return ret.(*milvuspb.GetCompactionPlansResponse), err
S
sunby 已提交
439
}
G
godchen 已提交
440

441
// WatchChannels notifies DataCoord to watch vchannels of a collection
G
godchen 已提交
442
func (c *Client) WatchChannels(ctx context.Context, req *datapb.WatchChannelsRequest) (*datapb.WatchChannelsResponse, error) {
443
	ret, err := c.grpcClient.ReCall(ctx, func(client interface{}) (interface{}, error) {
444 445 446
		if !funcutil.CheckCtxValid(ctx) {
			return nil, ctx.Err()
		}
447
		return client.(datapb.DataCoordClient).WatchChannels(ctx, req)
G
godchen 已提交
448 449 450 451 452 453
	})
	if err != nil || ret == nil {
		return nil, err
	}
	return ret.(*datapb.WatchChannelsResponse), err
}
B
Bingyi Sun 已提交
454 455 456

// GetFlushState gets the flush state of multiple segments
func (c *Client) GetFlushState(ctx context.Context, req *milvuspb.GetFlushStateRequest) (*milvuspb.GetFlushStateResponse, error) {
457
	ret, err := c.grpcClient.ReCall(ctx, func(client interface{}) (interface{}, error) {
B
Bingyi Sun 已提交
458 459 460
		if !funcutil.CheckCtxValid(ctx) {
			return nil, ctx.Err()
		}
461
		return client.(datapb.DataCoordClient).GetFlushState(ctx, req)
B
Bingyi Sun 已提交
462 463 464 465 466 467
	})
	if err != nil || ret == nil {
		return nil, err
	}
	return ret.(*milvuspb.GetFlushStateResponse), err
}
468 469 470

// DropVirtualChannel drops virtual channel in datacoord.
func (c *Client) DropVirtualChannel(ctx context.Context, req *datapb.DropVirtualChannelRequest) (*datapb.DropVirtualChannelResponse, error) {
471
	ret, err := c.grpcClient.ReCall(ctx, func(client interface{}) (interface{}, error) {
472 473 474
		if !funcutil.CheckCtxValid(ctx) {
			return nil, ctx.Err()
		}
475
		return client.(datapb.DataCoordClient).DropVirtualChannel(ctx, req)
476 477 478 479 480 481
	})
	if err != nil || ret == nil {
		return nil, err
	}
	return ret.(*datapb.DropVirtualChannelResponse), err
}