1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 // Testing tool for Keep services.
7 // keepexercise helps measure throughput and test reliability under
8 // various usage patterns.
10 // By default, it reads and writes blocks containing 2^26 NUL
11 // bytes. This generates network traffic without consuming much disk
14 // For a more realistic test, enable -vary-request. Warning: this will
15 // fill your storage volumes with random data if you leave it running,
16 // which can cost you money or leave you with too little room for
31 "git.curoverse.com/arvados.git/sdk/go/arvadosclient"
32 "git.curoverse.com/arvados.git/sdk/go/keepclient"
35 // Command line config knobs
37 BlockSize = flag.Int("block-size", keepclient.BLOCKSIZE, "bytes per read/write op")
38 ReadThreads = flag.Int("rthreads", 1, "number of concurrent readers")
39 WriteThreads = flag.Int("wthreads", 1, "number of concurrent writers")
40 VaryRequest = flag.Bool("vary-request", false, "vary the data for each request: consumes disk space, exercises write behavior")
41 VaryThread = flag.Bool("vary-thread", false, "use -wthreads different data blocks")
42 Replicas = flag.Int("replicas", 1, "replication level for writing")
43 StatsInterval = flag.Duration("stats-interval", time.Second, "time interval between IO stats reports, or 0 to disable")
44 ServiceURL = flag.String("url", "", "specify scheme://host of a single keep service to exercise (instead of using all advertised services like normal clients)")
45 ServiceUUID = flag.String("uuid", "", "specify UUID of a single advertised keep service to exercise")
51 arv, err := arvadosclient.MakeArvadosClient()
55 kc, err := keepclient.MakeKeepClient(arv)
59 kc.Want_replicas = *Replicas
61 transport := *(http.DefaultTransport.(*http.Transport))
62 transport.TLSClientConfig = arvadosclient.MakeTLSConfig(arv.ApiInsecure)
63 kc.HTTPClient = &http.Client{
64 Timeout: 10 * time.Minute,
65 Transport: &transport,
70 nextLocator := make(chan string, *ReadThreads+*WriteThreads)
72 go countBeans(nextLocator)
73 for i := 0; i < *WriteThreads; i++ {
74 nextBuf := make(chan []byte, 1)
75 go makeBufs(nextBuf, i)
76 go doWrites(kc, nextBuf, nextLocator)
78 for i := 0; i < *ReadThreads; i++ {
79 go doReads(kc, nextLocator)
84 // Send 1234 to bytesInChan when we receive 1234 bytes from keepstore.
85 var bytesInChan = make(chan uint64)
86 var bytesOutChan = make(chan uint64)
88 // Send struct{}{} to errorsChan when an error happens.
89 var errorsChan = make(chan struct{})
91 func countBeans(nextLocator chan string) {
93 var tickChan <-chan time.Time
94 if *StatsInterval > 0 {
95 tickChan = time.NewTicker(*StatsInterval).C
103 elapsed := time.Since(t0)
104 log.Printf("%v elapsed: read %v bytes (%.1f MiB/s), wrote %v bytes (%.1f MiB/s), errors %d",
106 bytesIn, (float64(bytesIn) / elapsed.Seconds() / 1048576),
107 bytesOut, (float64(bytesOut) / elapsed.Seconds() / 1048576),
110 case i := <-bytesInChan:
112 case o := <-bytesOutChan:
120 func makeBufs(nextBuf chan<- []byte, threadID int) {
121 buf := make([]byte, *BlockSize)
123 binary.PutVarint(buf, int64(threadID))
126 if randSize > *BlockSize {
127 randSize = *BlockSize
131 rnd := make([]byte, randSize)
132 if _, err := io.ReadFull(rand.Reader, rnd); err != nil {
135 buf = append(rnd, buf[randSize:]...)
141 func doWrites(kc *keepclient.KeepClient, nextBuf <-chan []byte, nextLocator chan<- string) {
142 for buf := range nextBuf {
143 locator, _, err := kc.PutB(buf)
146 errorsChan <- struct{}{}
149 bytesOutChan <- uint64(len(buf))
150 for cap(nextLocator) > len(nextLocator)+*WriteThreads {
151 // Give the readers something to do, unless
152 // they have lots queued up already.
153 nextLocator <- locator
158 func doReads(kc *keepclient.KeepClient, nextLocator <-chan string) {
159 for locator := range nextLocator {
160 rdr, size, url, err := kc.Get(locator)
163 errorsChan <- struct{}{}
166 n, err := io.Copy(ioutil.Discard, rdr)
168 if n != size || err != nil {
169 log.Printf("Got %d bytes (expected %d) from %s: %v", n, size, url, err)
170 errorsChan <- struct{}{}
172 // Note we don't count the bytes received in
173 // partial/corrupt responses: we are measuring
174 // throughput, not resource consumption.
176 bytesInChan <- uint64(n)
180 func overrideServices(kc *keepclient.KeepClient) {
181 roots := make(map[string]string)
182 if *ServiceURL != "" {
183 roots["zzzzz-bi6l4-000000000000000"] = *ServiceURL
184 } else if *ServiceUUID != "" {
185 for uuid, url := range kc.GatewayRoots() {
186 if uuid == *ServiceUUID {
192 log.Fatalf("Service %q was not in list advertised by API %+q", *ServiceUUID, kc.GatewayRoots())
197 kc.SetServiceRoots(roots, roots, roots)