Skip to content

Commit da7528a

Browse files
authored
lake: update ecosystem integrations (#22874)
1 parent b7fa8dd commit da7528a

40 files changed

Lines changed: 218 additions & 218 deletions

TOC-tidb-cloud-lake.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
- Connect
4343
- [Overview](/tidb-cloud-lake/guides/connection-overview.md)
4444
- SQL Clients
45-
- [BendSQL](/tidb-cloud-lake/guides/connect-using-bendsql.md)
45+
- [LakeSQL](/tidb-cloud-lake/guides/connect-using-lakesql.md)
4646
- [DBeaver](/tidb-cloud-lake/guides/connect-using-dbeaver.md)
4747
- Drivers
4848
- [Overview](/tidb-cloud-lake/guides/driver-overview.md)
@@ -112,8 +112,6 @@
112112
- AI and ML Integration
113113
- [Overview](/tidb-cloud-lake/guides/ai-ml-integration.md)
114114
- [External AI Functions](/tidb-cloud-lake/guides/external-ai-functions.md)
115-
- [MCP Server](/tidb-cloud-lake/guides/mcp-server.md)
116-
- [MCP Client Integration](/tidb-cloud-lake/guides/mcp-client-integration.md)
117115
- Multimodal Data Analytics
118116
- [Overview](/tidb-cloud-lake/guides/multimodal-data-analytics.md)
119117
- [SQL Analytics](/tidb-cloud-lake/guides/sql-analytics.md)

tidb-cloud-lake/guides/ai-ml-integration.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ The Model Context Protocol (MCP) server enables AI assistants to interact with y
3333

3434
**[External Functions Guide](/tidb-cloud-lake/guides/external-ai-functions.md)** - Learn how to create and deploy custom AI functions with practical examples and implementation guidance
3535

36+
<!-- These two files are removed from TOC for now because of private repo.
3637
**[MCP Server Guide](/tidb-cloud-lake/guides/mcp-server.md)** - Build a conversational BI tool using mcp-databend and natural language queries
3738
3839
**[MCP Client Integration](/tidb-cloud-lake/guides/mcp-client-integration.md)** - Configure generic MCP clients (like Codex) to connect to {{{ .lake }}}
40+
-->

tidb-cloud-lake/guides/authenticate-with-aws-iam-role.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ After {{{ .lake }}} support shares the trusted principal information for your or
8686

8787
Click `View Role`, and record the role ARN: `arn:aws:iam::987654321987:role/databend-test`
8888

89-
4. Run the following SQL statement in {{{ .lake }}} cloud worksheet or `BendSQL`:
89+
4. Run the following SQL statement in {{{ .lake }}} cloud worksheet or `LakeSQL`:
9090

9191
```sql
9292
CREATE CONNECTION databend_test STORAGE_TYPE = 's3' ROLE_ARN = 'arn:aws:iam::987654321987:role/databend-test' EXTERNAL_ID = 'my-external-id-123';

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

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The official Go driver provides a standard `database/sql` interface for seamless
1010
## Installation
1111

1212
```bash
13-
go get github.com/databendlabs/databend-go
13+
go get github.com/tidbcloud/lake-go
1414
```
1515

1616
**Connection String**: See [drivers overview](/tidb-cloud-lake/guides/driver-overview.md) for DSN format and examples.
@@ -60,7 +60,7 @@ import (
6060
"fmt"
6161
"log"
6262

63-
_ "github.com/databendlabs/databend-go"
63+
_ "github.com/tidbcloud/lake-go"
6464
)
6565

6666
// Connect to {{{ .lake }}}
@@ -95,6 +95,5 @@ fmt.Printf("User: %d, %s\n", id, name)
9595

9696
## Resources
9797

98-
- **GitHub Repository**: [databend-go](https://github.com/databendlabs/databend-go)
99-
- **Go Package**: [pkg.go.dev](https://pkg.go.dev/github.com/datafuselabs/databend-go)
100-
- **Examples**: [GitHub Examples](https://github.com/databendlabs/databend-go/tree/main/examples)
98+
- **GitHub Repository**: [lake-go](https://github.com/tidbcloud/lake-go)
99+
- **Examples**: [GitHub Examples](https://github.com/tidbcloud/lake-go/tree/main/examples)

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

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,22 +13,20 @@ The official JDBC driver provides standard JDBC 4.0 compatibility for seamless i
1313

1414
```xml
1515
<dependency>
16-
<groupId>com.databend</groupId>
17-
<artifactId>databend-jdbc</artifactId>
18-
<version>0.4.1</version>
16+
<groupId>com.tidbcloud</groupId>
17+
<artifactId>lake-jdbc</artifactId>
18+
<version>0.4.6</version>
1919
</dependency>
2020
```
2121

2222
### Gradle
2323

2424
```gradle
25-
implementation 'com.databend:databend-jdbc:0.4.1'
25+
implementation 'com.tidbcloud:lake-jdbc:0.4.6'
2626
```
2727

2828
**Connection String**: See [drivers overview](/tidb-cloud-lake/guides/driver-overview.md) for DSN format and examples.
2929

30-
---
31-
3230
## Key Features
3331

3432
-**JDBC 4.0 Compatible**: Standard JDBC interface support
@@ -114,17 +112,17 @@ conn.close();
114112

115113
## Configuration Reference
116114

117-
For complete databend-jdbc driver configuration options including:
115+
For complete lake-jdbc driver configuration options including:
118116

119117
- Connection string parameters
120118
- SSL/TLS configuration
121119
- Authentication methods
122120
- Performance tuning parameters
123121

124-
Please refer to the [official databend-jdbc Connection Guide](https://github.com/databendlabs/databend-jdbc/blob/main/docs/Connection.md).
122+
Please refer to the [official lake-jdbc Connection Guide](https://github.com/tidbcloud/lake-jdbc/blob/main/docs/Connection.md).
125123

126124
## Resources
127125

128-
- **Maven Central**: [databend-jdbc](https://repo1.maven.org/maven2/com/databend/databend-jdbc/)
129-
- **GitHub Repository**: [databend-jdbc](https://github.com/databendlabs/databend-jdbc)
126+
- **Maven Central**: [lake-jdbc](https://repo1.maven.org/maven2/com/tidbcloud/lake-jdbc/)
127+
- **GitHub Repository**: [lake-jdbc](https://github.com/tidbcloud/lake-jdbc)
130128
- **JDBC Documentation**: [Oracle JDBC Guide](https://docs.oracle.com/javase/tutorial/jdbc/)

0 commit comments

Comments
 (0)