# Stream Mode

LUden supports streaming of incoming events for data warehouse. In Stream mode all events are loaded to destinations in real-time one by one. That is the fastest way to get data to destinations, but it may not be as performant and cost-effective as [Batch mode](https://ciusji.gitbook.io/luden/features/match-mode).

Luden uses intermediate queue that helps to survive temporary destination unavailability or slowdowns.

Currently, Luden supports only one streaming thread for destination. That may be a bottleneck in cases of high event number. In that case [Batch mode](https://ciusji.gitbook.io/luden/features/match-mode) is recommended.

## Pipeline

* Apply multiplexing, put each multiplexed event to the destination queue. Queue items are persisted in `events/queue.dst=${destination_id}` dir.
* Separate thread processes each queue. For each event:
  * Run `table_name_template` expression. If the result is an empty string - skip. If evaluation failed, the event is written to `events/failed`
  * Apply LookupEnrichment step
  * Apply Transformation and MappingStep (get BatchHeader)
  * Get Table structure from memory (if memory cache is missing, get the schema from DWH)
  * Do **table patching** (see above in batch step)
  * Insert object with explicit typecast (if it is configured in the [JavaScript Transformation](https://ciusji.gitbook.io/luden/features/javascript-transform)) using INSERT statement.
  * If INSERT failed, refresh schema from DWH and repeat the step
  * If failed, write the record to `events/failed`
  * If success, write the event to `events/archive`


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://ciusji.gitbook.io/luden/features/stream-mode.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
