-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.go
403 lines (324 loc) · 11.9 KB
/
main.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
399
400
401
402
403
package main
import (
"context"
"crypto/x509"
"encoding/json"
"fmt"
"io"
"net/url"
"os"
"os/signal"
"sync"
"syscall"
"time"
pb "github.com/benjiewheeler/yellowbench/proto"
"github.com/briandowns/spinner"
"github.com/charmbracelet/log"
"github.com/dustin/go-humanize"
"github.com/montanaflynn/stats"
"golang.org/x/text/language"
"golang.org/x/text/message"
"google.golang.org/grpc"
"google.golang.org/grpc/credentials"
"google.golang.org/grpc/credentials/insecure"
"google.golang.org/grpc/encoding/gzip"
"google.golang.org/grpc/keepalive"
"google.golang.org/grpc/metadata"
"google.golang.org/protobuf/proto"
)
var Version string = "development"
var (
DEFAULT_CONFIG = Config{
GeyserUrl: "http://node.foo.cc",
GeyserToken: "",
Duration: 60,
}
// variable for the log file; set to benchmark.log as a fallback
LogFileName string = "benchmark.log"
// the global config
GlobalConfig *Config
// the simplified logger
simpleLogger *log.Logger
fileLogger *log.Logger
// wait group
wg sync.WaitGroup
// start/end times
benchStart time.Time
benchEnd time.Time
// the grpc listener
grpcListener *GeyserListener
// delta between block time and receive time
blockDeltas = []time.Duration{}
// number of blocks received
receivedBlocks uint64
// total size of received data
receivedSize uint64
)
type GeyserListener struct {
client pb.GeyserClient
ctx context.Context
cancel context.CancelFunc
}
func (l *GeyserListener) prepareClient() pb.GeyserClient {
// parse the url
u, err := url.Parse(GlobalConfig.GeyserUrl)
if err != nil {
log.Fatalf("Invalid GRPC address provided: %v", err)
}
// define the port if not provided
port := u.Port()
if port == "" {
if u.Scheme == "http" {
port = "80"
} else {
port = "443"
}
}
hostname := u.Hostname()
address := hostname + ":" + port
var opts []grpc.DialOption
if u.Scheme == "http" {
opts = append(opts, grpc.WithTransportCredentials(insecure.NewCredentials()))
} else {
pool, _ := x509.SystemCertPool()
creds := credentials.NewClientTLSFromCert(pool, "")
opts = append(opts, grpc.WithTransportCredentials(creds))
}
opts = append(
opts, grpc.WithKeepaliveParams(
keepalive.ClientParameters{
Time: 10 * time.Second,
Timeout: 2 * time.Second,
PermitWithoutStream: true,
},
),
)
opts = append(opts, grpc.WithDefaultCallOptions(grpc.UseCompressor(gzip.Name)))
opts = append(opts, grpc.WithDefaultCallOptions(grpc.MaxCallRecvMsgSize(100*1024*1024))) // 100MB limit on receiving
opts = append(opts, grpc.WithDefaultCallOptions(grpc.MaxCallSendMsgSize(100*1024*1024))) // 100MB limit on sending
// initialize the gRPC client
conn, err := grpc.NewClient(address, opts...)
if err != nil {
log.Fatalf("Error establishing connection: %v", err)
}
return pb.NewGeyserClient(conn)
}
func (l *GeyserListener) Start() {
defer wg.Done()
s := spinner.New(spinner.CharSets[9], 100*time.Millisecond)
s.Start()
defer s.Stop()
// prepare the context
l.ctx, l.cancel = context.WithTimeout(context.Background(), time.Duration(GlobalConfig.Duration)*time.Second)
defer l.Stop()
// prepare the client
client := l.prepareClient()
// add the geyser token, if any
if GlobalConfig.GeyserToken != "" {
md := metadata.New(map[string]string{"x-token": GlobalConfig.GeyserToken})
l.ctx = metadata.NewOutgoingContext(l.ctx, md)
}
streamClient, err := client.Subscribe(l.ctx)
if err != nil {
log.Fatalf("Error making stream client: %v", err)
}
// make the subscription request
subscription := pb.SubscribeRequest{
Commitment: pb.CommitmentLevel_PROCESSED.Enum(),
}
switch GlobalConfig.Type {
case TypeLatency:
subscription.BlocksMeta = map[string]*pb.SubscribeRequestFilterBlocksMeta{"blocks_meta": {}}
case TypeThroughput:
subscription.Accounts = map[string]*pb.SubscribeRequestFilterAccounts{"accounts": {}}
subscription.Slots = map[string]*pb.SubscribeRequestFilterSlots{"slots": {}}
subscription.Transactions = map[string]*pb.SubscribeRequestFilterTransactions{"transactions": {}}
subscription.TransactionsStatus = map[string]*pb.SubscribeRequestFilterTransactions{"transactions_status": {}}
subscription.Blocks = map[string]*pb.SubscribeRequestFilterBlocks{"blocks": {}}
subscription.Entry = map[string]*pb.SubscribeRequestFilterEntry{"entry": {}}
}
if err := streamClient.Send(&subscription); err != nil {
log.Fatalf("Error subscribing to blocks meta: %v", err)
}
// set the times for the start and end
benchStart = time.Now()
defer func() { benchEnd = time.Now() }()
s.Suffix = " Waiting for updates..."
for {
select {
case <-l.ctx.Done():
return
default:
out, err := streamClient.Recv()
if err != nil {
if err == io.EOF {
return
}
if err := l.ctx.Err(); err != nil {
return
}
log.Fatalf("Error occurred in receiving update: %v", err)
}
if GlobalConfig.Type == TypeThroughput {
// increment the received size
receivedSize += uint64(proto.Size(out))
s.Suffix = fmt.Sprintf(
" Data received size=%s elapsed=%s",
humanize.Bytes(receivedSize),
time.Since(benchStart).Truncate(time.Millisecond),
)
}
if meta := out.GetBlockMeta(); meta != nil {
blockTime := time.Unix(meta.BlockTime.Timestamp, 0).UTC()
delta := time.Since(blockTime)
blockDeltas = append(blockDeltas, delta)
receivedBlocks++
s.Suffix = fmt.Sprintf(
" Received update slot=%d blocktime=%s latency=%s",
meta.Slot,
blockTime.Format(time.TimeOnly),
delta.Truncate(time.Millisecond).String(),
)
fileLogger.Info(
"Received update",
"slot", meta.Slot,
"blocktime", blockTime.Format(time.TimeOnly),
"latency", delta.Truncate(time.Millisecond).String(),
)
}
}
}
}
func (l *GeyserListener) Stop() {
if l.ctx.Err() == nil {
log.Info("Stopping geyser listener...")
l.cancel()
}
}
func SetupLogger() {
LogFileName = fmt.Sprintf("yellowbench_%d.log", time.Now().UnixMilli())
logFile, err := os.OpenFile(LogFileName, os.O_RDWR|os.O_CREATE, 0666)
if err != nil {
log.Fatalf("error opening file: %v", err)
}
multi := io.MultiWriter(os.Stdout, logFile)
// create a simplified logger for logging the test results
simpleLogger = log.NewWithOptions(multi, log.Options{
ReportTimestamp: false,
})
// create a logger that writes to a file only
fileLogger = log.NewWithOptions(logFile, log.Options{
ReportTimestamp: true,
TimeFunction: func(time.Time) time.Time { return time.Now().UTC() },
TimeFormat: "15:04:05.0000",
})
// create a logger that writes to the terminal and a file
log.SetDefault(log.NewWithOptions(multi, log.Options{
ReportTimestamp: true,
TimeFunction: func(time.Time) time.Time { return time.Now().UTC() },
TimeFormat: "15:04:05.0000",
}))
}
func ReadConfig() *Config {
data, err := os.ReadFile("config.json")
if err != nil {
// if the error is that the file doesn't exist, create it, and exit
if os.IsNotExist(err) {
if err := WriteConfig(&DEFAULT_CONFIG); err != nil {
log.Fatalf("error creating config file: %v", err)
}
log.Info("config file saved, edit the config and restart")
os.Exit(0)
}
log.Fatalf("error opening config file: %v", err)
}
var out Config
err = json.Unmarshal(data, &out)
if err != nil {
log.Fatalf("error parsing config file: %v", err)
}
return &out
}
func WriteConfig(config *Config) error {
data, err := json.MarshalIndent(config, "", " ")
if err != nil {
log.Fatalf("error saving config file: %v", err)
}
return os.WriteFile("config.json", data, 0644)
}
func main() {
fmt.Println()
fmt.Println(" ██╗ ██╗███████╗██╗ ██╗ ██████╗ ██╗ ██╗██████╗ ███████╗███╗ ██╗ ██████╗██╗ ██╗ ")
fmt.Println(" ╚██╗ ██╔╝██╔════╝██║ ██║ ██╔═══██╗██║ ██║██╔══██╗██╔════╝████╗ ██║██╔════╝██║ ██║ ")
fmt.Println(" ╚████╔╝ █████╗ ██║ ██║ ██║ ██║██║ █╗ ██║██████╔╝█████╗ ██╔██╗ ██║██║ ███████║ ")
fmt.Println(" ╚██╔╝ ██╔══╝ ██║ ██║ ██║ ██║██║███╗██║██╔══██╗██╔══╝ ██║╚██╗██║██║ ██╔══██║ ")
fmt.Println(" ██║ ███████╗███████╗███████╗╚██████╔╝╚███╔███╔╝██████╔╝███████╗██║ ╚████║╚██████╗██║ ██║ ")
fmt.Println(" ╚═╝ ╚══════╝╚══════╝╚══════╝ ╚═════╝ ╚══╝╚══╝ ╚═════╝ ╚══════╝╚═╝ ╚═══╝ ╚═════╝╚═╝ ╚═╝ ")
fmt.Printf("%95s", Version)
fmt.Println()
fmt.Println()
c := make(chan os.Signal, 1)
signal.Notify(c, os.Interrupt, syscall.SIGTERM)
go func() {
<-c
fmt.Println()
log.Info("CTRL+C detected, Force stopping the test")
fmt.Println()
grpcListener.Stop()
}()
// set up logger
SetupLogger()
// read the config file
GlobalConfig = ReadConfig()
// validate the config
if err := GlobalConfig.Validate(); err != nil {
log.Fatalf("invalid config: %v", err)
}
simpleLogger.Printf("Date : %s", time.Now().UTC().Format(time.RFC1123))
simpleLogger.Printf("Geyser URL : %s", GlobalConfig.GeyserUrl)
simpleLogger.Printf("Test Timeout : %s", time.Duration(GlobalConfig.Duration)*time.Second)
simpleLogger.Printf("Bench Type : %s", GlobalConfig.Type)
simpleLogger.Printf("")
// start the websocket listener
wg.Add(1)
grpcListener = new(GeyserListener)
go grpcListener.Start()
wg.Wait()
benchDuration := benchEnd.Sub(benchStart)
simpleLogger.Printf("")
simpleLogger.Printf("Geyser URL : %s", GlobalConfig.GeyserUrl)
simpleLogger.Printf("Test Duration : %s", benchDuration.Truncate(time.Millisecond))
switch GlobalConfig.Type {
case TypeLatency:
simpleLogger.Printf("Received Blocks : %s", message.NewPrinter(language.English).Sprintf("%d", receivedBlocks))
// calculate landing time results, if there was any
if len(blockDeltas) > 0 {
var latencies []float64
for _, v := range blockDeltas {
latencies = append(latencies, float64(v.Nanoseconds()))
}
minDelta, _ := stats.Min(latencies)
maxDelta, _ := stats.Max(latencies)
avg, _ := stats.Mean(latencies)
median, _ := stats.Median(latencies)
p90, _ := stats.Percentile(latencies, 90)
p95, _ := stats.Percentile(latencies, 95)
p99, _ := stats.Percentile(latencies, 99)
simpleLogger.Printf("Min Block Latency : %s", (time.Duration(minDelta)).Truncate(time.Millisecond))
simpleLogger.Printf("Max Block Latency : %s", (time.Duration(maxDelta)).Truncate(time.Millisecond))
simpleLogger.Printf("Avg Block Latency : %s", (time.Duration(avg)).Truncate(time.Millisecond))
simpleLogger.Printf("Median Block Latency : %s", (time.Duration(median)).Truncate(time.Millisecond))
simpleLogger.Printf("P90 Block Latency : %s", (time.Duration(p90)).Truncate(time.Millisecond))
simpleLogger.Printf("P95 Block Latency : %s", (time.Duration(p95)).Truncate(time.Millisecond))
simpleLogger.Printf("P99 Block Latency : %s", (time.Duration(p99)).Truncate(time.Millisecond))
simpleLogger.Printf("")
}
case TypeThroughput:
simpleLogger.Printf("Received Data Size : %s", humanize.Bytes(receivedSize))
simpleLogger.Printf("Data Rate : %s/s", humanize.Bytes(uint64(float64(receivedSize)/benchDuration.Seconds())))
}
fmt.Println()
fmt.Printf("Benchmark results saved to %s\n", LogFileName)
fmt.Println("Press 'Enter' to exit...")
fmt.Scanln()
}