Skip to content

Commit ddba359

Browse files
Merge branch 'latest' into rest-api
2 parents 5625bfd + 7865074 commit ddba359

File tree

6 files changed

+254
-148
lines changed

6 files changed

+254
-148
lines changed
Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
## Prerequisites
2+
3+
To follow this procedure:
4+
5+
- [Install $TIMESCALE_DB][debian-install].
6+
- Add the $TIMESCALE_DB repository and the GPG key.
7+
8+
## Install $TOOLKIT_LONG
9+
10+
These instructions use the `apt` package manager.
11+
12+
<Procedure>
13+
14+
1. Update your local repository list:
15+
16+
```bash
17+
sudo apt update
18+
```
19+
20+
1. Install TimescaleDB Toolkit:
21+
22+
```bash
23+
sudo apt install timescaledb-toolkit-postgresql-17
24+
```
25+
26+
1. [Connect to the database][connect] where you want to use $TOOLKIT_SHORT.
27+
1. Create the $TOOLKIT_SHORT extension in the database:
28+
29+
```sql
30+
CREATE EXTENSION timescaledb_toolkit;
31+
```
32+
33+
</Procedure>
34+
35+
## Update $TOOLKIT_LONG
36+
37+
Update $TOOLKIT_SHORT by installing the latest version and running `ALTER EXTENSION`.
38+
39+
<Procedure>
40+
41+
1. Update your local repository list:
42+
43+
```bash
44+
apt update
45+
```
46+
47+
1. Install the latest version of $TOOLKIT_LONG:
48+
49+
```bash
50+
apt install timescaledb-toolkit-postgresql-17
51+
```
52+
53+
1. [Connect to the database][connect] where you want to use the new version of $TOOLKIT_SHORT.
54+
1. Update the $TOOLKIT_SHORT extension in the database:
55+
56+
```sql
57+
ALTER EXTENSION timescaledb_toolkit UPDATE;
58+
```
59+
60+
<Highlight type="note">
61+
62+
For some $TOOLKIT_SHORT versions, you might need to disconnect and reconnect active
63+
sessions.
64+
65+
</Highlight>
66+
67+
</Procedure>
68+
69+
[brew-install]: https://brew.sh
70+
[cloud]: /use-timescale/:currentVersion:/services/
71+
[debian-install]: /self-hosted/:currentVersion:/install/installation-linux/
72+
[docker-install]: /self-hosted/:currentVersion:/install/installation-docker/
73+
[mst]: /mst/:currentVersion:/
74+
[red-hat-install]: /self-hosted/:currentVersion:/install/installation-linux/
75+
[toolkit-gh-docs]: https://github.com/timescale/timescaledb-toolkit#-installing-from-source
76+
[connect]: /integrations/:currentVersion:/find-connection-details/
77+
[update-docker]: /self-hosted/:currentVersion:/upgrades/upgrade-docker/
78+
[macos-install]: /self-hosted/:currentVersion:/install/installation-macos/
Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
2+
## Prerequisites
3+
4+
To follow this procedure:
5+
6+
- [Install $TIMESCALE_DB][red-hat-install].
7+
- Create a $TIMESCALE_DB repository in your `yum` `repo.d` directory.
8+
9+
## Install $TOOLKIT_LONG
10+
11+
These instructions use the `yum` package manager.
12+
13+
<Procedure>
14+
15+
1. Set up the repository:
16+
17+
```bash
18+
curl -s https://packagecloud.io/install/repositories/timescale/timescaledb/script.deb.sh | sudo bash
19+
```
20+
21+
1. Update your local repository list:
22+
23+
```bash
24+
yum update
25+
```
26+
27+
1. Install $TOOLKIT_LONG:
28+
29+
```bash
30+
yum install timescaledb-toolkit-postgresql-17
31+
```
32+
33+
1. [Connect to the database][connect] where you want to use $TOOLKIT_SHORT.
34+
1. Create the $TOOLKIT_SHORT extension in the database:
35+
36+
```sql
37+
CREATE EXTENSION timescaledb_toolkit;
38+
```
39+
40+
</Procedure>
41+
42+
## Update $TOOLKIT_LONG
43+
44+
Update $TOOLKIT_SHORT by installing the latest version and running `ALTER EXTENSION`.
45+
46+
<Procedure>
47+
48+
1. Update your local repository list:
49+
50+
```bash
51+
yum update
52+
```
53+
54+
1. Install the latest version of $TOOLKIT_LONG:
55+
56+
```bash
57+
yum install timescaledb-toolkit-postgresql-17
58+
```
59+
60+
1. [Connect to the database][connect] where you want to use the new version of $TOOLKIT_SHORT.
61+
1. Update the $TOOLKIT_SHORT extension in the database:
62+
63+
```sql
64+
ALTER EXTENSION timescaledb_toolkit UPDATE;
65+
```
66+
67+
<Highlight type="note">
68+
69+
For some $TOOLKIT_SHORT versions, you might need to disconnect and reconnect active
70+
sessions.
71+
72+
</Highlight>
73+
74+
</Procedure>
75+
76+
77+
[brew-install]: https://brew.sh
78+
[cloud]: /use-timescale/:currentVersion:/services/
79+
[debian-install]: /self-hosted/:currentVersion:/install/installation-linux/
80+
[docker-install]: /self-hosted/:currentVersion:/install/installation-docker/
81+
[mst]: /mst/:currentVersion:/
82+
[red-hat-install]: /self-hosted/:currentVersion:/install/installation-linux/
83+
[toolkit-gh-docs]: https://github.com/timescale/timescaledb-toolkit#-installing-from-source
84+
[connect]: /integrations/:currentVersion:/find-connection-details/
85+
[update-docker]: /self-hosted/:currentVersion:/upgrades/upgrade-docker/
86+
[macos-install]: /self-hosted/:currentVersion:/install/installation-macos/

about/changelog.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,20 @@ products: [cloud]
99

1010
All the latest features and updates to $CLOUD_LONG.
1111

12+
## 🚁 Enhancements to the Postgres source connector
13+
<Label type="date">August 28, 2025</Label>
14+
15+
- **Easy table selection**: You can now sync the complete source schema in one go. Select multiple tables from the
16+
drop-down menu and start the connector.
17+
18+
- **Sync metadata**: Connectors now display the following detailed metadata:
19+
- `Initial data copy`: The number of rows copied at any given point in time.
20+
- `Change data capture`: The replication lag represented in time and data size.
21+
- **Improved UX design**: In-progress syncs with separate sections showing the tables and metadata for
22+
`initial data copy` and `change data capture`, plus a dedicated tab where you can add more tables to the connector.
23+
24+
![Connectors UX](https://assets.timescale.com/docs/images/tiger-cloud-console/connectors-new-ui.png )
25+
1226
## 🦋 Developer role GA and hypertable transformation in Console
1327
<Label type="date">August 21, 2025</Label>
1428

mst/installation-mst.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,20 @@ Description | Enables scalable inserts and complex queries for time-series data
108108
defaultdb=>
109109
```
110110
111+
## Install and update TimescaleDB Toolkit
112+
113+
Run this command on each database you want to use the $TOOLKIT_SHORT with:
114+
115+
```sql
116+
CREATE EXTENSION timescaledb_toolkit;
117+
```
118+
119+
Update an installed version of the $TOOLKIT_SHORT using this command:
120+
121+
```sql
122+
ALTER EXTENSION timescaledb_toolkit UPDATE;
123+
```
124+
111125
## Where to next
112126
113127
Now that you have your first service up and running, you can check out the

0 commit comments

Comments
 (0)