-
Notifications
You must be signed in to change notification settings - Fork 453
/
query_pools.go
191 lines (161 loc) · 6.11 KB
/
query_pools.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
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
// Copyright (c) 2018 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 pools
import (
"io"
"github.com/m3db/m3/src/dbnode/namespace"
"github.com/m3db/m3/src/dbnode/encoding"
"github.com/m3db/m3/src/dbnode/encoding/m3tsz"
"github.com/m3db/m3/src/dbnode/x/xpool"
xconfig "github.com/m3db/m3/src/x/config"
"github.com/m3db/m3/src/x/ident"
"github.com/m3db/m3/src/x/instrument"
"github.com/m3db/m3/src/x/pool"
"github.com/m3db/m3/src/x/serialize"
xsync "github.com/m3db/m3/src/x/sync"
"github.com/uber-go/tally"
)
const (
// TODO: add capabilities to get this from configs
replicas = 1
iteratorPoolSize = 65536
checkedBytesWrapperPoolSize = 65536
defaultIdentifierPoolSize = 8192
defaultBucketCapacity = 256
)
// BuildWorkerPools builds a worker pool
func BuildWorkerPools(
instrumentOptions instrument.Options,
readPoolPolicy, writePoolPolicy xconfig.WorkerPoolPolicy,
scope tally.Scope,
) (xsync.PooledWorkerPool, xsync.PooledWorkerPool, error) {
opts, readPoolSize := readPoolPolicy.Options()
opts = opts.SetInstrumentOptions(instrumentOptions.
SetMetricsScope(scope.SubScope("read-worker-pool")))
readWorkerPool, err := xsync.NewPooledWorkerPool(readPoolSize, opts)
if err != nil {
return nil, nil, err
}
readWorkerPool.Init()
opts, writePoolSize := writePoolPolicy.Options()
opts = opts.SetInstrumentOptions(instrumentOptions.
SetMetricsScope(scope.SubScope("write-worker-pool")))
writeWorkerPool, err := xsync.NewPooledWorkerPool(writePoolSize, opts)
if err != nil {
return nil, nil, err
}
writeWorkerPool.Init()
return readWorkerPool, writeWorkerPool, nil
}
type sessionPools struct {
multiReaderIteratorArray encoding.MultiReaderIteratorArrayPool
multiReaderIterator encoding.MultiReaderIteratorPool
seriesIterators encoding.MutableSeriesIteratorsPool
seriesIterator encoding.SeriesIteratorPool
checkedBytesWrapper xpool.CheckedBytesWrapperPool
id ident.Pool
tagEncoder serialize.TagEncoderPool
tagDecoder serialize.TagDecoderPool
}
func (s sessionPools) MultiReaderIteratorArray() encoding.MultiReaderIteratorArrayPool {
return s.multiReaderIteratorArray
}
func (s sessionPools) MultiReaderIterator() encoding.MultiReaderIteratorPool {
return s.multiReaderIterator
}
func (s sessionPools) MutableSeriesIterators() encoding.MutableSeriesIteratorsPool {
return s.seriesIterators
}
func (s sessionPools) SeriesIterator() encoding.SeriesIteratorPool {
return s.seriesIterator
}
func (s sessionPools) CheckedBytesWrapper() xpool.CheckedBytesWrapperPool {
return s.checkedBytesWrapper
}
func (s sessionPools) ID() ident.Pool {
return s.id
}
func (s sessionPools) TagEncoder() serialize.TagEncoderPool {
return s.tagEncoder
}
func (s sessionPools) TagDecoder() serialize.TagDecoderPool {
return s.tagDecoder
}
func buildBuckets() []pool.Bucket {
return []pool.Bucket{
{Capacity: defaultBucketCapacity, Count: defaultIdentifierPoolSize},
}
}
// BuildIteratorPools build iterator pools if they are unavailable from
// m3db (e.g. if running standalone query)
func BuildIteratorPools() encoding.IteratorPools {
// TODO: add instrumentation options to these pools
pools := sessionPools{}
pools.multiReaderIteratorArray = encoding.NewMultiReaderIteratorArrayPool([]pool.Bucket{
pool.Bucket{
Capacity: replicas,
Count: iteratorPoolSize,
},
})
pools.multiReaderIteratorArray.Init()
size := replicas * iteratorPoolSize
poolOpts := pool.NewObjectPoolOptions().
SetSize(size)
pools.multiReaderIterator = encoding.NewMultiReaderIteratorPool(poolOpts)
encodingOpts := encoding.NewOptions()
readerIterAlloc := func(r io.Reader, _ namespace.SchemaDescr) encoding.ReaderIterator {
intOptimized := m3tsz.DefaultIntOptimizationEnabled
return m3tsz.NewReaderIterator(r, intOptimized, encodingOpts)
}
pools.multiReaderIterator.Init(readerIterAlloc)
seriesIteratorPoolOpts := pool.NewObjectPoolOptions().
SetSize(iteratorPoolSize)
pools.seriesIterator = encoding.NewSeriesIteratorPool(seriesIteratorPoolOpts)
pools.seriesIterator.Init()
pools.seriesIterators = encoding.NewMutableSeriesIteratorsPool(buildBuckets())
pools.seriesIterators.Init()
wrapperPoolOpts := pool.NewObjectPoolOptions().
SetSize(checkedBytesWrapperPoolSize)
pools.checkedBytesWrapper = xpool.NewCheckedBytesWrapperPool(wrapperPoolOpts)
pools.checkedBytesWrapper.Init()
pools.tagEncoder = serialize.NewTagEncoderPool(
serialize.NewTagEncoderOptions(),
pool.NewObjectPoolOptions(),
)
pools.tagEncoder.Init()
pools.tagDecoder = serialize.NewTagDecoderPool(
serialize.NewTagDecoderOptions(),
pool.NewObjectPoolOptions(),
)
pools.tagDecoder.Init()
bytesPool := pool.NewCheckedBytesPool(buildBuckets(), nil,
func(sizes []pool.Bucket) pool.BytesPool {
return pool.NewBytesPool(sizes, nil)
})
bytesPool.Init()
idPoolOpts := pool.NewObjectPoolOptions().
SetSize(defaultIdentifierPoolSize)
pools.id = ident.NewPool(bytesPool, ident.PoolOptions{
IDPoolOptions: idPoolOpts,
TagsPoolOptions: idPoolOpts,
TagsIteratorPoolOptions: idPoolOpts,
})
return pools
}