author | Mahlon E. Smith <mahlon@laika.com> |
Mon, 12 Feb 2018 13:00:25 -0800 | |
changeset 3 | f34855556f4d |
parent 2 | 7a42e74fb22c |
child 4 | f3d83bdd7877 |
--- a/README.md Mon Feb 12 12:49:48 2018 -0800 +++ b/README.md Mon Feb 12 13:00:25 2018 -0800 @@ -44,7 +44,12 @@ for details. Strongly encouraged: Promote this table to a Timescale "hypertable". -See Timescale docs for that. +See Timescale docs for that, but a quick example to partition +automatically at weekly boundaries would look something like: + +```sql +SELECT create_hypertable( 'netdata', 'time', chunk_time_interval => 604800000000 ); +```