Change worker count to use GOMAXPROCS (#549)
*Reduce solidifier worker pool capacity * Use GOMAXPROCS * Change worker count to use GOMAXPROCS * Set DefaultRequestWorkerCount to GOMAXPROCS * Fix linter warnings * Update hive.go
Showing
- go.mod 1 addition, 1 deletiongo.mod
- go.sum 2 additions, 0 deletionsgo.sum
- packages/binary/messagelayer/messagerequester/constants.go 2 additions, 2 deletionspackages/binary/messagelayer/messagerequester/constants.go
- packages/binary/messagelayer/messagerequester/messagerequester.go 6 additions, 1 deletion.../binary/messagelayer/messagerequester/messagerequester.go
- packages/binary/messagelayer/tangle/tangle.go 2 additions, 1 deletionpackages/binary/messagelayer/tangle/tangle.go
- packages/binary/messagelayer/test/data_payload_test.go 1 addition, 1 deletionpackages/binary/messagelayer/test/data_payload_test.go
- packages/graph/graph.go 1 addition, 1 deletionpackages/graph/graph.go
- plugins/analysis/client/metric_heartbeat.go 1 addition, 1 deletionplugins/analysis/client/metric_heartbeat.go
- plugins/analysis/dashboard/fpc_livefeed.go 1 addition, 1 deletionplugins/analysis/dashboard/fpc_livefeed.go
- plugins/analysis/packet/metric_heartbeat_test.go 1 addition, 1 deletionplugins/analysis/packet/metric_heartbeat_test.go
- plugins/remotelog/plugin.go 1 addition, 1 deletionplugins/remotelog/plugin.go
- tools/integration-tests/tester/go.mod 1 addition, 1 deletiontools/integration-tests/tester/go.mod
- tools/integration-tests/tester/go.sum 2 additions, 0 deletionstools/integration-tests/tester/go.sum
... | ... | @@ -13,7 +13,7 @@ require ( |
github.com/gobuffalo/packr/v2 v2.8.0 | ||
github.com/golang/protobuf v1.4.2 | ||
github.com/gorilla/websocket v1.4.2 | ||
github.com/iotaledger/hive.go v0.0.0-20200622211038-2db5f8e0532d | ||
github.com/iotaledger/hive.go v0.0.0-20200625105326-310ea88f1337 | ||
github.com/labstack/echo v3.3.10+incompatible | ||
github.com/labstack/gommon v0.3.0 | ||
github.com/magiconair/properties v1.8.1 | ||
... | ... |
... | ... | @@ -231,6 +231,8 @@ github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpO |
github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8= | ||
github.com/iotaledger/hive.go v0.0.0-20200622211038-2db5f8e0532d h1:cyxepG077Tg1wNfbhkRhXMK9WwaN4N0dDW7T8+d3oHA= | ||
github.com/iotaledger/hive.go v0.0.0-20200622211038-2db5f8e0532d/go.mod h1:42UvBc41QBsuM7z1P1fABMonTJb7kGqkzshRebClQvA= | ||
github.com/iotaledger/hive.go v0.0.0-20200625105326-310ea88f1337 h1:F6PzAkymPcKr1vJVK3/80wiVovjkL47c9FMjUOesXGA= | ||
github.com/iotaledger/hive.go v0.0.0-20200625105326-310ea88f1337/go.mod h1:42UvBc41QBsuM7z1P1fABMonTJb7kGqkzshRebClQvA= | ||
github.com/iotaledger/iota.go v1.0.0-beta.15 h1:HI8PqerEnO1CCIqmXHJ6zh1IaSFXU+S0qlUAEKshho8= | ||
github.com/iotaledger/iota.go v1.0.0-beta.15/go.mod h1:Rn6v5hLAn8YBaJlRu1ZQdPAgKlshJR1PTeLQaft2778= | ||
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 h1:BQSFePA1RWJOlocH6Fxy8MmwDt+yVQYULKfN0RoTN8A= | ||
... | ... |
Please register or sign in to comment