Skip to content

Commit 0ab7a8e

Browse files
committed
minor changes
1 parent cc33183 commit 0ab7a8e

File tree

3 files changed

+4
-16
lines changed

3 files changed

+4
-16
lines changed

docs/k8s-helm.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,8 @@ In this step, we install the helm chart using release name `timeplus`.
105105

106106
```bash
107107
export RELEASE=timeplus
108-
helm -n $NS install -f values.yaml $RELEASE timeplus/timeplus-enterprise
108+
export VERSION=v7.0.4 # or the latest version you want to install
109+
helm -n $NS install -f values.yaml $RELEASE timeplus/timeplus-enterprise --version $VERSION
109110
```
110111

111112
You should see following output within a couple of minutes.
@@ -134,7 +135,7 @@ timeplusd-1 1/1 Running 0 13m
134135
timeplusd-2 1/1 Running 0 13m
135136
```
136137

137-
If any of the pod is in error status, you can try to use `kubectl describe pod <error pod> -n $NS` to debug. For more details, please refer to [Troubleshooting](#troubleshooting) section.
138+
If any of the pod is in error status, you can try to use `kubectl describe pod <error pod> -n $NS` to debug. For more details, please refer to [Troubleshooting](#troubleshooting) section. Starting from Timeplus Enterprise 2.9, the `timeplus-web` pod is no longer available.
138139

139140

140141
### Expose the Timeplus Console

docs/marimo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ This tutorial demonstrates how to query Apache Kafka with SQL using Timeplus Pro
1414
Run the following commands to set up the environment:
1515

1616
```bash
17-
curl https://astral.sh/uv/install.sh | sh
17+
curl -LsSf https://astral.sh/uv/install.sh | sh
1818
curl https://install.timeplus.com/oss | sh
1919
./proton server&
2020
uvx marimo run --sandbox https://raw.githubusercontent.com/timeplus-io/proton/refs/heads/develop/examples/marimo/github.py

docs/mysql-external-table.md

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -62,19 +62,6 @@ SETTINGS type='mysql',
6262
table='events'
6363
```
6464

65-
### Connect to Aiven for MySQL {#aiven}
66-
67-
Example SQL to connect to [Aiven for MySQL](https://aiven.io/docs/products/mysql/get-started):
68-
69-
```sql
70-
CREATE EXTERNAL TABLE mysql_aiven
71-
SETTINGS type='mysql',
72-
address='abc.aivencloud.com:28851',
73-
user='avnadmin',
74-
password='..',
75-
table='events';
76-
```
77-
7865
## Read data from MySQL {#read}
7966

8067
Once the external table is created successfully, it means Timeplus can connect to the MySQL server and fetch the table schema.

0 commit comments

Comments
 (0)