Skip to content

Commit 14cf784

Browse files
authored
Merge pull request #261 from EdurtIO/develop
Release 1.22.0
2 parents e419f52 + 7afdee5 commit 14cf784

89 files changed

Lines changed: 1856 additions & 280 deletions

File tree

Some content is hidden

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

README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -91,12 +91,14 @@ DBM can query data from any SQL-speaking datastore or data engine (ClickHouse an
9191
Here are some of the major database solutions that are supported:
9292

9393
<p align="center">
94-
<img src="./src/shared/assets/integrate/clickhouse.png" alt="ClickHouse" class="a" width="133" height="34" />
95-
<img src="./src/shared/assets/integrate/trino.png" alt="Trino" class="a" width="46" height="46"/>
96-
<img src="./src/shared/assets/integrate/presto.png" alt="Presto" class="a" width="152" height="46"/>
97-
<img src="./src/shared/assets/integrate/mysql.png" alt="MySQL" class="a" width="auto" height="50"/>
98-
<img src="./src/shared/assets/integrate/postgresql.png" alt="PostgreSQL" class="a" width="auto" height="50"/>
99-
<img src="./src/shared/assets/integrate/druid.png" alt="Druid" class="a" width="auto" height="34"/>
94+
<a href="https://clickhouse.com" target="_blank"><img src="./src/shared/assets/integrate/clickhouse.png" alt="ClickHouse" class="a" width="133" height="34" /></a>
95+
<a href="https://trino.io" target="_blank"><img src="./src/shared/assets/integrate/trino.png" alt="Trino" class="a" width="46" height="46"/></a>
96+
<a href="https://prestodb.io" target="_blank"><img src="./src/shared/assets/integrate/presto.png" alt="Presto" class="a" width="152" height="46"/></a>
97+
<a href="https://www.mysql.com" target="_blank"><img src="./src/shared/assets/integrate/mysql.png" alt="MySQL" class="a" width="auto" height="50"/></a>
98+
<a href="https://www.postgresql.org" target="_blank"><img src="./src/shared/assets/integrate/postgresql.png" alt="PostgreSQL" class="a" width="auto" height="50"/></a>
99+
<a href="https://druid.apache.org" target="_blank"><img src="./src/shared/assets/integrate/druid.png" alt="Druid" class="a" width="auto" height="34"/></a>
100+
<a href="https://www.elastic.co/cn/elasticsearch" target="_blank"><img src="./src/shared/assets/integrate/elasticsearch.svg" alt="ElasticSearch" class="a" width="auto" height="34"/></a>
101+
<a href="https://www.alibabacloud.com/product/hologres" target="_blank"><img src="./src/shared/assets/integrate/hologres.svg" alt="Hologres" class="a" width="auto" height="34"/></a>
100102
</p>
101103

102104
## Features
264 KB
Loading
113 KB
Loading
329 KB
Loading
241 KB
Loading
Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 1 addition & 0 deletions
Loading

docs/docs/download.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,11 +91,11 @@ The current Trino release is version <img src="https://img.shields.io/github/v/r
9191
* **Source Code**: [Code](https://github.com/trinodb/trino)
9292
* **YouTube channel** [YouTube channel](https://www.youtube.com/c/trinodb)
9393

94-
- __Druid__
94+
- __Apache Druid__
9595

9696
---
9797

98-
* **Documentation**: [trino.io](https://druid.apache.org/docs/latest/design/)
98+
* **Documentation**: [druid.apache.org](https://druid.apache.org/docs/latest/design/)
9999
* **Issues**: [GitHub issues](https://github.com/apache/druid/issues)
100100
* **Source Code**: [Code](https://github.com/apache/druid)
101101
* **Meetups** [Meetups](https://www.meetup.com/topics/apache-druid/)
Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
---
2+
template: overrides/main.html
3+
---
4+
5+
!!! note "ElasticSearch"
6+
7+
It is mainly used to describe how the software builds the ElasticSearch data source for subsequent operations.
8+
9+
Based on XPACK plug-ins, the ElasticSearch data source is built on the basis of the [ElasticSearch](https://www.elastic.co/products/elasticsearch) plug-in.
10+
11+
!!! warning "System requirements"
12+
13+
\>= `1.22.0`
14+
15+
### Supported Versions
16+
17+
---
18+
19+
| Version | Tested? |
20+
|---------|---------------------------------------------|
21+
| `1.0.x` | :material-checkbox-marked-circle:{.success} |
22+
23+
!!! note "Supported versions"
24+
25+
Most versions have been tested, please submit issues for non-adapted versions.
26+
27+
### Created a Source
28+
29+
---
30+
31+
After entering the data source management page, click the Add data source button.
32+
33+
![img.png](../../../assets/images/others/management/datasource/elasticsearch/img.png)
34+
35+
Select the ElasticSearch icon in the `Experimental` type (the fourth).
36+
37+
After selecting the type, click the `Next` button at the bottom to configure the relevant information.
38+
39+
![img.png](../../../assets/images/others/management/datasource/elasticsearch/img_1.png)
40+
41+
!!! note "Supported protocols"
42+
43+
- [x] `TCP`
44+
45+
#### TCP Protocol
46+
47+
---
48+
49+
!!! note "TCP Protocol"
50+
51+
Use the TCP interface provided by ElasticSearch to connect to the service.
52+
53+
| Parameter | Description | Required | Unique | Default |
54+
|-----------|-----------------------------------------------------------------------------------------------------|----------|--------|---------|
55+
| `Alias` | The alias of the data source, which will be displayed later in the selected data source on the page | Yes | Yes | |
56+
| `Host` | The host of the ElasticSearch server | Yes | Yes | |
57+
| `Port` | The port of the ElasticSearch server | Yes | Yes | `5443` |
58+
59+
When we have configured the above parameters, click the `Test` button at the bottom. If the service can be accessed normally, the `OK` button can be used. Click it and it will be saved.
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
---
2+
template: overrides/main.html
3+
---
4+
5+
!!! note "Hologres"
6+
7+
It is mainly used to describe how the software builds the Hologres data source for subsequent operations.
8+
9+
!!! warning "System requirements"
10+
11+
\>= `1.22.0`
12+
13+
### Supported Versions
14+
15+
---
16+
17+
| Version | Tested? |
18+
|---------|---------------------------------------------|
19+
| `1.0.x` | :material-checkbox-marked-circle:{.success} |
20+
21+
!!! note "Supported versions"
22+
23+
Most versions have been tested, please submit issues for non-adapted versions.
24+
25+
### Created a Source
26+
27+
---
28+
29+
After entering the data source management page, click the Add data source button.
30+
31+
![img.png](../../../assets/images/others/management/datasource/hologres/img.png)
32+
33+
Select the Hologres icon in the `Experimental` type (the fourth).
34+
35+
After selecting the type, click the `Next` button at the bottom to configure the relevant information.
36+
37+
![img.png](../../../assets/images/others/management/datasource/hologres/img_1.png)
38+
39+
!!! note "Supported protocols"
40+
41+
- [x] `TCP`
42+
43+
#### TCP Protocol
44+
45+
---
46+
47+
!!! note "TCP Protocol"
48+
49+
Use the TCP interface provided by Hologres to connect to the service.
50+
51+
| Parameter | Description | Required | Unique | Default |
52+
|--------------------|-----------------------------------------------------------------------------------------------------|----------|--------|---------|
53+
| `Alias` | The alias of the data source, which will be displayed later in the selected data source on the page | Yes | Yes | |
54+
| `Host` | The host of the Hologres server | Yes | Yes | |
55+
| `Port` | The port of the Hologres server | Yes | Yes | `5443` |
56+
| `AccessKey ID` | The user name of the Hologres server | No | Yes | |
57+
| `AccessKey Secret` | The password of the Hologres server | No | Yes | |
58+
| `Database` | The database of the Hologres server | No | Yes | |
59+
60+
When we have configured the above parameters, click the `Test` button at the bottom. If the service can be accessed normally, the `OK` button can be used. Click it and it will be saved.

0 commit comments

Comments
 (0)