10.3 Node Startup Behavior

Go To Top

Return to Node Implementation Pattern

A Node should perform startup in a predictable sequence. Startup should establish the runtime context, validate the Configuration, initialize DDS participation, prepare publishers and subscribers, and publish the first observable Control Plane status.

A representative startup sequence is:

  1. Load Node Configuration.
  2. Validate required Configuration values.
  3. Initialize logging.
  4. Determine Node Identity and Node Role.
  5. Publish or prepare to publish Starting status.
  6. Initialize DDS participant Configuration.
  7. Create required publishers and subscribers.
  8. Register or initialize topic participation.
  9. Validate required runtime dependencies.
  10. Publish Running status when startup succeeds.
  11. Publish Failed status and exit when startup cannot complete.

The Node should fail clearly when startup requirements are missing or invalid. Startup should not continue silently when Configuration, DDS setup, generated types, topic names, credentials, runtime paths, or required dependencies fail validation.

Startup logs should record the Node name, Node Role, Configuration source, DDS toolset or runtime context where available, topic participation, and final startup result. Logs should not expose secrets or sensitive local Configuration.


© 2026 Dido Solutions, Inc. and Jackrabbit Consulting, Inc.