Skip to content

Instantly share code, notes, and snippets.

@iconara
Created September 6, 2017 13:59
Show Gist options
  • Save iconara/a3fa2464ee2ff4fc16d426f1b1a79841 to your computer and use it in GitHub Desktop.
Save iconara/a3fa2464ee2ff4fc16d426f1b1a79841 to your computer and use it in GitHub Desktop.
Athena cheat sheet
-- Discovers all partitions of a table if they use Hive's partitioning format (e.g. partition0=abc/partition1=def)
MSCK REPAIR TABLE tablename;
-- This lists all partitions of a table. The Presto version, SHOW PARTITIONS FROM tablename, does not work.
SHOW PARTITIONS tablename;
-- Returns:
-- partition0=abc/partition1=def
-- partition0=ghi/partition1=jkl
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment