forked from grpc/grpc-go
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathattr.go
More file actions
60 lines (54 loc) · 1.83 KB
/
Copy pathattr.go
File metadata and controls
60 lines (54 loc) · 1.83 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
/*
*
* Copyright 2025 gRPC 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 ringhash implements resolver related functions for the ring_hash
// load balancing policy.
package ringhash
import (
"google.golang.org/grpc/resolver"
)
type hashKeyType string
// hashKeyKey is the key to store the ring hash key attribute in
// a resolver.Endpoint attribute.
const hashKeyKey = hashKeyType("grpc.resolver.ringhash.hash_key")
// SetHashKey sets the hash key for this endpoint. Combined with the
// ring_hash load balancing policy, it allows placing the endpoint on the ring
// based on an arbitrary string instead of the IP address. If hashKey is empty,
// the endpoint is returned unmodified.
//
// # Experimental
//
// Notice: This API is EXPERIMENTAL and may be changed or removed in a
// later release.
func SetHashKey(ep resolver.Endpoint, hashKey string) resolver.Endpoint {
if hashKey == "" {
return ep
}
ep.Attributes = ep.Attributes.WithValue(hashKeyKey, hashKey)
return ep
}
// HashKey returns the hash key attribute of addr. If this attribute is not
// set, it returns the empty string.
//
// # Experimental
//
// Notice: This API is EXPERIMENTAL and may be changed or removed in a
// later release.
func HashKey(ep resolver.Endpoint) string {
hashKey, _ := ep.Attributes.Value(hashKeyKey).(string)
return hashKey
}