redacted
redacted

Reputation: 3959

Amazon Athena export compressed query (table)

When I do a query like:

SELECT * FROM mytable

the output is saved in an Amazon S3 bucket as a plain CSV.

Is there an option to save the csv in a compressed format (gzip)?

Upvotes: 1

Views: 1066

Answers (1)

John Rotenstein
John Rotenstein

Reputation: 269191

There is no output compression option (currently) available.

The only options are:

  • Selecting the output bucket
  • Encrypting query results

Upvotes: 2

Related Questions