Skip to main content
Source baselineNereuscommit c820391dc1de·verified 2026-08-07·authority reader-facing-summary

Correctness authorities

Use this table when reviewing a change. A cache, provider response, task status, or protocol-local field may accelerate a decision, but it cannot replace the durable authority listed here.

QuestionUnique authorityNot a substitute
Is an offset committed?Stream head plus reachable commit/intent chainWAL success, Object existence, or an index record alone
Where does the next append start?Current committedEndOffset plus expected-start CASBroker-local tail or producer guess
Who may append?Append session epoch/token; Kafka also binds KRaft authorityRouting, cache, or local Leader flag
Where is generation 0?Reachable commit’s primary ReadTarget plus repairable indexObject LIST or ledger scan
Which physical version wins for ordinary read?Highest valid covering COMMITTED generation in the requested viewTask state or upload success
Which version wins for compacted read?TOPIC_COMPACTED view plus binding/activation coverage constraintOrdinary COMMITTED fallback
What identifies a Pulsar MessageId?Projection incarnation, virtual ledger, logical offset, and batch indexPhysical BK ledger ID or Object key
What is Pulsar ack truth?Cursor root plus its exact snapshot referenceLocal read position
Who controls Kafka leadership?KRaft metadata and leader epochNereus binding or local cache
Where is Kafka group/transaction truth?Native internal topics and stock coordinator stateA parallel Oxia coordinator tree
Can a physical Object be deleted?Root lifecycle, complete references, reader leases, and sealed journalObject LIST or one stream’s trim
Can a BK ledger be deleted?Sealed root, every-range retirement, readers/protections, inventory, activationOne NoSuchLedger response
Is a trimmed entry recoverable?Current head/trim plus a verified, head-anchored checkpoint and tail replayA checkpoint file stored alone

Review questions

For any new state or shortcut, ask:

  1. Which authority does it read?
  2. Is the value only a cache/advisory hint, or can it conditionally publish/delete?
  3. What exact identity and version are revalidated before side effects?
  4. What happens if the response is lost after the provider applied the operation?
  5. Which owner, reader, task, cursor, or recovery reference blocks retirement?

If the answer is “the listing looked right”, “the task finished”, or “the exception said timeout”, the boundary is not strong enough.

Source anchors