Skip to main content

Declarative Dataflow

Custom business logic is written in Fractl using dataflows. Each dataflow is a collection of patterns. Each pattern is a declarative assertion on the domain that performs a (sometimes, conditional) CRUD operation on entity instance(s), evaluates a function or trigger other events.

Dataflow patterns are written in a data-oriented syntax in Fractl language and are represented by dataflow pattern blocks in the design studio.

References

Most Dataflow patterns, when evaluated, generate a result - which is either an instance or a sequence of instances. The result, or a subset of it, might be used in one or more of the dataflow pattern(s) that follow. Dataflow patterns can simply reference the result of a prior pattern using the name of the entity or an alias assigned to the result set.

Example

{:Acme.Core/Person
{:Email "jj@factil.io"
:Name "J Joe"}

{:Acme.Core/SendEmail
{:Email :Acme.Core/Person.Email ; "jj@fractl.io"
:Subject "Job offer"
:Attachments "offer-letter.pdf"}}

;; Create a person and assign an alias:
{:Acme.Core/Person
{:Email "jj@factil.io"
:Name "J Joe"}
:as :P}

{:Acme.Core/SendEmail
{:Email :P.Email ; "jj@fractl.io"
;; ...
}}

These references together form a graph of references within the dataflow. There are a multitude of use cases for this graph - static analysis, test generation, parallel evaluation, etc. This graph can also, and will in the future, be used to instantiate a dataflow as a stream-processing operator graph.

Destructuring

Some dataflow patterns return a collection of entity instances as the result of evaluation (e.g., queries). However, only a subset of the result set (first, or first n, or second, or last, or last n, etc) might be relevant for future dataflow patterns. To enable this, Dataflow patterns support destructuring on results - with this capability, the subset of the result set that is of interest can be assigned an alias and future patterns reference the subset by simply using the alias.

Example

;; Query all employees with salary > 5000.
{:Acme.Core/Employee
{:Salary? [:> 5000]}
:as :Employees}

;; Query all employees with salary > 5000, bind an alias to
;; only the first result.
{:Acme.Core/Employee
{:Salary? [:> 5000]}
:as [:E1]}

;; Bind only the first and third instances, ignore the second employee,
;; bind the rest to an the alias :Es
{:Acme.Core/Employee
{:Salary? [:> 5000]}
:as [:E1 :_ :E2 :& :Es]}