Data orchestration, transformation and processing

Not only can you stream data from one place to another using Datamin, but also fully orchestrate the process and do the entire data transformation and processing.

Everything that is happening in pipelines between the retrieval of data to sending it outside of Datamin can be orchestrated by the set of the following pipeline tasks:

  • "Aggregator" is designed to transform an input dataset into one single variable. To do that it uses mathematical functions like SUM(), AVG() and other aggregating functions.

  • "Code" is a task that allows you to use Python and Pandas framework for complex logic.

  • "Condition" allows you to branch your pipelines and dynamically execute one part of it if the condition result is true and another one if it is false.

  • "Filter" is responsible for the basic filtering of datasets by a certain value of a certain key.

  • "For Each" allows running the next task for each of input items separately.

  • "Merge" merges data coming to the pipeline from two or more data sources.

  • "Processor" is a task that allows you to transform, filter, and map data using the functionality of the JQ library.

  • "Transformer" converts data in different formats or extracts values.

These tasks make our pipelines very agile and equip you with versatile flexibility of how to orchestrate your data. And a combination of them is only limited by your creativity.

Tasks and human language

Even more interesting, our pipeline tasks are designed in a way so that you can easily describe the entire functionality of the pipeline with one sentence.

For example,

Task

Merge data from two databases, check if the resulting dataset meets conditions, filter it if yes, and process each of the items in the resulting dataset.

Implementation

Such an intuitive conversion from human language to pipelines simplifies the communication between stakeholders and data engineers significantly and also:

  • Establishes a common vocabulary

  • Reduces time on explanations

  • Accelerates implementation

  • Minimizes errors

Last updated