Skip to main content
Announcements
SYSTEM MAINTENANCE: Thurs., Sept. 19, 1 AM ET, Platform will be unavailable for approx. 60 minutes.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

How to send output from custom component (created by Talend component kit) to built-in component

Hello,

 

I created custom component by Talend component kit. The component is a processor that  encrypt the incoming data.

I want to send the encrypted data as output in order to use it in my job.

e.g getting the output stream and saving in kafka.

in my function with annotation @ElementListener I tried to return the stream or output.emit(output_stream) but in my job I get nothing in next component.

 

 Thanks, 

Labels (3)
2 Replies
Anonymous
Not applicable
Author

Hi @Ploni99 ,

 

Is your output_stream a POJO, JsonObject or Record? Other types are not supported since it needs to be mapped to a rowStruct.

 

Romain

Anonymous
Not applicable
Author

Hi @Ploni99 ,

 

Is your output_stream a POJO, JsonObject or Record? Other types are not supported since it needs to be mapped to a rowStruct.