Samples
-
Split a chunk at a specific time:
-
Split a in two:
For example, If the duration is, 24 hours, the following command splits
chunk_1into two s of 12 hours each.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Split a large chunk at a specific point in time.
CALL split_chunk('chunk_1', split_at => '2025-03-01 00:00');
chunk_1 into
two s of 12 hours each.
CALL split_chunk('chunk_1');
CALL split_chunk(
chunk = '<chunk_name>',
split_at = <split_point>
);
| Name | Type | Default | Required | Description |
|---|---|---|---|---|
chunk | REGCLASS | - | ✔ | Name of the to split. |
split_at | ”any” | NULL | ✖ | The point at which to split the . Accepts TIMESTAMPTZ for time-based dimensions or INTEGER for integer-based dimensions. If not specified, the is split in half. |