waytoharish commented on issue #10895:
URL: https://github.com/apache/hudi/issues/10895#issuecomment-2042041118
Hi @ad1happy2go ,
I have added the -
@Override
public RowData map(Telemetry kafkaRecord) throws Exception {
GenericRowData row = new GenericRowData(6);
row.setField(0,
StringData.fromString(kafkaRecord.getCampaignName()));
row.setField(1,StringData.fromString("name9"));
row.setField(2,23);
row.setField(3, TimestampData.fromEpochMillis(1));
row.setField(4,StringData.fromString("p1"));
row.setField(5,kafkaRecord.getData());
return row;
}
I can see data pushed to the S3 but there is no table in the Glue
has been created
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]