Skip to content

Commit

Permalink
output/cloud: Remove the limit for the body's payload
Browse files Browse the repository at this point in the history
  • Loading branch information
codebien committed Jun 20, 2023
1 parent 926e238 commit 4a62131
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions output/cloud/expv2/metrics_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,17 +76,11 @@ func (mc *metricsClient) push(referenceID string, samples *pbcloud.MetricSet) er
return nil
}

const payloadSizeLimit = 100 * 1024 // 100 KiB

func newRequestBody(data *pbcloud.MetricSet) ([]byte, error) {
b, err := proto.Marshal(data)
if err != nil {
return nil, fmt.Errorf("encoding metrics as Protobuf write request failed: %w", err)
}
if len(b) > payloadSizeLimit {
return nil, fmt.Errorf("the Protobuf message is too large to be handled from the Cloud processor; "+
"size: %d, limit: 100 KB", len(b))
}
// TODO: use the framing format
// https://github.com/google/snappy/blob/main/framing_format.txt
// It can be done replacing the encode with
Expand Down

0 comments on commit 4a62131

Please sign in to comment.