Expand description
Storage adapters (file, S3, database)
Storage adapters — persist and retrieve pipeline StorageRecords.
§Adapters
| Adapter | Availability | Backing store |
|---|---|---|
NullStorage | always | no-op (tests / dry-run) |
FileStorage | always | .jsonl files on local disk |
PostgresStorage | feature = "postgres" | PostgreSQL via sqlx |
Structs§
- File
Storage - File-based storage adapter — one
.jsonlfile per pipeline. - Null
Storage - No-op storage adapter — discards all records.
- Postgres
Storage PostgreSQLstorage adapter.