convert_to_rowstore() replaces decompress_chunk(), deprecated in 2.18.0.
Manually convert a specific in the to the .If you need to modify or add a lot of data to a in the , best practice is to stop
any jobs moving s to the , convert the back to the , then modify the
data. After the update, convert the to the and restart the jobs.
This workflow is especially useful if you need to backfill old data.
Stop the jobs that are automatically adding s to the Retrieve the list of jobs from the timescaledb_information.jobs view
to find the job you need to alter_job.
Update the data in the you added to the Best practice is to structure your INSERT statement to include appropriate
partition key values, such as the timestamp. adds the data to the correct :
INSERT INTO metrics (time, value)VALUES ('2025-01-01T00:00:00', 42);