You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Usage: "number of threads for blockstore operations. Used to throttle the number of concurrent requests to the block store",
83
+
Value: 128,
84
+
},
85
+
&cli.IntFlag{
86
+
Name: "engine-task-worker-count",
87
+
Usage: "number of worker threads used for preparing and packaging responses before they are sent out. This number should generally be equal to task-worker-count",
88
+
Value: 128,
89
+
},
90
+
&cli.IntFlag{
91
+
Name: "max-outstanding-bytes-per-peer",
92
+
Usage: "maximum number of bytes (across all tasks) pending to be processed and sent to any individual peer (default 32MiB)",
93
+
Value: 32<<20,
94
+
},
95
+
&cli.IntFlag{
96
+
Name: "target-message-size",
97
+
Usage: "target size of messages for bitswap to batch messages, actual size may vary depending on the queue (default 1MiB)",
98
+
Value: 1<<20,
99
+
},
100
+
&cli.IntFlag{
101
+
Name: "task-worker-count",
102
+
Usage: "Number of threads (goroutines) sending outgoing messages. Throttles the number of concurrent send operations",
103
+
Value: 128,
104
+
},
80
105
},
81
106
Action: func(cctx*cli.Context) error {
82
107
ifcctx.Bool("pprof") {
@@ -143,7 +168,13 @@ var runCmd = &cli.Command{
143
168
144
169
// Start the bitswap server
145
170
log.Infof("Starting booster-bitswap node on port %d", port)
0 commit comments