this was not working :
//output_row.JSON_DATA = ((java.sql.Clob)input_row.JSON_DATA).getCharacterStream(1, //((java.sql.Clob)input_row.JSON_DATA).length());
so I used the default code :
//Code generated according to input schema and output schema
output_row.JSON_DATA = input_row.JSON_DATA;
and now it is throwing below error :
Starting job WIP at 14:57 14/04/2016.
connecting to socket on port 4020
connected
java.io.IOException: Illegal character: <S>
java.io.IOException: Illegal character: <S>
331 milliseconds
disconnected
Job WIP ended at 14:57 14/04/2016.
Please sugest.