Skip to content

Commit

Permalink
diagnostics: fix slow read from CLUSTER_STATEMENTS_SUMMARY_HISTORY (p…
Browse files Browse the repository at this point in the history
  • Loading branch information
zhongzc authored Apr 19, 2022
1 parent d733cc7 commit 4d06631
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ import (
"encoding/base64"
"encoding/json"
"fmt"
"math"
"os"
"os/user"
"path/filepath"
Expand Down Expand Up @@ -672,7 +673,7 @@ var defaultConf = Config{
GRPCKeepAliveTimeout: 3,
GRPCConcurrentStreams: 1024,
GRPCInitialWindowSize: 2 * 1024 * 1024,
GRPCMaxSendMsgSize: 10 * 1024 * 1024,
GRPCMaxSendMsgSize: math.MaxInt32,
},
Performance: Performance{
MaxMemory: 0,
Expand Down

0 comments on commit 4d06631

Please sign in to comment.