Skip to content

Commit

Permalink
Merge pull request vmware-tanzu#7311 from ywk253100/240112_qps
Browse files Browse the repository at this point in the history
Increase the k8s client QPS/burst
  • Loading branch information
blackpiglet authored Jan 15, 2024
2 parents e498ea9 + d676bfd commit 2caba3e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions changelogs/unreleased/7311-ywk253100
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Increase the k8s client QPS/burst to avoid throttling request errors
4 changes: 2 additions & 2 deletions pkg/cmd/server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ const (
defaultResourceTerminatingTimeout = 10 * time.Minute

// server's client default qps and burst
defaultClientQPS float32 = 20.0
defaultClientBurst int = 30
defaultClientQPS float32 = 100.0
defaultClientBurst int = 100
defaultClientPageSize int = 500

defaultProfilerAddress = "localhost:6060"
Expand Down

0 comments on commit 2caba3e

Please sign in to comment.