Skip to content

Commit 197eae7

Browse files
authored
Merge branch 'latest' into 351-document-new-instance-sizes-in-console
2 parents d825ac4 + e80002d commit 197eae7

File tree

75 files changed

+3190
-1062
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+3190
-1062
lines changed

.helper-scripts/llms/generate_llms_full.py

Lines changed: 838 additions & 0 deletions
Large diffs are not rendered by default.

_partials/_dimension_info.md renamed to _partials/_dimensions_info.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ If the column to be partitioned is a:
8989
- Another integer type: specify `partition_interval` as an integer that reflects the column's
9090
underlying semantics. For example, if this column is in UNIX time, specify `partition_interval` in milliseconds.
9191

92-
The partition type and default value depending on column type is:
92+
The partition type and default value depending on column type is:<a id="partition-types" href=""></a>
9393

9494
| Column Type | Partition Type | Default value |
9595
|------------------------------|------------------|---------------|

_partials/_early_access_2_17_1.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<Tag variant="hollow">Early access: TimescaleDB v2.17.1</Tag>

_partials/_hypercore-conversion-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ Is converted and compressed into arrays in a row in the columnstore:
1717
|-|-|-|-|-|
1818
|[12:00:01, 12:00:01, 12:00:02, 12:00:02, 12:00:03, 12:00:03]|[A, B, A, B, A, B]|[SSD, HDD, SSD, HDD, SSD, HDD]|[70.11, 69.70, 70.12, 69.69, 70.14, 69.70]|[13.4, 20.5, 13.2, 23.4, 13.0, 25.2]|
1919

20-
Because a single row takes up less disk space, you can reduce your chunk size by more than 90%, and can also
20+
Because a single row takes up less disk space, you can reduce your chunk size by up to 98%, and can also
2121
speed up your queries. This saves on storage costs, and keeps your queries operating at lightning speed.

_partials/_hypercore-intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ $HYPERCORE_CAP’s hybrid approach combines the benefits of row-oriented and col
2121
saving significant storage space.
2222

2323
- **Faster queries on compressed data in $COLUMNSTORE**: in the $COLUMNSTORE conversion, hypertable
24-
chunks are compressed by more than 90%, and organized for efficient, large-scale queries. Combined with [chunk skipping][chunk-skipping], this helps you save on storage costs and keeps your queries operating at lightning speed.
24+
chunks are compressed by up to 98%, and organized for efficient, large-scale queries. Combined with [chunk skipping][chunk-skipping], this helps you save on storage costs and keeps your queries operating at lightning speed.
2525

2626
- **Fast modification of compressed data in $COLUMNSTORE**: just use SQL to add or modify data in the $COLUMNSTORE.
2727
$TIMESCALE_DB is optimized for super fast INSERT and UPSERT performance.

_partials/_install-self-hosted-archlinux-based.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2+
ArchLinux packages are built by the community.
3+
14
<Procedure>
25

36

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
2+
1. **Update your local repository list**
3+
4+
```bash
5+
sudo apt update
6+
```
7+
8+
1. **Install TimescaleDB**
9+
10+
```bash
11+
sudo apt install timescaledb-2-postgresql-17 postgresql-client-17
12+
```
13+
14+
To install a specific $TIMESCALE_DB [release][releases-page], set the version. For example:
15+
16+
`sudo apt-get install timescaledb-2-postgresql-14='2.6.0*' timescaledb-2-loader-postgresql-14='2.6.0*'`
17+
18+
Older versions of $TIMESCALE_DB may not support all the OS versions listed on this page.
19+
20+
1. **Tune your $PG instance for TimescaleDB**
21+
22+
```bash
23+
sudo timescaledb-tune
24+
```
25+
26+
By default, this script is included with the `timescaledb-tools` package when you install TimescaleDB. Use the prompts to tune your development or production environment. For more information on manual configuration, see [Configuration][config]. If you have an issue, run `sudo apt install timescaledb-tools`.
27+
28+
1. **Restart $PG**
29+
30+
```bash
31+
sudo systemctl restart postgresql
32+
```
33+
34+
1. **Log in to $PG as `postgres`**
35+
36+
```bash
37+
sudo -u postgres psql
38+
```
39+
You are in the psql shell.
40+
41+
1. **Set the password for `postgres`**
42+
43+
```bash
44+
\password postgres
45+
```
46+
47+
When you have set the password, type `\q` to exit psql.
48+
49+
50+
[config]: /self-hosted/:currentVersion:/configuration/
51+
[releases-page]: https://packagecloud.io/timescale/timescaledb
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
2+
1. **Install the latest $PG packages**
3+
4+
```bash
5+
sudo apt install gnupg postgresql-common apt-transport-https lsb-release wget
6+
```
7+
8+
1. **Run the $PG package setup script**
9+
10+
```bash
11+
sudo /usr/share/postgresql-common/pgdg/apt.postgresql.org.sh
12+
```
13+
14+
[config]: /self-hosted/:currentVersion:/configuration/
15+
[releases-page]: https://packagecloud.io/timescale/timescaledb

_partials/_install-self-hosted-debian-based.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
sudo timescaledb-tune
7474
```
7575

76-
By default, this script is included with the `timescaledb-tools` package when you install TimescaleDB. If you have an issue, run `sudo apt install timescaledb-tools`. For more information, see [configuration][config].
76+
By default, this script is included with the `timescaledb-tools` package when you install TimescaleDB. Use the prompts to tune your development or production environment. For more information on manual configuration, see [Configuration][config]. If you have an issue, run `sudo apt install timescaledb-tools`.
7777

7878
1. **Restart $PG**
7979

@@ -100,4 +100,4 @@
100100

101101

102102
[config]: /self-hosted/:currentVersion:/configuration/
103-
[releases-page]: https://packagecloud.io/timescale/timescaledb
103+
[releases-page]: https://packagecloud.io/timescale/timescaledb
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
import SelfHostedDebianStart from "versionContent/_partials/_install-self-hosted-debian-based-start.mdx";
2+
import SelfHostedDebianEnd from "versionContent/_partials/_install-self-hosted-debian-based-end.mdx";
3+
4+
<Procedure>
5+
6+
<SelfHostedDebianStart />
7+
8+
1. **Add the $TIMESCALE_DB package**
9+
10+
```bash
11+
echo "deb https://packagecloud.io/timescale/timescaledb/debian/ $(lsb_release -c -s) main" | sudo tee /etc/apt/sources.list.d/timescaledb.list
12+
```
13+
14+
1. **Install the $TIMESCALE_DB GPG key**
15+
16+
```bash
17+
wget --quiet -O - https://packagecloud.io/timescale/timescaledb/gpgkey | sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/timescaledb.gpg
18+
```
19+
20+
<SelfHostedDebianEnd />
21+
22+
</Procedure>
23+
24+
25+
[config]: /self-hosted/:currentVersion:/configuration/
26+
[releases-page]: https://packagecloud.io/timescale/timescaledb

0 commit comments

Comments
 (0)