# Graph building

## Introduction

A set of nodes is constructed into a processing graph by the event stream compiler. This section details how nodes are included by the event stream compiler(ESC) for analysis and what rules the ESC applies to generate the SEP.&#x20;

{% hint style="info" %}
Graph building occurs at compile time, the ESC is not required at runtime, it is only the SEP that processes application events
{% endhint %}

Some applications may choose to embed the ESC, but there is no requirement for this. To build a graph with  the ESC it need two pieces of information:

* The set of nodes are to be included in the compilation analysis.
* The order of nodes, so callback methods are called in a predictable manner.

The first of these, the node set is provided by the developer. This is similar to any dependency injection container, for example Spring may use a spring.xml to select beans for management. The order of the nodes is automatically derived by the ESC using a process called [processing inference](#processing-inference).

Separating the SEP and ESC into their individual processes creates the following benefits:

* Construction logic can be tested separately to application processing logic.
* Sensitive construction ip may be hidden and only the SEP is distributed.
* Conversely sensitive node ip may be separated from the constructor of the graph, as nodes may be provided as obfuscated libraries.
* Source and target languages can be different types.

## Node selection

There are a many strategies Fluxtion provides to declare the set of nodes that are in the execution graph. The  user must provide some information as it is not possible to infer the set of nodes purely from undecorated classes. The detail of the node selection strategies are covered in the [graph building primitives](https://fluxtion.gitbook.io/docs/examples/reference/graph-building-primitives) section, available options include:

* Imperative form in code
* Data driven with factories
* Member injection via annotations
* Yaml based declaration
* Spring xml
* Declarative form

Any and old methods can be combined to make the construction as extensible as possible.

## Processing Inference

Using the configuration supplied Fluxtion infers the processing intent of the developer to model the execution graph and paths.&#x20;

In a traditional event processing system, the developer needs to specify nodes and vertices either explicitly or via an intermediate language. This is time consuming, difficult to learn, error prone, requires maintenance and does not scale due to the combinatorial complexity of graph descriptions. Additionally there is no guarantee the manual approach is optimised or even correct.&#x20;

Fluxtion addresses all these issues as it automates this time consuming and difficult task of producing an optimised set of execution paths. Fluxtion creates an instance graph at build time using the supplied configuration and then analyses the object references between instances. It is the object references that Fluxtion uses to establish the parent-child relationship and therefore the processing order.&#x20;

{% hint style="info" %}
For an instance to be included in the SEP the target of the reference must be marked for analysis
{% endhint %}

{% hint style="danger" %}
Bi-directional references between instances is not allowed in Fluxtion, this would create a circulatory in the graph model. The model must be directed acyclic for a successful analysis
{% endhint %}


---

# 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://fluxtion.gitbook.io/docs/concepts/child-1/graph-building.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.
