From 167e7079a60331af6519103db7e56b79492c4ce2 Mon Sep 17 00:00:00 2001 From: atovpeko Date: Tue, 5 Aug 2025 15:11:32 +0300 Subject: [PATCH 1/7] rework the toolkit page --- self-hosted/tooling/install-toolkit.md | 153 +++++++++++++------------ 1 file changed, 78 insertions(+), 75 deletions(-) diff --git a/self-hosted/tooling/install-toolkit.md b/self-hosted/tooling/install-toolkit.md index 761a70e070..9599fb1ce9 100644 --- a/self-hosted/tooling/install-toolkit.md +++ b/self-hosted/tooling/install-toolkit.md @@ -13,21 +13,6 @@ extension. If you're using [$CLOUD_LONG][cloud], the $TOOLKIT_LONG is already installed. -## Install and update TimescaleDB Toolkit on Managed Service for TimescaleDB - -On [$MST_LONG][mst], run this command on each database you -want to use the $TOOLKIT_SHORT with: - -```sql -CREATE EXTENSION timescaledb_toolkit; -``` - -Update an installed version of the $TOOLKIT_SHORT using this command: - -```sql -ALTER EXTENSION timescaledb_toolkit UPDATE; -``` - ## Install TimescaleDB Toolkit on self-hosted TimescaleDB If you're hosting the $TIMESCALE_DB extension on your self-hosted database, you can install $TOOLKIT_SHORT by: @@ -35,9 +20,11 @@ If you're hosting the $TIMESCALE_DB extension on your self-hosted database, you * Using the TimescaleDB high-availability Docker image * Using a package manager such as `yum`, `apt`, or `brew` on platforms where pre-built binaries are available -* Building from source +* Building from source. For more information, see the [$TOOLKIT_SHORT developer documentation][toolkit-gh-docs] -### Install Docker image + + + The recommended way to install the $TOOLKIT_SHORT is to use the [TimescaleDB Docker image](https://github.com/timescale/timescaledb-docker-ha). @@ -47,20 +34,16 @@ To get $TOOLKIT_SHORT, use the high availability image, `timescaledb-ha`: docker pull timescale/timescaledb-ha:pg17 ``` -For more information on running TimescaleDB using Docker, see the section on +For more information on running $TIMESCALE_DB using Docker, see the section on [pre-built containers][docker-install]. + + -### Install Toolkit on CentOS 7 and other Red Hat-based systems - -These instructions use the `yum` package manager. They have been tested on -CentOS 7 and may also work on other Red Hat-based systems, such as Red Hat -Enterprise Linux and Fedora. + -#### Installing Toolkit on CentOS 7 - -1. Make sure you have installed TimescaleDB and created a TimescaleDB +1. Make sure you have installed $TIMESCALE_DB and created a $TIMESCALE_DB repository in your `yum` `repo.d` directory. For more information, see [the instructions for Red Hat-based systems][red-hat-install]. 1. Update your local repository list: @@ -72,7 +55,7 @@ Enterprise Linux and Fedora. 1. Install $TOOLKIT_LONG: ```bash - yum install timescaledb-toolkit-postgresql-16 + yum install timescaledb-toolkit-postgresql-17 ``` 1. Connect to the database where you want to use $TOOLKIT_SHORT. @@ -83,16 +66,16 @@ Enterprise Linux and Fedora. ``` + + -### Install Toolkit on Ubuntu and other Debian-based systems + These instructions use the `apt` package manager. They have been tested on Ubuntu 20.04 and may also work on other Debian-based systems. -#### Installing Toolkit on Ubuntu 20.04 - 1. Make sure you have installed TimescaleDB and added the TimescaleDB repository and GPG key. For more information, see [the instructions for Debian-based systems][debian-install]. @@ -105,7 +88,7 @@ and may also work on other Debian-based systems. 1. Install TimescaleDB Toolkit: ```bash - apt install timescaledb-toolkit-postgresql-16 + apt install timescaledb-toolkit-postgresql-17 ``` 1. Connect to the database where you want to use $TOOLKIT_SHORT. @@ -116,16 +99,16 @@ and may also work on other Debian-based systems. ``` + + -### Install Toolkit on macOS + These instructions use the `brew` package manager. For more information on installing or using Homebrew, see [the `brew` homepage][brew-install]. -#### Installing Toolkit on macOS - 1. Tap the $COMPANY formula repository, which also contains formulae for $TIMESCALE_DB and `timescaledb-tune`. @@ -153,79 +136,100 @@ installing or using Homebrew, see [the `brew` homepage][brew-install]. ``` + + -### Install Toolkit on Windows - -$TOOLKIT_LONG isn't currently supported on Windows. As a workaround, you -can run $PG in a Docker container. + ## Update Toolkit on self-hosted TimescaleDB Update $TOOLKIT_SHORT by installing the latest version and running `ALTER EXTENSION`. - - -### Updating Toolkit on self-hosted TimescaleDB + -1. Update your local repository list: + - + - +1. Update your local repository list: ```bash yum update ``` - - - +1. Install the latest version of $TOOLKIT_LONG: ```bash - apt update + yum install timescaledb-toolkit-postgresql-17 ``` - - - +1. Connect to the database where you want to use the new version of $TOOLKIT_SHORT. +1. Update the $TOOLKIT_SHORT extension in the database: - ```bash - brew update + ```sql + ALTER EXTENSION timescaledb_toolkit UPDATE; ``` - + + + For some $TOOLKIT_SHORT versions, you might need to disconnect and reconnect active + sessions. + + - + + + -1. Install the latest version of $TOOLKIT_LONG: + - + - +1. Update your local repository list: ```bash - yum install timescaledb-toolkit-postgresql-16 + apt update ``` - - - +1. Install the latest version of $TOOLKIT_LONG: ```bash - apt install timescaledb-toolkit-postgresql-16 + apt install timescaledb-toolkit-postgresql-17 ``` - +1. Connect to the database where you want to use the new version of $TOOLKIT_SHORT. +1. Update the $TOOLKIT_SHORT extension in the database: + + ```sql + ALTER EXTENSION timescaledb_toolkit UPDATE; + ``` - + + + For some $TOOLKIT_SHORT versions, you might need to disconnect and reconnect active + sessions. + + + + + + + + + + + +1. Update your local repository list: ```bash - brew upgrade timescaledb-toolkit + brew update ``` - +1. Install the latest version of $TOOLKIT_LONG: - + ```bash + brew upgrade timescaledb-toolkit + ``` 1. Connect to the database where you want to use the new version of $TOOLKIT_SHORT. 1. Update the $TOOLKIT_SHORT extension in the database: @@ -234,19 +238,18 @@ Update $TOOLKIT_SHORT by installing the latest version and running `ALTER EXTENS ALTER EXTENSION timescaledb_toolkit UPDATE; ``` - + -For some $TOOLKIT_SHORT versions, you might need to disconnect and reconnect active -sessions. + For some $TOOLKIT_SHORT versions, you might need to disconnect and reconnect active + sessions. - + -### Build Toolkit from source + -You can build $TOOLKIT_SHORT from source. For more information, see the [$TOOLKIT_SHORT -developer documentation][toolkit-gh-docs]. + [brew-install]: https://brew.sh [cloud]: /use-timescale/:currentVersion:/services/ From 456450671855c4012617f6c05dfec056afbdbc82 Mon Sep 17 00:00:00 2001 From: Anastasiia Tovpeko <114177030+atovpeko@users.noreply.github.com> Date: Wed, 13 Aug 2025 15:06:51 +0300 Subject: [PATCH 2/7] Update self-hosted/tooling/install-toolkit.md Co-authored-by: Iain Cox Signed-off-by: Anastasiia Tovpeko <114177030+atovpeko@users.noreply.github.com> --- self-hosted/tooling/install-toolkit.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/self-hosted/tooling/install-toolkit.md b/self-hosted/tooling/install-toolkit.md index 9599fb1ce9..5c1ea206c0 100644 --- a/self-hosted/tooling/install-toolkit.md +++ b/self-hosted/tooling/install-toolkit.md @@ -26,7 +26,7 @@ If you're hosting the $TIMESCALE_DB extension on your self-hosted database, you -The recommended way to install the $TOOLKIT_SHORT is to use the +Best practice for $TOOLKIT_SHORT installation is to use the [TimescaleDB Docker image](https://github.com/timescale/timescaledb-docker-ha). To get $TOOLKIT_SHORT, use the high availability image, `timescaledb-ha`: From 39508335962bda6a897582c8bf8391050f8ca8fc Mon Sep 17 00:00:00 2001 From: Anastasiia Tovpeko <114177030+atovpeko@users.noreply.github.com> Date: Wed, 13 Aug 2025 15:07:05 +0300 Subject: [PATCH 3/7] Update self-hosted/tooling/install-toolkit.md Co-authored-by: Iain Cox Signed-off-by: Anastasiia Tovpeko <114177030+atovpeko@users.noreply.github.com> --- self-hosted/tooling/install-toolkit.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/self-hosted/tooling/install-toolkit.md b/self-hosted/tooling/install-toolkit.md index 5c1ea206c0..cb23b2ac4a 100644 --- a/self-hosted/tooling/install-toolkit.md +++ b/self-hosted/tooling/install-toolkit.md @@ -34,7 +34,7 @@ To get $TOOLKIT_SHORT, use the high availability image, `timescaledb-ha`: docker pull timescale/timescaledb-ha:pg17 ``` -For more information on running $TIMESCALE_DB using Docker, see the section on +For more information on running $TIMESCALE_DB using Docker, see [pre-built containers][docker-install]. From f74dc869cf84d145d6a609d01f511d6b6774fb3e Mon Sep 17 00:00:00 2001 From: Anastasiia Tovpeko <114177030+atovpeko@users.noreply.github.com> Date: Wed, 13 Aug 2025 15:07:20 +0300 Subject: [PATCH 4/7] Update self-hosted/tooling/install-toolkit.md Co-authored-by: Iain Cox Signed-off-by: Anastasiia Tovpeko <114177030+atovpeko@users.noreply.github.com> --- self-hosted/tooling/install-toolkit.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/self-hosted/tooling/install-toolkit.md b/self-hosted/tooling/install-toolkit.md index cb23b2ac4a..d6fdb52622 100644 --- a/self-hosted/tooling/install-toolkit.md +++ b/self-hosted/tooling/install-toolkit.md @@ -35,7 +35,7 @@ docker pull timescale/timescaledb-ha:pg17 ``` For more information on running $TIMESCALE_DB using Docker, see -[pre-built containers][docker-install]. +[Install TimescaleDB from a Docker container][docker-install]. From 9c64a76e003feebb767033f1a3a4bc798c833c7a Mon Sep 17 00:00:00 2001 From: atovpeko Date: Wed, 13 Aug 2025 15:18:38 +0300 Subject: [PATCH 5/7] persist keys --- self-hosted/tooling/install-toolkit.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/self-hosted/tooling/install-toolkit.md b/self-hosted/tooling/install-toolkit.md index d6fdb52622..d98cad5e19 100644 --- a/self-hosted/tooling/install-toolkit.md +++ b/self-hosted/tooling/install-toolkit.md @@ -22,9 +22,9 @@ If you're hosting the $TIMESCALE_DB extension on your self-hosted database, you pre-built binaries are available * Building from source. For more information, see the [$TOOLKIT_SHORT developer documentation][toolkit-gh-docs] - + - + Best practice for $TOOLKIT_SHORT installation is to use the [TimescaleDB Docker image](https://github.com/timescale/timescaledb-docker-ha). @@ -39,7 +39,7 @@ For more information on running $TIMESCALE_DB using Docker, see - + @@ -69,7 +69,7 @@ For more information on running $TIMESCALE_DB using Docker, see - + These instructions use the `apt` package manager. They have been tested on Ubuntu 20.04 and may also work on other Debian-based systems. @@ -102,7 +102,7 @@ and may also work on other Debian-based systems. - + These instructions use the `brew` package manager. For more information on installing or using Homebrew, see [the `brew` homepage][brew-install]. @@ -145,9 +145,9 @@ installing or using Homebrew, see [the `brew` homepage][brew-install]. Update $TOOLKIT_SHORT by installing the latest version and running `ALTER EXTENSION`. - + - + @@ -181,7 +181,7 @@ Update $TOOLKIT_SHORT by installing the latest version and running `ALTER EXTENS - + @@ -215,7 +215,7 @@ Update $TOOLKIT_SHORT by installing the latest version and running `ALTER EXTENS - + From ae388d40a2ed001c66a776190b0e7ccbfebc35d0 Mon Sep 17 00:00:00 2001 From: atovpeko Date: Tue, 19 Aug 2025 13:25:16 +0300 Subject: [PATCH 6/7] updates on review --- mst/installation-mst.md | 14 ++++++++++++++ self-hosted/tooling/install-toolkit.md | 20 ++++++++++++++------ 2 files changed, 28 insertions(+), 6 deletions(-) diff --git a/mst/installation-mst.md b/mst/installation-mst.md index c6fa832374..63cfd4d609 100644 --- a/mst/installation-mst.md +++ b/mst/installation-mst.md @@ -108,6 +108,20 @@ Description | Enables scalable inserts and complex queries for time-series data defaultdb=> ``` +## Install and update TimescaleDB Toolkit + +Run this command on each database you want to use the $TOOLKIT_SHORT with: + +```sql +CREATE EXTENSION timescaledb_toolkit; +``` + +Update an installed version of the $TOOLKIT_SHORT using this command: + +```sql +ALTER EXTENSION timescaledb_toolkit UPDATE; +``` + ## Where to next Now that you have your first service up and running, you can check out the diff --git a/self-hosted/tooling/install-toolkit.md b/self-hosted/tooling/install-toolkit.md index d98cad5e19..2227de4e6b 100644 --- a/self-hosted/tooling/install-toolkit.md +++ b/self-hosted/tooling/install-toolkit.md @@ -58,7 +58,7 @@ For more information on running $TIMESCALE_DB using Docker, see yum install timescaledb-toolkit-postgresql-17 ``` -1. Connect to the database where you want to use $TOOLKIT_SHORT. +1. [Connect to the database][connect] where you want to use $TOOLKIT_SHORT. 1. Create the $TOOLKIT_SHORT extension in the database: ```sql @@ -91,7 +91,7 @@ and may also work on other Debian-based systems. apt install timescaledb-toolkit-postgresql-17 ``` -1. Connect to the database where you want to use $TOOLKIT_SHORT. +1. [Connect to the database][connect] where you want to use $TOOLKIT_SHORT. 1. Create the $TOOLKIT_SHORT extension in the database: ```sql @@ -128,7 +128,7 @@ installing or using Homebrew, see [the `brew` homepage][brew-install]. brew install timescaledb-toolkit ``` -1. Connect to the database where you want to use $TOOLKIT_SHORT. +1. [Connect to the database][connect] where you want to use $TOOLKIT_SHORT. 1. Create the $TOOLKIT_SHORT extension in the database: ```sql @@ -147,6 +147,12 @@ Update $TOOLKIT_SHORT by installing the latest version and running `ALTER EXTENS + + +To get the latest version of $TOOLKIT_SHORT, [update][update-docker] the $TIMESCALE_DB HA docker image. + + + @@ -163,7 +169,7 @@ Update $TOOLKIT_SHORT by installing the latest version and running `ALTER EXTENS yum install timescaledb-toolkit-postgresql-17 ``` -1. Connect to the database where you want to use the new version of $TOOLKIT_SHORT. +1. [Connect to the database][connect] where you want to use the new version of $TOOLKIT_SHORT. 1. Update the $TOOLKIT_SHORT extension in the database: ```sql @@ -197,7 +203,7 @@ Update $TOOLKIT_SHORT by installing the latest version and running `ALTER EXTENS apt install timescaledb-toolkit-postgresql-17 ``` -1. Connect to the database where you want to use the new version of $TOOLKIT_SHORT. +1. [Connect to the database][connect] where you want to use the new version of $TOOLKIT_SHORT. 1. Update the $TOOLKIT_SHORT extension in the database: ```sql @@ -231,7 +237,7 @@ Update $TOOLKIT_SHORT by installing the latest version and running `ALTER EXTENS brew upgrade timescaledb-toolkit ``` -1. Connect to the database where you want to use the new version of $TOOLKIT_SHORT. +1. [Connect to the database][connect] where you want to use the new version of $TOOLKIT_SHORT. 1. Update the $TOOLKIT_SHORT extension in the database: ```sql @@ -258,3 +264,5 @@ Update $TOOLKIT_SHORT by installing the latest version and running `ALTER EXTENS [mst]: /mst/:currentVersion:/ [red-hat-install]: /self-hosted/:currentVersion:/install/installation-linux/ [toolkit-gh-docs]: https://github.com/timescale/timescaledb-toolkit#-installing-from-source +[connect]: /integrations/:currentVersion:/find-connection-details/ +[update-docker]: /self-hosted/:currentVersion:/upgrades/upgrade-docker/ \ No newline at end of file From 2dc2e1b1cbc24c2cdbf380da758f4f819aa34150 Mon Sep 17 00:00:00 2001 From: atovpeko Date: Wed, 20 Aug 2025 12:12:12 +0300 Subject: [PATCH 7/7] latest updates --- self-hosted/tooling/install-toolkit.md | 168 ++++++++++++++----------- 1 file changed, 92 insertions(+), 76 deletions(-) diff --git a/self-hosted/tooling/install-toolkit.md b/self-hosted/tooling/install-toolkit.md index 2227de4e6b..50ecdad66d 100644 --- a/self-hosted/tooling/install-toolkit.md +++ b/self-hosted/tooling/install-toolkit.md @@ -11,21 +11,19 @@ Some hyperfunctions are included by default in $TIMESCALE_DB. For additional hyperfunctions, you need to install the $TOOLKIT_LONG $PG extension. -If you're using [$CLOUD_LONG][cloud], the $TOOLKIT_LONG is already installed. +If you're using [$CLOUD_LONG][cloud], the $TOOLKIT_LONG is already installed. If you're hosting the $TIMESCALE_DB extension on your self-hosted database, you can install $TOOLKIT_SHORT by: -## Install TimescaleDB Toolkit on self-hosted TimescaleDB - -If you're hosting the $TIMESCALE_DB extension on your self-hosted database, you can install $TOOLKIT_SHORT by: - -* Using the TimescaleDB high-availability Docker image +* Using the $TIMESCALE_DB high-availability Docker image * Using a package manager such as `yum`, `apt`, or `brew` on platforms where pre-built binaries are available * Building from source. For more information, see the [$TOOLKIT_SHORT developer documentation][toolkit-gh-docs] - + +## Install $TOOLKIT_LONG + Best practice for $TOOLKIT_SHORT installation is to use the [TimescaleDB Docker image](https://github.com/timescale/timescaledb-docker-ha). To get $TOOLKIT_SHORT, use the high availability image, `timescaledb-ha`: @@ -36,26 +34,38 @@ docker pull timescale/timescaledb-ha:pg17 For more information on running $TIMESCALE_DB using Docker, see [Install TimescaleDB from a Docker container][docker-install]. - + +## Update $TOOLKIT_LONG + +To get the latest version of $TOOLKIT_SHORT, [update][update-docker] the $TIMESCALE_DB HA docker image. + - + + +## Prerequisites + +To follow this procedure: + +- [Install $TIMESCALE_DB][debian-install]. +- Add the $TIMESCALE_DB repository and the GPG key. + +## Install $TOOLKIT_LONG + +These instructions use the `apt` package manager. -1. Make sure you have installed $TIMESCALE_DB and created a $TIMESCALE_DB - repository in your `yum` `repo.d` directory. For more information, see [the - instructions for Red Hat-based systems][red-hat-install]. 1. Update your local repository list: ```bash - yum update + sudo apt update ``` -1. Install $TOOLKIT_LONG: +1. Install TimescaleDB Toolkit: ```bash - yum install timescaledb-toolkit-postgresql-17 + sudo apt install timescaledb-toolkit-postgresql-17 ``` 1. [Connect to the database][connect] where you want to use $TOOLKIT_SHORT. @@ -66,66 +76,74 @@ For more information on running $TIMESCALE_DB using Docker, see ``` - - - +## Update $TOOLKIT_LONG -These instructions use the `apt` package manager. They have been tested on Ubuntu 20.04 -and may also work on other Debian-based systems. +Update $TOOLKIT_SHORT by installing the latest version and running `ALTER EXTENSION`. -1. Make sure you have installed TimescaleDB and added the TimescaleDB - repository and GPG key. For more information, see [the instructions for - Debian-based systems][debian-install]. 1. Update your local repository list: ```bash apt update ``` -1. Install TimescaleDB Toolkit: +1. Install the latest version of $TOOLKIT_LONG: ```bash apt install timescaledb-toolkit-postgresql-17 ``` -1. [Connect to the database][connect] where you want to use $TOOLKIT_SHORT. -1. Create the $TOOLKIT_SHORT extension in the database: +1. [Connect to the database][connect] where you want to use the new version of $TOOLKIT_SHORT. +1. Update the $TOOLKIT_SHORT extension in the database: ```sql - CREATE EXTENSION timescaledb_toolkit; + ALTER EXTENSION timescaledb_toolkit UPDATE; ``` + + + For some $TOOLKIT_SHORT versions, you might need to disconnect and reconnect active + sessions. + + + - + - + -These instructions use the `brew` package manager. For more information on -installing or using Homebrew, see [the `brew` homepage][brew-install]. +## Prerequisites + +To follow this procedure: + +- [Install $TIMESCALE_DB][red-hat-install]. +- Create a $TIMESCALE_DB repository in your `yum` `repo.d` directory. + +## Install $TOOLKIT_LONG + +These instructions use the `yum` package manager. -1. Tap the $COMPANY formula repository, which also contains formulae for - $TIMESCALE_DB and `timescaledb-tune`. +1. Set up the repository: ```bash - brew tap timescale/tap + curl -s https://packagecloud.io/install/repositories/timescale/timescaledb/script.deb.sh | sudo bash ``` -1. Update your local brew installation: +1. Update your local repository list: ```bash - brew update + yum update ``` 1. Install $TOOLKIT_LONG: ```bash - brew install timescaledb-toolkit + yum install timescaledb-toolkit-postgresql-17 ``` 1. [Connect to the database][connect] where you want to use $TOOLKIT_SHORT. @@ -136,25 +154,11 @@ installing or using Homebrew, see [the `brew` homepage][brew-install]. ``` - - - - -## Update Toolkit on self-hosted TimescaleDB +## Update $TOOLKIT_LONG Update $TOOLKIT_SHORT by installing the latest version and running `ALTER EXTENSION`. - - - - -To get the latest version of $TOOLKIT_SHORT, [update][update-docker] the $TIMESCALE_DB HA docker image. - - - - - 1. Update your local repository list: @@ -163,7 +167,7 @@ To get the latest version of $TOOLKIT_SHORT, [update][update-docker] the $TIMESC yum update ``` -1. Install the latest version of $TOOLKIT_LONG: +1. Install the latest version of $TOOLKIT_LONG: ```bash yum install timescaledb-toolkit-postgresql-17 @@ -177,51 +181,62 @@ To get the latest version of $TOOLKIT_SHORT, [update][update-docker] the $TIMESC ``` - + For some $TOOLKIT_SHORT versions, you might need to disconnect and reconnect active sessions. - + - + - + + +## Prerequisites + +To follow this procedure: + +- [Install $TIMESCALE_DB][macos-install]. + +## Install $TOOLKIT_LONG + +These instructions use the `brew` package manager. For more information on +installing or using Homebrew, see [the `brew` homepage][brew-install]. -1. Update your local repository list: +1. Tap the $COMPANY formula repository, which also contains formulae for + $TIMESCALE_DB and `timescaledb-tune`. ```bash - apt update + brew tap timescale/tap ``` -1. Install the latest version of $TOOLKIT_LONG: +1. Update your local brew installation: ```bash - apt install timescaledb-toolkit-postgresql-17 + brew update ``` -1. [Connect to the database][connect] where you want to use the new version of $TOOLKIT_SHORT. -1. Update the $TOOLKIT_SHORT extension in the database: +1. Install $TOOLKIT_LONG: - ```sql - ALTER EXTENSION timescaledb_toolkit UPDATE; + ```bash + brew install timescaledb-toolkit ``` - - - For some $TOOLKIT_SHORT versions, you might need to disconnect and reconnect active - sessions. - - +1. [Connect to the database][connect] where you want to use $TOOLKIT_SHORT. +1. Create the $TOOLKIT_SHORT extension in the database: + + ```sql + CREATE EXTENSION timescaledb_toolkit; + ``` - - - +## Update $TOOLKIT_LONG + +Update $TOOLKIT_SHORT by installing the latest version and running `ALTER EXTENSION`. @@ -252,7 +267,7 @@ To get the latest version of $TOOLKIT_SHORT, [update][update-docker] the $TIMESC - + @@ -265,4 +280,5 @@ To get the latest version of $TOOLKIT_SHORT, [update][update-docker] the $TIMESC [red-hat-install]: /self-hosted/:currentVersion:/install/installation-linux/ [toolkit-gh-docs]: https://github.com/timescale/timescaledb-toolkit#-installing-from-source [connect]: /integrations/:currentVersion:/find-connection-details/ -[update-docker]: /self-hosted/:currentVersion:/upgrades/upgrade-docker/ \ No newline at end of file +[update-docker]: /self-hosted/:currentVersion:/upgrades/upgrade-docker/ +[macos-install]: /self-hosted/:currentVersion:/install/installation-macos/ \ No newline at end of file