athena-query

command module
v0.0.4 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 5, 2022 License: MIT Imports: 18 Imported by: 0

README

athena-query

Command line utility for querying AWS Athena, seeks to emulate sqlite3. It implements some similar commands (the . notation) as sqlite3.

It provides an interactive shell where you can run SQL queries against AWS Athena. The utility sends the query to Athena and then displays the results as a table or as CSV.

How to use

  1. Download a binary for your platform from the releases page
  2. Set up your AWS credentials in the normal way (for example in your $HOME/.aws/ directory or via instance meta-data)
  3. Put the athena-query binary in your $PATH
  4. Run athena-query --work-group <name of work group> --database <name of database>

You can type SQL queries at the prompt. SQL queries end with a semi-colon ';'. You can split SQL queries across multiple lines, just use the enter key.

Special commands begin with a full-stop '.'. Type .help to get a list of those available commands.

Requirements

The tool needs the work-group to have an associated OutputLocation. This is the S3 bucket where the query results and meta-data are stored. If this also has encryption enabled with a customer managed key then the user/role being used by athena-query will need permissions to use that key for decryption.

https://docs.aws.amazon.com/athena/latest/APIReference/API_ResultConfiguration.html

The tool will test the work-group when it starts to ensure these settings are present. If they are not the tool will exit.

Outputs

By default the tool outputs pretty-printed tables to STDOUT. You can change this to CSV with the .mode command and you can redirect this to a file with the .output command.

Documentation

The Go Gopher

There is no documentation for this package.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL