diff --git a/cmd/pilosa/main.go b/cmd/pilosa/main.go index 24d2a9fec..8513a5ce3 100644 --- a/cmd/pilosa/main.go +++ b/cmd/pilosa/main.go @@ -6,6 +6,7 @@ import ( "fmt" "io" "math/rand" + "net/http" "os" "os/signal" "path/filepath" @@ -34,6 +35,7 @@ const ( ) func main() { + http.DefaultTransport.(*http.Transport).MaxIdleConnsPerHost = 64 m := NewMain() fmt.Fprintf(m.Stderr, "Pilosa %s\n", Build)