Skip to content

Latest commit

 

History

History
111 lines (83 loc) · 2.47 KB

error-once.md

File metadata and controls

111 lines (83 loc) · 2.47 KB

Handle Errors Once

When a caller receives an error from a callee, it can handle it in a variety of different ways depending on what it knows about the error.

These include, but not are limited to:

  • if the callee contract defines specific errors, matching the error with errors.Is or errors.As and handling the branches differently
  • if the error is recoverable, logging the error and degrading gracefully
  • if the error represents a domain-specific failure condition, returning a well-defined error
  • returning the error, either wrapped or verbatim

Regardless of how the caller handles the error, it should typically handle each error only once. The caller should not, for example, log the error and then return it, because its callers may handle the error as well.

For example, consider the following cases:

DescriptionCode

Bad: Log the error and return it

Callers further up the stack will likely take a similar action with the error. Doing so causing a lot of noise in the application logs for little value.

u, err := getUser(id)
if err != nil {
  // BAD: See description
  log.Printf("Could not get user %q: %v", id, err)
  return err
}

Good: Wrap the error and return it

Callers further up the stack will handle the error. Use of %w ensures they can match the error with errors.Is or errors.As if relevant.

u, err := getUser(id)
if err != nil {
  return fmt.Errorf("get user %q: %w", id, err)
}

Good: Log the error and degrade gracefully

If the operation isn't strictly necessary, we can provide a degraded but unbroken experience by recovering from it.

if err := emitMetrics(); err != nil {
  // Failure to write metrics should not
  // break the application.
  log.Printf("Could not emit metrics: %v", err)
}

Good: Match the error and degrade gracefully

If the callee defines a specific error in its contract, and the failure is recoverable, match on that error case and degrade gracefully. For all other cases, wrap the error and return it.

Callers further up the stack will handle other errors.

tz, err := getUserTimeZone(id)
if err != nil {
  if errors.Is(err, ErrUserNotFound) {
    // User doesn't exist. Use UTC.
    tz = time.UTC
  } else {
    return fmt.Errorf("get user %q: %w", id, err)
  }
}