Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save h1kkan/d08277b6548b8f3275fcdb36ddffc8fa to your computer and use it in GitHub Desktop.
Save h1kkan/d08277b6548b8f3275fcdb36ddffc8fa to your computer and use it in GitHub Desktop.
clickhouse get tables size
SELECT table,
formatReadableSize(sum(bytes)) as size,
min(min_date) as min_date,
max(max_date) as max_date
FROM system.parts
WHERE active
GROUP BY table
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment