I’m using terraform to create a Firehose Delivery Stream to S3. I can successfully use boto3’s firehose client and call the put_batch method to push records to S3 files.
Apparently, Firehose can turn these JSON to Parquet, so long as the schema is defined in Glue:
I can’t get any Parquet files though. My terraform is successfully planned and applied (using tflocal), and there are no apparent errors in the LocalStack logs.
Does LocalStack’s implementation of Firehose allow for Data Format Conversion, specifically from JSON to Parquet?