Home > Blockchain >  How to specify delimiter between JSON objects in Kinesis Firehose
How to specify delimiter between JSON objects in Kinesis Firehose

Time:09-29

As far as I understand, it is possible to specify delimiter on Firehose as long as you activate Dynamic Partitioning. You can see "New line delimiter" option under the Dynamic partitioning section. However, I need to specify a delimiter without using Dynamic Partitioning. I cannot see this option anywhere. Is it possible to achive that?

Note: I am trying to find a built-in solution other than appending manually data "\n" in producer application.

CodePudding user response:

You have to setup lambda function for firehose which is going to process the records and add new line to them.

  • Related