...
 
Commits (3)
    https://gitcode.net/apache/dolphinscheduler/-/commit/5672337156c4198940ec4502f59546ec5bc430ad [docs] Update new release for 3.0.2 (#12949) 2022-11-21T13:50:51+08:00 Eric Gao ericgao.apache@gmail.com https://gitcode.net/apache/dolphinscheduler/-/commit/27c00ed3772113e4eb7c53035360d3e3dbf55e66 [Document] Fix grammar and spelling (#12940) 2022-11-21T20:58:03+08:00 John Bampton jbampton@users.noreply.github.com https://gitcode.net/apache/dolphinscheduler/-/commit/d09e02e5a92f0f6a70d053128e280be1143a567b [Improvement-12804][UT] Remove the unused method in DataAnalysisControllerTes... 2022-11-21T20:59:30+08:00 rickchengx 38122586+rickchengx@users.noreply.github.com
......@@ -46,6 +46,7 @@ import docs206Config from '../../../site_config/docs2-0-6';
import docs207Config from '../../../site_config/docs2-0-7';
import docs300Config from '../../../site_config/docs3-0-0';
import docs301Config from '../../../site_config/docs3-0-1';
import docs302Config from '../../../site_config/docs3-0-2';
import docs310Config from '../../../site_config/docs3-1-0';
import docs311Config from '../../../site_config/docs3-1-1';
import docsDevConfig from '../../../site_config/docsdev';
......@@ -70,6 +71,7 @@ const docsSource = {
'2.0.7': docs207Config,
'3.0.0': docs300Config,
'3.0.1': docs301Config,
'3.0.2': docs302Config,
'3.1.0': docs310Config,
'3.1.1': docs311Config,
dev: docsDevConfig,
......
......@@ -50,8 +50,8 @@ export default {
},
{
key: 'docs1',
text: '3.0.1',
link: '/en-us/docs/3.0.1/user_doc/about/introduction.html',
text: '3.0.2',
link: '/en-us/docs/3.0.2/user_doc/about/introduction.html',
},
{
key: 'docs2',
......@@ -178,8 +178,8 @@ export default {
},
{
key: 'docs1',
text: '3.0.1',
link: '/zh-cn/docs/3.0.1/user_doc/about/introduction.html',
text: '3.0.2',
link: '/zh-cn/docs/3.0.2/user_doc/about/introduction.html',
},
{
key: 'docs2',
......
......@@ -277,7 +277,7 @@ Location: `master-server/conf/application.yaml`
|master.failover-interval|10|failover interval, the unit is minute|
|master.kill-yarn-job-when-task-failover|true|whether to kill yarn job when failover taskInstance|
|master.registry-disconnect-strategy.strategy|stop|Used when the master disconnect from registry, default value: stop. Optional values include stop, waiting|
|master.registry-disconnect-strategy.max-waiting-time|100s|Used when the master disconnect from registry, and the disconnect strategy is waiting, this config means the master will waiting to reconnect to registry in given times, and after the waiting times, if the master still cannot connect to registry, will stop itself, if the value is 0s, the Master will waitting infinitely|
|master.registry-disconnect-strategy.max-waiting-time|100s|Used when the master disconnect from registry, and the disconnect strategy is waiting, this config means the master will waiting to reconnect to registry in given times, and after the waiting times, if the master still cannot connect to registry, will stop itself, if the value is 0s, the Master will wait infinitely|
|master.worker-group-refresh-interval|10s|The interval to refresh worker group from db to memory|
### Worker Server related configuration
......@@ -296,7 +296,7 @@ Location: `worker-server/conf/application.yaml`
|worker.alert-listen-host|localhost|the alert listen host of worker|
|worker.alert-listen-port|50052|the alert listen port of worker|
|worker.registry-disconnect-strategy.strategy|stop|Used when the worker disconnect from registry, default value: stop. Optional values include stop, waiting|
|worker.registry-disconnect-strategy.max-waiting-time|100s|Used when the worker disconnect from registry, and the disconnect strategy is waiting, this config means the worker will waiting to reconnect to registry in given times, and after the waiting times, if the worker still cannot connect to registry, will stop itself, if the value is 0s, will waitting infinitely |
|worker.registry-disconnect-strategy.max-waiting-time|100s|Used when the worker disconnect from registry, and the disconnect strategy is waiting, this config means the worker will waiting to reconnect to registry in given times, and after the waiting times, if the worker still cannot connect to registry, will stop itself, if the value is 0s, will wait infinitely |
|worker.task-execute-threads-full-policy|REJECT|If REJECT, when the task waiting in the worker reaches exec-threads, it will reject the received task and the Master will redispatch it; If CONTINUE, it will put the task into the worker's execution queue and wait for a free thread to start execution|
### Alert Server related configuration
......
......@@ -125,7 +125,7 @@ Execute `pm2 start npm -- run dev` to start the project in the project `dolphins
- The corresponding html file is in `src/view/${corresponding page filename => home}/index.html`
```
Public module and utill `src/js/module`
Public module and util `src/js/module`
`components` => internal project common components
......
......@@ -44,7 +44,7 @@ Multiple executions (any environment, any time) result in unique and repeatable
That is, any environment can be implemented quickly.
This requires that we don't rely on too many components, such as various spring beans and the like. These are all mock in unit tests, nd adding them would increase the speed of our single-test execution, as well as potentially passing on contamination.
This requires that we don't rely on too many components, such as various spring beans and the like. These are all mock in unit tests, and adding them would increase the speed of our single-test execution, as well as potentially passing on contamination.
For some databases, other external components, etc. As far as possible, the mock client is not dependent on the external environment (the presence of any external dependencies greatly limits the portability and stability of test cases and the correctness of results), which also makes it easy for developers to test in any environment.
......
......@@ -145,8 +145,8 @@ A_USERNAME=<YOUR-APACHE-USERNAME>
> Note: We can use the variable directly in you bash after we set environment, without changing anything. For example, we
> can use command `git clone -b "${VERSION}"-prepare https://github.com/apache/dolphinscheduler.git` to clone the release branch
> and it can be success by covert the `"${VERSION}"` to `<THE-VERSION-YOU-RELEASE>`. But you have to change `<VERSION>` manually in
> some of not bash step like [vote mail](#vote-procedure), we using `<VERSION>` instead of `"${VERSION}"` to notice release
> and it can be successful by converting the `"${VERSION}"` to `<THE-VERSION-YOU-RELEASE>`. But you have to change `<VERSION>` manually in
> some of not bash step like [vote mail](#vote-procedure), we are using `<VERSION>` instead of `"${VERSION}"` to notice release
> manager they have to change by hand.
### Create Release Branch
......
......@@ -19,7 +19,7 @@ Sqoop task type for executing Sqoop application. The workers run `sqoop` to exec
| **Parameter** | **Description** |
|-------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| Job Name | map-reduce job name |
| Direct | (1) import:Imports an individual table from an RDBMS to HDFS or Hve. (2) export:Exports a set of files from HDFS or Hive back to an RDBMS. |
| Direct | (1) import:Imports an individual table from an RDBMS to HDFS or Hive. (2) export:Exports a set of files from HDFS or Hive back to an RDBMS. |
| Hadoop Params | Hadoop custom param for sqoop job. |
| Sqoop Advanced Parameters | Sqoop advanced param for sqoop job. |
| Data Source - Type | Select the corresponding data source type. |
......
......@@ -12,6 +12,10 @@
#### Links: [3.1.0 Document](../3.1.0/user_doc/about/introduction.md)
### Versions: 3.0.2
#### Links: [3.0.2 Document](../3.0.2/user_doc/about/introduction.md)
### Versions: 3.0.1
#### Links: [3.0.1 Document](../3.0.1/user_doc/about/introduction.md)
......
......@@ -12,6 +12,10 @@
#### Links: [3.1.0 文档](../3.1.0/user_doc/about/introduction.md)
### Versions: 3.0.2
#### Links: [3.0.2 文档](../3.0.2/user_doc/about/introduction.md)
### Versions: 3.0.1
#### Links: [3.0.1 文档](../3.0.1/user_doc/about/introduction.md)
......
......@@ -142,19 +142,4 @@ public class DataAnalysisControllerTest extends AbstractControllerTest {
assertThat(result.getCode().intValue()).isEqualTo(Status.SUCCESS.getCode());
logger.info(mvcResult.getResponse().getContentAsString());
}
/**
* get mock Project
*
* @param projectName projectName
* @return Project
*/
private Project getProject(String projectName) {
Project project = new Project();
project.setCode(11L);
project.setId(1);
project.setName(projectName);
project.setUserId(1);
return project;
}
}