Skip to content

Commit 3b6a32c

Browse files
committed
hot fix: add sub batch arg
1 parent 29c0b0d commit 3b6a32c

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

cmd/monitor/cmd.go

+2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ var (
1818
// flags
1919
rpcUrl string
2020
batchSizeValue string
21+
subBatchSize int
2122
blockCacheLimit int
2223
intervalStr string
2324

@@ -77,6 +78,7 @@ var MonitorCmd = &cobra.Command{
7778
func init() {
7879
MonitorCmd.PersistentFlags().StringVarP(&rpcUrl, "rpc-url", "r", "http://localhost:8545", "The RPC endpoint url")
7980
MonitorCmd.PersistentFlags().StringVarP(&batchSizeValue, "batch-size", "b", "auto", "Number of requests per batch")
81+
MonitorCmd.PersistentFlags().IntVarP(&subBatchSize, "sub-batch-size", "s", 50, "Number of requests per sub-batch")
8082
MonitorCmd.PersistentFlags().IntVarP(&blockCacheLimit, "cache-limit", "c", 200, "Number of cached blocks for the LRU block data structure (Min 100)")
8183
MonitorCmd.PersistentFlags().StringVarP(&intervalStr, "interval", "i", "5s", "Amount of time between batch block rpc calls")
8284
}

cmd/monitor/monitor.go

-3
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,6 @@ var (
5252

5353
// semaphore is a channel used to control the concurrency of block data fetch operations.
5454
semaphore = make(chan struct{}, maxConcurrency)
55-
56-
// size of the sub batches to divide and conquer the total batch size with
57-
subBatchSize = 50
5855
)
5956

6057
type (

0 commit comments

Comments
 (0)