how can we change the chunk time interval, when it is way too large?
use case:
- we have an existing hypertable, where we have set the
chunk_time_interval
to 1 month (when using create_hypertable()). - this was fine for the last months, but now the data-rate will be increased by a factor of 1000
e.g. I think we cannot just use set_chunk_time_interval, because it will not affect the current chunk: so when a new month-chunk has just started when the data-rate is increased, this chunk would get huge and only the newer chunks would be right-sized.
So what is the best way to deal with this case?
So to clarify: we want to have one hypertable, where the older data has a different chunk size than the newer data.