i have that table
CREATE TABLE mytable
(
device_id bigint NOT NULL,
start TIMESTAMP WITHOUT TIME ZONE,
level varchar(255) NOT NULL,
amount integer
);
and i want to migrate it to a hypertable like that:
SELECT create_hypertable('mytable', 'start','device_id', migrate_data => true);
but i get an error
ERROR: invalid number of partitions for dimension "device_id"
HINT: A closed (space) dimension must specify between 1 and 32767 partitions.
SQL state: 22023
What am i doing wrong? I had similar tables, where it worked without an issue.
Using Postgresql 11 and timescale db 1.7.4 running on azure postgresql. Thx in advance
Regards Oliver