Use Case: Creating a pipeline to process financial data - Cloud

Talend Cloud Pipeline Designer Getting Started Guide

Version
Cloud
Language
English
Product
Talend Cloud
Module
Talend Pipeline Designer
Content
Deployment > Deploying > Executing Pipelines
Design and Development > Designing Pipelines
Last publication date
2024-03-05

How to create a pipeline that will enrich and filter hierarchical financial data (IBAN, account and transaction information, etc.), then aggregate and count the total amount of performed transactions.

The finished pipeline in the canvas.

Procedure

  1. Click Add pipeline on the Pipelines page. Your new pipeline opens.
  2. On the top toolbar, click the Edit pencil icon next to the pipeline default name and give a meaningful name to your pipeline.

    Example

    Process financial data
  3. Click ADD SOURCE to open the panel allowing you to select your source data, here the financial data dataset created previously.
  4. Select your dataset and click Select in order to add it to the pipeline.
    Your dataset is added as a source and you can already preview your JSON data.
  5. Click Add and add a Python 3 processor to the pipeline. This processor will be used to copy Python code that will process and enrich input data.
  6. Give a meaningful name to the processor.

    Example

    enrich with IBAN validation
  7. In the Python code area, type in the following code.
    import string;
    
    ## IBAN Validation function;
    ALPHA = {c: str(ord(c) % 55) for c in string.ascii_uppercase};
    def reverse_iban(iban): return iban[4:] + iban[:4];
    def check_iban(iban): return int(''.join(ALPHA.get(c, c) for c in reverse_iban(iban))) % 97 == 1;
    
    output = input;
    transaction = input['transaction'];
    this_account = transaction["this_account"];
    account_routing = this_account["account_routing"];
    account_iban = account_routing["address"].replace(" ", "");
    output['iban_valid'] = check_iban(account_iban)
    This code allows you to:
    • check that the IBAN syntax is valid
    • add a new field named iban_valid to the existing records with values true or false depending on the result of the IBAN checking
  8. Click Save to save your configuration.
    Input data is processed accordingly and you can preview the modifications. The new iban_valid field is added to all records.
    iban_valid field in the output preview.
  9. Click Add and add a Filter processor to the pipeline. This processor will be used to isolate accepted transactions (tagged with AC, compared to DC, declined transactions).
  10. Give a meaningful name to the processor.

    Example

    filter on accepted transactions
  11. In the Filters area:
    1. Select .transaction.details.type in the Input list, as you want to filter customers based on this value.
    2. Select None in the Optionally select a function to apply list, as you do not want to apply a function while filtering records.
    3. Select = = in the Operator list and type in AC in the Value list as you want to filter on transactions that were accepted.

      You can use the avpath syntax in this area, for more information see What is avpath and why use it?.

    4. Click Save to save your configuration.
    Input data is processed accordingly and you can preview the modifications. Only records containing accepted transactions (AC) are kept in the output.
    Output preview of transactions that contain the AC value for the type attribute.
  12. Click Add and add an Aggregate processor to the pipeline. This processor will be used to group transactions and calculate the total amount of these transactions.
  13. Give a meaningful name to the processor.

    Example

    count transaction amounts with valid IBAN
  14. In the Group by area, specify the fields you want to use for your aggregation set:
    1. Select .transaction.details.description in the Field path list.
    2. Add a new element and select .iban_valid in the list.
  15. In the Operations area, add an aggregate operation:
    1. Select .transaction.details.value.amount in the Field path list and Sum in the Operation list.
    2. Name the generated field, total_amount for example.
    3. Click Save to save your configuration.
    Input data is processed accordingly and you can preview the calculated data after the filtering and grouping operation. There are 252 transactions with a valid IBAN and 81 transactions with a non-valid IBAN.
    The calculated amount of transactions with valid and invalid IBAN values in the output preview.
  16. Click the ADD DESTINATION item on the pipeline to open the panel to select the dataset for your output data: the financial data dataset you created earlier. You can use the same dataset for input and output because the test datasets behave differently in source and destination, and when used in a destination the data is ignored.
  17. Give a meaningful name to the destination.

    Example

    processed data
  18. Click Save to save your configuration.