Skip to content

Commit 56534fc

Browse files
authored
lake: update dsn to tidbcloud.com (#22838)
1 parent 70888a4 commit 56534fc

7 files changed

Lines changed: 9 additions & 9 deletions

File tree

tidb-cloud-lake/guides/connect-using-bendsql.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ databend[+flight]://user[:password]@host[:port]/[database][?sslmode=disable][&ar
194194
lake://root:@localhost:8000/?sslmode=disable&presign=detect
195195
196196
# {{{ .lake }}} connection with tenant and warehouse info
197-
lake://user1:password1@tnxxxx--default.gw.aws-us-east-2.default.databend.com:443/benchmark?enable_dphyp=1
197+
lake://user1:password1@tnxxxx--default.gw.aws-us-east-2.default.tidbcloud.com:443/benchmark?enable_dphyp=1
198198
199199
# Local connection using FlightSQL API
200200
lake+flight://root:@localhost:8900/database1?connect_timeout=10
@@ -211,7 +211,7 @@ The best practice for connecting to {{{ .lake }}} is to obtain your DSN from {{{
211211
3. Your DSN will be automatically generated in the **Examples** section. Below the DSN, you'll find a BendSQL snippet that exports the DSN as an environment variable named `BENDSQL_DSN` and launches BendSQL with the correct configuration. You can copy and paste it directly into your terminal.
212212
213213
```bash title='Example'
214-
export BENDSQL_DSN="lake://cloudapp:******@tn3ftqihs.gw.aws-us-east-2.default.databend.com:443/information_schema?warehouse=small-xy2t"
214+
export BENDSQL_DSN="lake://cloudapp:******@tn3ftqihs.gw.aws-us-east-2.default.tidbcloud.com:443/information_schema?warehouse=small-xy2t"
215215
bendsql
216216
```
217217

tidb-cloud-lake/guides/connection-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ summary: TiDB Cloud Lake supports multiple connection methods to suit different
1919

2020
| Deployment | Format |
2121
|------------|--------|
22-
| **{{{ .lake }}}** | `lake://<user>:<pass>@<tenant>.gw.<region>.default.databend.com:443/<db>?warehouse=<name>` |
22+
| **{{{ .lake }}}** | `lake://<user>:<pass>@<tenant>.gw.<region>.default.tidbcloud.com:443/<db>?warehouse=<name>` |
2323

2424
> **Tip:**
2525
>

tidb-cloud-lake/guides/grafana.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ Every column except the timestamp and line column becomes a LogQL label.
7373
1. Log in to your {{{ .lake }}} account.
7474

7575
2. On the dashboard, click **Connect** to view the connection information. Note down:
76-
- **Host**: The warehouse endpoint (e.g., `tnxxxxxxx.gw.aws-us-east-2.default.databend.com`)
76+
- **Host**: The warehouse endpoint (e.g., `tnxxxxxxx.gw.aws-us-east-2.default.tidbcloud.com`)
7777
- **User**: Your username (typically `cloudapp`)
7878
- **Password**: Your password or API key
7979
- **Database**: The database name containing your log table
@@ -165,7 +165,7 @@ allow_loading_unsigned_plugins = databend-datasource
165165

166166
3. Input the `DSN` field for your {{{ .lake }}} instance. For example:
167167

168-
{{{ .lake }}}: `lake://cloudapp:******@tnxxxxxxx.gw.aws-us-east-2.default.databend.com:443/default?warehouse=xsmall-fsta`
168+
{{{ .lake }}}: `lake://cloudapp:******@tnxxxxxxx.gw.aws-us-east-2.default.tidbcloud.com:443/default?warehouse=xsmall-fsta`
169169

170170
4. Optionally, input the `SQL User Password` field to override the password in the `DSN` field.
171171

tidb-cloud-lake/guides/track-metrics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ CREATE USER metrics IDENTIFIED BY 'metrics_password';
5656
| ------------------- | ------------------------------------------------ | ------------------------------------------------- |
5757
| `<USERNAME>` | The username for the SQL user. | `metrics` |
5858
| `<PASSWORD>` | The secure password for the SQL user. | `metrics_password` |
59-
| `<TENANT_ENDPOINT>` | The endpoint URL for your {{{ .lake }}} tenant. | `tnxxxxxxx.gw.aws-us-east-2.default.databend.com` |
59+
| `<TENANT_ENDPOINT>` | The endpoint URL for your {{{ .lake }}} tenant. | `tnxxxxxxx.gw.aws-us-east-2.default.tidbcloud.com` |
6060
| `<TENANT_ID>` | Your tenant's unique identifier. | `tnxxxxxxx` |
6161
| `<PLATFORM>` | The cloud platform hosting the tenant. | `aws` |
6262
| `<REGION>` | The region where the tenant is hosted. | `us-east-2` |

tidb-cloud-lake/guides/warehouse.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ To obtain the connection information for a warehouse:
210210
{{{ .lake }}} automatically generates your connection string when you click **Connect**:
211211

212212
```
213-
lake://<username>:<password>@<tenant>.gw.<region>.default.databend.com:443/<database>?warehouse=<warehouse_name>
213+
lake://<username>:<password>@<tenant>.gw.<region>.default.tidbcloud.com:443/<database>?warehouse=<warehouse_name>
214214
```
215215
216216
Where:

tidb-cloud-lake/tutorials/ingest-kafka-with-bend-ingest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ CREATE TABLE databend_topic (
103103

104104
```bash
105105
Welcome to BendSQL 0.19.2-1e338e1(2024-07-17T09:02:28.323121000Z).
106-
Connecting to tn3ftqihs--eric.gw.aws-us-east-2.default.databend.com:443 with warehouse eric as user cloudapp
106+
Connecting to tn3ftqihs--eric.gw.aws-us-east-2.default.tidbcloud.com:443 with warehouse eric as user cloudapp
107107
Connected to Databend Query v1.2.626-nightly-a055124b65(rust-1.81.0-nightly-2024-08-27T15:49:08.376336236Z)
108108
109109
cloudapp@(eric)/doc> SELECT * FROM databend_topic;

tidb-cloud-lake/tutorials/ingest-kafka-with-kafka-connect.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ In this step, you will set up a connector that connects to {{{ .lake }}}.
135135
}
136136
```
137137

138-
4. In the **Networking** step, enter your {{{ .lake }}} warehouse endpoint, such as `xxxxxxxxx--xxx.gw.aws-us-east-2.default.databend.com`.
138+
4. In the **Networking** step, enter your {{{ .lake }}} warehouse endpoint, such as `xxxxxxxxx--xxx.gw.aws-us-east-2.default.tidbcloud.com`.
139139

140140
5. In the **Sizing** step, set it to **1 task**.
141141

0 commit comments

Comments
 (0)