Configure NoOp Bootstrap Provider
Disable bootstrap and only process new events
less than a minute
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
NoOp Bootstrap README
Behavior notes and examples
drasi-bootstrap-noop on crates.io
Package info and release history
Feedback
Was this page helpful?
Glad to hear it! Please tell us what you found helpful.
Sorry to hear that. Please tell us how we can improve.