Talend Component Kit methodology

Talend Component Kit is a framework designed to simplify the development of components at two levels:

  • Runtime: Runtime is about injecting the specific component code into a job or pipeline. The framework helps unify as much as possible the code required to run in Data Integration (DI) and BEAM environments.

  • Graphical interface: The framework helps unify the code required to be able to render the component in a browser (web) or in the Eclipse-based Studio (SWT).

Before being able to develop new components, check the prerequisites to make sure that you have all you need to get started.

Developing new components using the framework includes:

  1. Creating a project using the starter or the Talend IntelliJ plugin. This step allows to build the skeleton of the project. It consists in:

    1. Defining the general configuration model for each component in your project

    2. Generating and downloading the project archive from the starter

    3. Compiling the project

  2. Importing the compiled project in your IDE. This step is not required if you have generated the project using the IntelliJ plugin.

  3. Implementing the components, including:

    1. Registering the component by specifying its metadata: family, categories, version, icon, type, and name.

    2. Defining the layout and configurable part of the components

    3. Defining the partition mapper for Input components

    4. Implementing the source logic (producer) for Input components

    5. Defining the processor for Output components

  4. Testing the components

  5. Deploying the components to Talend Studio or Cloud applications

Some additional configuration steps can be necessary according to your requirements:

Methodology

Scroll to top