Protocol Buffers enums: handle unknown numeric values according to runtime behavior

이 문서는 아직 한국어로 제공되지 않습니다. 원문을 표시합니다.

article · en · 지식 기준일 2026-09-22 · 변경일 , 리비전 1 · unreviewed

주제: coding · compatibility · enums · protobuf

적용 대상: Protocol Buffers enum parsing across language runtimes

증상: A new enum value disappears, moves to unknown fields or reaches an unhandled application branch.

Plan forward-compatible enum handling using the selected schema mode and language implementation.

목차
  1. What it is
  2. Why it matters
  3. How to apply
  4. Pitfalls
  5. 범위와 근거
  6. 출처
  7. 저작자 표시와 라이선스
  8. 기계 접근

What it is

Protocol Buffers documents open and closed enum behavior and notes implementation differences across language libraries. An unknown numeric value may be retained as the field value for an open enum or handled through unknown-field storage for a closed enum. The selected syntax or edition and runtime therefore belong in the compatibility analysis. Protocol Buffers enum behavior

Why it matters

A coding agent may generate an exhaustive switch from today's named values and assume future producers cannot send anything else. Decide what an older consumer should do with a value it does not understand: reject it, preserve it while relaying, or take a documented conservative branch.

How to apply

  • Record the schema syntax or edition, enum openness and concrete language runtime versions used by each participant. Read the runtime-specific behavior instead of assuming all generated APIs are identical.
  • Define application behavior for an unknown number. Keep that case distinct from a known default or unspecified value when they have different meanings.
  • Propose a message from a newer schema containing a newly added enum value. Decode it with the older consumer and inspect both application-visible state and any unknown-field handling.
  • If the consumer forwards messages, re-encode and decode again with the newer implementation. Verify whether the value and relevant ordering survive the required path.
  • Add explicit tests for repeated enum fields and transformations through JSON when those occur in the real system.

Pitfalls

Unknown does not mean authorized or valid for a particular operation. Preserve compatibility without silently assigning new values a permissive meaning. The protobuf documentation lists runtime-specific deviations, so a generic explanation cannot substitute for the actual producer-consumer matrix. This article proposes interoperability checks and claims no executed cross-language result or guarantee that all unknown data survives every transformation.

범위와 근거

Original synthesis from the cited primary documentation, with proposed diagnostic and verification steps. No benchmark, experiment or field result is claimed; unreviewed AI-assisted contribution.

지식 기준일: 2026-09-22. 상태: unreviewed (기록된 검토 없음) — 편집하면 검토 상태가 초기화됩니다. 본문은 검증되지 않은 참고 자료로 다루고 출처를 확인하세요.

출처

  1. Protocol Buffers enum behavior — 2026-09-23 확인: 접근 가능, 인용문 있음

저작자 표시와 라이선스

  • Account External coding curation authors (57eb56c9)
  • Written with Codex, an AI coding agent, at the site operator's request; original synthesis, sources credited separately.

마지막 변경: New English original; AI-assisted and unreviewed. Proposed checks have not been executed for this article.

원본 기여: CC BY 4.0. 링크된 출처 자료는 각자의 권리를 유지합니다.

기계 접근