-
Notifications
You must be signed in to change notification settings - Fork 9
/
sim.go
398 lines (362 loc) · 10.1 KB
/
sim.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
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
// Copyright Kuei-chun Chen, 2022-present. All rights reserved.
package hummingbird
import (
"context"
"fmt"
"io/ioutil"
"log"
"sync"
"time"
"github.com/simagix/keyhole/mdb"
"github.com/simagix/gox"
"go.mongodb.org/mongo-driver/bson"
"go.mongodb.org/mongo-driver/bson/primitive"
"go.mongodb.org/mongo-driver/mongo"
"go.mongodb.org/mongo-driver/mongo/options"
"go.mongodb.org/mongo-driver/x/mongo/driver/uuid"
)
const (
// DefaultDuration s.duration to simulate
DefaultDuration = 5 * time.Minute
// DefaultNumOplogs default number of oplogs per thread
DefaultNumOplogs = 300
)
var (
// Rainbow colors
Rainbow = []string{"Red", "Orange", "Yellow", "Green", "Blue", "Indigo", "Violet"}
span = 500
)
// Simulator stores simulation info
type Simulator struct {
Namespaces []string `bson:"namespaces"`
Threads struct {
Find int `bson:"find"`
Insert int `bson:"insert"`
Write int `bson:"write"`
} `bson:"threads"`
Seconds int `bson:"seconds_to_run"`
NumOplogs int `bson:"oplogs_per_second"`
URI string `bson:"uri"`
Verbose bool `bson:"verbose"`
client *mongo.Client
duration time.Duration
ids []interface{}
mutex sync.Mutex
}
// Simulate simulates 2 inserts, 1 update/delete, and 1 find
func Simulate(filename string) error {
var sim Simulator
data, err := ioutil.ReadFile(filename)
if err != nil {
return err
}
if err = bson.UnmarshalExtJSON(data, false, &sim); err != nil {
return err
}
client, err := GetMongoClient(sim.URI)
if err != nil {
return fmt.Errorf("GetMongoClient failed: %v", err)
}
sim.client = client
if sim.NumOplogs == 0 {
sim.NumOplogs = DefaultNumOplogs
}
sim.duration = time.Duration(sim.Seconds) * time.Second
if sim.Seconds == 0 {
sim.duration = DefaultDuration
}
return StartSimulation(sim)
}
// StartSimulation starts a simulation
func StartSimulation(sim Simulator) error {
if sim.Verbose {
logger := gox.GetLogger("simulator")
logger.SetLoggerLevel(gox.Debug)
}
wg := gox.NewWaitGroup(sim.Threads.Find + sim.Threads.Insert + sim.Threads.Write)
for i := 0; i < sim.Threads.Insert; i++ {
wg.Add(1)
go func() {
defer wg.Done()
if err := sim.Insert(); err != nil {
log.Fatal(err)
}
}()
}
for i := 0; i < sim.Threads.Write; i++ {
wg.Add(1)
go func() {
defer wg.Done()
if err := sim.Modify(); err != nil {
log.Fatal(err)
}
}()
}
for i := 0; i < sim.Threads.Find; i++ {
wg.Add(1)
go func() {
defer wg.Done()
if err := sim.Find(); err != nil {
log.Fatal(err)
}
}()
}
wg.Wait()
return nil
}
// Insert simulates insertions
func (s *Simulator) Insert() error {
logger := gox.GetLogger()
ctx := context.Background()
size := len(s.Namespaces)
colls := make([]*mongo.Collection, size)
for i, ns := range s.Namespaces {
dbName, collName := mdb.SplitNamespace(ns)
colls[i] = s.client.Database(dbName).Collection(collName)
}
exch := 0
seq := 0
begin := time.Now()
for time.Since(begin) < s.duration {
now := time.Now()
exch++
exch = exch % size
coll := colls[exch]
seq++
doc := DocGen(seq)
t := time.Now()
if _, err := coll.InsertOne(ctx, doc); err != nil {
return fmt.Errorf("InsertOne failed: %v", err)
}
logger.Debugf("InsertOne took %v", time.Since(t))
docs := []interface{}{}
for i := 0; i < s.NumOplogs-1; i++ {
seq++
doc := DocGen(seq)
docs = append(docs, doc)
}
t = time.Now()
if _, err := coll.InsertMany(ctx, docs); err != nil {
return fmt.Errorf("InsertMany failed: %v", err)
}
logger.Debugf("InsertMany took %v (size=%v)", time.Since(t), len(docs))
s.mutex.Lock()
for _, doc := range docs {
s.ids = append(s.ids, doc.(bson.D).Map()["_id"])
}
size := len(s.ids)
if len(s.ids) > s.NumOplogs+span {
s.ids = s.ids[size-span:]
}
s.mutex.Unlock()
pauseRemainedSecond(time.Since(now))
}
return nil
}
// Modify simulates updates and deletions
func (s *Simulator) Modify() error {
logger := gox.GetLogger()
ctx := context.Background()
size := len(s.Namespaces)
colls := make([]*mongo.Collection, size)
for i, ns := range s.Namespaces {
dbName, collName := mdb.SplitNamespace(ns)
colls[i] = s.client.Database(dbName).Collection(collName)
}
exch := 0
begin := time.Now()
for time.Since(begin) < s.duration {
now := time.Now()
exch++
exch = exch % size
coll := colls[exch]
if len(s.ids) < s.NumOplogs {
continue
}
s.mutex.Lock()
samples := s.NumOplogs / 2
ids := make([]interface{}, len(s.ids[:samples]))
copy(ids, s.ids[:samples])
s.mutex.Unlock()
t := time.Now()
query := bson.D{{"_id", ids[0]}}
update := bson.D{{"$inc", bson.D{{"int64", 1}}}}
if _, err := coll.UpdateOne(ctx, query, update); err != nil {
return fmt.Errorf("UpdateMany failed: %v", err)
}
logger.Debugf("UpdateOne took %v", time.Since(t))
filter := bson.D{{"_id", bson.D{{"$in", ids}}}}
t = time.Now()
if _, err := coll.UpdateMany(ctx, filter, update); err != nil {
return fmt.Errorf("UpdateMany failed: %v", err)
}
logger.Debugf("UpdateMany took %v (size=%v)", time.Since(t), len(ids))
s.mutex.Lock()
ids = make([]interface{}, len(s.ids[samples:]))
copy(ids, s.ids[samples:])
s.mutex.Unlock()
t = time.Now()
if _, err := coll.DeleteOne(ctx, query); err != nil {
return fmt.Errorf("DeleteOne failed: %v", err)
}
logger.Debugf("DeleteOne took %v", time.Since(t))
filter = bson.D{{"_id", bson.D{{"$in", ids}}}}
t = time.Now()
if _, err := coll.DeleteMany(ctx, filter); err != nil {
return fmt.Errorf("DeleteMany failed: %v", err)
}
logger.Debugf("DeleteMany took %v (size=%v)", time.Since(t), len(ids))
pauseRemainedSecond(time.Since(now))
}
return nil
}
// Find simulates finds
func (s *Simulator) Find() error {
logger := gox.GetLogger()
pipeline := `[
{ $sample: { size: 3629 } },
{ "$group": { "_id": "$color", "total": { "$sum": 1 } } }
]`
ctx := context.Background()
size := len(s.Namespaces)
colls := make([]*mongo.Collection, size)
for i, ns := range s.Namespaces {
dbName, collName := mdb.SplitNamespace(ns)
colls[i] = s.client.Database(dbName).Collection(collName)
}
exch := 0
begin := time.Now()
for time.Since(begin) < s.duration {
now := time.Now()
exch++
exch = exch % size
coll := colls[exch]
if len(s.ids) < s.NumOplogs {
continue
}
s.mutex.Lock()
samples := s.NumOplogs / 2
if samples > 102 {
samples = 102
}
ids := make([]interface{}, len(s.ids[:samples]))
copy(ids, s.ids[:samples])
s.mutex.Unlock()
filter := bson.D{{"_id", bson.D{{"$in", ids}}}}
t := time.Now()
cursor, err := coll.Find(ctx, filter)
if err != nil {
return fmt.Errorf("Find failed: %v", err)
}
logger.Debugf("Find took %v (size=%v)", time.Since(t), len(ids))
cursor.Close(ctx)
opts := options.Aggregate().SetAllowDiskUse(true)
t = time.Now()
if cursor, err = coll.Aggregate(ctx, mdb.MongoPipeline(pipeline), opts); err != nil {
return fmt.Errorf("Aggregate failed: %v", err)
}
logger.Debugf("Aggregate took %v ($group)", time.Since(t))
cursor.Close(ctx)
pauseRemainedSecond(time.Since(now))
}
return nil
}
func pauseRemainedSecond(elapsed time.Duration) {
if elapsed < time.Second {
dur := time.Duration(1000-elapsed.Milliseconds()) * time.Millisecond
time.Sleep(dur)
} else {
time.Sleep(10 * time.Millisecond)
}
}
// DocGen returns a bson doc
func DocGen(i int) bson.D {
n := i + 1001
num := n*n + Port
doc := bson.D{{"_id", primitive.NewObjectID()},
{"color", Rainbow[i%len(Rainbow)]},
{"float64", float64(num)},
{"int64", int64(num)},
{"seq", i},
{"string", fmt.Sprintf("%06d-%v-%v-%v", i+1, num, n, num)},
{"ts", time.Now()},
}
var list []int
for n := 101; n < 110; n++ {
list = append(list, n*n-n)
}
doc = append(doc, bson.D{{"array", list}}...)
doc = append(doc, bson.D{{"subdoc", bson.D{{"level1", doc}}}}...)
doc = append(doc, bson.D{{"filler", fmt.Sprintf("%v%v", n, LogoPNG[:2500])}}...)
auuid, err := uuid.New()
if err != nil {
return doc
}
doc = append(doc, bson.E{"binary", auuid})
doc = append(doc, bson.E{"bin1", primitive.Binary{Subtype: byte(1), Data: []byte(auuid[:])}})
doc = append(doc, bson.E{"bin2", primitive.Binary{Subtype: byte(2), Data: []byte(auuid[:])}})
doc = append(doc, bson.E{"bin3", primitive.Binary{Subtype: byte(3), Data: []byte(auuid[:])}})
doc = append(doc, bson.E{"uuid", primitive.Binary{Subtype: byte(4), Data: []byte(auuid[:])}})
return doc
}
// DataGen populate data
func DataGen(coll *mongo.Collection, total int) (*mongo.InsertManyResult, error) {
ctx := context.Background()
coll.Drop(ctx)
var docs []interface{}
for i := 0; i < total; i++ {
docs = append(docs, DocGen(i))
}
return coll.InsertMany(ctx, docs)
}
// DataGenMulti populate data into different collections
func DataGenMulti(db *mongo.Database, total int, nColls int) error {
ctx := context.Background()
db.Drop(ctx)
docs := map[int][]interface{}{}
for i := 0; i < total; i++ {
docs[i%nColls] = append(docs[i%nColls], DocGen(i))
}
var colls []*mongo.Collection
colls = make([]*mongo.Collection, 3)
for i := 0; i < len(colls); i++ {
colls[i] = db.Collection(fmt.Sprintf("datagen_%v", i))
colls[i].InsertMany(ctx, docs[i])
var session mongo.Session
var update = bson.M{"$set": bson.M{"birth_year": 1963}}
client := db.Client()
var err error
if session, err = client.StartSession(); err != nil {
return err
}
id1 := bson.D{{"_id", primitive.NewObjectID()}, {"tag", 1}}
id2 := bson.D{{"_id", primitive.NewObjectID()}, {"tag", 3}}
ids := []interface{}{id1, id2}
colls[i].InsertMany(context.Background(), ids)
if err = session.StartTransaction(); err != nil {
return err
}
if err = mongo.WithSession(ctx, session, func(sc mongo.SessionContext) error {
if _, err = colls[i].UpdateOne(sc, id1, update); err != nil {
return err
}
if _, err = colls[i].UpdateOne(sc, id2, update); err != nil {
return err
}
if _, err = colls[i].DeleteOne(sc, bson.M{"tag": 1}); err != nil {
return err
}
if _, err = colls[i].DeleteMany(sc, bson.M{"tag": 3}); err != nil {
return err
}
if err = session.CommitTransaction(sc); err != nil {
return err
}
return nil
}); err != nil {
return err
}
session.EndSession(ctx)
}
return nil
}