issue: #47420 ## What this PR does Project-wide migration of raw `fmt.Errorf` / `errors.New` in function bodies onto the `merr` framework, plus the Sys-vs-Input error classification and the machinery it drives (retriability, fine-grained metrics, segcore unification), plus the convention docs and a linter that keeps it from regressing. Scope: storage, proxy, coordinators (root/data/query), query node, data node, `pkg/util` & `internal/util`, expression parser, message queue, streaming, and misc packages. Bare raw-error usages went from ~3000 to a ~340 allowlist (package-level sentinels / build-tag / test sites). --- ## How to review this PR It is large but the vast majority is mechanical. Changes fall into three tiers; spend review budget on Part 2 and Part 3. ### Part 1 — Mechanical standardization (low risk, verify by rule) Each converted call follows one of a small fixed set of rules. To review, check that each site obeys the matching rule rather than reading every line: | Pattern | Rule | |---|---| | `fmt.Errorf("...")` originating a new error | → `merr.WrapErrXxxMsg("...")` with a code matching the failure's meaning | | Adding context to an existing typed error | → `merr.Wrap(err, "...")` / `merr.Wrapf(...)` — **preserves** the inner code (never `WrapErr*Err`, which overwrites it) | | Errors inside the streaming subsystem | → `status.New*` factories (StreamingError), **not** merr — this is the component-internal dialect (see `docs/dev/error_handling_guide.md`) | | Low-level / control-flow signal caught by `errors.Is` | → kept as a package-level `errors.New` sentinel (lowercase, same-package) | Conventions are documented in `docs/dev/error_handling_guide.md` (how-to) and `docs/dev/error_sentinel_convention.md` (rules + audit). A `gocritic`/`ruleguard` rule (`rawmerrerror`, in `rules.go`) enforces "no raw `return errors.New/fmt.Errorf`" under `make verifiers`. ### Part 2 — Behavior changes (review these closely) These are the sites where the wire contract or runtime behavior changes, not just the source text. Listed by category; representative locations given, full set in the diff. **A. gRPC wire-code shifts: `UnexpectedError(1)/Code 65535` → typed code.** Where a handler previously returned a raw error (collapsed to `Code=65535` on the wire), it now returns a typed merr, so the client sees a real code. The most common shift is to `IllegalArgument(5)/Code 1100` (ParameterInvalid). Touch points include datanode task handlers (CreateTask/Query/Drop), proxy Upsert, querynode GetMetrics, datacoord CreateIndex, httpserver query-response builder, and typeutil schema validation. One code refinement: an index-param validation moved `1100` → `1101` (ParameterMissing). **Client/SDK assertions and any code that switched on `Code=65535` for these paths must be re-checked** (the go_client e2e assertions were already aligned in this PR). **B. Prometheus `status` label contract change (externally visible).** The proxy metric's coarse `fail` / `rejected` values are split into `fail_input` / `fail_system` and `rejected_user` / `rejected_system` (in `requestutil.ParseMetricLabel`; auth/privilege rejections count as `rejected_user`), so dashboards can attribute a failure to caller vs operator. **Dashboards/alerts querying `status="fail"` must migrate to `status=~"fail_.*"`, and `status="rejected"` to `status=~"rejected_.*"`.** The in-repo Grafana dashboard is already migrated; external dashboards built on the old values silently go empty after upgrade. This is the one change that requires an ops-side migration. **C. Retriability semantics.** - C1: `merr.Status(err)` now forces `Retriable=false` when the error is an `InputError` — a malformed request can never succeed on blind retry, so clients never get the self-contradictory "your input is wrong but you may retry". - C2: `retry.Do` short-circuits an `InputError` (non-retriable) — **but only when the caller did not pass a `RetryErr` predicate**. The check is an `if c.isRetryErr != nil { ... } else if InputError { ... }` *mutually exclusive* branch (`pkg/util/retry/retry.go`): an explicit `RetryErr` takes precedence and bypasses the InputError abort. `retry.Handle` deliberately does **not** apply the InputError abort (its callers signal abort via `shouldRetry=false`). Four flusher startup callsites that must retry through transient "not ready" errors were given explicit `RetryErr` escape hatches. **D. segcore (C++→Go) error classification.** A single shared Go-side table (`pkg/util/merr/segcore.go`) maps each segcore code to a merr sentinel + InputError/signal category, replacing scattered hand-written `if errorCode == ...` switches in the cgo wrappers. **Wire `Code` values change for every segcore pass-through error, not just the remapped ones.** Named sentinels remap (C++ `2003` → merr `2001`, `2033` → `2002`, Folly/Knowhere codes likewise); **all remaining pass-through codes (`2004`–`2043`, previously surfaced to clients as raw C++ enum values) now serialize as `2000`** (`ErrSegcore`), with the original C++ code preserved in the `Reason` text (`segcoreCode=...`); unknown/future codes collapse to `2000` as well (pinned by the `wire_code_projection` test). Transient segcore classes (object storage / file IO / OOM / mmap / FieldNotLoaded — 11 codes) now report `Retriable=true`. **Any client switching on raw segcore codes in the `2004`–`2043` range must be re-checked**; the in-Reason code remains available for diagnostics. Signal codes (PretendFinished / FollyCancel) are recognized centrally. `errors.Is`-based control flow on these (e.g. scheduler skip/retry) is preserved. **E. InputError classification (25 sentinels + dynamic marks).** 25 sentinels in `errors.go` carry `WithErrorType(InputError)` (the Collection / ResourceGroup / Database families, `ErrIndexDuplicate`, `ErrParameterInvalid`, `ErrPrivilegeNotAuthenticated`, `ErrImportFailed`, `ErrQueryPlan`, ...), plus dynamic marks for the 8 segcore input codes (ExprInvalid, DimNotMatch, MetricTypeInvalid, FieldIDInvalid, ...) and `WrapErrAsInputError`. The widest blast radius is `ErrParameterInvalid` (1100): ~2335 `WrapErrParameterInvalid*` callsites now classify as input / non-retriable. Because of C1/C2 this changes retriability for any path that returns these. **The audit to confirm no transient path was mis-marked is the single most important review item** (see Part 3). One reverse correction: storage field-stats parsing moved from `ErrParameterInvalid` (input) to `ErrDataIntegrity` — a corrupted stored stat is data corruption, not user input. ### Part 3 — Known risks & traps (called out proactively) 1. **`merr.Wrap` vs `WrapErr*Err` (code-masking).** `WrapErr*Err` builds a `wrappedMilvusError{sentinel: ErrServiceInternal}` whose `code()` returns the *outer* sentinel — it overwrites the inner typed code and hides the `errors.Is` chain. This is intentional (use it to *deliberately* downgrade), but it was a recurring conversion defect; the rule "add context with `merr.Wrap`, downgrade with `WrapErr*Err`" is enforced by convention and reviewed across the diff. 2. **InputError × `retry.Do` blast radius.** Marking a sentinel `InputError` makes any `retry.Do(...)` without a `RetryErr` predicate stop retrying it. Reviewers should sanity-check that no transient use of the 19 newly-marked sentinels (especially `ErrParameterInvalid`) sits inside a retry loop that needed to keep spinning. The known flusher cases were handled (see C2). 3. **The ~340 raw-error allowlist.** What remains as bare `errors.New` is, by design: package-level sentinels (caught by `errors.Is`), `//go:build test` sites, and out-of-band trees (`cmd/`, `tests/`, codegen, walimpls). The linter only bans the *direct-return* form; assignment-then-return escapes and the full no-exceptions ban are deferred to an AST-based linter (Tier 2, documented). 4. **segcore C++ second step deferred.** This PR unifies classification on the Go side; splitting the dual-semantic C++ codes at the source is a follow-up. --- ## Validation - `make verifiers`: Go side clean (gofmt + static-check across modules, including the new `rawmerrerror` rule with a 0-hit baseline repo-wide). - `make test-go`: passing; the one real regression introduced (a datanode `invalid_task_type` assertion shifting `1` → `5` from a ParameterInvalid conversion) was fixed in-tree. - go_client e2e CreateIndex assertions aligned to the new merr messages. --------- Signed-off-by: zhenshan.cao <zhenshan.cao@zilliz.com> Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
16 KiB
Error Sentinel Convention
Milvus error handling has two distinct layers. This document describes the rules that separate them, the rationale, and an audit of where the codebase currently violates them.
The two layers
1. Typed merr (wire-protocol errors)
Defined in pkg/util/merr/errors.go (ErrCollectionNotFound,
ErrParameterInvalid, etc.). These carry a numeric error code that is
serialized into commonpb.Status{ErrorCode, Reason} and shipped to the
client over gRPC. They are the only thing a client (or another Milvus
component on the receiving end of an RPC) sees.
Creation: merr.WrapErrXxxMsg(...) / merr.WrapErrXxxErr(cause, ...)
(origination only — never to add context to a typed merr that already exists,
see merr.Wrap).
2. Internal sentinels (single-process control flow)
Created with errors.New(...) at package scope (e.g. errIgnoredAlterAlias,
errReleaseCollectionNotLoaded, errNodeNotEnough). These are signaling
vocabulary inside a single Go process: a callee tells its caller "this is an
idempotent no-op" or "the queue is empty" so the caller can branch / retry /
ignore. They are not part of the wire protocol.
The catcher is always errors.Is(err, sentinelX) at some boundary in the
calling stack, and the boundary either:
- translates to
merr.Success()(idempotency: e.g. drop something that doesn't exist → success), or - translates to a typed merr
merr.WrapErrXxxMsg(...)(e.g. user already exists →WrapErrParameterInvalid).
The hard invariant
Any internal sentinel must be
errors.Is-caught and translated to a typed merr (orSuccess) before crossing any gRPC handler boundary — client-facing or component-to-component.
Why "any gRPC boundary, not just client-facing": gRPC serializes errors to
commonpb.Status{ErrorCode, Reason}. The Go-level pointer identity that
errors.New sentinels rely on does not survive the wire. The peer's
merr.Error(status) reconstructs a typed merr from the numeric code; the
sentinel chain is gone forever. So a sentinel that escapes an internal coord
RPC is just as broken as one that escapes a user-facing RPC — only quieter,
because no customer sees the resulting Code=65535 (unexpected).
What breaks the invariant
The errors.Is chain survives return err, errors.Wrap(err, "...") /
merr.Wrap(err, "...") (cockroachdb thin wrap), and
merr.WrapErrServiceInternalErr(err, "...") — milvusError.Unwrap()
returns the inner error, so errors.Is(outer, innerSentinel) stays true through any
of them. It is destroyed only by:
- Putting the cause in a format argument instead of the chain:
merr.WrapErrXxxMsg("...: %s", err), or the%wmistake (WrapErr*Msgformats withfmt.Sprintf, which does not honor%wand renders%!w(...)). The inner error reaches the message text but is unreachable viaUnwrap(), soerrors.Is(outer, innerSentinel)returns false. - Any custom wrapper that doesn't implement
Unwrap().
Do not confuse this with the separate code/retriability rule.
merr.Wrap(err, ...) and merr.WrapErrXxxErr(err, ...) both keep errors.Is
intact, but they differ in what the result reports at the boundary:
merr.Wrap(err, ...)preserves the inner'sCode()andIsRetryable— the chain still resolves to the inner's*milvusError.merr.WrapErrXxxErr(err, ...)reports the outer sentinel's code and retriability:As()resolves toErrServiceInternal(Code 5, non-retriable), masking the inner's classification.
So there are two distinct rules, often conflated:
- To keep
errors.Isworking: never stuff the cause into a format string; pass it as the error argument. - To add context without changing the classification (preserve the inner
code + retriability): use
merr.Wrap, notmerr.WrapErr*Err. Reservemerr.WrapErrXxxErrfor when you intend to assert a new classification (e.g. this genuinely is a service-internal error). (See also feedback rule onmerr.Wrapvsmerr.WrapErr*Err.)
Naming convention
The convention has two layers, matched to the two error categories:
Wire-protocol layer (typed merr) — uppercase Err* in pkg/util/merr only
All errors that may cross any gRPC boundary (client-facing or
component-to-component) must be *merr.milvusError defined in
pkg/util/merr/errors.go. They have:
- A numeric code passed to
newMilvusError(...); uniqueness is enforced by the init-time code registry (defining a second sentinel on an occupied code panics at package init, sincemilvusError.Ismatches by code alone) - A
var ErrXxx = newMilvusError(...)declaration inpkg/util/merr/errors.go - An exported
WrapErrXxxMsg/WrapErrXxxErrhelper
If an error needs to be visible to the wire, it lives here. No exceptions.
Every sentinel also carries an Input-vs-System classification (who is to
blame) that drives Status.Retriable, the fail_input/fail_system metric
labels, lb_policy failover and retry.Do; see "Input vs System: who is to
blame?" in error_handling_guide.md.
Internal-sentinel layer — lowercase errXxx, same-package only
Internal sentinels live in internal/... packages, are created with
errors.New(...), and are lowercase / unexported. The rule:
A
var err* = errors.New(...)declared ininternal/...may only be referenced inside the same Go package. Cross-package consumers must not see it.
This makes Go visibility do the enforcement: if you need a signal across
package boundaries, you either (a) lift it into the wire layer as a typed
merr, or (b) redesign the API so the signal flows via a return value
(e.g. (ignored bool, err error)), not via the error type.
Example (current code, after the 04-coord cleanup):
// errFull / errNoSuchElement are INTERNAL sentinels: caught by errors.Is
// inside the compaction inspector / scheduler loop and never serialized
// across any gRPC boundary.
var (
errFull = errors.New("compaction queue is full")
errNoSuchElement = errors.New("compaction queue has no element")
)
Cross-package idempotency: use a return-value flag, not an exported sentinel
The previous code exported meta.ErrResourceGroupOperationIgnored so that
the parent package querycoordv2 could catch it via errors.Is and
translate to merr.Success(). This was an exported Err* in
internal/... — visually indistinguishable from a merr.ErrXxx typed
wire error, easy to misuse.
The current code instead encodes the signal in the return value:
// meta/resource_manager.go
func (rm *ResourceManager) CheckIfResourceGroupAddable(...) (ignored bool, err error) {
if proto.Equal(rm.groups[rgName].GetConfig(), cfg) {
return true, nil // idempotent no-op
}
...
}
// querycoordv2/ddl_callbacks_alter_resource_group.go (broadcaster)
func (s *Server) broadcastCreateResourceGroup(...) (ignored bool, err error) {
if ignored, err := s.meta.CheckIfResourceGroupAddable(...); err != nil || ignored {
return ignored, err
}
...
}
// querycoordv2/services.go (RPC handler)
ignored, err := s.broadcastCreateResourceGroup(ctx, req)
if err != nil { return merr.Status(err), nil }
if ignored { return merr.Success(), nil }
No sentinel crosses the package boundary; the signal travels via a structured return value. This is the preferred pattern for any new cross-package idempotency case.
Current state (audit done on err-std-04-coord branch, 2026-05-19)
Across internal/{datacoord,rootcoord,querycoordv2} there are 28
errors.New(...) sentinels. Their fates:
| Kind | Count | Examples | Status |
|---|---|---|---|
Idempotency: caught → merr.Success() |
13 catch sites, ~12 distinct sentinels | errIgnoredAlterAlias, errIgnoredCreateCollection, errReleaseCollectionNotLoaded, errUserNotFound, ... |
✅ compliant |
| Caught → translated to typed merr | 3 catch sites (errUserAlreadyExists, errRoleAlreadyExists, errRoleNotExists) |
client gets WrapErrParameterInvalidMsg(...) or WrapErrServiceInternalMsg(...) |
✅ compliant (1100 / 5) |
| Background-only (never enter an RPC handler) | 5 (errFull, errNoSuchElement, errNodeNotEnough, errDisposed, errTypeNotFound) |
compaction queue / resource observer / session lifecycle / checker registry | ✅ compliant |
Cross-package idempotency via (ignored bool, err error) signature |
1 (resource group create/drop) | meta layer returns ignored=true; querycoordv2 RPC handler translates to merr.Success() — no sentinel crosses package |
✅ compliant (refactored from exported ErrResourceGroupOperationIgnored in this branch) |
| Dead code (function with 0 callers) | 3 (errNilResponse, errNilStatusResponse, errUnknownResponseType — all only used by VerifyResponse in datacoord/util.go) |
safe to delete | 🪦 cleanup candidate |
3 (errEmptyUsername, errEmptyRoleName, errEmptyPrivilegeGroupName) |
origin sites in meta_table.go now emit WrapErrParameterInvalidMsg directly; the bare sentinels are gone |
✅ resolved | |
1 (errTypeNotFound in ops_services.go:87,101) |
invalid CheckerID from the client now wrapped as WrapErrParameterInvalidMsg (code 1100), was WrapErrServiceInternal (code 5) |
✅ resolved |
Cleanup status
- ✅ Done —
errEmptyUsername/errEmptyRoleName/errEmptyPrivilegeGroupNameat the origin sites ininternal/rootcoord/meta_table.gonow emitmerr.WrapErrParameterInvalidMsg("username is empty")etc. directly; the bare sentinels no longer exist. - ✅ Done —
errTypeNotFoundat the catcher ininternal/querycoordv2/ops_services.go:87,101is now wrapped asmerr.WrapErrParameterInvalidMsg("invalid checker type %d: %v", req.CheckerID, err). - Not done — delete
VerifyResponseand its three dead-code sentinels (errNilResponse,errNilStatusResponse,errUnknownResponseType).
Future linter ideas
Three candidates, in order of how cheap they are to implement and how hard the enforcement is. Tier 1.5's return form is now implemented (see below); Tier 1 and Tier 2 remain a design queue.
Tier 1 — exported-sentinel ban (1 hour to write)
The simplest rule: internal/... packages may not declare exported
var Err\w+ = errors.New(...). Scan all internal/... *.go files,
fail CI if any match. Two paths to fix a violation:
- Lowercase it (
var errXxx = errors.New(...)) — only callable inside the same package. If the lint fails because a cross-package caller needs the signal, see fix 2. - Refactor the API so the signal travels via a return value
(e.g. add
ignored boolto the return tuple) and delete the sentinel.
This makes Go visibility itself the enforcement mechanism: anything that
needs to look like merr.ErrXxx to a reviewer can only exist in
pkg/util/merr. Internal sentinels stay quietly lowercase in their owning
package.
Lowercase sentinels (var errXxx = errors.New(...)) inside internal/...
are still encouraged to carry an INTERNAL: ... doc comment for reviewer
context, but it's not enforced — the visibility rule already prevents the
worst-case (Err* collision with merr.ErrXxx).
Tier 1.5 — bare-usage ban (1 hour grep, half-day AST for 100% precision)
Status — return form implemented. The return form of this ban is now enforced by a
gocritic/ruleguardrule (rawmerrerrorinrules.go), run undermake verifiers: it rejectsreturn errors.New / fmt.Errorf / errors.Errorffrom function bodies (package-level sentinels,cmd/,tests/, codegen and the walimpls harness exempt). The day-to-day guide is error_handling_guide.md. The no-exceptions form below (local:=,panic(...), function argument) is not covered: ruleguard's DSL cannot match "a call anywhere in a function body but not in aValueSpec", so the full ban still needs the AST-based Tier 2 linter.
Hardest enforcement, no exceptions. internal/... packages may not
use errors.New(...) or errors.Errorf(...) inline inside a function
body. The only legal site for these calls is a package-level
var <Name> = errors.New(...) (sentinel declaration).
Allow/deny matrix:
| Form | Location | Verdict |
|---|---|---|
var errInvalid = errors.New("invalid") |
package-level (file top / var block) |
✅ allowed |
var ( errA = ...; errB = ... ) |
package-level var block |
✅ allowed |
return errors.New(...) |
function body | ❌ banned |
x := errors.New(...) |
function body local | ❌ banned |
panic(errors.New(...)) |
function body | ❌ banned |
foo(errors.New(...)) |
function body argument | ❌ banned |
Why no exceptions (even for "local break signal" / "log-only" / "panic-bound" cases that look harmless today):
- Today's local var can be hoisted to package-level by tomorrow's refactor and silently start crossing boundaries.
- A linter with exceptions needs AST-level wire-reachability analysis (expensive); a no-exception linter is one grep.
- Forces authors to use the right primitive instead of
errors.Newas a universal escape hatch:- break signal from a callback → define a
type doneSignal struct{}that implementserrorand useerrors.As. Intent is now in the type, not in a string-keyed sentinel. - "unreachable" assertion → just
panic(...). If caller already doesif err != nil { panic(err) }, fold it into the callee. - input validation / config validation →
merr.WrapErrParameterInvalidMsg(...)orstatus.NewInvalidArgument(...)depending on layer.
- break signal from a callback → define a
Implementation: grep version covers ~95% true violations in ~1 hour.
AST version (go/analysis) covers the edge cases (e.g. init() body
assigning to a package var) but needs ~half a day. Start with grep,
upgrade if false-positive rate exceeds 5%.
# grep skeleton
grep -rnE 'errors\.(New|Errorf)\(' internal/ --include='*.go' \
| grep -v _test.go \
| grep -vE ':[0-9]+:\s*(var\s+)?[A-Za-z_]+\s*=\s*errors\.(New|Errorf)' \
| grep -vE ':[0-9]+:\s*[A-Za-z_]+\s+(\w+\s+)?=\s*errors\.(New|Errorf)'
# Any remaining line = violation
A //nolint:err-bare escape valve with a required justification comment
handles the genuine outliers (a few init() patterns, embedded errors.Mark
usage, etc.).
Tier 2 — escape-path linter (~1 day, go/analysis based)
For every gRPC handler method (anything matching the
internal/{rootcoord,datacoord,querycoordv2}/services.go,root_coord.go,*_handler.go
pattern, return type (*proto.XxxResponse, error) or (*commonpb.Status, error)), trace the err-return data-flow. Any error that:
- transitively originates from an
INTERNAL:-tagged sentinel, and - reaches a
return Status{Code: merr.Status(err)}orreturn errwithout passing through anerrors.Is(err, internalSentinelX) { ... }branch,
is a violation. Report file:line of the leak.
This catches the actual invariant violation (the 3 RBAC empty sentinels
would have been flagged), not just naming hygiene. Requires AST analysis;
worth doing if the cost of one more silent Code=1 to a client is high.
Tier 3 (no longer necessary if Tier 2 is in place) — wrap-rule linter
Scan merr\.WrapErr[A-Za-z]+Err\(err, (note: first arg err, not a
fresh string-only origination) and require the cause err to not itself be
a typed merr. This is what
feedback_merr_wrap_rule already enforces by convention; Tier 2
would catch the symptom (sentinel escape) as a side effect.
Related rules
feedback_merr_wrap_rule(this repo's collaboration memory): "Add context to an existing err withmerr.Wrap/merr.Wrapf, never withmerr.WrapErr*Err— the latter masks the inner typed code and retriability (theerrors.Ischain itself is preserved viaUnwrap())."project_errstd_autogen_defects: three systematic defects in the auto-generatederrors.Wrap → merrconversion in this branch series; defects #2 and #3 are direct consequences of violating the rules in this document.