From a5995f00664564b0e586c2eb9be9b56c1ea54d0a Mon Sep 17 00:00:00 2001 From: billy-the-fish Date: Tue, 26 Aug 2025 16:56:51 +0200 Subject: [PATCH 1/2] chore: update manual convert all chunks. --- tutorials/blockchain-query/blockchain-compress.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/tutorials/blockchain-query/blockchain-compress.md b/tutorials/blockchain-query/blockchain-compress.md index 8496be13f1..4270fce016 100644 --- a/tutorials/blockchain-query/blockchain-compress.md +++ b/tutorials/blockchain-query/blockchain-compress.md @@ -36,7 +36,17 @@ To compress the data in the `transactions` table, do the following: - [Manually convert all chunks][convert_to_columnstore] in the $HYPERTABLE to the $COLUMNSTORE: ```sql - CALL convert_to_columnstore(c) from show_chunks('transactions') c; + DO $$ + DECLARE + chunk_name TEXT; + BEGIN + FOR chunk_name IN (SELECT c FROM show_chunks('transactions') c) + LOOP + RAISE NOTICE 'Converting chunk: %', chunk_name; -- Optional: To see progress + CALL convert_to_columnstore(chunk_name); + END LOOP; + RAISE NOTICE 'Conversion to columnar storage complete for all chunks.'; -- Optional: Completion message + END$$; ``` From 6ce34d35a82083bedb533b4e54baddf25c5f24a0 Mon Sep 17 00:00:00 2001 From: billy-the-fish Date: Mon, 1 Sep 2025 09:43:48 +0200 Subject: [PATCH 2/2] chore: add redirects for linkasaurus. --- lambda/redirects.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lambda/redirects.js b/lambda/redirects.js index ade4d224c7..e864107a64 100644 --- a/lambda/redirects.js +++ b/lambda/redirects.js @@ -849,6 +849,10 @@ module.exports = [ from: "/latest/getting-started/setup", to: "https://docs.tigerdata.com/self-hosted/latest/install/" }, + { + from: "/latest/using-timescaledb/backup", + to: "https://docs.tigerdata.com/self-hosted/latest/backup-and-restore/" + }, { from: "/v0.9/faq", to: "https://docs.tigerdata.com/about/latest/" @@ -885,6 +889,10 @@ module.exports = [ from: "/latest/api#add_dimension", to: "https://docs.tigerdata.com/api/latest/hypertable/add_dimension/" }, + { + from: "/latest/api#backup", + to: "https://docs.tigerdata.com/self-hosted/latest/backup-and-restore/" + }, { from: "/timescaledb/latest/tutorials/grafana/grafana-variables/", to: "https://docs.tigerdata.com/integrations/latest/grafana/"