I have follwoing setup.
- Application sends serialized JSON data into Firehose.
- Firehose is configured with Data conversion to praquet using a glue table definition for efficient query execution.
- I am able to run query in Athena and see the results.
Now what I need is to create another application which can query Athena using AWSSDK (C#) and read the data back in JSON format.
Is it possible to somehow use the table's input/output format and serde to read the data back in JSON format using Athena SDK? Or I need to implement custom logic to convert the data back to JSON?