Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Harvest should reduce batch size and retry when ONTAP times out #2770

Merged
merged 2 commits into from
Mar 25, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
feat: Harvest should reduce batch size and retry when ONTAP times out
  • Loading branch information
cgrinds committed Mar 25, 2024
commit 7ecc80fe19bbf832366aa3400fb93538ead87824
4 changes: 2 additions & 2 deletions cmd/collectors/zapiperf/zapiperf.go
Original file line number Diff line number Diff line change
Expand Up @@ -465,14 +465,14 @@ func (z *ZapiPerf) PollData() (map[string]*matrix.Matrix, error) {
if err != nil {
errMsg := err.Error()
// if ONTAP complains about batch size, use a smaller batch size
if strings.Contains(errMsg, "resource limit exceeded") && z.batchSize > 100 {
if strings.EqualFold(errMsg, "resource limit exceeded") && z.batchSize > 100 {
z.Logger.Error().Err(err).
Int("oldBatchSize", z.batchSize).
Int("newBatchSize", z.batchSize-100).
Msg("Changed batch_size")
z.batchSize -= 100
return nil, nil
} else if strings.Contains(errMsg, "Timeout: Operation") && z.batchSize > 100 {
} else if strings.EqualFold(errMsg, "Timeout: Operation") && z.batchSize > 100 {
z.Logger.Error().Err(err).
Int("oldBatchSize", z.batchSize).
Int("newBatchSize", z.batchSize-100).
Expand Down
Loading