Output block types
Document store
Writes chunks into a Nora document collection. This is the default target for most pipelines. Configure:- Collection name — new or existing.
- Write mode — see below.
- Retention — how long chunks stay after their source is deleted (default: 90 days as tombstones, then removed).
Memory space
Writes chunks or summary facts into a memory space. Choose the space type when creating (Wiki, Index, Session, Evolution — see Memory spaces). Common recipe: run a Foundry pipeline over a chat transcript archive, output as a memory space, and attach that space to your support Agent so it can recall prior conversations.Knowledge graph
Writes extracted entities and relationships as graph nodes and edges. Useful for structured domain data. See Causal graph overview.External sink
Push results to a system outside Nora:- HTTP webhook (POST each chunk).
- Kafka topic.
- S3 (as JSONL).
- Postgres (upsert into a table).
Write modes
- Upsert — write new chunks, update chunks whose content hash changed, leave unchanged chunks alone. Default. What you want in 90% of cases.
- Replace — clear the collection first, then write everything from this run. Use only for full rebuilds.
- Append — never touch existing chunks, always write new. Rare — use if you want historical versions accessible.