This repository has been archived by the owner on Aug 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 266
/
table_set.go
254 lines (226 loc) · 6.37 KB
/
table_set.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
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
// Copyright 2016 Attic Labs, Inc. All rights reserved.
// Licensed under the Apache License, version 2.0:
// http://www.apache.org/licenses/LICENSE-2.0
package nbs
import (
"sync"
"github.com/attic-labs/noms/go/chunks"
"github.com/attic-labs/noms/go/d"
)
const concurrentCompactions = 5
func newTableSet(persister tablePersister) tableSet {
return tableSet{p: persister, rl: make(chan struct{}, concurrentCompactions)}
}
// tableSet is an immutable set of persistable chunkSources.
type tableSet struct {
novel, upstream chunkSources
p tablePersister
rl chan struct{}
}
func (ts tableSet) has(h addr) bool {
f := func(css chunkSources) bool {
for _, haver := range css {
if haver.has(h) {
return true
}
}
return false
}
return f(ts.novel) || f(ts.upstream)
}
func (ts tableSet) hasMany(addrs []hasRecord) (remaining bool) {
f := func(css chunkSources) (remaining bool) {
for _, haver := range css {
if !haver.hasMany(addrs) {
return false
}
}
return true
}
return f(ts.novel) && f(ts.upstream)
}
func (ts tableSet) get(h addr, stats *Stats) []byte {
f := func(css chunkSources) []byte {
for _, haver := range css {
if data := haver.get(h, stats); data != nil {
return data
}
}
return nil
}
if data := f(ts.novel); data != nil {
return data
}
return f(ts.upstream)
}
func (ts tableSet) getMany(reqs []getRecord, foundChunks chan *chunks.Chunk, wg *sync.WaitGroup, stats *Stats) (remaining bool) {
f := func(css chunkSources) (remaining bool) {
for _, haver := range css {
if rp, ok := haver.(chunkReadPlanner); ok {
offsets, remaining := rp.findOffsets(reqs)
go rp.getManyAtOffsets(reqs, offsets, foundChunks, wg, stats)
if !remaining {
return false
}
continue
}
if !haver.getMany(reqs, foundChunks, wg, stats) {
return false
}
}
return true
}
return f(ts.novel) && f(ts.upstream)
}
func (ts tableSet) calcReads(reqs []getRecord, blockSize uint64) (reads int, split, remaining bool) {
f := func(css chunkSources) (int, bool, bool) {
reads, split := 0, false
for _, haver := range css {
rds, rmn := haver.calcReads(reqs, blockSize)
reads += rds
if !rmn {
return reads, split, false
}
split = true
}
return reads, split, true
}
reads, split, remaining = f(ts.novel)
if remaining {
var rds int
rds, split, remaining = f(ts.upstream)
reads += rds
}
return reads, split, remaining
}
func (ts tableSet) count() uint32 {
f := func(css chunkSources) (count uint32) {
for _, haver := range css {
count += haver.count()
}
return
}
return f(ts.novel) + f(ts.upstream)
}
func (ts tableSet) uncompressedLen() uint64 {
f := func(css chunkSources) (data uint64) {
for _, haver := range css {
data += haver.uncompressedLen()
}
return
}
return f(ts.novel) + f(ts.upstream)
}
func (ts tableSet) physicalLen() uint64 {
f := func(css chunkSources) (data uint64) {
for _, haver := range css {
index := haver.index()
data += indexSize(index.chunkCount)
data += index.offsets[index.chunkCount-1] + (uint64(index.lengths[index.chunkCount-1]))
}
return
}
return f(ts.novel) + f(ts.upstream)
}
// Size returns the number of tables in this tableSet.
func (ts tableSet) Size() int {
return len(ts.novel) + len(ts.upstream)
}
// Novel returns the number of tables containing novel chunks in this
// tableSet.
func (ts tableSet) Novel() int {
return len(ts.novel)
}
// Upstream returns the number of known-persisted tables in this tableSet.
func (ts tableSet) Upstream() int {
return len(ts.upstream)
}
// Prepend adds a memTable to an existing tableSet, compacting |mt| and
// returning a new tableSet with newly compacted table added.
func (ts tableSet) Prepend(mt *memTable, stats *Stats) tableSet {
newTs := tableSet{
novel: make(chunkSources, len(ts.novel)+1),
upstream: make(chunkSources, len(ts.upstream)),
p: ts.p,
rl: ts.rl,
}
newTs.novel[0] = newPersistingChunkSource(mt, ts, ts.p, ts.rl, stats)
copy(newTs.novel[1:], ts.novel)
copy(newTs.upstream, ts.upstream)
return newTs
}
func (ts tableSet) extract(chunks chan<- extractRecord) {
// Since new tables are _prepended_ to a tableSet, extracting chunks in insertOrder requires iterating ts.upstream back to front, followed by ts.novel.
for i := len(ts.upstream) - 1; i >= 0; i-- {
ts.upstream[i].extract(chunks)
}
for i := len(ts.novel) - 1; i >= 0; i-- {
ts.novel[i].extract(chunks)
}
}
// Flatten returns a new tableSet with |upstream| set to the union of ts.novel
// and ts.upstream.
func (ts tableSet) Flatten() (flattened tableSet) {
flattened = tableSet{
upstream: make(chunkSources, 0, ts.Size()),
p: ts.p,
rl: ts.rl,
}
for _, src := range ts.novel {
if src.count() > 0 {
flattened.upstream = append(flattened.upstream, src)
}
}
flattened.upstream = append(flattened.upstream, ts.upstream...)
return
}
// Rebase returns a new tableSet holding the novel tables managed by |ts| and
// those specified by |specs|.
func (ts tableSet) Rebase(specs []tableSpec, stats *Stats) tableSet {
merged := tableSet{
novel: make(chunkSources, 0, len(ts.novel)),
upstream: make(chunkSources, 0, len(specs)),
p: ts.p,
rl: ts.rl,
}
// Rebase the novel tables, skipping those that are actually empty (usually due to de-duping during table compaction)
for _, t := range ts.novel {
if t.count() > 0 {
merged.novel = append(merged.novel, t)
}
}
// Create a list of tables to open so we can open them in parallel.
tablesToOpen := map[addr]tableSpec{}
for _, spec := range specs {
if _, present := tablesToOpen[spec.name]; !present { // Filter out dups
tablesToOpen[spec.name] = spec
}
}
// Open all the new upstream tables concurrently
merged.upstream = make(chunkSources, len(tablesToOpen))
wg := &sync.WaitGroup{}
i := 0
for _, spec := range tablesToOpen {
wg.Add(1)
go func(idx int, spec tableSpec) {
merged.upstream[idx] = ts.p.Open(spec.name, spec.chunkCount, stats)
wg.Done()
}(i, spec)
i++
}
wg.Wait()
return merged
}
func (ts tableSet) ToSpecs() []tableSpec {
tableSpecs := make([]tableSpec, 0, ts.Size())
for _, src := range ts.novel {
if src.count() > 0 {
tableSpecs = append(tableSpecs, tableSpec{src.hash(), src.count()})
}
}
for _, src := range ts.upstream {
d.Chk.True(src.count() > 0)
tableSpecs = append(tableSpecs, tableSpec{src.hash(), src.count()})
}
return tableSpecs
}