Configure NoOp Bootstrap Provider

Disable bootstrap and only process new events

The NoOp bootstrap provider returns no initial data. Queries start “empty” and only process streaming changes.

When to use NoOp bootstrap

  • Event-only sources where historical state is not needed.
  • You explicitly want to ignore existing data and only react to new changes.
  • Testing streaming behavior without bootstrap overhead.

Quick example (Drasi Server config)

sources:
  - kind: http
    id: webhook
    autoStart: true
    host: 0.0.0.0
    port: 9000

    bootstrapProvider:
      kind: noop

Configuration reference

noop accepts no additional fields.

Field Type Required Description
kind string Yes Must be noop

Documentation resources