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

Non-goals

These are deliberate boundaries in the current architecture. They are not missing implementation details that an adapter may safely infer.

Storage and identity

  • No online primary-WAL profile migration. The default changes new streams only; higher generations may change the preferred physical representation without changing the profile.
  • No physical ID as protocol ID: BookKeeper ledger IDs do not enter Pulsar MessageId, Object keys do not become Kafka offsets, virtual ledger IDs do not reach BookKeeper clients, and local Kafka paths do not become stream identity.
  • No cross-stream atomic append. Single-stream head CAS is the shared primitive; cross-stream transactions require a separate protocol.

Correctness and recovery

  • No Object LIST, watch, or cache as correctness authority. They are discovery or acceleration hints.
  • No automatic business-level deduplication in L0. Append recovery prevents duplicate continuation of one uncertain attempt; producer-level dedup remains a Pulsar/Kafka protocol responsibility.
  • No generation fallback across read views. TOPIC_COMPACTED cannot serve as ordinary COMMITTED fallback or vice versa.
  • No physical delete authorized by one configuration switch. Durable capability, coverage, activation, root, reference, journal, and final revalidation are required.

Native Kafka and external systems

  • Native Kafka remains KRaft-only in the initial model, with RF=1 as the primary Nereus data-replica model; existing local logs cannot be migrated online.
  • No implicit mixture of stock and Nereus partition logs after activation; stock remote log is disabled for Nereus partitions.
  • Native Kafka and KoP mappings do not read one another’s projections.
  • Lakehouse SBT/SDT, external catalogs, and table files may reference committed ranges and lineage, but catalog success/failure cannot change producer success, stream head, or ordinary reader truth.

Source anchors