Skip to content

Commit

Permalink
Merge branch 'master' into dgtown/ory-migrate
Browse files Browse the repository at this point in the history
  • Loading branch information
d-g-town authored May 6, 2024
2 parents e8ff7eb + b90fd91 commit 1f76f75
Showing 1 changed file with 33 additions and 18 deletions.
51 changes: 33 additions & 18 deletions internal/billing/metronome.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ const (
defaultRewardAmountCents = 1000
defaultPaidAmountCents = 0
maxReferralRewards = 10
maxIngestEventLimit = 100
)

// MetronomeClient is the client used to call the Metronome API
Expand Down Expand Up @@ -366,31 +367,45 @@ func (m MetronomeClient) IngestEvents(ctx context.Context, events []types.Billin

path := "ingest"

var currentAttempts int
for currentAttempts < defaultMaxRetries {
statusCode, err := m.do(http.MethodPost, path, events, nil)
// Check errors that are not from error http codes
if statusCode == 0 && err != nil {
return telemetry.Error(ctx, span, err, "failed to ingest billing events")
for i := 0; i < len(events); i += maxIngestEventLimit {
end := i + maxIngestEventLimit
if end > len(events) {
end = len(events)
}

if statusCode == http.StatusForbidden || statusCode == http.StatusUnauthorized {
return telemetry.Error(ctx, span, err, "unauthorized")
batch := events[i:end]

// Retry each batch to make sure all events are ingested
var currentAttempts int
for currentAttempts < defaultMaxRetries {
statusCode, err := m.do(http.MethodPost, path, batch, nil)
// Check errors that are not from error http codes
if statusCode == 0 && err != nil {
return telemetry.Error(ctx, span, err, "failed to ingest billing events")
}

if statusCode == http.StatusForbidden || statusCode == http.StatusUnauthorized {
return telemetry.Error(ctx, span, err, "unauthorized")
}

// 400 responses should not be retried
if statusCode == http.StatusBadRequest {
return telemetry.Error(ctx, span, err, "malformed billing events")
}

// Any other status code can be safely retried
if statusCode == http.StatusOK {
break
}
currentAttempts++
}

// 400 responses should not be retried
if statusCode == http.StatusBadRequest {
return telemetry.Error(ctx, span, err, "malformed billing events")
if currentAttempts == defaultMaxRetries {
return telemetry.Error(ctx, span, err, "max number of retry attempts reached with no success")
}

// Any other status code can be safely retried
if statusCode == 200 {
return nil
}
currentAttempts++
}

return telemetry.Error(ctx, span, err, "max number of retry attempts reached with no success")
return nil
}

func (m MetronomeClient) listBillableMetricIDs(ctx context.Context, customerID uuid.UUID) (billableMetrics []types.BillableMetric, err error) {
Expand Down

0 comments on commit 1f76f75

Please sign in to comment.