I'm using AWS' Application Load Balancer and writing access logs to S3.
Wanting to access/query this access logs, I stumbled across https://aws.amazon.com/premiumsupport/knowledge-center/analyze-logs-athena/ and this SO post View AWS ALB access logs in one place
All seems pretty simple - Athena, create table which ingests the log files and run queries.
However I don't see any records and I suspect the reason is that Athena expects text files and the ALB generated all logfiles with .gz extension, so apparently gzip'ed. I haven't found a config at the ALB level which says "write gzipped logs".
Any ideas if queries via Athena are still possible or if I can modify the ALB config to write plain text?