Hello everyone, everything good?
So, I send mine website's clickstream events to Kinesis Data Stream, and Kinesis Firehose saves in a file without extension concatenating objects(events), for example:
{obj1}{obj2}{obj3}{obj4}{obj5}
I've already done all the pipeline to receive 1 Object and with JoltTransformJson I handle it,
in this case, how would I split the objects in this file? And is this the best approach in case of Performance?
I tried with Split Content with these configurations:
But the first object is coming out {obj1}{ and the rest of the objects are coming out obj2}{ obj3}{
Thank you guys!