Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
MPogorelov1634291005
Contributor II
Contributor II

Source code of Talend Studio Comonents

Hello, everyone!

Can I find out location of pre-installed Talend components (eg. tDBRow, tMap and others) ?

I want open them to see source code (maybe decompiled). I will use this code as example for my custom component.

Labels (4)
1 Reply
Anonymous
Not applicable

Hello,

 

Currently we have 3 component frameworks in Talend Studio. The Talend Component Kit (TCOMPv1 / TCK) that you started to develop on, TCOMPv0 which is deprecated, and the JavaJet based components that you're asking of.

DBRow / tMap:

These are standard DI components hence they are under the tdi-studio project:

https://github.com/Talend/tdi-studio-se/tree/master/main/plugins/org.talend.designer.components.loca...

(You can find the same folder in your studio. plugins/*localprovider* )

There are multiple localproviders depending on the product / license.

Some bigdata components are also available for Data Integration jobs:

https://github.com/Talend/tbd-studio-se/tree/master/main/plugins/org.talend.designer.components.bigd...

 

As for the TCOMPv0 components the open source ones are here:

https://github.com/Talend/components/tree/master/components

 

And the TCOMPv1 / Component Kit based ones are here:

https://github.com/Talend/connectors-se

For this we have the starter-toolkit that should help designing the UI interface and generate the skeleton: https://starter-toolkit.talend.io

 

I hope this helps.