-
Notifications
You must be signed in to change notification settings - Fork 453
/
hash.go
128 lines (112 loc) · 3.87 KB
/
hash.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
// Copyright (c) 2017 Uber Technologies, Inc.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
package sharding
import (
"fmt"
"strings"
"github.com/m3db/m3/src/metrics/metric/id"
murmur3 "github.com/m3db/stackmurmur3/v2"
)
const (
initialChunkedIDSize = 512
)
// ShardFn maps a id to a shard.
type ShardFn func(id []byte, numShards uint32) uint32
// AggregatedShardFn maps a chunked id to a shard.
type AggregatedShardFn func(chunkedID id.ChunkedID, numShards int) uint32
// HashType is the hashing type.
type HashType string
// List of supported hashing types.
const (
// Murmur32Hash represents the murmur3 hash.
Murmur32Hash HashType = "murmur32"
// zeroHash always returns 0 as the hash. It is used when sharding is disabled.
zeroHash HashType = "zero"
DefaultHash = Murmur32Hash
)
var (
validHashTypes = []HashType{
Murmur32Hash,
}
)
// UnmarshalYAML unmarshals YAML object into a hash type.
func (t *HashType) UnmarshalYAML(unmarshal func(interface{}) error) error {
var str string
if err := unmarshal(&str); err != nil {
return err
}
if str == "" {
*t = DefaultHash
return nil
}
validTypes := make([]string, 0, len(validHashTypes))
for _, valid := range validHashTypes {
if str == string(valid) {
*t = valid
return nil
}
validTypes = append(validTypes, string(valid))
}
return fmt.Errorf("invalid hash type '%s' valid types are: %s",
str, strings.Join(validTypes, ", "))
}
// ShardFn returns the sharding function.
func (t HashType) ShardFn() (ShardFn, error) {
switch t {
case Murmur32Hash:
return func(id []byte, numShards uint32) uint32 {
return murmur3.Sum32(id) % numShards
}, nil
default:
return nil, fmt.Errorf("unrecognized hashing type %v", t)
}
}
// MustShardFn returns the sharding function, or panics if an error is encountered.
func (t HashType) MustShardFn() ShardFn {
fn, err := t.ShardFn()
if err != nil {
panic(fmt.Errorf("error creating shard fn: %v", err))
}
return fn
}
// AggregatedShardFn returns the sharding function for computing aggregated shards.
func (t HashType) AggregatedShardFn() (AggregatedShardFn, error) {
switch t {
case Murmur32Hash:
// NB(xichen): This function only allocates when the id of the aggregated metric
// is more than initialChunkedIDSize in size and requires zero allocation otherwise.
// If this turns out to be still too CPU intensive due to byte copies, can rewrite
// it to compute murmur3 hashes with zero byte copies.
return func(chunkedID id.ChunkedID, numShards int) uint32 {
var b [initialChunkedIDSize]byte
buf := b[:0]
buf = append(buf, chunkedID.Prefix...)
buf = append(buf, chunkedID.Data...)
buf = append(buf, chunkedID.Suffix...)
return murmur3.Sum32(buf) % uint32(numShards)
}, nil
case zeroHash:
return func(chunkedID id.ChunkedID, numShards int) uint32 {
return 0
}, nil
default:
return nil, fmt.Errorf("unrecognized hashing type %v", t)
}
}