Skip to content

Commit 1e2b211

Browse files
authored
[Chore] Some release improvement (#17107)
1 parent fd53743 commit 1e2b211

14 files changed

Lines changed: 49 additions & 26 deletions

File tree

docs/docs/en/contribute/backend/spi/alert.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Under this package, we currently only encapsulate RadioParam, TextParam, and Pas
5050

5151
AbsPluginParams This class is the base class of all parameters, RadioParam these classes all inherit this class. Each DS alert plug-in will return a list of AbsPluginParams in the implementation of AlertChannelFactory.
5252

53-
The specific design of alert_spi can be seen in the issue: [Alert Plugin Design](https://github.com/apache/incubator-dolphinscheduler/issues/3049)
53+
The specific design of alert_spi can be seen in the issue: [Alert Plugin Design](https://github.com/apache/dolphinscheduler/issues/3049)
5454

5555
#### Alert SPI built-in implementation
5656

docs/docs/en/contribute/release.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,8 @@ We need to update some documentation before the Maven release. For example, to r
195195
- `deploy/kubernetes/dolphinscheduler`:
196196
- `Chart.yaml`: `appVersion` and `version` needs to be updated to x.y.z
197197
- `values.yaml`: `image.tag` needs to be updated to x.y.z
198+
- `config`
199+
- `install-plugins.sh`: `dev-SNAPSHOT` needs to be updated to x.y.z
198200
- Version in the docs:
199201
- Change the placeholder `<version>`(except `pom`) to the `x.y.z` in directory `docs`
200202
- Add new history version

docs/docs/en/guide/task/dinky.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Overview
44

55
Use `Dinky Task` to create a dinky-type task and support one-stop development, debugging, operation and maintenance of FlinkSql, Flink jar and SQL. When the worker executes `Dinky Task`,
6-
it will call `Dinky API` to trigger dinky task. Click [here](http://www.dlink.top/) for details about `Dinky`.
6+
it will call `Dinky API` to trigger dinky task. Click [here](https://www.dinky.org.cn/) for details about `Dinky`.
77

88
## Create Task
99

docs/docs/en/guide/task/mlflow.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,14 @@ The MLflow plugin currently supports and will support the following:
4646

4747
**Task Parameters**
4848

49-
| **Parameter** | **Description** |
50-
|------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
51-
| Register Model | Register the model or not. If register is selected, the following parameters are expanded. |
52-
| Model Name | The registered model name is added to the original model version and registered as Production. |
53-
| Data Path | The absolute path of the file or folder. Ends with .csv for file or contain train.csv and test.csv for folder(In the suggested way, users should build their own test sets for model evaluation. |
54-
| Parameters | Parameter when initializing the algorithm/AutoML model, which can be empty. For example, parameters `"time_budget=30;estimator_list=['lgbm']"` for flaml. The convention will be passed with '; ' shards each parameter, using the name before the equal sign as the parameter name, and using the name after the equal sign to get the corresponding parameter value through `python eval()`. <ul><li>[Logistic Regression](https://scikit-learn.org/stable/modules/generated/sklearn.linear_model.LogisticRegression.html#sklearn.linear_model.LogisticRegression)</li><li>[SVM](https://scikit-learn.org/stable/modules/generated/sklearn.svm.SVC.html?highlight=svc#sklearn.svm.SVC)</li><li>[lightgbm](https://lightgbm.readthedocs.io/en/latest/pythonapi/lightgbm.LGBMClassifier.html#lightgbm.LGBMClassifier)</li><li>[xgboost](https://xgboost.readthedocs.io/en/stable/python/python_api.html#xgboost.XGBClassifier)</li></ul> |
55-
| Algorithm | The selected algorithm currently supports `LR`, `SVM`, `LightGBM` and `XGboost` based on [scikit-learn](https://scikit-learn.org/) form. |
56-
| Parameter Search Space | Parameter search space when running the corresponding algorithm, which can be empty. For example, the parameter `max_depth=[5, 10];n_estimators=[100, 200]` for lightgbm. The convention will be passed with '; 'shards each parameter, using the name before the equal sign as the parameter name, and using the name after the equal sign to get the corresponding parameter value through `python eval()`. |
49+
| **Parameter** | **Description** |
50+
|------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
51+
| Register Model | Register the model or not. If register is selected, the following parameters are expanded. |
52+
| Model Name | The registered model name is added to the original model version and registered as Production. |
53+
| Data Path | The absolute path of the file or folder. Ends with .csv for file or contain train.csv and test.csv for folder(In the suggested way, users should build their own test sets for model evaluation. |
54+
| Parameters | Parameter when initializing the algorithm/AutoML model, which can be empty. For example, parameters `"time_budget=30;estimator_list=['lgbm']"` for flaml. The convention will be passed with '; ' shards each parameter, using the name before the equal sign as the parameter name, and using the name after the equal sign to get the corresponding parameter value through `python eval()`. <ul><li>[Logistic Regression](https://scikit-learn.org/stable/modules/generated/sklearn.linear_model.LogisticRegression.html#sklearn.linear_model.LogisticRegression)</li><li>[SVM](https://scikit-learn.org/stable/modules/generated/sklearn.svm.SVC.html?highlight=svc#sklearn.svm.SVC)</li><li>[lightgbm](https://lightgbm.readthedocs.io/en/latest/pythonapi/lightgbm.LGBMClassifier.html#lightgbm.LGBMClassifier)</li><li>[xgboost](https://xgboost.readthedocs.io/en/release_3.0.0/python/python_api.html#xgboost.XGBClassifier)</li></ul> |
55+
| Algorithm | The selected algorithm currently supports `LR`, `SVM`, `LightGBM` and `XGboost` based on [scikit-learn](https://scikit-learn.org/) form. |
56+
| Parameter Search Space | Parameter search space when running the corresponding algorithm, which can be empty. For example, the parameter `max_depth=[5, 10];n_estimators=[100, 200]` for lightgbm. The convention will be passed with '; 'shards each parameter, using the name before the equal sign as the parameter name, and using the name after the equal sign to get the corresponding parameter value through `python eval()`. |
5757

5858
#### AutoML
5959

docs/docs/zh/contribute/backend/spi/alert.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ org.apache.dolphinscheduler.spi.params
5050

5151
AbsPluginParams 该类是所有参数的基类,RadioParam 这些类都继承了该类。每个 DS 的告警插件都会在 AlertChannelFactory 的实现中返回一个 AbsPluginParams 的 list。
5252

53-
alert_spi 具体设计可见 issue:[Alert Plugin Design](https://github.com/apache/incubator-dolphinscheduler/issues/3049)
53+
alert_spi 具体设计可见 issue:[Alert Plugin Design](https://github.com/apache/dolphinscheduler/issues/3049)
5454

5555
#### Alert SPI 内置实现
5656

docs/docs/zh/contribute/release.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,8 @@ SVN_DIR=<PATH-TO-SVN-ROOT> # to keep binary package checkout from SVN, the sub
199199
- `deploy/kubernetes/dolphinscheduler`:
200200
- `Chart.yaml`: `appVersion``version` 版本更新为 x.y.z
201201
- `values.yaml`: `image.tag` 版本更新为 x.y.z
202+
- `config`
203+
- `install-plugins.sh`: `version` 版本 `dev-SNAPSHOT` 更新为 x.y.z
202204
- 修改文档(docs 模块)中的版本号:
203205
- 将 `docs` 文件夹下文件的占位符 `<version>` (除了 pom.xml 相关的) 修改成 `x.y.z`
204206
- 新增历史版本

docs/docs/zh/guide/task/dinky.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Overview
44

55
`Dinky`任务类型,用于创建并执行`Dinky`类型任务以支撑一站式的开发、调试、运维 FlinkSQL、Flink Jar、SQL。worker 执行该任务的时候,会通过`Dinky API`触发`Dinky 的作业`
6-
点击[这里](http://www.dlink.top/) 获取更多关于`Dinky`的信息。
6+
点击[这里](https://www.dinky.org.cn/) 获取更多关于`Dinky`的信息。
77

88
## Create Task
99

0 commit comments

Comments
 (0)