Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

更新starrocks拼写错误问题 #58

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions docs/extend/function_expansion/datasource.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ title: 扩展数据源
- MySQL
- Oracle
- SQLServer
- PostGreSQL
- PostgreSQL
- Phoenix
- Doris(Starrocks)
- ClickHouse
- Hive ``需要的jar包: hive-jdbc-2.1.1.jar && hive-service-2.1.1.jar``

使用以上数据源,详见注册中心[数据源管理](../../administrator_guide/register_center/datasource_manage),配置数据源连接
:::tip 注意事项
Dinky 不在对 Starorcks 进行额外扩展,Doris 和 Starorcks 底层并无差别,原则上只是功能区分。经社区测试验证,可采用 Doris 扩展连接 Starrocks。
Dinky 不在对 Starrocks 进行额外扩展,Doris 和 Starrocks 底层并无差别,原则上只是功能区分。经社区测试验证,可采用 Doris 扩展连接 Starrocks。
:::
----

Expand Down Expand Up @@ -560,7 +560,7 @@ public class HiveQuery extends AbstractDBQuery {
<artifactId>模块名称</artifactId>
<scope>${scope.runtime}</scope>
</dependency>
```
```
- 在 **dlink** 根下 **pom.xml** 中 ,新增如下内容:
```xml
<dependency>
Expand All @@ -580,7 +580,7 @@ public class HiveQuery extends AbstractDBQuery {
<include>模块名称-${project.version}.jar</include>
</includes>
</fileSet>
```
```

至此 如您的代码没有问题的话 后端代码扩展就已经完成了 !

Expand All @@ -590,7 +590,7 @@ public class HiveQuery extends AbstractDBQuery {
- **dlink-web** 为 Dinky 的前端模块
- 扩展数据源相关表单所在路径: `dlink-web/src/pages/DataBase/`
- 修改 `dlink-web/src/pages/DataBase/components/DBForm.tsx` 的 **const data** 中 添加如下:
eg:
eg:
```shell
{
type: 'Hive',
Expand Down
2 changes: 1 addition & 1 deletion docs/extend/practice_guide/kudu.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
sidebar_position: 13
id: kudu
title: kudu
title: Kudu
---


Expand Down
10 changes: 5 additions & 5 deletions docs/quick_start/flinksql_quick_start.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ title: Flink SQL 作业快速入门

### 创建集群配置或集群实例

首先,登录 Dlinky,选择**注册中心>>集群管理>>集群实例管理或集群配置管理**,点击**新建** Flink 集群
首先,登录 Dinky,选择**注册中心>>集群管理>>集群实例管理或集群配置管理**,点击**新建** Flink 集群

![](http://www.aiwenmo.com/dinky/docs/zh-CN/quick_start/flinksql_quick_start/%E5%88%9B%E5%BB%BA%E9%9B%86%E7%BE%A4.png)

Expand All @@ -36,7 +36,7 @@ title: Flink SQL 作业快速入门

### 集群实例

Dinky 推荐您在使用 Yarn Session、K8s Session、StandAlone 采用集群实例的方式注册集群。
Dinky 推荐您在使用 Yarn Session、K8s Session、Standalone 采用集群实例的方式注册集群。

**操作步骤**

Expand Down Expand Up @@ -86,7 +86,7 @@ Dinky 推荐您在使用 Yarn Per Job、Yarn Application、K8s Application 采

```
https://github.com/ververica/flink-sql-cookbook
#下载 flink-faker 放入$FLINK_HOME/lib下及Dlinky的plugins下
#下载 flink-faker 放入$FLINK_HOME/lib下及Dinky的plugins下
https://github.com/knaufk/flink-faker/releases
```

Expand Down Expand Up @@ -116,7 +116,7 @@ FlinkSQL 作业编写,分为三部分内容,分别是** SET 参数设置、D

当 FlinkSQL 编写完成后,即可进行作业的配置。作业配置的详细说明详见用户手册的[作业基础配置](./administrator_guide/studio/job_config.md)

在作业配置中,您可以选择作业执行模式、Flink 集群、SavePoint策略等配置,对作业进行提交前的配置。
在作业配置中,您可以选择作业执行模式、Flink 集群、Savepoint策略等配置,对作业进行提交前的配置。

![job_config](http://www.aiwenmo.com/dinky/docs/zh-CN/quick_start/flinksql_quick_start/job_config.png)

Expand All @@ -132,7 +132,7 @@ FlinkSQL 作业编写,分为三部分内容,分别是** SET 参数设置、D

### 发布运行作业

在数据写入 Sink 端时,Dlinky 提供了**异步提交** 和 **上线发布**功能,将其作业提交到远程集群
在数据写入 Sink 端时,Dinky 提供了**异步提交** 和 **上线发布**功能,将其作业提交到远程集群

![SQLInsert](http://www.aiwenmo.com/dinky/docs/zh-CN/quick_start/flinksql_quick_start/SQLInsert.png)

Expand Down