I currently have data arriving from Firehose into an Athena table. When I view the data it is an array of JSON. Is it possible to use a glue job to split the arrays into separate rows so each row is its own JSON log.
For example: Data arriving [{"a":"test1", "b":"success"},{"a":"test2", "b":"success"}]
What the glue job should change it to: {"a":"test1", "b":"success"} {"a":"test2", "b":"success"}